diff --git a/Dockerfile b/Dockerfile index c0eba58..4a64f9a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,15 +1,18 @@ FROM ruby:2.5.1-alpine RUN apk add --update ruby-dev build-base +RUN apk update && apk add bash ENV INSTALL_PATH /usr/src/app/ RUN mkdir -p $INSTALL_PATH WORKDIR $INSTALL_PATH -COPY Gemfile Gemfile.lock $INSTALL_PATH +COPY Gemfile $INSTALL_PATH RUN bundle install COPY . $INSTALL_PATH -CMD bundle exec karafka server +CMD ["/bin/sh","entrypoint.sh"] +#make an entrypoint.sh for executing iodine & karafka server + diff --git a/Gemfile b/Gemfile index a65f522..e88b8c1 100644 --- a/Gemfile +++ b/Gemfile @@ -2,3 +2,9 @@ source 'https://rubygems.org' ruby '2.5.1' gem 'karafka' +# include the basic plezi framework and server +gem 'plezi', '~>0.15.0' +## Redis servers are used to allow websocket scaling. +## Plezi can be configured to automatically use Redis for easy scaling. +# gem 'redis' +gem 'iodine', '~>0.4.0' # may need to fix the version \ No newline at end of file diff --git a/Gemfile.lock b/Gemfile.lock index 1b3c2bd..c47aa49 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -7,7 +7,7 @@ GEM minitest (~> 5.1) tzinfo (~> 1.1) concurrent-ruby (1.0.5) - delivery_boy (0.2.6) + delivery_boy (0.2.7) king_konf (~> 0.2) ruby-kafka (~> 0.5) dry-configurable (0.7.0) @@ -15,7 +15,7 @@ GEM dry-container (0.6.0) concurrent-ruby (~> 1.0) dry-configurable (~> 0.1, >= 0.1.3) - dry-core (0.4.6) + dry-core (0.4.7) concurrent-ruby (~> 1.0) dry-equalizer (0.2.1) dry-events (0.1.0) @@ -39,7 +39,7 @@ GEM dry-equalizer (~> 0.2) dry-inflector (~> 0.1, >= 0.1.2) dry-logic (~> 0.4, >= 0.4.2) - dry-validation (0.12.0) + dry-validation (0.12.1) concurrent-ruby (~> 1.0) dry-configurable (~> 0.1, >= 0.1.3) dry-core (~> 0.2, >= 0.2.1) @@ -50,7 +50,9 @@ GEM dry-inflector (~> 0.1) i18n (1.0.1) concurrent-ruby (~> 1.0) - karafka (1.2.4) + iodine (0.4.19) + rack (>= 1.0, < 3.0) + karafka (1.2.5) activesupport (>= 4.0) dry-configurable (~> 0.7) dry-inflector (~> 0.1.1) @@ -60,13 +62,18 @@ GEM multi_json (>= 1.12) rake (>= 11.3) require_all (>= 1.4) - ruby-kafka (>= 0.5.3) + ruby-kafka (>= 0.6.4) 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) + plezi (0.15.1) + bundler (~> 1.14) + iodine (>= 0.4, < 0.5) + rack (>= 2.0.0) + rack (2.0.5) rake (12.3.1) require_all (2.0.0) rouge (2.2.1) @@ -86,7 +93,12 @@ PLATFORMS ruby DEPENDENCIES + iodine (~> 0.4.0) karafka + plezi (~> 0.15.0) + +RUBY VERSION + ruby 2.5.1p57 BUNDLED WITH - 1.16.2 + 1.16.3 diff --git a/README.md b/README.md new file mode 100644 index 0000000..3751c78 --- /dev/null +++ b/README.md @@ -0,0 +1,3 @@ +YACS Event Stream Websocket API +--- +Implemented using Kafka & Plezi diff --git a/app.rb b/app.rb index 6c024f5..ce62bad 100644 --- a/app.rb +++ b/app.rb @@ -1,3 +1,52 @@ -require 'karafka' +require 'plezi' +require 'iodine' +require_relative 'app/controllers/eventstream' -puts 'Hello world' +## Set environment, working directory, load gems and create logs +#ENV['ENV'] ||= ENV['RACK_ENV'] ||= ENV['RAILS_ENV'] # production ENV will render SASS as compressed. +## Using pathname extentions for setting public folder +require 'pathname' +## Set up root object, it might be used by the environment and\or the plezi extension gems. +Root ||= Pathname.new(File.dirname(__FILE__)).expand_path +## If this app is independant, use bundler to load gems (including the plezi gem). +## otherwise, use the original app's Gemfile and Plezi will automatically switch to Rack mode. +require 'bundler' +Bundler.require(:default, ENV['ENV'].to_s.to_sym) +# Load all the code from a subfolder called 'app' +Dir[File.join '{controllers}', '**', '*.rb'].each { |file| load File.expand_path(file) } +# Load all the code from a subfolder called 'lib' +Dir[File.join '{lib}', '**', '*.rb'].each { |file| load File.expand_path(file) } + + +#Setting the port +#Iodine::DEFAULT_HTTP_ARGS[:port] = 4860 + +## Logging +#::Iodine::DEFAULT_HTTP_ARGS[:log] = 1 if ::Iodine::DEFAULT_HTTP_ARGS[:log].nil? +#Iodine::DEFAULT_HTTP_ARGS[:public] ||= './public' + + +# # Optional Scaling (across processes or machines): +ENV['PL_REDIS_URL'] ||= ENV['REDIS_URL'] || + ENV['REDISCLOUD_URL'] || + ENV['REDISTOGO_URL'] || + nil # "redis://:password@my.host:6389/0" +# # redis channel name should be changed IF using the same Plezi code within +# # more then one application (i.e., using both Rails and Plezi together). +# Plezi.app_name = 'yacs_websocket_a027e2d668a7dc21c59fe56f018432ea' + +# Map the views folder to the template root (for the {#render} function). +#Plezi.templates = Root.join('views').to_s + +# load routes. +load Root.join('routes.rb').to_s + +App = Proc.new do |env| + if(env['rack.upgrade?'.freeze] == :websocket) + env['rack.upgrade'.freeze] = EventStream.new + [0, {}, []] + else + [200, {"Content-Length" => "12", "Content-Type" => "text/plain"}, ["Hello World!"]] + end + +end diff --git a/app/consumers/courses_consumer.rb b/app/consumers/courses_consumer.rb new file mode 100644 index 0000000..5a8a384 --- /dev/null +++ b/app/consumers/courses_consumer.rb @@ -0,0 +1,13 @@ +require 'karafka' +require 'iodine' +require_relative 'application_consumer' + +class CourseConsumer < ApplicationConsumer + def consume + unless params.nil? + @notifications = params.to_s + ::Iodine::publish channel: "notifications", message: "#{@notifications}" + puts "SectionsConsumer sent message to websocket" + end + end +end diff --git a/app/consumers/sections_consumer.rb b/app/consumers/sections_consumer.rb index a849077..42b3203 100644 --- a/app/consumers/sections_consumer.rb +++ b/app/consumers/sections_consumer.rb @@ -1,8 +1,13 @@ require 'karafka' +require 'iodine' require_relative 'application_consumer' class SectionConsumer < ApplicationConsumer - def consume - puts params #print out the single message received - end + def consume + unless params.nil? + @notifications = params.to_s + ::Iodine::publish channel: "notifications", message: "#{@notifications}" + puts "SectionsConsumer sent message to websocket" + end + end end diff --git a/app/controllers/eventstream.rb b/app/controllers/eventstream.rb new file mode 100644 index 0000000..8d89cc6 --- /dev/null +++ b/app/controllers/eventstream.rb @@ -0,0 +1,28 @@ +require 'plezi' +require 'iodine' + +class EventStream + #@auto_dispatch = true + def index + render 'client' + end + + def on_open + puts "WS connection open" + ::Iodine::subscribe channel:"notifications" do + puts "I'm in!" + end + end + + #TODO + def on_message data + #::Iodine::write "#{@data}" + #puts data + end + + def on_close + ::Iodine::unsubscribe("notifications") + end +end +#test location: ws://localhost:3000/notifications/ + diff --git a/config.ru b/config.ru new file mode 100644 index 0000000..d90dd4d --- /dev/null +++ b/config.ru @@ -0,0 +1,7 @@ +# Default Rack interface +# encoding: UTF-8 +# load the application +load ::File.expand_path(File.join('..', 'app.rb'), __FILE__) + +run App +run Plezi.app diff --git a/entrypoint.sh b/entrypoint.sh new file mode 100644 index 0000000..2912b20 --- /dev/null +++ b/entrypoint.sh @@ -0,0 +1,2 @@ +nohup bundler exec iodine -p 4860 -www ./public -v > iodine.out 2>&1 & +bundle exec karafka server \ No newline at end of file diff --git a/iodine.out b/iodine.out new file mode 100644 index 0000000..7cb6797 --- /dev/null +++ b/iodine.out @@ -0,0 +1,20 @@ +* Listening on port 4860 + +Server is running 2 workers X 2 threads, press ^C to stop +Running Plezi version: 0.15.1 + +Starting up Iodine HTTP Server on port 4860: + * Ruby v.2.5.1 + * Iodine v.0.4.19 + * 1048576 max concurrent connections / open files + * Serving static files from ./public + +* 6 is running. +* 14 is running. +172.18.0.1 - - [Tue, 6 Aug 2018 03:14:14 GMT] "GET /notifications HTTP/1.1" 101 -- 300ms +Iodine caught an unprotected exception - LocalJumpError: no block given +/usr/src/app/app/controllers/eventstream.rb:12:in `subscribe' +/usr/src/app/app/controllers/eventstream.rb:12:in `on_open' +Iodine caught an unprotected exception - TypeError: wrong argument type String (expected Hash) +/usr/src/app/app/controllers/eventstream.rb:26:in `publish' +/usr/src/app/app/controllers/eventstream.rb:26:in `on_close' diff --git a/karafka.rb b/karafka.rb index bf9394e..dadb446 100644 --- a/karafka.rb +++ b/karafka.rb @@ -6,7 +6,8 @@ require 'bundler/setup' Bundler.require(:default, ENV['KARAFKA_ENV']) Karafka::Loader.load(Karafka::App.root) -require_relative 'app/consumers/sections_consumer.rb' +require_relative 'app/consumers/sections_consumer' +require_relative 'app/consumers/courses_consumer' # Ruby on Rails setup # Remove whole non-Rails setup that is above and uncomment the 4 lines below @@ -27,7 +28,6 @@ class KarafkaApp < Karafka::App # config.logger = Rails.logger end - after_init do |config| end @@ -38,6 +38,13 @@ class KarafkaApp < Karafka::App consumer SectionConsumer #Single message from section_change end end + topic :course_change do + consumer CourseConsumer + end end end + + + + KarafkaApp.boot! diff --git a/log/development.log b/log/development.log index 94ffb5d..dabd9ac 100644 --- a/log/development.log +++ b/log/development.log @@ -13906,3 +13906,170925 @@ I, [2018-06-21T20:17:51.352486 #5] INFO -- : 1 messages on section_change topic 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 +<<<<<<< HEAD +I, [2018-07-24T22:48:23.412498 #5] INFO -- : New topics added to target list: section_change +I, [2018-07-24T22:48:23.413774 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-07-24T22:48:23.417034 #5] INFO -- : New topics added to target list: course_change +I, [2018-07-24T22:48:23.417090 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-07-24T22:48:23.430322 #5] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.19.0.9:9094 +E, [2018-07-24T22:48:23.430610 #5] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.19.0.9:9094 +E, [2018-07-24T22:48:23.433017 #5] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.19.0.9:9094 +E, [2018-07-24T22:48:23.433208 #5] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.19.0.9:9094 +E, [2018-07-24T22:48:28.432860 #5] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: +- kafka://kafka:9094: Connection refused - connect(2) for 172.19.0.9:9094 +E, [2018-07-24T22:48:28.433745 #5] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: +- kafka://kafka:9094: Connection refused - connect(2) for 172.19.0.9:9094 +I, [2018-07-24T22:48:28.434480 #5] INFO -- : New topics added to target list: course_change +I, [2018-07-24T22:48:28.434524 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-07-24T22:48:28.439166 #5] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.19.0.9:9094 +E, [2018-07-24T22:48:28.439292 #5] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.19.0.9:9094 +I, [2018-07-24T22:48:28.439823 #5] INFO -- : New topics added to target list: section_change +I, [2018-07-24T22:48:28.439861 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-07-24T22:48:28.440878 #5] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.19.0.9:9094 +E, [2018-07-24T22:48:28.440971 #5] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.19.0.9:9094 +E, [2018-07-24T22:48:33.439791 #5] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: +- kafka://kafka:9094: Connection refused - connect(2) for 172.19.0.9:9094 +I, [2018-07-24T22:48:33.443796 #5] INFO -- : New topics added to target list: course_change +I, [2018-07-24T22:48:33.443859 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-07-24T22:48:33.444001 #5] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: +- kafka://kafka:9094: Connection refused - connect(2) for 172.19.0.9:9094 +I, [2018-07-24T22:48:33.445981 #5] INFO -- : New topics added to target list: section_change +I, [2018-07-24T22:48:33.446022 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-07-24T22:48:33.451319 #5] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.19.0.9:9094 +E, [2018-07-24T22:48:33.451444 #5] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.19.0.9:9094 +E, [2018-07-24T22:48:33.451693 #5] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.19.0.9:9094 +E, [2018-07-24T22:48:33.451768 #5] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.19.0.9:9094 +E, [2018-07-24T22:48:38.452439 #5] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: +- kafka://kafka:9094: Connection refused - connect(2) for 172.19.0.9:9094 +I, [2018-07-24T22:48:38.453225 #5] INFO -- : New topics added to target list: section_change +I, [2018-07-24T22:48:38.453276 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-07-24T22:48:38.453788 #5] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: +- kafka://kafka:9094: Connection refused - connect(2) for 172.19.0.9:9094 +I, [2018-07-24T22:48:38.454561 #5] INFO -- : New topics added to target list: course_change +I, [2018-07-24T22:48:38.454607 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-07-24T22:48:38.500240 #5] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-07-24T22:48:38.500462 #5] INFO -- : Joining group `notifications_notifications` +I, [2018-07-24T22:48:38.518688 #5] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-07-24T22:48:38.518889 #5] INFO -- : Joining group `notifications_course_change` +I, [2018-07-24T22:48:38.556971 #5] INFO -- : Will fetch at most 1048576 bytes at a time per partition from course_change +I, [2018-07-24T22:48:38.557151 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-07-24T22:48:38.558157 #5] INFO -- : Will fetch at most 1048576 bytes at a time per partition from section_change +I, [2018-07-24T22:48:38.558238 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-07-24T22:48:38.570189 #5] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-07-24T22:48:38.570299 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T22:48:38.571624 #5] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-07-24T22:48:38.571716 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-07-24T22:48:38.573164 #5] ERROR -- : Failed to find coordinator for group `notifications_notifications`; retrying... +E, [2018-07-24T22:48:38.574109 #5] ERROR -- : Failed to find coordinator for group `notifications_course_change`; retrying... +I, [2018-07-24T22:48:39.571819 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T22:48:39.572722 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T22:48:39.573545 #5] INFO -- : Joining group `notifications_notifications` +I, [2018-07-24T22:48:39.575888 #5] INFO -- : Joining group `notifications_course_change` +E, [2018-07-24T22:48:39.597456 #5] ERROR -- : Failed to find coordinator for group `notifications_course_change`; retrying... +E, [2018-07-24T22:48:39.604311 #5] ERROR -- : Failed to find coordinator for group `notifications_notifications`; retrying... +I, [2018-07-24T22:48:40.573023 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T22:48:40.573149 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T22:48:40.598754 #5] INFO -- : Joining group `notifications_course_change` +I, [2018-07-24T22:48:40.605241 #5] INFO -- : Joining group `notifications_notifications` +I, [2018-07-24T22:48:41.574033 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T22:48:41.574148 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T22:48:42.574375 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T22:48:42.574488 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T22:48:43.574833 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T22:48:43.574987 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T22:48:44.576597 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T22:48:44.576716 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T22:48:45.577184 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T22:48:45.577366 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T22:48:46.577846 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T22:48:46.582307 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T22:48:47.578699 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T22:48:47.583330 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:31:32.094419 #5] INFO -- : New topics added to target list: course_change +I, [2018-07-24T23:31:32.094996 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-07-24T23:31:32.111750 #5] INFO -- : New topics added to target list: section_change +I, [2018-07-24T23:31:32.111909 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-07-24T23:31:32.131869 #5] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.19.0.12:9094 +E, [2018-07-24T23:31:32.132206 #5] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.19.0.12:9094 +E, [2018-07-24T23:31:32.161555 #5] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.19.0.12:9094 +E, [2018-07-24T23:31:32.161703 #5] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.19.0.12:9094 +E, [2018-07-24T23:31:37.136431 #5] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: +- kafka://kafka:9094: Connection refused - connect(2) for 172.19.0.12:9094 +I, [2018-07-24T23:31:37.137475 #5] INFO -- : New topics added to target list: section_change +I, [2018-07-24T23:31:37.137521 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-07-24T23:31:37.163881 #5] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: +- kafka://kafka:9094: Connection refused - connect(2) for 172.19.0.12:9094 +I, [2018-07-24T23:31:37.164895 #5] INFO -- : New topics added to target list: course_change +I, [2018-07-24T23:31:37.164955 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-07-24T23:31:37.199229 #5] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.19.0.12:9094 +E, [2018-07-24T23:31:37.199371 #5] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.19.0.12:9094 +E, [2018-07-24T23:31:37.199517 #5] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.19.0.12:9094 +E, [2018-07-24T23:31:37.199637 #5] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.19.0.12:9094 +E, [2018-07-24T23:31:42.200258 #5] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: +- kafka://kafka:9094: Connection refused - connect(2) for 172.19.0.12:9094 +I, [2018-07-24T23:31:42.201248 #5] INFO -- : New topics added to target list: section_change +I, [2018-07-24T23:31:42.201313 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-07-24T23:31:42.203657 #5] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: +- kafka://kafka:9094: Connection refused - connect(2) for 172.19.0.12:9094 +I, [2018-07-24T23:31:42.204747 #5] INFO -- : New topics added to target list: course_change +I, [2018-07-24T23:31:42.204823 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-07-24T23:31:42.209938 #5] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.19.0.12:9094 +E, [2018-07-24T23:31:42.210084 #5] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.19.0.12:9094 +E, [2018-07-24T23:31:42.210263 #5] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.19.0.12:9094 +E, [2018-07-24T23:31:42.210351 #5] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.19.0.12:9094 +E, [2018-07-24T23:31:47.280361 #5] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: +- kafka://kafka:9094: Connection refused - connect(2) for 172.19.0.12:9094 +I, [2018-07-24T23:31:47.294021 #5] INFO -- : New topics added to target list: section_change +I, [2018-07-24T23:31:47.294123 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-07-24T23:31:47.224681 #5] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: +- kafka://kafka:9094: Connection refused - connect(2) for 172.19.0.12:9094 +E, [2018-07-24T23:31:47.401301 #5] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.19.0.12:9094 +E, [2018-07-24T23:31:47.401688 #5] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.19.0.12:9094 +I, [2018-07-24T23:31:47.408622 #5] INFO -- : New topics added to target list: course_change +I, [2018-07-24T23:31:47.408707 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-07-24T23:31:47.427247 #5] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.19.0.12:9094 +E, [2018-07-24T23:31:47.427395 #5] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.19.0.12:9094 +E, [2018-07-24T23:31:52.403051 #5] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: +- kafka://kafka:9094: Connection refused - connect(2) for 172.19.0.12:9094 +I, [2018-07-24T23:31:52.406199 #5] INFO -- : New topics added to target list: section_change +I, [2018-07-24T23:31:52.407589 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-07-24T23:31:52.409485 #5] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.19.0.12:9094 +E, [2018-07-24T23:31:52.409669 #5] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.19.0.12:9094 +E, [2018-07-24T23:31:52.428506 #5] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: +- kafka://kafka:9094: Connection refused - connect(2) for 172.19.0.12:9094 +I, [2018-07-24T23:31:52.429645 #5] INFO -- : New topics added to target list: course_change +I, [2018-07-24T23:31:52.429705 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-07-24T23:31:52.431649 #5] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.19.0.12:9094 +E, [2018-07-24T23:31:52.431739 #5] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.19.0.12:9094 +E, [2018-07-24T23:31:57.444428 #5] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: +- kafka://kafka:9094: Connection refused - connect(2) for 172.19.0.12:9094 +I, [2018-07-24T23:31:57.445611 #5] INFO -- : New topics added to target list: course_change +I, [2018-07-24T23:31:57.445991 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-07-24T23:31:57.448824 #5] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: +- kafka://kafka:9094: Connection refused - connect(2) for 172.19.0.12:9094 +I, [2018-07-24T23:31:57.449728 #5] INFO -- : New topics added to target list: section_change +I, [2018-07-24T23:31:57.449806 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-07-24T23:31:57.918222 #5] ERROR -- : No brokers in cluster +E, [2018-07-24T23:31:57.934096 #5] ERROR -- : No brokers in cluster +E, [2018-07-24T23:32:02.923994 #5] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: + +I, [2018-07-24T23:32:02.925269 #5] INFO -- : New topics added to target list: course_change +I, [2018-07-24T23:32:02.925371 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-07-24T23:32:02.934968 #5] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: + +I, [2018-07-24T23:32:02.945513 #5] INFO -- : New topics added to target list: section_change +I, [2018-07-24T23:32:02.945612 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-07-24T23:32:02.991983 #5] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-07-24T23:32:02.993408 #5] INFO -- : Joining group `notifications_notifications` +I, [2018-07-24T23:32:02.996476 #5] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-07-24T23:32:03.001157 #5] INFO -- : Joining group `notifications_course_change` +I, [2018-07-24T23:32:03.026667 #5] INFO -- : Will fetch at most 1048576 bytes at a time per partition from course_change +I, [2018-07-24T23:50:22.201407 #5] INFO -- : New topics added to target list: course_change +I, [2018-07-24T23:50:22.201526 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-07-24T23:50:22.202732 #5] INFO -- : New topics added to target list: section_change +I, [2018-07-24T23:50:22.202784 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-07-24T23:50:22.215044 #5] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.19.0.14:9094 +E, [2018-07-24T23:50:22.219554 #5] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.19.0.14:9094 +E, [2018-07-24T23:50:22.219746 #5] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.19.0.14:9094 +E, [2018-07-24T23:50:22.219814 #5] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.19.0.14:9094 +E, [2018-07-24T23:50:27.220586 #5] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: +- kafka://kafka:9094: Connection refused - connect(2) for 172.19.0.14:9094 +I, [2018-07-24T23:50:27.222337 #5] INFO -- : New topics added to target list: section_change +I, [2018-07-24T23:50:27.222401 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-07-24T23:50:27.222806 #5] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: +- kafka://kafka:9094: Connection refused - connect(2) for 172.19.0.14:9094 +I, [2018-07-24T23:50:27.223725 #5] INFO -- : New topics added to target list: course_change +I, [2018-07-24T23:50:27.223774 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-07-24T23:50:27.224199 #5] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.19.0.14:9094 +E, [2018-07-24T23:50:27.224300 #5] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.19.0.14:9094 +E, [2018-07-24T23:50:27.229045 #5] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.19.0.14:9094 +E, [2018-07-24T23:50:27.237228 #5] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.19.0.14:9094 +E, [2018-07-24T23:50:32.224914 #5] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: +- kafka://kafka:9094: Connection refused - connect(2) for 172.19.0.14:9094 +I, [2018-07-24T23:50:32.225701 #5] INFO -- : New topics added to target list: section_change +I, [2018-07-24T23:50:32.225759 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-07-24T23:50:32.226806 #5] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.19.0.14:9094 +E, [2018-07-24T23:50:32.226918 #5] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.19.0.14:9094 +E, [2018-07-24T23:50:32.237648 #5] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: +- kafka://kafka:9094: Connection refused - connect(2) for 172.19.0.14:9094 +I, [2018-07-24T23:50:32.238361 #5] INFO -- : New topics added to target list: course_change +I, [2018-07-24T23:50:32.238409 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-07-24T23:50:32.239264 #5] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.19.0.14:9094 +E, [2018-07-24T23:50:32.239353 #5] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.19.0.14:9094 +E, [2018-07-24T23:50:37.228126 #5] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: +- kafka://kafka:9094: Connection refused - connect(2) for 172.19.0.14:9094 +I, [2018-07-24T23:50:37.229348 #5] INFO -- : New topics added to target list: section_change +I, [2018-07-24T23:50:37.229419 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-07-24T23:50:37.239649 #5] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: +- kafka://kafka:9094: Connection refused - connect(2) for 172.19.0.14:9094 +I, [2018-07-24T23:50:37.243198 #5] INFO -- : New topics added to target list: course_change +I, [2018-07-24T23:50:37.243260 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-07-24T23:50:37.372879 #5] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-07-24T23:50:37.373089 #5] INFO -- : Joining group `notifications_course_change` +I, [2018-07-24T23:50:37.446083 #5] INFO -- : Will fetch at most 1048576 bytes at a time per partition from course_change +I, [2018-07-24T23:50:37.448482 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-07-24T23:50:37.460383 #5] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-07-24T23:50:37.460736 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:50:37.481988 #5] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-07-24T23:50:37.482195 #5] INFO -- : Joining group `notifications_notifications` +I, [2018-07-24T23:50:37.531436 #5] INFO -- : Will fetch at most 1048576 bytes at a time per partition from section_change +I, [2018-07-24T23:50:37.531618 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-07-24T23:50:37.539474 #5] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-07-24T23:50:37.539603 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:50:38.461706 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:50:38.539966 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:50:39.462207 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:50:39.540377 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:50:40.464774 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:50:40.545721 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:50:41.465512 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:50:41.526177 #5] INFO -- : Joined group `notifications_course_change` with member id `notifications-51650456-2b4e-412a-b6ac-74930ca1b463` +I, [2018-07-24T23:50:41.526259 #5] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-07-24T23:50:41.548126 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:50:41.713631 #5] INFO -- : Joined group `notifications_notifications` with member id `notifications-cfd5f1b8-8e29-42b5-bee5-696c2ec2df3d` +I, [2018-07-24T23:50:41.713700 #5] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-07-24T23:50:42.468199 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:50:42.529004 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-07-24T23:50:42.542852 #5] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-07-24T23:50:42.548480 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:50:42.663446 #5] INFO -- : Partitions assigned for `course_change`: 0 +I, [2018-07-24T23:50:42.714549 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-07-24T23:50:42.734424 #5] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-07-24T23:50:42.766365 #5] INFO -- : Partitions assigned for `section_change`: 0 +I, [2018-07-24T23:50:43.468567 #5] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-07-24T23:50:43.468790 #5] INFO -- : New topics added to target list: course_change +I, [2018-07-24T23:50:43.468827 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-07-24T23:50:43.481114 #5] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-07-24T23:50:43.551200 #5] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-07-24T23:50:43.551333 #5] INFO -- : New topics added to target list: section_change +I, [2018-07-24T23:50:43.552327 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-07-24T23:50:43.580918 #5] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +E, [2018-07-24T23:50:44.819520 #5] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- NoMethodError: undefined method `on_message' for EventStream:Class +/usr/src/app/app/consumers/courses_consumer.rb:10:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-07-24T23:50:44.819612 #5] INFO -- : Leaving group `notifications_course_change` +E, [2018-07-24T23:50:44.952307 #5] ERROR -- : Client fetch loop error: undefined method `on_message' for EventStream:Class +I, [2018-07-24T23:50:44.952571 #5] INFO -- : Joining group `notifications_course_change` +E, [2018-07-24T23:50:44.965261 #5] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-07-24T23:50:45.037260 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:50:45.966172 #5] INFO -- : Joining group `notifications_course_change` +I, [2018-07-24T23:50:45.981968 #5] INFO -- : Joined group `notifications_course_change` with member id `notifications-f8dc76a2-e372-4842-9072-61fc9746cd3b` +I, [2018-07-24T23:50:45.982037 #5] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-07-24T23:50:45.988053 #5] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-07-24T23:50:45.988164 #5] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-07-24T23:50:46.044848 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-07-24T23:50:46.824995 #5] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- NoMethodError: undefined method `on_message' for EventStream:Class +/usr/src/app/app/consumers/sections_consumer.rb:10:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-07-24T23:50:46.825112 #5] INFO -- : Leaving group `notifications_notifications` +E, [2018-07-24T23:50:46.842061 #5] ERROR -- : Client fetch loop error: undefined method `on_message' for EventStream:Class +I, [2018-07-24T23:50:46.842784 #5] INFO -- : Joining group `notifications_notifications` +I, [2018-07-24T23:50:46.847005 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-07-24T23:50:46.847477 #5] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-07-24T23:50:47.047243 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:50:47.848345 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:50:47.848120 #5] INFO -- : Joining group `notifications_notifications` +I, [2018-07-24T23:50:47.890036 #5] INFO -- : Joined group `notifications_notifications` with member id `notifications-6a8efd16-dcc7-435c-8ebb-028b5a1280b7` +I, [2018-07-24T23:50:47.890115 #5] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-07-24T23:50:47.909598 #5] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-07-24T23:50:47.909680 #5] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-07-24T23:50:48.047650 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:50:48.848967 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:50:49.048569 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:50:49.849392 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:50:50.049218 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:50:50.850048 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:50:51.049572 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:50:51.850552 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:50:52.050097 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:50:52.852131 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:50:53.052389 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:50:53.853002 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:50:54.056152 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:50:54.853615 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:50:55.061646 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:50:55.854082 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:50:56.034006 #5] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-07-24T23:50:56.061974 #5] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-07-24T23:50:56.854804 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:50:57.855371 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:50:57.965779 #5] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +E, [2018-07-24T23:50:58.040203 #5] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- NoMethodError: undefined method `on_message' for EventStream:Class +/usr/src/app/app/consumers/courses_consumer.rb:10:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-07-24T23:50:58.040277 #5] INFO -- : Leaving group `notifications_course_change` +E, [2018-07-24T23:50:58.043425 #5] ERROR -- : Client fetch loop error: undefined method `on_message' for EventStream:Class +I, [2018-07-24T23:50:58.043728 #5] INFO -- : Joining group `notifications_course_change` +E, [2018-07-24T23:50:58.047067 #5] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-07-24T23:50:58.237359 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:50:58.856361 #5] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-07-24T23:50:59.048225 #5] INFO -- : Joining group `notifications_course_change` +I, [2018-07-24T23:50:59.063783 #5] INFO -- : Joined group `notifications_course_change` with member id `notifications-bd8b24f0-8cd3-434c-870d-838cb9d5fc70` +I, [2018-07-24T23:50:59.063862 #5] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-07-24T23:50:59.072919 #5] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-07-24T23:50:59.073009 #5] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-07-24T23:50:59.238908 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-07-24T23:50:59.974284 #5] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- NoMethodError: undefined method `on_message' for EventStream:Class +/usr/src/app/app/consumers/sections_consumer.rb:10:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-07-24T23:50:59.977374 #5] INFO -- : Leaving group `notifications_notifications` +E, [2018-07-24T23:50:59.982250 #5] ERROR -- : Client fetch loop error: undefined method `on_message' for EventStream:Class +I, [2018-07-24T23:50:59.982455 #5] INFO -- : Joining group `notifications_notifications` +I, [2018-07-24T23:50:59.986178 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-07-24T23:50:59.988961 #5] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-07-24T23:51:00.241038 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:51:00.987260 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:51:00.989234 #5] INFO -- : Joining group `notifications_notifications` +I, [2018-07-24T23:51:00.999962 #5] INFO -- : Joined group `notifications_notifications` with member id `notifications-f69d4f9d-8110-4f88-8751-020e18d6f2c5` +I, [2018-07-24T23:51:01.000096 #5] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-07-24T23:51:01.004549 #5] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-07-24T23:51:01.004667 #5] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-07-24T23:51:01.241967 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:51:01.988161 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:51:02.242432 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:51:02.989207 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:51:03.242874 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:51:03.989582 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:51:04.243433 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:51:04.989873 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:51:05.244569 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:51:05.990483 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:51:06.244942 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:51:06.991228 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:51:07.245389 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:51:07.991638 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:51:08.246074 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:51:08.992274 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:51:09.092570 #5] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-07-24T23:51:09.255376 #5] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-07-24T23:51:09.993175 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:51:10.993998 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:51:11.021745 #5] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +E, [2018-07-24T23:51:11.102022 #5] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- NoMethodError: undefined method `on_message' for EventStream:Class +/usr/src/app/app/consumers/courses_consumer.rb:10:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-07-24T23:51:11.102098 #5] INFO -- : Leaving group `notifications_course_change` +E, [2018-07-24T23:51:11.107506 #5] ERROR -- : Client fetch loop error: undefined method `on_message' for EventStream:Class +I, [2018-07-24T23:51:11.107705 #5] INFO -- : Joining group `notifications_course_change` +E, [2018-07-24T23:51:11.109285 #5] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-07-24T23:51:11.174070 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:51:11.994538 #5] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-07-24T23:51:12.109580 #5] INFO -- : Joining group `notifications_course_change` +I, [2018-07-24T23:51:12.118089 #5] INFO -- : Joined group `notifications_course_change` with member id `notifications-a579b7d0-4a64-4f86-8253-5ebf32aa7ece` +I, [2018-07-24T23:51:12.118140 #5] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-07-24T23:51:12.129321 #5] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-07-24T23:51:12.129417 #5] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-07-24T23:51:12.174545 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-07-24T23:51:13.026849 #5] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- NoMethodError: undefined method `on_message' for EventStream:Class +/usr/src/app/app/consumers/sections_consumer.rb:10:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-07-24T23:51:13.028284 #5] INFO -- : Leaving group `notifications_notifications` +E, [2018-07-24T23:51:13.046125 #5] ERROR -- : Client fetch loop error: undefined method `on_message' for EventStream:Class +I, [2018-07-24T23:51:13.046487 #5] INFO -- : Joining group `notifications_notifications` +E, [2018-07-24T23:51:13.048698 #5] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-07-24T23:51:13.062987 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:51:13.175824 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:51:14.049190 #5] INFO -- : Joining group `notifications_notifications` +I, [2018-07-24T23:51:14.065127 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:51:14.168421 #5] INFO -- : Joined group `notifications_notifications` with member id `notifications-02602a65-febc-4220-9e3f-ac086c8e4fae` +I, [2018-07-24T23:51:14.168492 #5] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-07-24T23:51:14.182026 #5] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-07-24T23:51:14.182116 #5] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-07-24T23:51:14.202971 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:51:15.067247 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:51:15.209783 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:51:16.068138 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:51:16.219787 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:51:17.070895 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:51:17.226876 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:51:18.071749 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:51:18.238747 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:51:19.072403 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:51:19.239323 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:51:20.076289 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:51:20.240084 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:51:21.076742 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:51:21.242021 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:51:22.077760 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:51:22.196217 #5] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-07-24T23:51:22.242722 #5] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-07-24T23:51:23.080925 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:51:24.082834 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:51:24.212932 #5] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +E, [2018-07-24T23:51:24.221095 #5] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- NoMethodError: undefined method `on_message' for EventStream:Class +/usr/src/app/app/consumers/courses_consumer.rb:10:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-07-24T23:51:24.221235 #5] INFO -- : Leaving group `notifications_course_change` +E, [2018-07-24T23:51:24.243230 #5] ERROR -- : Client fetch loop error: undefined method `on_message' for EventStream:Class +I, [2018-07-24T23:51:24.243507 #5] INFO -- : Joining group `notifications_course_change` +I, [2018-07-24T23:51:24.245175 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-07-24T23:51:24.260029 #5] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-07-24T23:51:25.083591 #5] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-07-24T23:51:25.248082 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:51:25.260316 #5] INFO -- : Joining group `notifications_course_change` +I, [2018-07-24T23:51:25.281412 #5] INFO -- : Joined group `notifications_course_change` with member id `notifications-26673ec9-8ac8-4d59-bb71-b48ab1dcd9c7` +I, [2018-07-24T23:51:25.281586 #5] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-07-24T23:51:25.287149 #5] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-07-24T23:51:25.287245 #5] WARN -- : Not fetching from course_change/0 due to pause +E, [2018-07-24T23:51:26.236710 #5] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- NoMethodError: undefined method `on_message' for EventStream:Class +/usr/src/app/app/consumers/sections_consumer.rb:10:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-07-24T23:51:26.259814 #5] INFO -- : Leaving group `notifications_notifications` +I, [2018-07-24T23:51:26.259615 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-07-24T23:51:26.302945 #5] ERROR -- : Client fetch loop error: undefined method `on_message' for EventStream:Class +I, [2018-07-24T23:51:26.303649 #5] INFO -- : Joining group `notifications_notifications` +E, [2018-07-24T23:51:26.304927 #5] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-07-24T23:51:26.342633 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:51:27.274602 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:51:27.305196 #5] INFO -- : Joining group `notifications_notifications` +I, [2018-07-24T23:51:27.319336 #5] INFO -- : Joined group `notifications_notifications` with member id `notifications-dee8e005-3f1d-4663-9edb-aaf2537b0ef2` +I, [2018-07-24T23:51:27.319405 #5] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-07-24T23:51:27.325421 #5] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-07-24T23:51:27.325542 #5] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-07-24T23:51:27.343844 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:51:28.286827 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:51:28.344486 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:51:29.287249 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:51:29.345362 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:51:30.287585 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:51:30.346255 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:51:31.288149 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:51:31.347545 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:51:32.288571 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:51:32.348922 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:51:33.290695 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:51:33.349370 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:51:34.293435 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:51:34.349749 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:51:35.299775 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:51:35.309450 #5] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-07-24T23:51:35.350394 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:51:36.305763 #5] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-07-24T23:51:36.351150 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-07-24T23:51:37.317514 #5] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- NoMethodError: undefined method `on_message' for EventStream:Class +/usr/src/app/app/consumers/courses_consumer.rb:10:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-07-24T23:51:37.317574 #5] INFO -- : Leaving group `notifications_course_change` +I, [2018-07-24T23:51:37.334073 #5] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +E, [2018-07-24T23:51:37.334472 #5] ERROR -- : Client fetch loop error: undefined method `on_message' for EventStream:Class +I, [2018-07-24T23:51:37.334616 #5] INFO -- : Joining group `notifications_course_change` +E, [2018-07-24T23:51:37.337859 #5] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-07-24T23:51:37.352246 #5] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-07-24T23:51:37.970452 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:51:38.338313 #5] INFO -- : Joining group `notifications_course_change` +I, [2018-07-24T23:51:38.342549 #5] INFO -- : Joined group `notifications_course_change` with member id `notifications-e964d09c-f72d-4a0a-b2ff-c9c40157d447` +I, [2018-07-24T23:51:38.342597 #5] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-07-24T23:51:38.345284 #5] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-07-24T23:51:38.345345 #5] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-07-24T23:51:38.971005 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-07-24T23:51:39.343478 #5] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- NoMethodError: undefined method `on_message' for EventStream:Class +/usr/src/app/app/consumers/sections_consumer.rb:10:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-07-24T23:51:39.347445 #5] INFO -- : Leaving group `notifications_notifications` +E, [2018-07-24T23:51:39.357690 #5] ERROR -- : Client fetch loop error: undefined method `on_message' for EventStream:Class +I, [2018-07-24T23:51:39.357933 #5] INFO -- : Joining group `notifications_notifications` +E, [2018-07-24T23:51:39.361486 #5] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-07-24T23:51:39.372549 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:51:39.971961 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:51:40.361845 #5] INFO -- : Joining group `notifications_notifications` +I, [2018-07-24T23:51:40.365006 #5] INFO -- : Joined group `notifications_notifications` with member id `notifications-ebc5324e-e014-47c1-9158-518b19d09f89` +I, [2018-07-24T23:51:40.365051 #5] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-07-24T23:51:40.372464 #5] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-07-24T23:51:40.372568 #5] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-07-24T23:51:40.373120 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:51:40.972931 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:51:41.373642 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:51:41.974058 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:51:42.374575 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:51:42.974386 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:51:43.375231 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:51:43.975038 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:51:44.375974 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:51:44.975809 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:51:45.376375 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:51:45.978001 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:51:46.376853 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:51:46.978407 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:51:47.377291 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:51:47.978909 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:51:48.358917 #5] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-07-24T23:51:48.377669 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:51:48.979179 #5] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-07-24T23:51:49.378029 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-07-24T23:51:50.364897 #5] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- NoMethodError: undefined method `on_message' for EventStream:Class +/usr/src/app/app/consumers/courses_consumer.rb:10:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-07-24T23:51:50.365193 #5] INFO -- : Leaving group `notifications_course_change` +E, [2018-07-24T23:51:50.371912 #5] ERROR -- : Client fetch loop error: undefined method `on_message' for EventStream:Class +I, [2018-07-24T23:51:50.372387 #5] INFO -- : Joining group `notifications_course_change` +E, [2018-07-24T23:51:50.374951 #5] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-07-24T23:51:50.378416 #5] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-07-24T23:51:50.381224 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:51:50.578079 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:51:51.376853 #5] INFO -- : Joining group `notifications_course_change` +I, [2018-07-24T23:51:51.380076 #5] INFO -- : Joined group `notifications_course_change` with member id `notifications-c37fb79d-9c15-4a5c-8c8d-aa6f2aa56582` +I, [2018-07-24T23:51:51.380124 #5] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-07-24T23:51:51.381532 #5] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-07-24T23:51:51.382489 #5] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-07-24T23:51:51.382547 #5] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-07-24T23:51:51.578453 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-07-24T23:51:52.389993 #5] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- NoMethodError: undefined method `on_message' for EventStream:Class +/usr/src/app/app/consumers/sections_consumer.rb:10:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-07-24T23:51:52.393300 #5] INFO -- : Leaving group `notifications_notifications` +E, [2018-07-24T23:51:52.396772 #5] ERROR -- : Client fetch loop error: undefined method `on_message' for EventStream:Class +I, [2018-07-24T23:51:52.397248 #5] INFO -- : Joining group `notifications_notifications` +E, [2018-07-24T23:51:52.419141 #5] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-07-24T23:51:52.445353 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:51:52.579207 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:51:53.419600 #5] INFO -- : Joining group `notifications_notifications` +I, [2018-07-24T23:51:53.425383 #5] INFO -- : Joined group `notifications_notifications` with member id `notifications-2f7c8170-25f3-4c45-9249-66dcca239384` +I, [2018-07-24T23:51:53.425716 #5] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-07-24T23:51:53.435462 #5] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-07-24T23:51:53.435576 #5] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-07-24T23:51:53.445860 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:51:53.580747 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:51:54.446289 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:51:54.581200 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:51:55.446734 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:51:55.581537 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:51:56.447316 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:51:56.582759 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:51:57.448082 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:51:57.583305 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:51:58.448361 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:51:58.583874 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:51:59.448856 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:51:59.584251 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:52:00.449239 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:52:00.585253 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:52:01.394941 #5] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-07-24T23:52:01.449577 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:52:01.585746 #5] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-07-24T23:52:02.449963 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-07-24T23:52:03.407035 #5] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- NoMethodError: undefined method `on_message' for EventStream:Class +/usr/src/app/app/consumers/courses_consumer.rb:10:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-07-24T23:52:03.407109 #5] INFO -- : Leaving group `notifications_course_change` +E, [2018-07-24T23:52:03.409825 #5] ERROR -- : Client fetch loop error: undefined method `on_message' for EventStream:Class +I, [2018-07-24T23:52:03.410197 #5] INFO -- : Joining group `notifications_course_change` +E, [2018-07-24T23:52:03.412053 #5] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-07-24T23:52:03.441451 #5] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-07-24T23:52:03.450248 #5] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-07-24T23:52:04.027254 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:52:04.412417 #5] INFO -- : Joining group `notifications_course_change` +I, [2018-07-24T23:52:04.414570 #5] INFO -- : Joined group `notifications_course_change` with member id `notifications-3d201a83-e9ff-4672-bb41-aa4f2f972bc1` +I, [2018-07-24T23:52:04.414613 #5] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-07-24T23:52:04.416201 #5] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-07-24T23:52:04.416261 #5] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-07-24T23:52:05.028067 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-07-24T23:52:05.445443 #5] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- NoMethodError: undefined method `on_message' for EventStream:Class +/usr/src/app/app/consumers/sections_consumer.rb:10:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-07-24T23:52:05.447481 #5] INFO -- : Leaving group `notifications_notifications` +E, [2018-07-24T23:52:05.449372 #5] ERROR -- : Client fetch loop error: undefined method `on_message' for EventStream:Class +I, [2018-07-24T23:52:05.449567 #5] INFO -- : Joining group `notifications_notifications` +E, [2018-07-24T23:52:05.453675 #5] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-07-24T23:52:05.544048 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:52:06.028607 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:52:06.454433 #5] INFO -- : Joining group `notifications_notifications` +I, [2018-07-24T23:52:06.462545 #5] INFO -- : Joined group `notifications_notifications` with member id `notifications-c1c95b3a-d94f-4eb3-84ec-9d30a1d8730d` +I, [2018-07-24T23:52:06.462599 #5] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-07-24T23:52:06.464949 #5] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-07-24T23:52:06.465009 #5] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-07-24T23:52:06.545679 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:52:07.029088 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:52:07.546777 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:52:08.029638 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:52:08.547148 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:52:09.030420 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:52:09.547677 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:52:10.030919 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:52:10.548623 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:52:11.031923 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:52:11.549062 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:52:12.032410 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:52:12.549546 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:52:13.033711 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:52:13.549842 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:52:14.034218 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:52:14.444260 #5] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-07-24T23:52:14.550621 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:52:15.036131 #5] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-07-24T23:52:15.551653 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-07-24T23:52:16.450999 #5] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- NoMethodError: undefined method `on_message' for EventStream:Class +/usr/src/app/app/consumers/courses_consumer.rb:10:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-07-24T23:52:16.451062 #5] INFO -- : Leaving group `notifications_course_change` +E, [2018-07-24T23:52:16.452755 #5] ERROR -- : Client fetch loop error: undefined method `on_message' for EventStream:Class +I, [2018-07-24T23:52:16.452922 #5] INFO -- : Joining group `notifications_course_change` +E, [2018-07-24T23:52:16.457616 #5] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-07-24T23:52:16.470893 #5] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-07-24T23:52:16.553030 #5] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-07-24T23:52:16.892994 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:52:17.458005 #5] INFO -- : Joining group `notifications_course_change` +I, [2018-07-24T23:52:17.462012 #5] INFO -- : Joined group `notifications_course_change` with member id `notifications-2b235ed6-592e-416f-8fb1-8ff8e7bf58a6` +I, [2018-07-24T23:52:17.462055 #5] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-07-24T23:52:17.466015 #5] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-07-24T23:52:17.466077 #5] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-07-24T23:52:17.893302 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-07-24T23:52:18.477195 #5] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- NoMethodError: undefined method `on_message' for EventStream:Class +/usr/src/app/app/consumers/sections_consumer.rb:10:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-07-24T23:52:18.479690 #5] INFO -- : Leaving group `notifications_notifications` +E, [2018-07-24T23:52:18.482616 #5] ERROR -- : Client fetch loop error: undefined method `on_message' for EventStream:Class +I, [2018-07-24T23:52:18.483124 #5] INFO -- : Joining group `notifications_notifications` +E, [2018-07-24T23:52:18.489460 #5] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-07-24T23:52:18.639176 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:52:18.893682 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:52:19.492584 #5] INFO -- : Joining group `notifications_notifications` +I, [2018-07-24T23:52:19.495567 #5] INFO -- : Joined group `notifications_notifications` with member id `notifications-238db3ad-ac53-4351-a47e-466c51834d6c` +I, [2018-07-24T23:52:19.495627 #5] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-07-24T23:52:19.498616 #5] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-07-24T23:52:19.498702 #5] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-07-24T23:52:19.639518 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:52:19.894715 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:52:20.640245 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:52:20.895354 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:52:21.641071 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:52:21.896232 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:52:22.641496 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:52:22.897258 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:52:23.642563 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:52:23.898932 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:52:24.643246 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:52:24.899404 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:52:25.644276 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:52:25.900087 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:52:26.645027 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:52:26.900538 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:52:27.485773 #5] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-07-24T23:52:27.646570 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:52:27.901369 #5] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-07-24T23:52:28.649726 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-07-24T23:52:29.500361 #5] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- NoMethodError: undefined method `on_message' for EventStream:Class +/usr/src/app/app/consumers/courses_consumer.rb:10:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-07-24T23:52:29.500423 #5] INFO -- : Leaving group `notifications_course_change` +E, [2018-07-24T23:52:29.503746 #5] ERROR -- : Client fetch loop error: undefined method `on_message' for EventStream:Class +I, [2018-07-24T23:52:29.503896 #5] INFO -- : Joining group `notifications_course_change` +I, [2018-07-24T23:52:29.504200 #5] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +E, [2018-07-24T23:52:29.509244 #5] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-07-24T23:52:29.650757 #5] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-07-24T23:52:29.735647 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:52:30.509482 #5] INFO -- : Joining group `notifications_course_change` +I, [2018-07-24T23:52:30.512301 #5] INFO -- : Joined group `notifications_course_change` with member id `notifications-09ce0f74-a882-49a0-8c11-a6976c4fa339` +I, [2018-07-24T23:52:30.512351 #5] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-07-24T23:52:30.514432 #5] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-07-24T23:52:30.514539 #5] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-07-24T23:52:30.736202 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-07-24T23:52:31.508617 #5] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- NoMethodError: undefined method `on_message' for EventStream:Class +/usr/src/app/app/consumers/sections_consumer.rb:10:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-07-24T23:52:31.511282 #5] INFO -- : Leaving group `notifications_notifications` +E, [2018-07-24T23:52:31.513354 #5] ERROR -- : Client fetch loop error: undefined method `on_message' for EventStream:Class +I, [2018-07-24T23:52:31.513530 #5] INFO -- : Joining group `notifications_notifications` +E, [2018-07-24T23:52:31.514271 #5] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-07-24T23:52:31.649934 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:52:31.736554 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:52:32.515375 #5] INFO -- : Joining group `notifications_notifications` +I, [2018-07-24T23:52:32.525612 #5] INFO -- : Joined group `notifications_notifications` with member id `notifications-b8afb89f-c602-4ff2-8074-1d9bf0875bfa` +I, [2018-07-24T23:52:32.525678 #5] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-07-24T23:52:32.533827 #5] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-07-24T23:52:32.533897 #5] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-07-24T23:52:32.650523 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:52:32.736979 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:52:33.650891 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:52:33.737480 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:52:34.651298 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:52:34.738336 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:52:35.651728 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:52:35.738882 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:52:36.741695 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:52:36.743355 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:52:37.742219 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:52:37.743806 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:52:38.742606 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:52:38.744698 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:52:39.742963 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:52:39.745510 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:52:40.565779 #5] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-07-24T23:52:40.743426 #5] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-07-24T23:52:40.746432 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:52:41.747290 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-07-24T23:52:42.582004 #5] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- NoMethodError: undefined method `on_message' for EventStream:Class +/usr/src/app/app/consumers/courses_consumer.rb:10:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-07-24T23:52:42.582477 #5] INFO -- : Leaving group `notifications_course_change` +E, [2018-07-24T23:52:42.589585 #5] ERROR -- : Client fetch loop error: undefined method `on_message' for EventStream:Class +I, [2018-07-24T23:52:42.589963 #5] INFO -- : Joining group `notifications_course_change` +E, [2018-07-24T23:52:42.591820 #5] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-07-24T23:52:42.747660 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:52:42.816402 #5] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-07-24T23:52:43.057752 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:52:43.592699 #5] INFO -- : Joining group `notifications_course_change` +I, [2018-07-24T23:52:43.596747 #5] INFO -- : Joined group `notifications_course_change` with member id `notifications-a7277623-4f16-46f6-a41d-9f4736de478a` +I, [2018-07-24T23:52:43.596791 #5] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-07-24T23:52:43.599351 #5] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-07-24T23:52:43.599412 #5] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-07-24T23:52:43.748081 #5] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-07-24T23:52:44.058113 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:52:45.360776 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-07-24T23:52:45.363016 #5] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- NoMethodError: undefined method `on_message' for EventStream:Class +/usr/src/app/app/consumers/sections_consumer.rb:10:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-07-24T23:52:45.486252 #5] INFO -- : Leaving group `notifications_notifications` +E, [2018-07-24T23:52:45.508381 #5] ERROR -- : Client fetch loop error: undefined method `on_message' for EventStream:Class +I, [2018-07-24T23:52:45.509343 #5] INFO -- : Joining group `notifications_notifications` +E, [2018-07-24T23:52:45.517441 #5] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-07-24T23:52:45.616417 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:52:46.840502 #5] INFO -- : Joining group `notifications_notifications` +I, [2018-07-24T23:52:48.090137 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:52:48.090454 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:52:48.941415 #5] INFO -- : Joined group `notifications_notifications` with member id `notifications-0393cc62-181d-44a1-b97a-cdbb8059e3ab` +I, [2018-07-24T23:52:48.941616 #5] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-07-24T23:52:49.099595 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:52:49.100187 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:52:49.103992 #5] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-07-24T23:52:49.104123 #5] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-07-24T23:52:50.100351 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:52:50.100634 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:52:51.183324 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:52:51.184474 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:52:52.298728 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:52:52.298947 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:52:53.549193 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:52:53.564269 #5] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-07-24T23:52:54.451623 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:52:54.582979 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:52:55.452824 #5] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-07-24T23:52:55.605067 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:52:55.688142 #5] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +E, [2018-07-24T23:52:56.545300 #5] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- NoMethodError: undefined method `on_message' for EventStream:Class +/usr/src/app/app/consumers/courses_consumer.rb:10:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-07-24T23:52:56.611131 #5] INFO -- : Leaving group `notifications_course_change` +I, [2018-07-24T23:52:56.611605 #5] INFO -- : Seeking section_change/0 to offset 0 +E, [2018-07-24T23:52:56.661795 #5] ERROR -- : Client fetch loop error: undefined method `on_message' for EventStream:Class +I, [2018-07-24T23:52:56.662337 #5] INFO -- : Joining group `notifications_course_change` +E, [2018-07-24T23:52:56.663943 #5] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-07-24T23:52:56.895788 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:52:57.664403 #5] INFO -- : Joining group `notifications_course_change` +I, [2018-07-24T23:52:57.674250 #5] INFO -- : Joined group `notifications_course_change` with member id `notifications-8c22d415-4707-4a5b-ae01-35b6b26393b0` +I, [2018-07-24T23:52:57.676348 #5] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-07-24T23:52:57.696072 #5] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-07-24T23:52:57.696188 #5] WARN -- : Not fetching from course_change/0 due to pause +E, [2018-07-24T23:52:57.888688 #5] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- NoMethodError: undefined method `on_message' for EventStream:Class +/usr/src/app/app/consumers/sections_consumer.rb:10:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-07-24T23:52:57.892866 #5] INFO -- : Leaving group `notifications_notifications` +I, [2018-07-24T23:52:57.907521 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-07-24T23:52:57.919876 #5] ERROR -- : Client fetch loop error: undefined method `on_message' for EventStream:Class +I, [2018-07-24T23:52:57.920674 #5] INFO -- : Joining group `notifications_notifications` +E, [2018-07-24T23:52:57.923842 #5] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-07-24T23:52:58.023852 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:52:59.404024 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:52:59.448994 #5] INFO -- : Joining group `notifications_notifications` +I, [2018-07-24T23:52:59.494929 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:52:59.591323 #5] INFO -- : Joined group `notifications_notifications` with member id `notifications-23b6a30c-9251-473e-a2b6-92225629f883` +I, [2018-07-24T23:52:59.591413 #5] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-07-24T23:52:59.622007 #5] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-07-24T23:52:59.622254 #5] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-07-24T23:53:00.406075 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:53:00.496946 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:53:01.407552 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:53:01.497876 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:53:02.408604 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:53:02.500239 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:53:03.408985 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:53:03.500980 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:53:04.409567 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:53:04.502179 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:53:05.410408 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:53:05.503056 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:53:06.413872 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:53:06.503584 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:53:07.415352 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:53:07.504226 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:53:07.704645 #5] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-07-24T23:53:08.416208 #5] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-07-24T23:53:08.505125 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:53:09.505923 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:53:09.657482 #5] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +E, [2018-07-24T23:53:09.711343 #5] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- NoMethodError: undefined method `on_message' for EventStream:Class +/usr/src/app/app/consumers/courses_consumer.rb:10:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-07-24T23:53:09.711453 #5] INFO -- : Leaving group `notifications_course_change` +E, [2018-07-24T23:53:09.713668 #5] ERROR -- : Client fetch loop error: undefined method `on_message' for EventStream:Class +I, [2018-07-24T23:53:09.714105 #5] INFO -- : Joining group `notifications_course_change` +E, [2018-07-24T23:53:09.715480 #5] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-07-24T23:53:10.223123 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:53:10.506159 #5] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-07-24T23:53:10.715998 #5] INFO -- : Joining group `notifications_course_change` +I, [2018-07-24T23:53:10.723873 #5] INFO -- : Joined group `notifications_course_change` with member id `notifications-c4eef3d3-304a-4709-859a-a9a1dd8b3297` +I, [2018-07-24T23:53:10.723932 #5] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-07-24T23:53:10.731041 #5] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-07-24T23:53:10.731119 #5] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-07-24T23:53:11.223711 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-07-24T23:53:11.663847 #5] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- NoMethodError: undefined method `on_message' for EventStream:Class +/usr/src/app/app/consumers/sections_consumer.rb:10:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-07-24T23:53:11.666615 #5] INFO -- : Leaving group `notifications_notifications` +E, [2018-07-24T23:53:11.669783 #5] ERROR -- : Client fetch loop error: undefined method `on_message' for EventStream:Class +I, [2018-07-24T23:53:11.670016 #5] INFO -- : Joining group `notifications_notifications` +E, [2018-07-24T23:53:11.671066 #5] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-07-24T23:53:11.756646 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:53:12.224591 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:53:12.671929 #5] INFO -- : Joining group `notifications_notifications` +I, [2018-07-24T23:53:12.674880 #5] INFO -- : Joined group `notifications_notifications` with member id `notifications-be1c5855-709a-447f-9175-f6224b202d20` +I, [2018-07-24T23:53:12.674958 #5] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-07-24T23:53:12.677022 #5] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-07-24T23:53:12.677084 #5] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-07-24T23:53:12.757013 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:53:13.225654 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:53:13.757366 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:53:14.226284 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:53:14.758661 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:53:15.226703 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:53:15.759799 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:53:16.227437 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:53:16.760351 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:53:17.229307 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:53:17.760935 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:53:18.229864 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:53:18.761313 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:53:19.230393 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:53:19.761929 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:53:20.230907 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:53:20.736784 #5] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-07-24T23:53:20.762235 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:53:21.231692 #5] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-07-24T23:53:21.768250 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:53:22.759330 #5] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +E, [2018-07-24T23:53:22.765686 #5] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- NoMethodError: undefined method `on_message' for EventStream:Class +/usr/src/app/app/consumers/courses_consumer.rb:10:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-07-24T23:53:22.765872 #5] INFO -- : Leaving group `notifications_course_change` +I, [2018-07-24T23:53:22.769176 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-07-24T23:53:22.789371 #5] ERROR -- : Client fetch loop error: undefined method `on_message' for EventStream:Class +I, [2018-07-24T23:53:22.789837 #5] INFO -- : Joining group `notifications_course_change` +E, [2018-07-24T23:53:22.796091 #5] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-07-24T23:53:22.876467 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:53:23.769460 #5] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-07-24T23:53:23.796968 #5] INFO -- : Joining group `notifications_course_change` +I, [2018-07-24T23:53:23.806105 #5] INFO -- : Joined group `notifications_course_change` with member id `notifications-48869b7a-bf11-4160-bc5d-b7215df971cc` +I, [2018-07-24T23:53:23.806194 #5] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-07-24T23:53:23.812061 #5] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-07-24T23:53:23.812191 #5] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-07-24T23:53:23.877767 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-07-24T23:53:24.788199 #5] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- NoMethodError: undefined method `on_message' for EventStream:Class +/usr/src/app/app/consumers/sections_consumer.rb:10:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-07-24T23:53:24.791982 #5] INFO -- : Leaving group `notifications_notifications` +E, [2018-07-24T23:53:24.797580 #5] ERROR -- : Client fetch loop error: undefined method `on_message' for EventStream:Class +I, [2018-07-24T23:53:24.797835 #5] INFO -- : Joining group `notifications_notifications` +E, [2018-07-24T23:53:24.799032 #5] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-07-24T23:53:24.837246 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:53:24.878173 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:53:25.800883 #5] INFO -- : Joining group `notifications_notifications` +I, [2018-07-24T23:53:25.804200 #5] INFO -- : Joined group `notifications_notifications` with member id `notifications-92b0a4a6-804c-41d6-88f1-b07600f01c06` +I, [2018-07-24T23:53:25.804275 #5] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-07-24T23:53:25.808254 #5] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-07-24T23:53:25.808348 #5] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-07-24T23:53:25.837987 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:53:25.880179 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:53:26.838617 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:53:26.882945 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:53:27.839139 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:53:27.884332 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:53:28.839693 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:53:28.884705 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:53:29.840445 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:53:29.885457 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:53:30.841280 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:53:30.887214 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:53:31.842238 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:53:31.887592 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:53:32.842651 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:53:32.888407 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:53:33.818640 #5] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-07-24T23:53:33.843265 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:53:33.888906 #5] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-07-24T23:53:34.844647 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:53:35.819419 #5] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +E, [2018-07-24T23:53:35.824678 #5] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- NoMethodError: undefined method `on_message' for EventStream:Class +/usr/src/app/app/consumers/courses_consumer.rb:10:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-07-24T23:53:35.824770 #5] INFO -- : Leaving group `notifications_course_change` +E, [2018-07-24T23:53:35.840995 #5] ERROR -- : Client fetch loop error: undefined method `on_message' for EventStream:Class +I, [2018-07-24T23:53:35.842442 #5] INFO -- : Joining group `notifications_course_change` +I, [2018-07-24T23:53:35.846157 #5] INFO -- : Seeking section_change/0 to offset 0 +E, [2018-07-24T23:53:35.853231 #5] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-07-24T23:53:36.350650 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:53:36.854092 #5] INFO -- : Joining group `notifications_course_change` +I, [2018-07-24T23:53:36.860230 #5] INFO -- : Joined group `notifications_course_change` with member id `notifications-1006d3d1-9598-4c9f-a324-dacc8c404d19` +I, [2018-07-24T23:53:36.860284 #5] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-07-24T23:53:36.864136 #5] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-07-24T23:53:36.864199 #5] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-07-24T23:53:37.351107 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-07-24T23:53:37.842339 #5] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- NoMethodError: undefined method `on_message' for EventStream:Class +/usr/src/app/app/consumers/sections_consumer.rb:10:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-07-24T23:53:37.845684 #5] INFO -- : Leaving group `notifications_notifications` +E, [2018-07-24T23:53:37.870073 #5] ERROR -- : Client fetch loop error: undefined method `on_message' for EventStream:Class +I, [2018-07-24T23:53:37.870334 #5] INFO -- : Joining group `notifications_notifications` +E, [2018-07-24T23:53:37.877899 #5] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-07-24T23:53:38.257359 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:53:38.351649 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:53:38.878563 #5] INFO -- : Joining group `notifications_notifications` +I, [2018-07-24T23:53:38.885494 #5] INFO -- : Joined group `notifications_notifications` with member id `notifications-f9e81db6-892c-4cd9-b0f7-74110d2dbce7` +I, [2018-07-24T23:53:38.885546 #5] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-07-24T23:53:38.894384 #5] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-07-24T23:53:38.894527 #5] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-07-24T23:53:39.257950 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:53:39.354552 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:53:40.258575 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:53:40.355162 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:53:41.259855 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:53:41.355589 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:53:42.260541 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:53:42.356634 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:53:43.277611 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:53:43.358119 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:53:44.308603 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:53:44.359097 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:53:45.520533 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:53:45.520672 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:53:46.521090 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:53:46.521295 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:53:46.932540 #5] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-07-24T23:53:47.527252 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:53:47.527448 #5] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-07-24T23:53:48.541914 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:53:48.931414 #5] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +E, [2018-07-24T23:53:48.951668 #5] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- NoMethodError: undefined method `on_message' for EventStream:Class +/usr/src/app/app/consumers/courses_consumer.rb:10:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-07-24T23:53:48.951785 #5] INFO -- : Leaving group `notifications_course_change` +E, [2018-07-24T23:53:48.986032 #5] ERROR -- : Client fetch loop error: undefined method `on_message' for EventStream:Class +I, [2018-07-24T23:53:48.986553 #5] INFO -- : Joining group `notifications_course_change` +E, [2018-07-24T23:53:49.002057 #5] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-07-24T23:53:49.615064 #5] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-07-24T23:53:49.797580 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:53:50.002779 #5] INFO -- : Joining group `notifications_course_change` +I, [2018-07-24T23:53:50.050148 #5] INFO -- : Joined group `notifications_course_change` with member id `notifications-2df99ba6-8def-45cc-853b-6e68db1396ad` +I, [2018-07-24T23:53:50.050221 #5] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-07-24T23:53:50.057664 #5] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-07-24T23:53:50.057776 #5] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-07-24T23:53:50.800214 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-07-24T23:53:50.970578 #5] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- NoMethodError: undefined method `on_message' for EventStream:Class +/usr/src/app/app/consumers/sections_consumer.rb:10:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-07-24T23:53:50.976890 #5] INFO -- : Leaving group `notifications_notifications` +E, [2018-07-24T23:53:51.045627 #5] ERROR -- : Client fetch loop error: undefined method `on_message' for EventStream:Class +I, [2018-07-24T23:53:51.045971 #5] INFO -- : Joining group `notifications_notifications` +E, [2018-07-24T23:53:51.050896 #5] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-07-24T23:53:51.181494 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:53:51.801126 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:53:52.053448 #5] INFO -- : Joining group `notifications_notifications` +I, [2018-07-24T23:53:52.072174 #5] INFO -- : Joined group `notifications_notifications` with member id `notifications-9a49812a-590c-4556-981b-2b1a8b7a9e9d` +I, [2018-07-24T23:53:52.072246 #5] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-07-24T23:53:52.086126 #5] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-07-24T23:53:52.086224 #5] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-07-24T23:53:52.182657 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:53:52.803679 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:53:53.184055 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:53:53.804634 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:53:54.184814 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:53:54.805219 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:53:55.185237 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:53:55.806623 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:53:56.185953 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:53:56.807266 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:53:57.187261 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:53:57.807991 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:53:58.187608 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:53:58.809338 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:53:59.188794 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:53:59.810779 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:54:00.073103 #5] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-07-24T23:54:00.189274 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:54:00.811472 #5] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-07-24T23:54:01.189624 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-07-24T23:54:02.080169 #5] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- NoMethodError: undefined method `on_message' for EventStream:Class +/usr/src/app/app/consumers/courses_consumer.rb:10:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-07-24T23:54:02.080247 #5] INFO -- : Leaving group `notifications_course_change` +E, [2018-07-24T23:54:02.085052 #5] ERROR -- : Client fetch loop error: undefined method `on_message' for EventStream:Class +I, [2018-07-24T23:54:02.085277 #5] INFO -- : Joining group `notifications_course_change` +E, [2018-07-24T23:54:02.086555 #5] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-07-24T23:54:02.095589 #5] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-07-24T23:54:02.190040 #5] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-07-24T23:54:02.362698 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:54:03.086992 #5] INFO -- : Joining group `notifications_course_change` +I, [2018-07-24T23:54:03.092073 #5] INFO -- : Joined group `notifications_course_change` with member id `notifications-6c6f1e82-ef33-4658-a19f-d4136214f01f` +I, [2018-07-24T23:54:03.092136 #5] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-07-24T23:54:03.095797 #5] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-07-24T23:54:03.095867 #5] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-07-24T23:54:03.363137 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-07-24T23:54:04.101164 #5] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- NoMethodError: undefined method `on_message' for EventStream:Class +/usr/src/app/app/consumers/sections_consumer.rb:10:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-07-24T23:54:04.102091 #5] INFO -- : Leaving group `notifications_notifications` +E, [2018-07-24T23:54:04.112975 #5] ERROR -- : Client fetch loop error: undefined method `on_message' for EventStream:Class +I, [2018-07-24T23:54:04.113395 #5] INFO -- : Joining group `notifications_notifications` +E, [2018-07-24T23:54:04.116626 #5] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-07-24T23:54:04.144543 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:54:04.382444 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:54:05.198725 #5] INFO -- : Joining group `notifications_notifications` +I, [2018-07-24T23:54:05.214158 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:54:05.382883 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:54:05.399624 #5] INFO -- : Joined group `notifications_notifications` with member id `notifications-01523a9b-c40f-47b7-9984-88af31604218` +I, [2018-07-24T23:54:05.399694 #5] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-07-24T23:54:05.425698 #5] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-07-24T23:54:05.426551 #5] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-07-24T23:54:06.214535 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:54:06.383149 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:54:07.215084 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:54:07.383449 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:54:08.216093 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:54:08.383879 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:54:09.216937 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:54:09.385407 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:54:10.217392 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:54:10.387079 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:54:11.218869 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:54:11.387463 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:54:12.219235 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:54:12.388214 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:54:13.220186 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:54:13.383053 #5] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-07-24T23:54:13.389887 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:54:14.220512 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:54:14.390083 #5] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-07-24T23:54:15.227864 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-07-24T23:54:15.431843 #5] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- NoMethodError: undefined method `on_message' for EventStream:Class +/usr/src/app/app/consumers/courses_consumer.rb:10:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-07-24T23:54:15.431946 #5] INFO -- : Leaving group `notifications_course_change` +I, [2018-07-24T23:54:15.453667 #5] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +E, [2018-07-24T23:54:15.454209 #5] ERROR -- : Client fetch loop error: undefined method `on_message' for EventStream:Class +I, [2018-07-24T23:54:15.455494 #5] INFO -- : Joining group `notifications_course_change` +E, [2018-07-24T23:54:15.457545 #5] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-07-24T23:54:15.638929 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:54:16.228510 #5] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-07-24T23:54:16.458327 #5] INFO -- : Joining group `notifications_course_change` +I, [2018-07-24T23:54:16.466212 #5] INFO -- : Joined group `notifications_course_change` with member id `notifications-af7a1685-16e8-4dbd-9751-499c4f2a5b18` +I, [2018-07-24T23:54:16.466260 #5] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-07-24T23:54:16.471949 #5] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-07-24T23:54:16.472015 #5] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-07-24T23:54:16.639990 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-07-24T23:54:17.458304 #5] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- NoMethodError: undefined method `on_message' for EventStream:Class +/usr/src/app/app/consumers/sections_consumer.rb:10:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-07-24T23:54:17.460874 #5] INFO -- : Leaving group `notifications_notifications` +E, [2018-07-24T23:54:17.464240 #5] ERROR -- : Client fetch loop error: undefined method `on_message' for EventStream:Class +I, [2018-07-24T23:54:17.465107 #5] INFO -- : Joining group `notifications_notifications` +E, [2018-07-24T23:54:17.466372 #5] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-07-24T23:54:17.503116 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:54:17.640678 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:54:18.467243 #5] INFO -- : Joining group `notifications_notifications` +I, [2018-07-24T23:54:18.471770 #5] INFO -- : Joined group `notifications_notifications` with member id `notifications-a9403a74-d90a-443f-b4b8-6d2bf1aaa3ae` +I, [2018-07-24T23:54:18.471817 #5] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-07-24T23:54:18.479022 #5] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-07-24T23:54:18.479077 #5] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-07-24T23:54:18.503513 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:54:18.641226 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:54:19.504830 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:54:19.641560 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:54:20.506184 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:54:20.641938 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:54:21.506612 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:54:21.650464 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:54:22.507502 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:54:22.650928 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:54:23.508052 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:54:23.651332 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:54:24.514670 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:54:24.652330 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:54:25.517350 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:54:25.654000 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:54:26.489923 #5] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-07-24T23:54:26.518004 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:54:26.654819 #5] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-07-24T23:54:27.518487 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:54:28.498850 #5] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +E, [2018-07-24T23:54:28.506749 #5] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- NoMethodError: undefined method `on_message' for EventStream:Class +/usr/src/app/app/consumers/courses_consumer.rb:10:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-07-24T23:54:28.506875 #5] INFO -- : Leaving group `notifications_course_change` +E, [2018-07-24T23:54:28.513572 #5] ERROR -- : Client fetch loop error: undefined method `on_message' for EventStream:Class +I, [2018-07-24T23:54:28.514864 #5] INFO -- : Joining group `notifications_course_change` +E, [2018-07-24T23:54:28.518455 #5] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-07-24T23:54:28.519134 #5] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-07-24T23:54:29.039423 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:54:29.518999 #5] INFO -- : Joining group `notifications_course_change` +I, [2018-07-24T23:54:29.523051 #5] INFO -- : Joined group `notifications_course_change` with member id `notifications-a4cffb52-62e0-48e0-be47-dc5f3693eb8d` +I, [2018-07-24T23:54:29.523107 #5] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-07-24T23:54:29.525763 #5] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-07-24T23:54:29.525827 #5] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-07-24T23:54:30.039800 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-07-24T23:54:30.505802 #5] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- NoMethodError: undefined method `on_message' for EventStream:Class +/usr/src/app/app/consumers/sections_consumer.rb:10:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-07-24T23:54:30.509171 #5] INFO -- : Leaving group `notifications_notifications` +E, [2018-07-24T23:54:30.514926 #5] ERROR -- : Client fetch loop error: undefined method `on_message' for EventStream:Class +I, [2018-07-24T23:54:30.516760 #5] INFO -- : Joining group `notifications_notifications` +E, [2018-07-24T23:54:30.523401 #5] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-07-24T23:54:30.814692 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:54:31.040416 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:54:31.523648 #5] INFO -- : Joining group `notifications_notifications` +I, [2018-07-24T23:54:31.528002 #5] INFO -- : Joined group `notifications_notifications` with member id `notifications-4915568d-d616-432d-870d-c5dfb22c8d70` +I, [2018-07-24T23:54:31.528044 #5] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-07-24T23:54:31.534163 #5] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-07-24T23:54:31.534284 #5] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-07-24T23:54:31.815521 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:54:32.040925 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:54:32.815980 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:54:33.041865 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:54:33.817318 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:54:34.043002 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:54:34.817762 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:54:35.044865 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:54:35.818435 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:54:36.045956 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:54:36.818885 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:54:37.046466 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:54:37.820559 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:54:38.046937 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:54:38.821150 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:54:39.047604 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:54:39.532486 #5] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-07-24T23:54:39.822014 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:54:40.048189 #5] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-07-24T23:54:40.822882 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-07-24T23:54:41.539056 #5] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- NoMethodError: undefined method `on_message' for EventStream:Class +/usr/src/app/app/consumers/courses_consumer.rb:10:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-07-24T23:54:41.539124 #5] INFO -- : Leaving group `notifications_course_change` +I, [2018-07-24T23:54:41.543550 #5] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +E, [2018-07-24T23:54:41.549017 #5] ERROR -- : Client fetch loop error: undefined method `on_message' for EventStream:Class +I, [2018-07-24T23:54:41.549206 #5] INFO -- : Joining group `notifications_course_change` +E, [2018-07-24T23:54:41.550068 #5] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-07-24T23:54:41.801407 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:54:41.824245 #5] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-07-24T23:54:42.557738 #5] INFO -- : Joining group `notifications_course_change` +I, [2018-07-24T23:54:42.570271 #5] INFO -- : Joined group `notifications_course_change` with member id `notifications-a70c90c1-15d8-4fdd-8dca-6f987a42d0e4` +I, [2018-07-24T23:54:42.570336 #5] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-07-24T23:54:42.573329 #5] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-07-24T23:54:42.573390 #5] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-07-24T23:54:42.802084 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-07-24T23:54:43.548894 #5] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- NoMethodError: undefined method `on_message' for EventStream:Class +/usr/src/app/app/consumers/sections_consumer.rb:10:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-07-24T23:54:43.549658 #5] INFO -- : Leaving group `notifications_notifications` +E, [2018-07-24T23:54:43.561382 #5] ERROR -- : Client fetch loop error: undefined method `on_message' for EventStream:Class +I, [2018-07-24T23:54:43.561665 #5] INFO -- : Joining group `notifications_notifications` +E, [2018-07-24T23:54:43.562459 #5] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-07-24T23:54:43.803135 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:54:43.881388 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:54:44.562827 #5] INFO -- : Joining group `notifications_notifications` +I, [2018-07-24T23:54:44.567407 #5] INFO -- : Joined group `notifications_notifications` with member id `notifications-3a90e70a-9568-4b65-a2ab-19264a89d37a` +I, [2018-07-24T23:54:44.567453 #5] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-07-24T23:54:44.569072 #5] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-07-24T23:54:44.569147 #5] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-07-24T23:54:44.803635 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:54:44.882510 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:54:45.804161 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:54:45.882893 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:54:46.804823 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:54:46.884040 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:54:47.806608 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:54:47.884545 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:54:48.808562 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:54:48.885388 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:54:49.809404 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:54:49.886166 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:54:50.810083 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:54:50.886531 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:54:51.810760 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:54:51.886891 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:54:52.580703 #5] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-07-24T23:54:52.811221 #5] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-07-24T23:54:52.887928 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:54:53.888365 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:54:54.574110 #5] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +E, [2018-07-24T23:54:54.585904 #5] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- NoMethodError: undefined method `on_message' for EventStream:Class +/usr/src/app/app/consumers/courses_consumer.rb:10:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-07-24T23:54:54.585962 #5] INFO -- : Leaving group `notifications_course_change` +E, [2018-07-24T23:54:54.600315 #5] ERROR -- : Client fetch loop error: undefined method `on_message' for EventStream:Class +I, [2018-07-24T23:54:54.600573 #5] INFO -- : Joining group `notifications_course_change` +E, [2018-07-24T23:54:54.604148 #5] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-07-24T23:54:54.890797 #5] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-07-24T23:54:55.438696 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:54:55.605272 #5] INFO -- : Joining group `notifications_course_change` +I, [2018-07-24T23:54:55.608514 #5] INFO -- : Joined group `notifications_course_change` with member id `notifications-007cad3e-7d66-4355-b5c2-abeaaec022de` +I, [2018-07-24T23:54:55.608558 #5] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-07-24T23:54:55.622400 #5] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-07-24T23:54:55.622470 #5] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-07-24T23:54:56.439108 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-07-24T23:54:56.580441 #5] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- NoMethodError: undefined method `on_message' for EventStream:Class +/usr/src/app/app/consumers/sections_consumer.rb:10:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-07-24T23:54:56.581484 #5] INFO -- : Leaving group `notifications_notifications` +E, [2018-07-24T23:54:56.583077 #5] ERROR -- : Client fetch loop error: undefined method `on_message' for EventStream:Class +I, [2018-07-24T23:54:56.583272 #5] INFO -- : Joining group `notifications_notifications` +E, [2018-07-24T23:54:56.587831 #5] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-07-24T23:54:56.611521 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:54:57.439708 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:54:57.588468 #5] INFO -- : Joining group `notifications_notifications` +I, [2018-07-24T23:54:57.591977 #5] INFO -- : Joined group `notifications_notifications` with member id `notifications-1c2bfaca-33a5-4dcd-8569-57a430d24578` +I, [2018-07-24T23:54:57.592025 #5] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-07-24T23:54:57.597318 #5] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-07-24T23:54:57.597388 #5] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-07-24T23:54:57.612145 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:54:58.440312 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:54:58.612724 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:54:59.440694 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:54:59.614125 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:55:00.441084 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:55:00.614470 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:55:01.442017 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:55:01.615443 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:55:02.443241 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:55:02.616711 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:55:03.443785 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:55:03.617192 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:55:04.444837 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:55:04.617725 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:55:05.446293 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:55:05.618557 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:55:05.627183 #5] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-07-24T23:55:06.447139 #5] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-07-24T23:55:06.619141 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:55:07.602661 #5] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-07-24T23:55:07.619509 #5] INFO -- : Seeking section_change/0 to offset 0 +E, [2018-07-24T23:55:07.631065 #5] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- NoMethodError: undefined method `on_message' for EventStream:Class +/usr/src/app/app/consumers/courses_consumer.rb:10:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-07-24T23:55:07.631127 #5] INFO -- : Leaving group `notifications_course_change` +E, [2018-07-24T23:55:07.669920 #5] ERROR -- : Client fetch loop error: undefined method `on_message' for EventStream:Class +I, [2018-07-24T23:55:07.670150 #5] INFO -- : Joining group `notifications_course_change` +E, [2018-07-24T23:55:07.671060 #5] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-07-24T23:55:08.482785 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:55:08.673976 #5] INFO -- : Joining group `notifications_course_change` +I, [2018-07-24T23:55:08.683643 #5] INFO -- : Joined group `notifications_course_change` with member id `notifications-26a5960a-f4cb-492d-b98a-f2d631517cb9` +I, [2018-07-24T23:55:08.683710 #5] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-07-24T23:55:08.686915 #5] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-07-24T23:55:08.687029 #5] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-07-24T23:55:09.484295 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-07-24T23:55:09.606783 #5] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- NoMethodError: undefined method `on_message' for EventStream:Class +/usr/src/app/app/consumers/sections_consumer.rb:10:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-07-24T23:55:09.619242 #5] INFO -- : Leaving group `notifications_notifications` +E, [2018-07-24T23:55:09.621803 #5] ERROR -- : Client fetch loop error: undefined method `on_message' for EventStream:Class +I, [2018-07-24T23:55:09.621977 #5] INFO -- : Joining group `notifications_notifications` +E, [2018-07-24T23:55:09.622788 #5] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-07-24T23:55:10.219213 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:55:10.484846 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:55:10.623016 #5] INFO -- : Joining group `notifications_notifications` +I, [2018-07-24T23:55:10.635765 #5] INFO -- : Joined group `notifications_notifications` with member id `notifications-0d1e4348-acce-4dd5-b7a3-853d2e9b494c` +I, [2018-07-24T23:55:10.635857 #5] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-07-24T23:55:10.638067 #5] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-07-24T23:55:10.638132 #5] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-07-24T23:55:11.219668 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:55:11.485300 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:55:12.220365 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:55:12.485721 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:55:13.220912 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:55:13.486818 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:55:14.221468 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:55:14.487951 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:55:15.222781 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:55:15.489487 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:55:16.223285 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:55:16.489929 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:55:17.223808 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:55:17.490441 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:55:18.224218 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:55:18.490915 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:55:18.696602 #5] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-07-24T23:55:19.225469 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:55:19.491788 #5] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-07-24T23:55:20.226072 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:55:20.652209 #5] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +E, [2018-07-24T23:55:20.703213 #5] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- NoMethodError: undefined method `on_message' for EventStream:Class +/usr/src/app/app/consumers/courses_consumer.rb:10:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-07-24T23:55:20.703516 #5] INFO -- : Leaving group `notifications_course_change` +E, [2018-07-24T23:55:20.711518 #5] ERROR -- : Client fetch loop error: undefined method `on_message' for EventStream:Class +I, [2018-07-24T23:55:20.711793 #5] INFO -- : Joining group `notifications_course_change` +E, [2018-07-24T23:55:20.713167 #5] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-07-24T23:55:20.975747 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:55:21.226524 #5] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-07-24T23:55:21.713456 #5] INFO -- : Joining group `notifications_course_change` +I, [2018-07-24T23:55:21.716763 #5] INFO -- : Joined group `notifications_course_change` with member id `notifications-27b1c548-8281-4e7c-939e-3fd077ffad3b` +I, [2018-07-24T23:55:21.716826 #5] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-07-24T23:55:21.721602 #5] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-07-24T23:55:21.721667 #5] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-07-24T23:55:21.976198 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-07-24T23:55:22.660509 #5] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- NoMethodError: undefined method `on_message' for EventStream:Class +/usr/src/app/app/consumers/sections_consumer.rb:10:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-07-24T23:55:22.662557 #5] INFO -- : Leaving group `notifications_notifications` +E, [2018-07-24T23:55:22.665602 #5] ERROR -- : Client fetch loop error: undefined method `on_message' for EventStream:Class +I, [2018-07-24T23:55:22.665759 #5] INFO -- : Joining group `notifications_notifications` +E, [2018-07-24T23:55:22.666808 #5] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-07-24T23:55:22.706676 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:55:22.976600 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:55:23.667203 #5] INFO -- : Joining group `notifications_notifications` +I, [2018-07-24T23:55:23.670236 #5] INFO -- : Joined group `notifications_notifications` with member id `notifications-fbcd30a1-793d-446e-9ad1-abd8acfd971f` +I, [2018-07-24T23:55:23.670313 #5] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-07-24T23:55:23.673058 #5] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-07-24T23:55:23.673143 #5] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-07-24T23:55:23.707575 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:55:23.977026 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:55:24.708438 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:55:24.977830 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:55:25.709604 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:55:25.978965 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:55:26.927627 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:55:26.986355 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:55:27.962545 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:55:27.986895 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:55:28.964040 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:55:28.987337 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:55:29.964551 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:55:29.987973 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:55:30.965471 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:55:30.988920 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:55:31.743344 #5] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-07-24T23:55:31.966065 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:55:31.989404 #5] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-07-24T23:55:32.966614 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:55:33.683511 #5] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +E, [2018-07-24T23:55:33.822642 #5] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- NoMethodError: undefined method `on_message' for EventStream:Class +/usr/src/app/app/consumers/courses_consumer.rb:10:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-07-24T23:55:33.822801 #5] INFO -- : Leaving group `notifications_course_change` +E, [2018-07-24T23:55:33.885522 #5] ERROR -- : Client fetch loop error: undefined method `on_message' for EventStream:Class +I, [2018-07-24T23:55:33.885892 #5] INFO -- : Joining group `notifications_course_change` +E, [2018-07-24T23:55:33.899994 #5] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-07-24T23:55:33.968601 #5] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-07-24T23:55:34.114154 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:55:34.900529 #5] INFO -- : Joining group `notifications_course_change` +I, [2018-07-24T23:55:34.910823 #5] INFO -- : Joined group `notifications_course_change` with member id `notifications-be9a37e0-bea4-4c0f-bbb7-623d7f00846b` +I, [2018-07-24T23:55:34.910913 #5] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-07-24T23:55:34.918503 #5] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-07-24T23:55:34.918579 #5] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-07-24T23:55:35.412327 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-07-24T23:55:35.712356 #5] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- NoMethodError: undefined method `on_message' for EventStream:Class +/usr/src/app/app/consumers/sections_consumer.rb:10:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-07-24T23:57:59.096105 #5] INFO -- : New topics added to target list: section_change +I, [2018-07-24T23:57:59.096211 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-07-24T23:57:59.098300 #5] INFO -- : New topics added to target list: course_change +I, [2018-07-24T23:57:59.098360 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-07-24T23:57:59.099489 #5] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.19.0.12:9094 +E, [2018-07-24T23:57:59.099590 #5] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.19.0.12:9094 +E, [2018-07-24T23:57:59.099788 #5] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.19.0.12:9094 +E, [2018-07-24T23:57:59.099859 #5] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.19.0.12:9094 +E, [2018-07-24T23:58:04.099996 #5] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: +- kafka://kafka:9094: Connection refused - connect(2) for 172.19.0.12:9094 +I, [2018-07-24T23:58:04.100807 #5] INFO -- : New topics added to target list: section_change +I, [2018-07-24T23:58:04.100850 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-07-24T23:58:04.101181 #5] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: +- kafka://kafka:9094: Connection refused - connect(2) for 172.19.0.12:9094 +I, [2018-07-24T23:58:04.102974 #5] INFO -- : New topics added to target list: course_change +I, [2018-07-24T23:58:04.103049 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-07-24T23:58:04.104086 #5] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.19.0.12:9094 +E, [2018-07-24T23:58:04.104249 #5] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.19.0.12:9094 +E, [2018-07-24T23:58:04.104659 #5] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.19.0.12:9094 +E, [2018-07-24T23:58:04.104774 #5] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.19.0.12:9094 +E, [2018-07-24T23:58:09.105676 #5] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: +- kafka://kafka:9094: Connection refused - connect(2) for 172.19.0.12:9094 +I, [2018-07-24T23:58:09.106410 #5] INFO -- : New topics added to target list: section_change +I, [2018-07-24T23:58:09.106457 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-07-24T23:58:09.106771 #5] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: +- kafka://kafka:9094: Connection refused - connect(2) for 172.19.0.12:9094 +E, [2018-07-24T23:58:09.109232 #5] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.19.0.12:9094 +E, [2018-07-24T23:58:09.109358 #5] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.19.0.12:9094 +I, [2018-07-24T23:58:09.109764 #5] INFO -- : New topics added to target list: course_change +I, [2018-07-24T23:58:09.109798 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-07-24T23:58:09.110732 #5] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.19.0.12:9094 +E, [2018-07-24T23:58:09.110852 #5] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.19.0.12:9094 +E, [2018-07-24T23:58:14.111061 #5] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: +- kafka://kafka:9094: Connection refused - connect(2) for 172.19.0.12:9094 +I, [2018-07-24T23:58:14.111830 #5] INFO -- : New topics added to target list: section_change +I, [2018-07-24T23:58:14.111874 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-07-24T23:58:14.112160 #5] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: +- kafka://kafka:9094: Connection refused - connect(2) for 172.19.0.12:9094 +I, [2018-07-24T23:58:14.113158 #5] INFO -- : New topics added to target list: course_change +I, [2018-07-24T23:58:14.113204 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-07-24T23:58:14.185152 #5] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-07-24T23:58:14.185415 #5] INFO -- : Joining group `notifications_course_change` +I, [2018-07-24T23:58:14.204420 #5] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-07-24T23:58:14.204572 #5] INFO -- : Joining group `notifications_notifications` +I, [2018-07-24T23:58:14.220444 #5] INFO -- : Will fetch at most 1048576 bytes at a time per partition from course_change +I, [2018-07-24T23:58:14.220709 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-07-24T23:58:14.221725 #5] INFO -- : Will fetch at most 1048576 bytes at a time per partition from section_change +I, [2018-07-24T23:58:14.222722 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-07-24T23:58:14.232322 #5] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-07-24T23:58:14.232720 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:58:14.274883 #5] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-07-24T23:58:14.274986 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:58:15.233191 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:58:15.275785 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:58:16.233935 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:58:16.276972 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:58:17.235406 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:58:17.279604 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:58:18.236522 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:58:18.280093 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:58:19.528300 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:58:19.528559 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:58:20.445290 #5] INFO -- : Joined group `notifications_course_change` with member id `notifications-2ccdb57c-75b2-4c64-b594-dfc4d29a0e93` +I, [2018-07-24T23:58:20.445351 #5] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-07-24T23:58:20.494869 #5] INFO -- : Joined group `notifications_notifications` with member id `notifications-1135918c-e432-498d-9713-54f135f56092` +I, [2018-07-24T23:58:20.494943 #5] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-07-24T23:58:20.533028 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:58:20.533216 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:58:21.448987 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-07-24T23:58:21.465885 #5] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-07-24T23:58:21.495538 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-07-24T23:58:21.534107 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:58:21.535240 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:58:21.543234 #5] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-07-24T23:58:21.895725 #5] INFO -- : Partitions assigned for `section_change`: 0 +I, [2018-07-24T23:58:21.910422 #5] INFO -- : Partitions assigned for `course_change`: 0 +I, [2018-07-24T23:58:22.534767 #5] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-07-24T23:58:22.535586 #5] INFO -- : New topics added to target list: course_change +I, [2018-07-24T23:58:22.535645 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-07-24T23:58:22.536313 #5] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-07-24T23:58:22.536420 #5] INFO -- : New topics added to target list: section_change +I, [2018-07-24T23:58:22.536476 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-07-24T23:58:22.547924 #5] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-07-24T23:58:22.551154 #5] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +E, [2018-07-24T23:58:24.062250 #5] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- NoMethodError: undefined method `on_message' for EventStream:Class +/usr/src/app/app/consumers/courses_consumer.rb:10:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-07-24T23:58:24.062340 #5] INFO -- : Leaving group `notifications_course_change` +E, [2018-07-24T23:58:24.097184 #5] ERROR -- : Client fetch loop error: undefined method `on_message' for EventStream:Class +I, [2018-07-24T23:58:24.097445 #5] INFO -- : Joining group `notifications_course_change` +E, [2018-07-24T23:58:24.105313 #5] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-07-24T23:58:24.310495 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:58:25.106676 #5] INFO -- : Joining group `notifications_course_change` +I, [2018-07-24T23:58:25.179395 #5] INFO -- : Joined group `notifications_course_change` with member id `notifications-c544598d-4f03-4994-850c-0fa27f231fbc` +I, [2018-07-24T23:58:25.179463 #5] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-07-24T23:58:25.195438 #5] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-07-24T23:58:25.195542 #5] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-07-24T23:58:25.311173 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-07-24T23:58:26.085543 #5] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- NoMethodError: undefined method `on_message' for EventStream:Class +/usr/src/app/app/consumers/sections_consumer.rb:10:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-07-24T23:58:26.088067 #5] INFO -- : Leaving group `notifications_notifications` +E, [2018-07-24T23:58:26.113479 #5] ERROR -- : Client fetch loop error: undefined method `on_message' for EventStream:Class +I, [2018-07-24T23:58:26.114084 #5] INFO -- : Joining group `notifications_notifications` +E, [2018-07-24T23:58:26.127279 #5] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-07-24T23:58:26.191201 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:58:26.311647 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:58:27.128590 #5] INFO -- : Joining group `notifications_notifications` +I, [2018-07-24T23:58:27.137995 #5] INFO -- : Joined group `notifications_notifications` with member id `notifications-61366c8e-2a33-455f-be5f-08c737aee0f3` +I, [2018-07-24T23:58:27.138043 #5] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-07-24T23:58:27.141767 #5] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-07-24T23:58:27.141833 #5] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-07-24T23:58:27.192192 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:58:27.312179 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:58:28.192895 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:58:28.312782 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:58:29.193436 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:58:29.313388 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:58:30.193935 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:58:30.314497 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:58:31.194324 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:58:31.315384 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:58:32.195295 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:58:32.317304 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:58:33.197221 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:58:33.318352 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:58:34.198621 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:58:34.319922 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:58:35.199963 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:58:35.281414 #5] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-07-24T23:58:35.321113 #5] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-07-24T23:58:36.200941 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:58:37.165007 #5] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-07-24T23:58:37.201431 #5] INFO -- : Seeking section_change/0 to offset 0 +E, [2018-07-24T23:58:37.287545 #5] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- NoMethodError: undefined method `on_message' for EventStream:Class +/usr/src/app/app/consumers/courses_consumer.rb:10:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-07-24T23:58:37.287645 #5] INFO -- : Leaving group `notifications_course_change` +E, [2018-07-24T23:58:37.296349 #5] ERROR -- : Client fetch loop error: undefined method `on_message' for EventStream:Class +I, [2018-07-24T23:58:37.296519 #5] INFO -- : Joining group `notifications_course_change` +E, [2018-07-24T23:58:37.303385 #5] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-07-24T23:58:37.372921 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:58:38.303740 #5] INFO -- : Joining group `notifications_course_change` +I, [2018-07-24T23:58:38.341695 #5] INFO -- : Joined group `notifications_course_change` with member id `notifications-a01eeadf-1033-40c0-9961-27e73448a6c2` +I, [2018-07-24T23:58:38.341751 #5] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-07-24T23:58:38.345025 #5] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-07-24T23:58:38.345112 #5] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-07-24T23:58:38.374362 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-07-24T23:58:39.170586 #5] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- NoMethodError: undefined method `on_message' for EventStream:Class +/usr/src/app/app/consumers/sections_consumer.rb:10:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-07-24T23:58:39.172803 #5] INFO -- : Leaving group `notifications_notifications` +E, [2018-07-24T23:58:39.175474 #5] ERROR -- : Client fetch loop error: undefined method `on_message' for EventStream:Class +I, [2018-07-24T23:58:39.175834 #5] INFO -- : Joining group `notifications_notifications` +E, [2018-07-24T23:58:39.187209 #5] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-07-24T23:58:39.189434 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:58:39.374792 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:58:40.188101 #5] INFO -- : Joining group `notifications_notifications` +I, [2018-07-24T23:58:40.189989 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:58:40.192235 #5] INFO -- : Joined group `notifications_notifications` with member id `notifications-3f607107-ca11-469f-8748-94307206f0ec` +I, [2018-07-24T23:58:40.192356 #5] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-07-24T23:58:40.195210 #5] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-07-24T23:58:40.195275 #5] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-07-24T23:58:40.375446 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:58:41.190488 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:58:41.376177 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:58:42.191025 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:58:42.376652 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:58:43.192526 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:58:43.380772 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:58:44.193586 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:58:44.381688 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:58:45.195729 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:58:45.382703 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:58:46.196273 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:58:46.384025 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:58:47.196739 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:58:47.384467 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:58:48.197337 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:58:48.349735 #5] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-07-24T23:58:48.385231 #5] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-07-24T23:58:49.198590 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:58:50.200116 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:58:50.202372 #5] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +E, [2018-07-24T23:58:50.364355 #5] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- NoMethodError: undefined method `on_message' for EventStream:Class +/usr/src/app/app/consumers/courses_consumer.rb:10:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-07-24T23:58:50.366353 #5] INFO -- : Leaving group `notifications_course_change` +E, [2018-07-24T23:58:50.393709 #5] ERROR -- : Client fetch loop error: undefined method `on_message' for EventStream:Class +I, [2018-07-24T23:58:50.393939 #5] INFO -- : Joining group `notifications_course_change` +E, [2018-07-24T23:58:50.403689 #5] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-07-24T23:58:51.153691 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:58:51.246916 #5] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-07-24T23:58:51.408673 #5] INFO -- : Joining group `notifications_course_change` +I, [2018-07-24T23:58:51.760928 #5] INFO -- : Joined group `notifications_course_change` with member id `notifications-fc4aa912-ba5e-4356-ba15-10fb10c24081` +I, [2018-07-24T23:58:51.761009 #5] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-07-24T23:58:51.851611 #5] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-07-24T23:58:51.852040 #5] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-07-24T23:58:52.155673 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-07-24T23:58:52.275113 #5] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- NoMethodError: undefined method `on_message' for EventStream:Class +/usr/src/app/app/consumers/sections_consumer.rb:10:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-07-24T23:58:52.280182 #5] INFO -- : Leaving group `notifications_notifications` +E, [2018-07-24T23:58:52.393411 #5] ERROR -- : Client fetch loop error: undefined method `on_message' for EventStream:Class +I, [2018-07-24T23:58:52.393778 #5] INFO -- : Joining group `notifications_notifications` +E, [2018-07-24T23:58:52.419901 #5] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-07-24T23:58:52.557671 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:58:53.156265 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:58:53.420352 #5] INFO -- : Joining group `notifications_notifications` +I, [2018-07-24T23:58:53.433386 #5] INFO -- : Joined group `notifications_notifications` with member id `notifications-f78b2745-f583-485f-9bf5-5d148d56008e` +I, [2018-07-24T23:58:53.433454 #5] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-07-24T23:58:53.438122 #5] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-07-24T23:58:53.438278 #5] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-07-24T23:58:53.558546 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:58:54.156962 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:58:54.558942 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:58:55.157965 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:58:55.560252 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:58:56.158957 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:58:56.560690 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:58:57.159321 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:58:57.561588 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:58:58.159816 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:58:58.562326 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:58:59.160347 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:58:59.599263 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:59:00.165081 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:59:01.170224 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:59:01.185362 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:59:02.170819 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:59:02.172094 #5] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-07-24T23:59:02.185756 #5] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-07-24T23:59:03.171513 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:59:03.470192 #5] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-07-24T23:59:04.172420 #5] INFO -- : Seeking section_change/0 to offset 0 +E, [2018-07-24T23:59:04.179897 #5] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- NoMethodError: undefined method `on_message' for EventStream:Class +/usr/src/app/app/consumers/courses_consumer.rb:10:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-07-24T23:59:04.180001 #5] INFO -- : Leaving group `notifications_course_change` +E, [2018-07-24T23:59:04.456170 #5] ERROR -- : Client fetch loop error: undefined method `on_message' for EventStream:Class +I, [2018-07-24T23:59:04.456464 #5] INFO -- : Joining group `notifications_course_change` +I, [2018-07-24T23:59:04.520814 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-07-24T23:59:04.524574 #5] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-07-24T23:59:05.485724 #5] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- NoMethodError: undefined method `on_message' for EventStream:Class +/usr/src/app/app/consumers/sections_consumer.rb:10:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-07-24T23:59:05.489397 #5] INFO -- : Leaving group `notifications_notifications` +E, [2018-07-24T23:59:05.519597 #5] ERROR -- : Client fetch loop error: undefined method `on_message' for EventStream:Class +I, [2018-07-24T23:59:05.519872 #5] INFO -- : Joining group `notifications_notifications` +I, [2018-07-24T23:59:05.521231 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-07-24T23:59:05.521035 #5] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-07-24T23:59:05.525190 #5] INFO -- : Joining group `notifications_course_change` +I, [2018-07-24T23:59:05.559681 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:59:05.577159 #5] INFO -- : Joined group `notifications_course_change` with member id `notifications-38ad5428-5fc8-4139-82a6-bfbdc03c9b36` +I, [2018-07-24T23:59:05.577227 #5] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-07-24T23:59:05.587075 #5] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-07-24T23:59:05.587166 #5] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-07-24T23:59:06.522171 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:59:06.522311 #5] INFO -- : Joining group `notifications_notifications` +I, [2018-07-24T23:59:06.527716 #5] INFO -- : Joined group `notifications_notifications` with member id `notifications-cef30eae-ffe6-4c46-9e20-bbe73eabc423` +I, [2018-07-24T23:59:06.527774 #5] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-07-24T23:59:06.540999 #5] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-07-24T23:59:06.541071 #5] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-07-24T23:59:06.560312 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:59:07.524166 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:59:07.561170 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:59:08.531126 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:59:08.570647 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:59:09.532123 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:59:09.571885 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:59:10.533005 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:59:10.572307 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:59:11.534049 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:59:11.572865 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:59:12.535409 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:59:12.574950 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:59:13.535899 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:59:13.575764 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:59:14.536317 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:59:14.576262 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:59:15.536785 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:59:15.577793 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:59:15.737287 #5] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-07-24T23:59:16.537284 #5] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-07-24T23:59:16.578353 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:59:16.582843 #5] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-07-24T23:59:17.578940 #5] INFO -- : Seeking section_change/0 to offset 0 +E, [2018-07-24T23:59:17.826633 #5] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- NoMethodError: undefined method `on_message' for EventStream:Class +/usr/src/app/app/consumers/courses_consumer.rb:10:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-07-24T23:59:17.826727 #5] INFO -- : Leaving group `notifications_course_change` +E, [2018-07-24T23:59:17.836199 #5] ERROR -- : Client fetch loop error: undefined method `on_message' for EventStream:Class +I, [2018-07-24T23:59:17.836461 #5] INFO -- : Joining group `notifications_course_change` +E, [2018-07-24T23:59:17.840036 #5] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-07-24T23:59:18.471933 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-07-24T23:59:18.587022 #5] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- NoMethodError: undefined method `on_message' for EventStream:Class +/usr/src/app/app/consumers/sections_consumer.rb:10:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-07-24T23:59:18.595001 #5] INFO -- : Leaving group `notifications_notifications` +E, [2018-07-24T23:59:18.598963 #5] ERROR -- : Client fetch loop error: undefined method `on_message' for EventStream:Class +I, [2018-07-24T23:59:18.599333 #5] INFO -- : Joining group `notifications_notifications` +E, [2018-07-24T23:59:18.600719 #5] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-07-24T23:59:18.695991 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:59:18.841193 #5] INFO -- : Joining group `notifications_course_change` +I, [2018-07-24T23:59:18.845305 #5] INFO -- : Joined group `notifications_course_change` with member id `notifications-8de16612-532e-40df-851b-0b2d91945c2f` +I, [2018-07-24T23:59:18.845364 #5] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-07-24T23:59:18.850696 #5] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-07-24T23:59:18.850783 #5] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-07-24T23:59:19.472336 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:59:19.601186 #5] INFO -- : Joining group `notifications_notifications` +I, [2018-07-24T23:59:19.604990 #5] INFO -- : Joined group `notifications_notifications` with member id `notifications-5b6d09d9-f34e-439e-88c0-d951644f86ab` +I, [2018-07-24T23:59:19.605050 #5] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-07-24T23:59:19.607748 #5] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-07-24T23:59:19.607829 #5] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-07-24T23:59:19.696629 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:59:20.473370 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:59:20.697431 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:59:21.473881 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:59:21.704988 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:59:22.474239 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:59:22.706988 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:59:23.474888 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:59:23.710568 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:59:24.475205 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:59:24.711066 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:59:25.475746 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:59:25.713638 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:59:26.476478 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:59:26.714030 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:59:27.476875 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:59:27.714535 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:59:28.477819 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:59:28.715039 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:59:28.860308 #5] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-07-24T23:59:29.478240 #5] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-07-24T23:59:29.619723 #5] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-07-24T23:59:29.716423 #5] INFO -- : Seeking section_change/0 to offset 0 +E, [2018-07-24T23:59:30.885613 #5] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- NoMethodError: undefined method `on_message' for EventStream:Class +/usr/src/app/app/consumers/courses_consumer.rb:10:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-07-24T23:59:30.885901 #5] INFO -- : Leaving group `notifications_course_change` +E, [2018-07-24T23:59:30.932016 #5] ERROR -- : Client fetch loop error: undefined method `on_message' for EventStream:Class +I, [2018-07-24T23:59:30.932319 #5] INFO -- : Joining group `notifications_course_change` +E, [2018-07-24T23:59:30.940625 #5] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-07-24T23:59:31.085918 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-07-24T23:59:31.638147 #5] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- NoMethodError: undefined method `on_message' for EventStream:Class +/usr/src/app/app/consumers/sections_consumer.rb:10:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-07-24T23:59:31.647695 #5] INFO -- : Leaving group `notifications_notifications` +E, [2018-07-24T23:59:31.679051 #5] ERROR -- : Client fetch loop error: undefined method `on_message' for EventStream:Class +I, [2018-07-24T23:59:31.679259 #5] INFO -- : Joining group `notifications_notifications` +E, [2018-07-24T23:59:31.683160 #5] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-07-24T23:59:31.938064 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:59:31.945964 #5] INFO -- : Joining group `notifications_course_change` +I, [2018-07-24T23:59:32.016169 #5] INFO -- : Joined group `notifications_course_change` with member id `notifications-c5de7074-5123-4407-a2a0-1c684fc4f8da` +I, [2018-07-24T23:59:32.016241 #5] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-07-24T23:59:32.022029 #5] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-07-24T23:59:32.022138 #5] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-07-24T23:59:32.108052 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:59:32.685207 #5] INFO -- : Joining group `notifications_notifications` +I, [2018-07-24T23:59:33.274114 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:59:33.188283 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:59:33.310344 #5] INFO -- : Joined group `notifications_notifications` with member id `notifications-11fb1b2e-ee6e-4164-aada-3af367e6fd53` +I, [2018-07-24T23:59:33.310445 #5] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-07-24T23:59:33.370296 #5] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-07-24T23:59:33.370853 #5] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-07-24T23:59:34.306378 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:59:34.306553 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:59:35.499852 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:59:35.308369 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:59:36.503187 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:59:36.504005 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:59:37.504888 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:59:37.506081 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:59:38.506069 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:59:38.506419 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:59:39.506686 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:59:39.506980 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:59:40.507339 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:59:40.507510 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:59:41.525578 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:59:41.525773 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:59:42.055133 #5] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-07-24T23:59:42.569339 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:59:42.569495 #5] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-07-24T23:59:43.505734 #5] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-07-24T23:59:43.569732 #5] INFO -- : Seeking section_change/0 to offset 0 +E, [2018-07-24T23:59:44.068249 #5] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- NoMethodError: undefined method `on_message' for EventStream:Class +/usr/src/app/app/consumers/courses_consumer.rb:10:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-07-24T23:59:44.068479 #5] INFO -- : Leaving group `notifications_course_change` +E, [2018-07-24T23:59:44.080764 #5] ERROR -- : Client fetch loop error: undefined method `on_message' for EventStream:Class +I, [2018-07-24T23:59:44.081157 #5] INFO -- : Joining group `notifications_course_change` +E, [2018-07-24T23:59:44.096124 #5] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-07-24T23:59:44.113117 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:59:45.097684 #5] INFO -- : Joining group `notifications_course_change` +I, [2018-07-24T23:59:45.110194 #5] INFO -- : Joined group `notifications_course_change` with member id `notifications-354a2c95-ec3a-4d29-93be-222c13e59b96` +I, [2018-07-24T23:59:45.110612 #5] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-07-24T23:59:45.117477 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:59:45.146400 #5] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-07-24T23:59:45.146616 #5] WARN -- : Not fetching from course_change/0 due to pause +E, [2018-07-24T23:59:45.539901 #5] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- NoMethodError: undefined method `on_message' for EventStream:Class +/usr/src/app/app/consumers/sections_consumer.rb:10:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-07-24T23:59:45.566111 #5] INFO -- : Leaving group `notifications_notifications` +E, [2018-07-24T23:59:45.595396 #5] ERROR -- : Client fetch loop error: undefined method `on_message' for EventStream:Class +I, [2018-07-24T23:59:45.595745 #5] INFO -- : Joining group `notifications_notifications` +E, [2018-07-24T23:59:45.602897 #5] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-07-24T23:59:46.076058 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:59:46.132490 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:59:46.603232 #5] INFO -- : Joining group `notifications_notifications` +I, [2018-07-24T23:59:46.646684 #5] INFO -- : Joined group `notifications_notifications` with member id `notifications-cd716878-ff91-495b-83d8-f571b9d2f263` +I, [2018-07-24T23:59:46.646741 #5] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-07-24T23:59:46.676323 #5] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-07-24T23:59:46.676440 #5] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-07-24T23:59:47.170291 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:59:47.190950 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:59:48.181024 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:59:48.191497 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:59:49.183144 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:59:49.192729 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:59:50.184464 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:59:50.193214 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:59:51.185130 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:59:51.193567 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:59:52.185586 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:59:52.194004 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:59:53.186099 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:59:53.194568 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:59:54.187530 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:59:54.195556 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:59:55.188033 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:59:55.198332 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:59:55.198529 #5] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-07-24T23:59:56.189379 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:59:56.199240 #5] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-07-24T23:59:56.686431 #5] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-07-24T23:59:57.191330 #5] INFO -- : Seeking section_change/0 to offset 0 +E, [2018-07-24T23:59:57.204851 #5] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- NoMethodError: undefined method `on_message' for EventStream:Class +/usr/src/app/app/consumers/courses_consumer.rb:10:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-07-24T23:59:57.212255 #5] INFO -- : Leaving group `notifications_course_change` +E, [2018-07-24T23:59:57.235284 #5] ERROR -- : Client fetch loop error: undefined method `on_message' for EventStream:Class +I, [2018-07-24T23:59:57.236030 #5] INFO -- : Joining group `notifications_course_change` +E, [2018-07-24T23:59:57.239410 #5] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-07-24T23:59:57.298026 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:59:58.241207 #5] INFO -- : Joining group `notifications_course_change` +I, [2018-07-24T23:59:58.247103 #5] INFO -- : Joined group `notifications_course_change` with member id `notifications-05655982-03c6-48b9-8713-e98b12869958` +I, [2018-07-24T23:59:58.247176 #5] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-07-24T23:59:58.255257 #5] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-07-24T23:59:58.255397 #5] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-07-24T23:59:58.298913 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-07-24T23:59:58.691832 #5] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- NoMethodError: undefined method `on_message' for EventStream:Class +/usr/src/app/app/consumers/sections_consumer.rb:10:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-07-24T23:59:58.691917 #5] INFO -- : Leaving group `notifications_notifications` +E, [2018-07-24T23:59:58.695053 #5] ERROR -- : Client fetch loop error: undefined method `on_message' for EventStream:Class +I, [2018-07-24T23:59:58.695303 #5] INFO -- : Joining group `notifications_notifications` +E, [2018-07-24T23:59:58.696716 #5] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-07-24T23:59:58.703496 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:59:59.300040 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:59:59.697183 #5] INFO -- : Joining group `notifications_notifications` +I, [2018-07-24T23:59:59.702901 #5] INFO -- : Joined group `notifications_notifications` with member id `notifications-65b6aaa9-84b8-480f-8f68-8eec8d8b7208` +I, [2018-07-24T23:59:59.702964 #5] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-07-24T23:59:59.704321 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-24T23:59:59.717336 #5] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-07-24T23:59:59.717434 #5] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-07-25T00:00:00.300621 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:00:00.705214 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:00:01.301180 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:00:01.705643 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:00:02.303701 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:00:02.706046 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:00:03.305379 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:00:03.706808 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:00:04.306596 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:00:04.707953 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:00:05.308789 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:00:05.709062 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:00:06.309222 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:00:06.709611 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:00:07.309756 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:00:07.710212 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:00:08.275335 #5] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-07-25T00:00:08.310038 #5] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-07-25T00:00:08.710605 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:00:09.711319 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:00:09.725446 #5] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +E, [2018-07-25T00:00:10.284493 #5] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- NoMethodError: undefined method `on_message' for EventStream:Class +/usr/src/app/app/consumers/courses_consumer.rb:10:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-07-25T00:00:10.288093 #5] INFO -- : Leaving group `notifications_course_change` +E, [2018-07-25T00:00:10.330752 #5] ERROR -- : Client fetch loop error: undefined method `on_message' for EventStream:Class +I, [2018-07-25T00:00:10.331060 #5] INFO -- : Joining group `notifications_course_change` +E, [2018-07-25T00:00:10.333548 #5] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-07-25T00:00:10.401812 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:00:10.729357 #5] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-07-25T00:00:11.333973 #5] INFO -- : Joining group `notifications_course_change` +I, [2018-07-25T00:00:11.344297 #5] INFO -- : Joined group `notifications_course_change` with member id `notifications-ef387562-8b64-49fc-83b7-f8dbcf2afa4e` +I, [2018-07-25T00:00:11.344370 #5] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-07-25T00:00:11.349031 #5] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-07-25T00:00:11.349102 #5] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-07-25T00:00:11.422870 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-07-25T00:00:11.733812 #5] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- NoMethodError: undefined method `on_message' for EventStream:Class +/usr/src/app/app/consumers/sections_consumer.rb:10:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-07-25T00:00:11.733888 #5] INFO -- : Leaving group `notifications_notifications` +E, [2018-07-25T00:00:11.737725 #5] ERROR -- : Client fetch loop error: undefined method `on_message' for EventStream:Class +I, [2018-07-25T00:00:11.738059 #5] INFO -- : Joining group `notifications_notifications` +E, [2018-07-25T00:00:11.739859 #5] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-07-25T00:00:11.759206 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:00:12.423524 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:00:12.740126 #5] INFO -- : Joining group `notifications_notifications` +I, [2018-07-25T00:00:12.746641 #5] INFO -- : Joined group `notifications_notifications` with member id `notifications-77c64a0b-df70-4add-aef8-c4717543d9c1` +I, [2018-07-25T00:00:12.746706 #5] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-07-25T00:00:12.751083 #5] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-07-25T00:00:12.751169 #5] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-07-25T00:00:12.759782 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:00:13.423915 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:00:13.760255 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:00:14.425797 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:00:14.764438 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:00:15.426903 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:00:15.765644 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:00:16.428852 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:00:16.766946 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:00:17.429305 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:00:17.767685 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:00:18.432451 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:00:18.769357 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:00:19.433138 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:00:19.769790 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:00:20.434384 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:00:20.770229 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:00:21.355401 #5] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-07-25T00:00:21.439360 #5] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-07-25T00:00:21.770707 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:00:22.760828 #5] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-07-25T00:00:22.771595 #5] INFO -- : Seeking section_change/0 to offset 0 +E, [2018-07-25T00:00:23.359190 #5] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- NoMethodError: undefined method `on_message' for EventStream:Class +/usr/src/app/app/consumers/courses_consumer.rb:10:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-07-25T00:00:23.361732 #5] INFO -- : Leaving group `notifications_course_change` +E, [2018-07-25T00:00:23.377119 #5] ERROR -- : Client fetch loop error: undefined method `on_message' for EventStream:Class +I, [2018-07-25T00:00:23.377323 #5] INFO -- : Joining group `notifications_course_change` +E, [2018-07-25T00:00:23.379235 #5] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-07-25T00:00:23.477331 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:00:24.379649 #5] INFO -- : Joining group `notifications_course_change` +I, [2018-07-25T00:00:24.383486 #5] INFO -- : Joined group `notifications_course_change` with member id `notifications-fc57f474-c611-4c11-8112-b8ca193edfdc` +I, [2018-07-25T00:00:24.383548 #5] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-07-25T00:00:24.385706 #5] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-07-25T00:00:24.386308 #5] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-07-25T00:00:24.538827 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-07-25T00:00:24.766241 #5] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- NoMethodError: undefined method `on_message' for EventStream:Class +/usr/src/app/app/consumers/sections_consumer.rb:10:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-07-25T00:00:24.766351 #5] INFO -- : Leaving group `notifications_notifications` +E, [2018-07-25T00:00:24.775848 #5] ERROR -- : Client fetch loop error: undefined method `on_message' for EventStream:Class +I, [2018-07-25T00:00:24.776290 #5] INFO -- : Joining group `notifications_notifications` +E, [2018-07-25T00:00:24.777691 #5] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-07-25T00:00:25.065961 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:00:25.539249 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:00:25.778344 #5] INFO -- : Joining group `notifications_notifications` +I, [2018-07-25T00:00:25.782836 #5] INFO -- : Joined group `notifications_notifications` with member id `notifications-45386b58-9efe-4e09-82b5-d87cfdc40dba` +I, [2018-07-25T00:00:25.782882 #5] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-07-25T00:00:25.786187 #5] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-07-25T00:00:25.786314 #5] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-07-25T00:00:26.066616 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:00:26.539698 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:00:27.067046 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:00:27.540281 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:00:28.067472 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:00:28.540879 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:00:29.068027 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:00:29.541761 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:00:30.070411 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:00:30.542541 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:00:31.073094 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:00:31.542865 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:00:32.073664 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:00:32.543668 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:00:33.074122 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:00:33.544808 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:00:34.074681 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:00:34.392218 #5] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-07-25T00:00:34.547601 #5] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-07-25T00:00:35.075453 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:00:35.792814 #5] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-07-25T00:00:36.077239 #5] INFO -- : Seeking section_change/0 to offset 0 +E, [2018-07-25T00:00:36.402457 #5] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- NoMethodError: undefined method `on_message' for EventStream:Class +/usr/src/app/app/consumers/courses_consumer.rb:10:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-07-25T00:00:36.407028 #5] INFO -- : Leaving group `notifications_course_change` +E, [2018-07-25T00:00:36.410376 #5] ERROR -- : Client fetch loop error: undefined method `on_message' for EventStream:Class +I, [2018-07-25T00:00:36.410837 #5] INFO -- : Joining group `notifications_course_change` +E, [2018-07-25T00:00:36.413120 #5] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-07-25T00:00:36.623902 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:00:37.413932 #5] INFO -- : Joining group `notifications_course_change` +I, [2018-07-25T00:00:37.418573 #5] INFO -- : Joined group `notifications_course_change` with member id `notifications-db4ef652-87a2-403f-98c4-1e39f832e9cd` +I, [2018-07-25T00:00:37.418619 #5] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-07-25T00:00:37.425069 #5] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-07-25T00:00:37.425152 #5] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-07-25T00:00:37.625538 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-07-25T00:00:37.803360 #5] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- NoMethodError: undefined method `on_message' for EventStream:Class +/usr/src/app/app/consumers/sections_consumer.rb:10:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-07-25T00:00:37.803423 #5] INFO -- : Leaving group `notifications_notifications` +E, [2018-07-25T00:00:37.806130 #5] ERROR -- : Client fetch loop error: undefined method `on_message' for EventStream:Class +I, [2018-07-25T00:00:37.806326 #5] INFO -- : Joining group `notifications_notifications` +E, [2018-07-25T00:00:37.807208 #5] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-07-25T00:00:38.047990 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:00:38.625926 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:00:38.807442 #5] INFO -- : Joining group `notifications_notifications` +I, [2018-07-25T00:00:38.810827 #5] INFO -- : Joined group `notifications_notifications` with member id `notifications-212ea2bf-6976-40fb-ba82-c71b9e47ee90` +I, [2018-07-25T00:00:38.810874 #5] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-07-25T00:00:38.813647 #5] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-07-25T00:00:38.813709 #5] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-07-25T00:00:39.049584 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:00:39.626413 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:00:40.050110 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:00:40.627041 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:00:41.050747 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:00:41.628207 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:00:42.051370 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:00:42.628884 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:00:43.051974 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:00:43.629300 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:00:44.052508 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:00:44.630030 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:00:45.053229 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:00:45.630949 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:00:46.053704 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:00:46.631303 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:00:47.054157 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:00:47.433903 #5] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-07-25T00:00:47.631848 #5] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-07-25T00:00:48.054523 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:00:48.819473 #5] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-07-25T00:00:49.055198 #5] INFO -- : Seeking section_change/0 to offset 0 +E, [2018-07-25T00:00:49.449478 #5] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- NoMethodError: undefined method `on_message' for EventStream:Class +/usr/src/app/app/consumers/courses_consumer.rb:10:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-07-25T00:00:49.451814 #5] INFO -- : Leaving group `notifications_course_change` +E, [2018-07-25T00:00:49.456671 #5] ERROR -- : Client fetch loop error: undefined method `on_message' for EventStream:Class +I, [2018-07-25T00:00:49.456867 #5] INFO -- : Joining group `notifications_course_change` +E, [2018-07-25T00:00:49.457752 #5] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-07-25T00:00:49.548208 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:00:50.460599 #5] INFO -- : Joining group `notifications_course_change` +I, [2018-07-25T00:00:50.472769 #5] INFO -- : Joined group `notifications_course_change` with member id `notifications-ecff12a1-4839-49c0-b860-d4542725b906` +I, [2018-07-25T00:00:50.472850 #5] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-07-25T00:00:50.481538 #5] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-07-25T00:00:50.481643 #5] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-07-25T00:00:50.549692 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-07-25T00:00:50.931238 #5] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- NoMethodError: undefined method `on_message' for EventStream:Class +/usr/src/app/app/consumers/sections_consumer.rb:10:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-07-25T00:00:50.932690 #5] INFO -- : Leaving group `notifications_notifications` +E, [2018-07-25T00:00:51.005868 #5] ERROR -- : Client fetch loop error: undefined method `on_message' for EventStream:Class +I, [2018-07-25T00:00:51.007849 #5] INFO -- : Joining group `notifications_notifications` +E, [2018-07-25T00:00:51.016125 #5] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-07-25T00:00:51.180492 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:00:51.551543 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:00:52.030838 #5] INFO -- : Joining group `notifications_notifications` +I, [2018-07-25T00:00:52.077645 #5] INFO -- : Joined group `notifications_notifications` with member id `notifications-01a74f2f-7bdb-4963-942c-773d303c318d` +I, [2018-07-25T00:00:52.077745 #5] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-07-25T00:00:52.091023 #5] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-07-25T00:00:52.091444 #5] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-07-25T00:00:52.182555 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:00:52.642317 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:00:53.184088 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:00:53.643973 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:00:54.184508 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:00:54.644518 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:00:55.185028 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:00:55.645079 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:00:56.185607 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:00:56.645545 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:00:57.186082 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:00:57.645979 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:00:58.186872 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:00:58.646891 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:00:59.187387 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:00:59.647378 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:01:00.187968 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:01:00.616539 #5] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-07-25T00:01:00.649652 #5] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-07-25T00:01:01.188566 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:01:02.116657 #5] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-07-25T00:01:02.189436 #5] INFO -- : Seeking section_change/0 to offset 0 +E, [2018-07-25T00:01:02.624833 #5] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- NoMethodError: undefined method `on_message' for EventStream:Class +/usr/src/app/app/consumers/courses_consumer.rb:10:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-07-25T00:09:06.430766 #5] INFO -- : New topics added to target list: section_change +I, [2018-07-25T00:09:06.430875 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-07-25T00:09:06.431507 #5] INFO -- : New topics added to target list: course_change +I, [2018-07-25T00:09:06.431561 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-07-25T00:09:06.436290 #5] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.19.0.8:9094 +E, [2018-07-25T00:09:06.436711 #5] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.19.0.8:9094 +E, [2018-07-25T00:09:06.438044 #5] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.19.0.8:9094 +E, [2018-07-25T00:09:06.438229 #5] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.19.0.8:9094 +E, [2018-07-25T00:09:11.437673 #5] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: +- kafka://kafka:9094: Connection refused - connect(2) for 172.19.0.8:9094 +I, [2018-07-25T00:09:11.438280 #5] INFO -- : New topics added to target list: course_change +I, [2018-07-25T00:09:11.438318 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-07-25T00:09:11.439057 #5] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: +- kafka://kafka:9094: Connection refused - connect(2) for 172.19.0.8:9094 +I, [2018-07-25T00:09:11.439980 #5] INFO -- : New topics added to target list: section_change +I, [2018-07-25T00:09:11.440051 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-07-25T00:09:11.441004 #5] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.19.0.8:9094 +E, [2018-07-25T00:09:11.441131 #5] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.19.0.8:9094 +E, [2018-07-25T00:09:11.441728 #5] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.19.0.8:9094 +E, [2018-07-25T00:09:11.441857 #5] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.19.0.8:9094 +E, [2018-07-25T00:09:16.441454 #5] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: +- kafka://kafka:9094: Connection refused - connect(2) for 172.19.0.8:9094 +I, [2018-07-25T00:09:16.442196 #5] INFO -- : New topics added to target list: course_change +I, [2018-07-25T00:09:16.442242 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-07-25T00:09:16.442834 #5] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: +- kafka://kafka:9094: Connection refused - connect(2) for 172.19.0.8:9094 +I, [2018-07-25T00:09:16.443557 #5] INFO -- : New topics added to target list: section_change +I, [2018-07-25T00:09:16.443617 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-07-25T00:09:16.538894 #5] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-07-25T00:09:16.539271 #5] INFO -- : Joining group `notifications_course_change` +I, [2018-07-25T00:09:16.544364 #5] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-07-25T00:09:16.544732 #5] INFO -- : Joining group `notifications_notifications` +I, [2018-07-25T00:09:16.545859 #5] INFO -- : Will fetch at most 1048576 bytes at a time per partition from section_change +I, [2018-07-25T00:09:16.546017 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-07-25T00:09:16.546216 #5] INFO -- : Will fetch at most 1048576 bytes at a time per partition from course_change +I, [2018-07-25T00:09:16.546290 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-07-25T00:09:16.646586 #5] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-07-25T00:09:16.646737 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:09:16.683115 #5] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-07-25T00:09:16.683217 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:09:17.649916 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:09:17.694761 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:09:18.650453 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:09:18.696133 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:09:19.651280 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:09:19.697473 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:09:20.658202 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:09:20.697956 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:09:21.666766 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:09:21.699172 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:09:22.673792 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:09:22.701123 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:09:23.434551 #5] INFO -- : Joined group `notifications_notifications` with member id `notifications-38c535c8-9638-47f8-951e-7bd4564dd2a0` +I, [2018-07-25T00:09:23.434634 #5] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-07-25T00:09:23.495083 #5] INFO -- : Joined group `notifications_course_change` with member id `notifications-345e6ded-9942-4ebb-9d5e-02e9717e4ae0` +I, [2018-07-25T00:09:23.495150 #5] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-07-25T00:09:23.674423 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:09:23.702088 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:09:24.435212 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-07-25T00:09:24.441684 #5] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-07-25T00:09:24.481800 #5] INFO -- : Partitions assigned for `section_change`: 0 +I, [2018-07-25T00:09:24.496933 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-07-25T00:09:24.510894 #5] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-07-25T00:09:24.529379 #5] INFO -- : Partitions assigned for `course_change`: 0 +I, [2018-07-25T00:09:24.679254 #5] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-07-25T00:09:24.679426 #5] INFO -- : New topics added to target list: section_change +I, [2018-07-25T00:09:24.679481 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-07-25T00:09:24.702557 #5] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-07-25T00:09:24.703561 #5] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-07-25T00:09:24.704272 #5] INFO -- : New topics added to target list: course_change +I, [2018-07-25T00:09:24.704331 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-07-25T00:09:24.723366 #5] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +E, [2018-07-25T00:09:26.523800 #5] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- NoMethodError: undefined method `on_message' for EventStream:Class +/usr/src/app/app/consumers/sections_consumer.rb:11:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-07-25T00:09:26.526131 #5] INFO -- : Leaving group `notifications_notifications` +E, [2018-07-25T00:09:26.609227 #5] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- NoMethodError: undefined method `on_message' for EventStream:Class +/usr/src/app/app/consumers/courses_consumer.rb:10:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-07-25T00:09:26.609371 #5] INFO -- : Leaving group `notifications_course_change` +E, [2018-07-25T00:09:26.651890 #5] ERROR -- : Client fetch loop error: undefined method `on_message' for EventStream:Class +I, [2018-07-25T00:09:26.652422 #5] INFO -- : Joining group `notifications_course_change` +E, [2018-07-25T00:09:26.667212 #5] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-07-25T00:09:26.667518 #5] ERROR -- : Client fetch loop error: undefined method `on_message' for EventStream:Class +I, [2018-07-25T00:09:26.667776 #5] INFO -- : Joining group `notifications_notifications` +I, [2018-07-25T00:09:26.668475 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-07-25T00:09:26.678916 #5] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-07-25T00:09:27.340841 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:09:27.667950 #5] INFO -- : Joining group `notifications_course_change` +I, [2018-07-25T00:09:27.669033 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:09:27.677945 #5] INFO -- : Joined group `notifications_course_change` with member id `notifications-fa0a4cb0-db03-40f6-9ee1-12980f970a36` +I, [2018-07-25T00:09:27.678030 #5] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-07-25T00:09:27.679139 #5] INFO -- : Joining group `notifications_notifications` +I, [2018-07-25T00:09:27.689630 #5] INFO -- : Joined group `notifications_notifications` with member id `notifications-adf88834-11c1-48d0-84cd-2d9d4a66b71f` +I, [2018-07-25T00:09:27.689692 #5] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-07-25T00:09:27.690442 #5] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-07-25T00:09:27.690516 #5] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-07-25T00:09:27.730631 #5] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-07-25T00:09:27.730904 #5] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-07-25T00:09:28.341668 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:09:28.670764 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:09:29.342152 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:09:29.676177 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:09:30.342759 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:09:30.676535 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:09:31.344522 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:09:31.695958 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:09:32.345315 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:09:32.696597 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:09:33.345844 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:09:33.697182 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:09:34.347227 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:09:34.698300 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:09:35.348493 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:09:35.698811 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:09:36.349791 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:09:36.699246 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:09:37.353881 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:09:37.699777 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:09:37.737915 #5] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-07-25T00:09:37.757815 #5] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-07-25T00:09:38.355480 #5] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-07-25T00:09:38.700421 #5] INFO -- : Seeking section_change/0 to offset 0 +E, [2018-07-25T00:09:39.749289 #5] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- NoMethodError: undefined method `on_message' for EventStream:Class +/usr/src/app/app/consumers/courses_consumer.rb:10:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-07-25T00:09:39.752103 #5] INFO -- : Leaving group `notifications_course_change` +E, [2018-07-25T00:09:39.766254 #5] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- NoMethodError: undefined method `on_message' for EventStream:Class +/usr/src/app/app/consumers/sections_consumer.rb:11:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-07-25T00:09:39.766313 #5] INFO -- : Leaving group `notifications_notifications` +E, [2018-07-25T00:09:39.792178 #5] ERROR -- : Client fetch loop error: undefined method `on_message' for EventStream:Class +I, [2018-07-25T00:09:39.792365 #5] INFO -- : Joining group `notifications_notifications` +E, [2018-07-25T00:09:39.798834 #5] ERROR -- : Client fetch loop error: undefined method `on_message' for EventStream:Class +I, [2018-07-25T00:09:39.799108 #5] INFO -- : Joining group `notifications_course_change` +E, [2018-07-25T00:09:39.802224 #5] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-07-25T00:09:39.805504 #5] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-07-25T00:09:39.889735 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:09:39.913993 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:09:40.803492 #5] INFO -- : Joining group `notifications_notifications` +I, [2018-07-25T00:09:40.806088 #5] INFO -- : Joining group `notifications_course_change` +I, [2018-07-25T00:09:40.819845 #5] INFO -- : Joined group `notifications_notifications` with member id `notifications-836a518f-e623-4e14-9eb3-01c48d9fe100` +I, [2018-07-25T00:09:40.819893 #5] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-07-25T00:09:40.835828 #5] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-07-25T00:09:40.835892 #5] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-07-25T00:09:40.837363 #5] INFO -- : Joined group `notifications_course_change` with member id `notifications-47aaa35c-214a-4354-959c-e18b865203f5` +I, [2018-07-25T00:09:40.837409 #5] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-07-25T00:09:40.840881 #5] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-07-25T00:09:40.841023 #5] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-07-25T00:09:40.890315 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:09:40.915193 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:09:41.890860 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:09:41.915815 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:09:42.891539 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:09:42.916273 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:09:43.892250 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:09:43.916794 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:09:44.892780 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:09:44.917763 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:09:45.893832 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:09:45.918101 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:09:46.895192 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:09:46.918628 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:09:47.896469 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:09:47.919682 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:09:48.897062 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:09:48.920104 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:09:49.897594 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:09:49.920883 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:09:50.846558 #5] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-07-25T00:09:50.847864 #5] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-07-25T00:09:50.897814 #5] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-07-25T00:09:50.921312 #5] INFO -- : Seeking course_change/0 to offset 0 +E, [2018-07-25T00:09:52.873341 #5] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- NoMethodError: undefined method `on_message' for EventStream:Class +/usr/src/app/app/consumers/courses_consumer.rb:10:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-07-25T00:09:52.897324 #5] INFO -- : Leaving group `notifications_course_change` +E, [2018-07-25T00:09:52.878228 #5] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- NoMethodError: undefined method `on_message' for EventStream:Class +/usr/src/app/app/consumers/sections_consumer.rb:11:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-07-25T00:09:52.899256 #5] INFO -- : Leaving group `notifications_notifications` +E, [2018-07-25T00:09:52.963704 #5] ERROR -- : Client fetch loop error: undefined method `on_message' for EventStream:Class +I, [2018-07-25T00:09:53.013284 #5] INFO -- : Joining group `notifications_notifications` +E, [2018-07-25T00:09:53.030414 #5] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-07-25T00:09:53.032583 #5] ERROR -- : Client fetch loop error: undefined method `on_message' for EventStream:Class +I, [2018-07-25T00:09:53.032914 #5] INFO -- : Joining group `notifications_course_change` +E, [2018-07-25T00:09:53.043111 #5] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-07-25T00:09:53.086834 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:09:53.243487 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:09:54.030717 #5] INFO -- : Joining group `notifications_notifications` +I, [2018-07-25T00:09:54.043649 #5] INFO -- : Joining group `notifications_course_change` +I, [2018-07-25T00:09:54.069787 #5] INFO -- : Joined group `notifications_course_change` with member id `notifications-b557efd4-881c-4f22-99a4-71d3d19c4ec1` +I, [2018-07-25T00:09:54.069859 #5] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-07-25T00:09:54.073275 #5] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-07-25T00:09:54.073365 #5] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-07-25T00:09:54.087573 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:09:54.097102 #5] INFO -- : Joined group `notifications_notifications` with member id `notifications-0bfb3bb2-9e67-429e-9d7f-36886473fd4d` +I, [2018-07-25T00:09:54.097176 #5] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-07-25T00:09:54.118503 #5] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-07-25T00:09:54.118599 #5] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-07-25T00:09:54.274794 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:09:55.088362 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:09:55.275628 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:09:56.090329 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:09:56.342735 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:09:57.090874 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:09:57.463635 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:09:58.091251 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:09:58.464052 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:09:59.091614 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:09:59.464392 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:10:00.092018 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:10:00.464877 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:10:01.092951 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:10:01.466045 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:10:02.093557 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:10:02.467137 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:10:03.094071 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:10:03.467375 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:10:04.081166 #5] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-07-25T00:10:04.094598 #5] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-07-25T00:10:04.125476 #5] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-07-25T00:10:04.467929 #5] INFO -- : Seeking section_change/0 to offset 0 +E, [2018-07-25T00:10:06.092182 #5] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- NoMethodError: undefined method `on_message' for EventStream:Class +/usr/src/app/app/consumers/courses_consumer.rb:10:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-07-25T00:10:06.094456 #5] INFO -- : Leaving group `notifications_course_change` +E, [2018-07-25T00:10:06.099220 #5] ERROR -- : Client fetch loop error: undefined method `on_message' for EventStream:Class +I, [2018-07-25T00:10:06.099587 #5] INFO -- : Joining group `notifications_course_change` +E, [2018-07-25T00:10:06.106022 #5] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-07-25T00:10:06.128795 #5] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- NoMethodError: undefined method `on_message' for EventStream:Class +/usr/src/app/app/consumers/sections_consumer.rb:11:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-07-25T00:10:06.128855 #5] INFO -- : Leaving group `notifications_notifications` +E, [2018-07-25T00:10:06.131038 #5] ERROR -- : Client fetch loop error: undefined method `on_message' for EventStream:Class +I, [2018-07-25T00:10:06.131225 #5] INFO -- : Joining group `notifications_notifications` +E, [2018-07-25T00:10:06.131908 #5] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-07-25T00:10:06.139611 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:10:06.205579 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:10:07.106458 #5] INFO -- : Joining group `notifications_course_change` +I, [2018-07-25T00:10:07.119418 #5] INFO -- : Joined group `notifications_course_change` with member id `notifications-ce54dd9b-7cb0-4eda-81dc-d334485eadd5` +I, [2018-07-25T00:10:07.119471 #5] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-07-25T00:10:07.123770 #5] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-07-25T00:10:07.123876 #5] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-07-25T00:10:07.132229 #5] INFO -- : Joining group `notifications_notifications` +I, [2018-07-25T00:10:07.140243 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:10:07.144563 #5] INFO -- : Joined group `notifications_notifications` with member id `notifications-76b02d83-4d0c-4711-b575-2cf5d55b28bf` +I, [2018-07-25T00:10:07.144610 #5] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-07-25T00:10:07.148774 #5] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-07-25T00:10:07.148861 #5] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-07-25T00:10:07.212041 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:10:08.140800 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:10:08.212716 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:10:09.141634 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:10:09.216268 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:10:10.142221 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:10:10.216660 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:10:11.142596 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:10:11.217489 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:10:12.143027 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:10:12.240931 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:10:13.143690 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:10:13.241421 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:10:14.146622 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:10:14.242752 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:10:15.147277 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:10:15.243602 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:10:16.148332 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:10:16.243977 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:10:17.135043 #5] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-07-25T00:10:17.148806 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:10:17.210613 #5] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-07-25T00:10:17.245115 #5] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-07-25T00:10:18.149147 #5] INFO -- : Seeking section_change/0 to offset 0 +E, [2018-07-25T00:10:19.140414 #5] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- NoMethodError: undefined method `on_message' for EventStream:Class +/usr/src/app/app/consumers/courses_consumer.rb:10:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-07-25T00:10:19.143243 #5] INFO -- : Leaving group `notifications_course_change` +E, [2018-07-25T00:10:19.149194 #5] ERROR -- : Client fetch loop error: undefined method `on_message' for EventStream:Class +I, [2018-07-25T00:10:19.149470 #5] INFO -- : Joining group `notifications_course_change` +E, [2018-07-25T00:10:19.163667 #5] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-07-25T00:10:19.223279 #5] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- NoMethodError: undefined method `on_message' for EventStream:Class +/usr/src/app/app/consumers/sections_consumer.rb:11:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-07-25T00:10:19.223486 #5] INFO -- : Leaving group `notifications_notifications` +E, [2018-07-25T00:10:19.226799 #5] ERROR -- : Client fetch loop error: undefined method `on_message' for EventStream:Class +I, [2018-07-25T00:10:19.227142 #5] INFO -- : Joining group `notifications_notifications` +E, [2018-07-25T00:10:19.227951 #5] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-07-25T00:10:19.302091 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:10:19.317259 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:10:20.164577 #5] INFO -- : Joining group `notifications_course_change` +I, [2018-07-25T00:10:20.171693 #5] INFO -- : Joined group `notifications_course_change` with member id `notifications-b456dbea-6fb6-4567-8ba4-43430a0491d3` +I, [2018-07-25T00:10:20.171924 #5] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-07-25T00:10:20.183316 #5] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-07-25T00:10:20.183407 #5] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-07-25T00:10:20.229026 #5] INFO -- : Joining group `notifications_notifications` +I, [2018-07-25T00:10:20.233770 #5] INFO -- : Joined group `notifications_notifications` with member id `notifications-02488c04-4763-4749-8271-d96814623e98` +I, [2018-07-25T00:10:20.233815 #5] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-07-25T00:10:20.239114 #5] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-07-25T00:10:20.239186 #5] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-07-25T00:10:20.303218 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:10:20.318372 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:10:21.305081 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:10:21.320437 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:10:22.309311 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:10:22.324366 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:10:23.323074 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:10:23.327666 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:10:24.323774 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:10:24.328231 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:10:25.324311 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:10:25.329428 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:10:26.325517 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:10:26.329978 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:10:27.326789 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:10:27.330777 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:10:28.331482 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:10:28.331766 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:10:29.268627 #5] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-07-25T00:10:29.332483 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:10:29.340355 #5] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-07-25T00:10:30.333942 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:10:30.852477 #5] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +E, [2018-07-25T00:10:31.280215 #5] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- NoMethodError: undefined method `on_message' for EventStream:Class +/usr/src/app/app/consumers/courses_consumer.rb:10:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-07-25T00:10:31.294592 #5] INFO -- : Leaving group `notifications_course_change` +E, [2018-07-25T00:10:31.298850 #5] ERROR -- : Client fetch loop error: undefined method `on_message' for EventStream:Class +I, [2018-07-25T00:10:31.299329 #5] INFO -- : Joining group `notifications_course_change` +E, [2018-07-25T00:10:31.300338 #5] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-07-25T00:10:31.334895 #5] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-07-25T00:10:31.369185 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:10:32.301539 #5] INFO -- : Joining group `notifications_course_change` +I, [2018-07-25T00:10:32.305531 #5] INFO -- : Joined group `notifications_course_change` with member id `notifications-8b74c337-568d-4b14-8ef9-201d014ab199` +I, [2018-07-25T00:10:32.305574 #5] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-07-25T00:10:32.308030 #5] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-07-25T00:10:32.308090 #5] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-07-25T00:10:32.369567 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-07-25T00:10:32.859824 #5] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- NoMethodError: undefined method `on_message' for EventStream:Class +/usr/src/app/app/consumers/sections_consumer.rb:11:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-07-25T00:10:32.859970 #5] INFO -- : Leaving group `notifications_notifications` +E, [2018-07-25T00:10:32.863286 #5] ERROR -- : Client fetch loop error: undefined method `on_message' for EventStream:Class +I, [2018-07-25T00:10:32.863448 #5] INFO -- : Joining group `notifications_notifications` +E, [2018-07-25T00:10:32.867576 #5] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-07-25T00:10:33.000442 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:10:33.370268 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:10:33.868238 #5] INFO -- : Joining group `notifications_notifications` +I, [2018-07-25T00:10:33.875383 #5] INFO -- : Joined group `notifications_notifications` with member id `notifications-2cb120cb-8be4-496b-8742-a6eed37d88a1` +I, [2018-07-25T00:10:33.875452 #5] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-07-25T00:10:33.878795 #5] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-07-25T00:10:33.879008 #5] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-07-25T00:10:34.000761 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:10:34.370711 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:10:35.001447 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:10:35.371615 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:10:36.009707 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:10:36.372384 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:10:37.010103 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:10:37.372937 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:10:38.012195 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:10:38.373676 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:10:39.019630 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:10:39.374608 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:10:40.020437 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:10:40.375470 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:10:41.021047 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:10:41.376585 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:10:42.026501 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:10:42.315111 #5] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-07-25T00:10:42.377170 #5] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-07-25T00:10:43.026948 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:10:43.884044 #5] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-07-25T00:10:44.028708 #5] INFO -- : Seeking section_change/0 to offset 0 +E, [2018-07-25T00:10:44.321081 #5] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- NoMethodError: undefined method `on_message' for EventStream:Class +/usr/src/app/app/consumers/courses_consumer.rb:10:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-07-25T00:10:44.323411 #5] INFO -- : Leaving group `notifications_course_change` +E, [2018-07-25T00:10:44.341064 #5] ERROR -- : Client fetch loop error: undefined method `on_message' for EventStream:Class +I, [2018-07-25T00:10:44.341261 #5] INFO -- : Joining group `notifications_course_change` +E, [2018-07-25T00:10:44.342662 #5] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-07-25T00:10:44.421297 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:10:45.343680 #5] INFO -- : Joining group `notifications_course_change` +I, [2018-07-25T00:10:45.347951 #5] INFO -- : Joined group `notifications_course_change` with member id `notifications-a90811c7-5f79-48d2-bff0-2bd07d2ade6b` +I, [2018-07-25T00:10:45.347999 #5] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-07-25T00:10:45.350712 #5] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-07-25T00:10:45.350811 #5] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-07-25T00:10:45.422271 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-07-25T00:10:45.887525 #5] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- NoMethodError: undefined method `on_message' for EventStream:Class +/usr/src/app/app/consumers/sections_consumer.rb:11:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-07-25T00:10:45.887600 #5] INFO -- : Leaving group `notifications_notifications` +E, [2018-07-25T00:10:45.892163 #5] ERROR -- : Client fetch loop error: undefined method `on_message' for EventStream:Class +I, [2018-07-25T00:10:45.892399 #5] INFO -- : Joining group `notifications_notifications` +E, [2018-07-25T00:10:45.893439 #5] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-07-25T00:10:46.235864 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:10:46.431588 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:10:46.893815 #5] INFO -- : Joining group `notifications_notifications` +I, [2018-07-25T00:10:46.900748 #5] INFO -- : Joined group `notifications_notifications` with member id `notifications-f1a54254-227d-4ab0-a697-fc5e47528126` +I, [2018-07-25T00:10:46.900802 #5] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-07-25T00:10:46.902818 #5] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-07-25T00:10:46.902878 #5] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-07-25T00:10:47.236771 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:10:47.432701 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:10:48.237226 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:10:48.433494 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:10:49.237800 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:10:49.433967 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:10:50.238363 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:10:50.434660 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:10:51.238854 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:10:51.435067 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:10:52.239258 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:10:52.435593 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:10:53.239867 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:10:53.436527 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:10:54.240536 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:10:54.437752 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:10:55.241910 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:10:55.355096 #5] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-07-25T00:10:55.438750 #5] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-07-25T00:10:56.242717 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:10:56.910900 #5] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-07-25T00:10:57.243125 #5] INFO -- : Seeking section_change/0 to offset 0 +E, [2018-07-25T00:10:57.359259 #5] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- NoMethodError: undefined method `on_message' for EventStream:Class +/usr/src/app/app/consumers/courses_consumer.rb:10:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-07-25T00:10:57.361240 #5] INFO -- : Leaving group `notifications_course_change` +E, [2018-07-25T00:10:57.364229 #5] ERROR -- : Client fetch loop error: undefined method `on_message' for EventStream:Class +I, [2018-07-25T00:10:57.364469 #5] INFO -- : Joining group `notifications_course_change` +E, [2018-07-25T00:10:57.366183 #5] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-07-25T00:10:57.480885 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:10:58.366534 #5] INFO -- : Joining group `notifications_course_change` +I, [2018-07-25T00:10:58.369643 #5] INFO -- : Joined group `notifications_course_change` with member id `notifications-fd39fcdb-ee59-4c49-9734-cd601ec4f64f` +I, [2018-07-25T00:10:58.369704 #5] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-07-25T00:10:58.372177 #5] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-07-25T00:10:58.372254 #5] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-07-25T00:10:58.481323 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-07-25T00:10:58.915048 #5] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- NoMethodError: undefined method `on_message' for EventStream:Class +/usr/src/app/app/consumers/sections_consumer.rb:11:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-07-25T00:10:58.915292 #5] INFO -- : Leaving group `notifications_notifications` +E, [2018-07-25T00:10:58.918451 #5] ERROR -- : Client fetch loop error: undefined method `on_message' for EventStream:Class +I, [2018-07-25T00:10:58.918649 #5] INFO -- : Joining group `notifications_notifications` +E, [2018-07-25T00:10:58.919486 #5] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-07-25T00:10:58.985053 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:10:59.481697 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:10:59.919891 #5] INFO -- : Joining group `notifications_notifications` +I, [2018-07-25T00:10:59.927436 #5] INFO -- : Joined group `notifications_notifications` with member id `notifications-1e7deef5-c1c6-4b00-9235-21de2faa4d1f` +I, [2018-07-25T00:10:59.927508 #5] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-07-25T00:10:59.930871 #5] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-07-25T00:10:59.930930 #5] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-07-25T00:10:59.986140 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:11:00.483574 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:11:00.987363 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:11:01.485696 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:11:01.988549 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:11:02.486248 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:11:02.989021 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:11:03.486703 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:11:03.989482 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:11:04.487382 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:11:04.990323 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:11:05.504726 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:11:05.990844 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:11:06.511337 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:11:06.991646 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:11:07.512394 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:11:07.992015 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:11:08.378095 #5] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-07-25T00:11:08.513509 #5] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-07-25T00:11:08.992898 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:11:09.938488 #5] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-07-25T00:11:09.994158 #5] INFO -- : Seeking section_change/0 to offset 0 +E, [2018-07-25T00:11:10.382349 #5] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- NoMethodError: undefined method `on_message' for EventStream:Class +/usr/src/app/app/consumers/courses_consumer.rb:10:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-07-25T00:11:10.385573 #5] INFO -- : Leaving group `notifications_course_change` +E, [2018-07-25T00:11:10.389326 #5] ERROR -- : Client fetch loop error: undefined method `on_message' for EventStream:Class +I, [2018-07-25T00:11:10.389576 #5] INFO -- : Joining group `notifications_course_change` +E, [2018-07-25T00:11:10.391654 #5] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-07-25T00:11:10.397563 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:11:11.391932 #5] INFO -- : Joining group `notifications_course_change` +I, [2018-07-25T00:11:11.397942 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:11:11.398116 #5] INFO -- : Joined group `notifications_course_change` with member id `notifications-ba5cb8bc-4e4d-477c-8614-e54f5ccd739f` +I, [2018-07-25T00:11:11.398158 #5] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-07-25T00:11:11.401082 #5] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-07-25T00:11:11.401167 #5] WARN -- : Not fetching from course_change/0 due to pause +E, [2018-07-25T00:11:11.944189 #5] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- NoMethodError: undefined method `on_message' for EventStream:Class +/usr/src/app/app/consumers/sections_consumer.rb:11:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-07-25T00:11:11.944267 #5] INFO -- : Leaving group `notifications_notifications` +E, [2018-07-25T00:11:11.947708 #5] ERROR -- : Client fetch loop error: undefined method `on_message' for EventStream:Class +I, [2018-07-25T00:11:11.947871 #5] INFO -- : Joining group `notifications_notifications` +E, [2018-07-25T00:11:11.949058 #5] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-07-25T00:11:12.257212 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:11:12.398336 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:11:12.949379 #5] INFO -- : Joining group `notifications_notifications` +I, [2018-07-25T00:11:12.953138 #5] INFO -- : Joined group `notifications_notifications` with member id `notifications-c207901c-e5d9-4e80-9100-b9879c37d34b` +I, [2018-07-25T00:11:12.953197 #5] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-07-25T00:11:12.963394 #5] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-07-25T00:11:12.963487 #5] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-07-25T00:11:13.257569 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:11:13.398806 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:11:14.258206 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:11:14.399238 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:11:15.332448 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:11:15.473967 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:11:16.334119 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:11:16.474707 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:11:17.334925 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:11:17.476379 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:11:18.336945 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:11:18.478059 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:11:19.337324 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:11:19.478415 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:11:20.340345 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:11:20.478848 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:11:21.341238 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:11:21.488665 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:11:21.518816 #5] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-07-25T00:11:22.342007 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:11:22.488982 #5] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-07-25T00:11:23.342428 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:11:23.345015 #5] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +E, [2018-07-25T00:11:23.533063 #5] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- NoMethodError: undefined method `on_message' for EventStream:Class +/usr/src/app/app/consumers/courses_consumer.rb:10:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-07-25T00:11:23.537355 #5] INFO -- : Leaving group `notifications_course_change` +E, [2018-07-25T00:11:23.541383 #5] ERROR -- : Client fetch loop error: undefined method `on_message' for EventStream:Class +I, [2018-07-25T00:11:23.541881 #5] INFO -- : Joining group `notifications_course_change` +E, [2018-07-25T00:11:23.543688 #5] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-07-25T00:11:23.730759 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:11:24.342836 #5] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-07-25T00:11:24.544101 #5] INFO -- : Joining group `notifications_course_change` +I, [2018-07-25T00:11:24.551579 #5] INFO -- : Joined group `notifications_course_change` with member id `notifications-d60c96e3-b1dd-4f43-b88a-b576047d9768` +I, [2018-07-25T00:11:24.551631 #5] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-07-25T00:11:24.554495 #5] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-07-25T00:11:24.554562 #5] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-07-25T00:11:24.731229 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-07-25T00:11:25.350425 #5] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- NoMethodError: undefined method `on_message' for EventStream:Class +/usr/src/app/app/consumers/sections_consumer.rb:11:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-07-25T00:11:25.350529 #5] INFO -- : Leaving group `notifications_notifications` +E, [2018-07-25T00:11:25.363606 #5] ERROR -- : Client fetch loop error: undefined method `on_message' for EventStream:Class +I, [2018-07-25T00:11:25.363908 #5] INFO -- : Joining group `notifications_notifications` +E, [2018-07-25T00:11:25.366064 #5] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-07-25T00:11:25.638844 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:11:25.732197 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:11:26.366863 #5] INFO -- : Joining group `notifications_notifications` +I, [2018-07-25T00:11:26.374031 #5] INFO -- : Joined group `notifications_notifications` with member id `notifications-c6666752-a4be-422c-a6bd-4d834ff604e0` +I, [2018-07-25T00:11:26.374082 #5] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-07-25T00:11:26.389549 #5] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-07-25T00:11:26.389635 #5] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-07-25T00:11:26.642667 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:11:26.733121 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:11:27.643261 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:11:27.734144 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:11:28.643809 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:11:28.734940 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:11:29.664986 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:11:29.737962 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:11:30.665529 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:11:30.738560 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:11:31.666298 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:11:31.739310 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:11:32.667527 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:11:32.739651 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:11:33.668005 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:11:33.740043 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:11:34.562798 #5] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-07-25T00:11:34.668558 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:11:34.740655 #5] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-07-25T00:11:35.668956 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:11:36.397576 #5] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +E, [2018-07-25T00:11:36.571932 #5] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- NoMethodError: undefined method `on_message' for EventStream:Class +/usr/src/app/app/consumers/courses_consumer.rb:10:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-07-25T00:11:36.574070 #5] INFO -- : Leaving group `notifications_course_change` +E, [2018-07-25T00:11:36.576566 #5] ERROR -- : Client fetch loop error: undefined method `on_message' for EventStream:Class +I, [2018-07-25T00:11:36.576824 #5] INFO -- : Joining group `notifications_course_change` +E, [2018-07-25T00:11:36.578998 #5] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-07-25T00:11:36.669303 #5] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-07-25T00:11:36.949078 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:11:37.579228 #5] INFO -- : Joining group `notifications_course_change` +I, [2018-07-25T00:11:37.582152 #5] INFO -- : Joined group `notifications_course_change` with member id `notifications-b14e5f74-fe61-4129-a07f-1bf9026aa3da` +I, [2018-07-25T00:11:37.582195 #5] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-07-25T00:11:37.584361 #5] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-07-25T00:11:37.584423 #5] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-07-25T00:11:37.949460 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-07-25T00:11:38.402023 #5] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- NoMethodError: undefined method `on_message' for EventStream:Class +/usr/src/app/app/consumers/sections_consumer.rb:11:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-07-25T00:11:38.402082 #5] INFO -- : Leaving group `notifications_notifications` +E, [2018-07-25T00:11:38.404934 #5] ERROR -- : Client fetch loop error: undefined method `on_message' for EventStream:Class +I, [2018-07-25T00:11:38.405098 #5] INFO -- : Joining group `notifications_notifications` +E, [2018-07-25T00:11:38.408453 #5] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-07-25T00:11:38.552830 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:11:38.949975 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:11:39.408747 #5] INFO -- : Joining group `notifications_notifications` +I, [2018-07-25T00:11:39.412065 #5] INFO -- : Joined group `notifications_notifications` with member id `notifications-b3b8efa6-d61f-4ae3-bbba-d2a70d17b052` +I, [2018-07-25T00:11:39.412108 #5] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-07-25T00:11:39.418001 #5] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-07-25T00:11:39.418070 #5] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-07-25T00:11:39.553170 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:11:39.950515 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:11:40.556052 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:11:40.951110 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:11:41.561953 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:11:41.951857 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:11:42.568023 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:11:42.952256 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:11:43.569369 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:11:43.953362 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:11:44.569732 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:11:44.953802 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:11:45.570252 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:11:45.954815 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:11:46.570969 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:11:46.955712 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:11:47.571426 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:11:47.591608 #5] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-07-25T00:11:47.956409 #5] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-07-25T00:11:48.571995 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:11:49.430492 #5] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-07-25T00:11:49.572635 #5] INFO -- : Seeking section_change/0 to offset 0 +E, [2018-07-25T00:11:49.602711 #5] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- NoMethodError: undefined method `on_message' for EventStream:Class +/usr/src/app/app/consumers/courses_consumer.rb:10:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-07-25T00:11:49.605367 #5] INFO -- : Leaving group `notifications_course_change` +E, [2018-07-25T00:11:49.616360 #5] ERROR -- : Client fetch loop error: undefined method `on_message' for EventStream:Class +I, [2018-07-25T00:11:49.616666 #5] INFO -- : Joining group `notifications_course_change` +E, [2018-07-25T00:11:49.621713 #5] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-07-25T00:11:49.972384 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:11:50.622122 #5] INFO -- : Joining group `notifications_course_change` +I, [2018-07-25T00:11:50.626306 #5] INFO -- : Joined group `notifications_course_change` with member id `notifications-b0eb9d46-596f-442d-8867-9ea478e21db0` +I, [2018-07-25T00:11:50.626353 #5] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-07-25T00:11:50.628984 #5] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-07-25T00:11:50.629098 #5] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-07-25T00:11:50.973419 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-07-25T00:11:51.435737 #5] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- NoMethodError: undefined method `on_message' for EventStream:Class +/usr/src/app/app/consumers/sections_consumer.rb:11:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-07-25T00:11:51.435796 #5] INFO -- : Leaving group `notifications_notifications` +E, [2018-07-25T00:11:51.438043 #5] ERROR -- : Client fetch loop error: undefined method `on_message' for EventStream:Class +I, [2018-07-25T00:11:51.438329 #5] INFO -- : Joining group `notifications_notifications` +E, [2018-07-25T00:11:51.439267 #5] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-07-25T00:11:51.489922 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:11:51.974049 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:11:52.439603 #5] INFO -- : Joining group `notifications_notifications` +I, [2018-07-25T00:11:52.446978 #5] INFO -- : Joined group `notifications_notifications` with member id `notifications-b8f40b96-6e3c-4e39-bac8-862724c3a058` +I, [2018-07-25T00:11:52.447023 #5] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-07-25T00:11:52.449138 #5] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-07-25T00:11:52.449200 #5] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-07-25T00:11:52.490382 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:11:52.974689 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:11:53.490828 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:11:53.975283 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:11:54.491186 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:11:54.976767 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:11:55.491996 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:11:55.977979 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:11:56.492290 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:11:56.979310 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:11:57.493007 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:11:57.979821 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:11:58.493720 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:11:58.989895 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:11:59.494165 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:11:59.991742 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:12:00.495193 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:12:00.924341 #5] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-07-25T00:12:00.992760 #5] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-07-25T00:12:01.496144 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:12:02.462433 #5] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-07-25T00:12:02.496740 #5] INFO -- : Seeking section_change/0 to offset 0 +E, [2018-07-25T00:12:02.932603 #5] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- NoMethodError: undefined method `on_message' for EventStream:Class +/usr/src/app/app/consumers/courses_consumer.rb:10:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-07-25T00:17:33.651755 #5] INFO -- : New topics added to target list: section_change +I, [2018-07-25T00:17:33.651900 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-07-25T00:17:33.656788 #5] INFO -- : New topics added to target list: course_change +I, [2018-07-25T00:17:33.656941 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-07-25T00:17:33.658377 #5] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.19.0.14:9094 +E, [2018-07-25T00:17:33.662764 #5] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.19.0.14:9094 +E, [2018-07-25T00:17:33.670490 #5] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.19.0.14:9094 +E, [2018-07-25T00:17:33.670646 #5] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.19.0.14:9094 +E, [2018-07-25T00:17:38.674041 #5] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: +- kafka://kafka:9094: Connection refused - connect(2) for 172.19.0.14:9094 +I, [2018-07-25T00:17:38.675069 #5] INFO -- : New topics added to target list: course_change +I, [2018-07-25T00:17:38.675173 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-07-25T00:17:38.676310 #5] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: +- kafka://kafka:9094: Connection refused - connect(2) for 172.19.0.14:9094 +I, [2018-07-25T00:17:38.677747 #5] INFO -- : New topics added to target list: section_change +I, [2018-07-25T00:17:38.677949 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-07-25T00:17:38.680128 #5] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.19.0.14:9094 +E, [2018-07-25T00:17:38.680705 #5] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.19.0.14:9094 +E, [2018-07-25T00:17:38.681674 #5] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.19.0.14:9094 +E, [2018-07-25T00:17:38.684684 #5] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.19.0.14:9094 +E, [2018-07-25T00:17:43.681451 #5] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: +- kafka://kafka:9094: Connection refused - connect(2) for 172.19.0.14:9094 +I, [2018-07-25T00:17:43.682527 #5] INFO -- : New topics added to target list: course_change +I, [2018-07-25T00:17:43.682584 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-07-25T00:17:43.683580 #5] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.19.0.14:9094 +E, [2018-07-25T00:17:43.683671 #5] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.19.0.14:9094 +E, [2018-07-25T00:17:43.687462 #5] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: +- kafka://kafka:9094: Connection refused - connect(2) for 172.19.0.14:9094 +I, [2018-07-25T00:17:43.689094 #5] INFO -- : New topics added to target list: section_change +I, [2018-07-25T00:17:43.689314 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-07-25T00:17:43.690290 #5] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.19.0.14:9094 +E, [2018-07-25T00:17:43.690390 #5] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.19.0.14:9094 +E, [2018-07-25T00:17:48.685867 #5] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: +- kafka://kafka:9094: Connection refused - connect(2) for 172.19.0.14:9094 +I, [2018-07-25T00:17:48.686950 #5] INFO -- : New topics added to target list: course_change +I, [2018-07-25T00:17:48.687021 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-07-25T00:17:48.691635 #5] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: +- kafka://kafka:9094: Connection refused - connect(2) for 172.19.0.14:9094 +I, [2018-07-25T00:17:48.695175 #5] INFO -- : New topics added to target list: section_change +I, [2018-07-25T00:17:48.695228 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-07-25T00:17:50.713275 #5] ERROR -- : No brokers in cluster +E, [2018-07-25T00:17:50.773513 #5] ERROR -- : No brokers in cluster +E, [2018-07-25T00:17:55.714529 #5] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: + +I, [2018-07-25T00:17:55.734063 #5] INFO -- : New topics added to target list: course_change +I, [2018-07-25T00:17:55.734150 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-07-25T00:17:55.774790 #5] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: + +I, [2018-07-25T00:17:55.776503 #5] INFO -- : New topics added to target list: section_change +I, [2018-07-25T00:17:55.776562 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-07-25T00:17:55.986387 #5] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-07-25T00:17:55.986618 #5] INFO -- : Joining group `notifications_course_change` +I, [2018-07-25T00:17:56.076345 #5] INFO -- : Will fetch at most 1048576 bytes at a time per partition from course_change +I, [2018-07-25T00:17:56.076553 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-07-25T00:17:56.120308 #5] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-07-25T00:17:56.120443 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:17:56.229170 #5] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-07-25T00:17:56.229411 #5] INFO -- : Joining group `notifications_notifications` +I, [2018-07-25T00:17:56.288188 #5] INFO -- : Will fetch at most 1048576 bytes at a time per partition from section_change +I, [2018-07-25T00:17:56.288383 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-07-25T00:17:56.316352 #5] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-07-25T00:17:56.316465 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:17:57.120919 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:17:57.316822 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:17:58.124491 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:17:58.317261 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:17:59.135163 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:17:59.320917 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-07-25T00:17:59.668388 #5] ERROR -- : Failed to find coordinator for group `notifications_notifications`; retrying... +I, [2018-07-25T00:18:00.137359 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:18:00.321342 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:18:00.668827 #5] INFO -- : Joining group `notifications_notifications` +I, [2018-07-25T00:18:00.814358 #5] INFO -- : Joined group `notifications_course_change` with member id `notifications-19a5a180-0d9c-495c-826d-f83dd8e682ec` +I, [2018-07-25T00:18:00.814430 #5] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-07-25T00:18:00.822007 #5] INFO -- : Joined group `notifications_notifications` with member id `notifications-0aecc87d-17af-4699-97c7-d1b8ac263b94` +I, [2018-07-25T00:18:00.822071 #5] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-07-25T00:18:01.139554 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:18:01.323214 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:18:01.816529 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-07-25T00:18:01.823247 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-07-25T00:18:01.827642 #5] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-07-25T00:18:01.871036 #5] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-07-25T00:18:02.052698 #5] INFO -- : Partitions assigned for `section_change`: 0 +I, [2018-07-25T00:18:02.064833 #5] INFO -- : Partitions assigned for `course_change`: 0 +I, [2018-07-25T00:18:02.142748 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:18:02.325053 #5] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-07-25T00:18:02.325172 #5] INFO -- : New topics added to target list: section_change +I, [2018-07-25T00:18:02.325204 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-07-25T00:18:02.341786 #5] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-07-25T00:18:03.143263 #5] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-07-25T00:18:03.143436 #5] INFO -- : New topics added to target list: course_change +I, [2018-07-25T00:18:03.143486 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-07-25T00:18:03.177700 #5] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +E, [2018-07-25T00:18:04.289722 #5] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- NoMethodError: undefined method `notify' for EventStream:Class +/usr/src/app/app/consumers/sections_consumer.rb:10:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-07-25T00:18:04.289813 #5] INFO -- : Leaving group `notifications_notifications` +E, [2018-07-25T00:18:04.291311 #5] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- NoMethodError: undefined method `notify' for EventStream:Class +/usr/src/app/app/consumers/courses_consumer.rb:10:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-07-25T00:18:04.291446 #5] INFO -- : Leaving group `notifications_course_change` +E, [2018-07-25T00:18:04.355531 #5] ERROR -- : Client fetch loop error: undefined method `notify' for EventStream:Class +I, [2018-07-25T00:18:04.355799 #5] INFO -- : Joining group `notifications_course_change` +E, [2018-07-25T00:18:04.363402 #5] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-07-25T00:18:04.365586 #5] ERROR -- : Client fetch loop error: undefined method `notify' for EventStream:Class +I, [2018-07-25T00:18:04.365979 #5] INFO -- : Joining group `notifications_notifications` +E, [2018-07-25T00:18:04.372340 #5] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-07-25T00:18:04.454932 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:18:04.466101 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:18:05.363831 #5] INFO -- : Joining group `notifications_course_change` +I, [2018-07-25T00:18:05.372741 #5] INFO -- : Joining group `notifications_notifications` +I, [2018-07-25T00:18:05.375531 #5] INFO -- : Joined group `notifications_course_change` with member id `notifications-70a3ef63-cdbe-4de8-9d20-18ea92cab2c9` +I, [2018-07-25T00:18:05.375577 #5] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-07-25T00:18:05.391208 #5] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-07-25T00:18:05.391456 #5] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-07-25T00:18:05.408628 #5] INFO -- : Joined group `notifications_notifications` with member id `notifications-46f24789-7be8-416b-ace5-a05ef624ba8f` +I, [2018-07-25T00:18:05.408704 #5] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-07-25T00:18:05.455370 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:18:05.456059 #5] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-07-25T00:18:05.456116 #5] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-07-25T00:18:05.466556 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:18:06.457576 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:18:06.467723 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:18:07.458204 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:18:07.469248 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:18:08.459093 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:18:08.469757 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:18:09.459943 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:18:09.474399 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:18:10.481975 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:18:10.489663 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:18:11.482637 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:18:11.492193 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:18:12.483137 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:18:12.493561 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:18:13.483630 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:18:13.494949 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:18:14.484524 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:18:14.496814 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:18:15.423288 #5] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-07-25T00:18:15.485075 #5] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-07-25T00:18:15.497758 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:18:15.535328 #5] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-07-25T00:18:16.498364 #5] INFO -- : Seeking section_change/0 to offset 0 +E, [2018-07-25T00:18:17.442623 #5] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- NoMethodError: undefined method `notify' for EventStream:Class +/usr/src/app/app/consumers/courses_consumer.rb:10:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-07-25T00:18:17.442700 #5] INFO -- : Leaving group `notifications_course_change` +E, [2018-07-25T00:18:17.457924 #5] ERROR -- : Client fetch loop error: undefined method `notify' for EventStream:Class +I, [2018-07-25T00:18:17.458188 #5] INFO -- : Joining group `notifications_course_change` +E, [2018-07-25T00:18:17.459200 #5] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-07-25T00:18:17.553020 #5] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- NoMethodError: undefined method `notify' for EventStream:Class +/usr/src/app/app/consumers/sections_consumer.rb:10:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-07-25T00:18:17.553939 #5] INFO -- : Leaving group `notifications_notifications` +E, [2018-07-25T00:18:17.570715 #5] ERROR -- : Client fetch loop error: undefined method `notify' for EventStream:Class +I, [2018-07-25T00:18:17.570980 #5] INFO -- : Joining group `notifications_notifications` +I, [2018-07-25T00:18:17.571675 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-07-25T00:18:17.590646 #5] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-07-25T00:18:17.997353 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:18:18.459534 #5] INFO -- : Joining group `notifications_course_change` +I, [2018-07-25T00:18:18.505538 #5] INFO -- : Joined group `notifications_course_change` with member id `notifications-6ad60cb1-c21f-467e-a682-9da6b8838ef5` +I, [2018-07-25T00:18:18.505604 #5] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-07-25T00:18:18.510133 #5] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-07-25T00:18:18.510211 #5] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-07-25T00:18:18.572312 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:18:18.591466 #5] INFO -- : Joining group `notifications_notifications` +I, [2018-07-25T00:18:18.763575 #5] INFO -- : Joined group `notifications_notifications` with member id `notifications-25f8aa6f-69de-4080-85cb-925f0a80d364` +I, [2018-07-25T00:18:18.763672 #5] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-07-25T00:18:18.798501 #5] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-07-25T00:18:18.798591 #5] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-07-25T00:18:18.999215 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:18:19.574453 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:18:19.999827 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:18:20.575302 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:18:21.000249 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:18:21.579835 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:18:22.001421 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:18:22.580740 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:18:23.002219 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:18:23.581351 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:18:24.004176 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:18:24.581981 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:18:25.005025 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:18:25.582939 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:18:26.005491 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:18:26.584247 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:18:27.006664 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:18:27.585424 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:18:28.007652 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:18:28.523588 #5] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-07-25T00:18:28.587099 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:18:28.892468 #5] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-07-25T00:18:29.008796 #5] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-07-25T00:18:29.587654 #5] INFO -- : Seeking section_change/0 to offset 0 +E, [2018-07-25T00:18:30.527749 #5] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- NoMethodError: undefined method `notify' for EventStream:Class +/usr/src/app/app/consumers/courses_consumer.rb:10:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-07-25T00:18:30.527874 #5] INFO -- : Leaving group `notifications_course_change` +E, [2018-07-25T00:18:30.553373 #5] ERROR -- : Client fetch loop error: undefined method `notify' for EventStream:Class +I, [2018-07-25T00:18:30.553629 #5] INFO -- : Joining group `notifications_course_change` +E, [2018-07-25T00:18:30.565236 #5] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-07-25T00:18:30.942156 #5] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- NoMethodError: undefined method `notify' for EventStream:Class +/usr/src/app/app/consumers/sections_consumer.rb:10:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-07-25T00:18:31.119930 #5] INFO -- : Leaving group `notifications_notifications` +E, [2018-07-25T00:18:31.298317 #5] ERROR -- : Client fetch loop error: undefined method `notify' for EventStream:Class +I, [2018-07-25T00:18:31.298552 #5] INFO -- : Joining group `notifications_notifications` +E, [2018-07-25T00:18:31.300060 #5] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-07-25T00:18:31.322413 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:18:31.502679 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:18:31.582348 #5] INFO -- : Joining group `notifications_course_change` +I, [2018-07-25T00:18:32.569511 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:18:32.569696 #5] INFO -- : Joining group `notifications_notifications` +I, [2018-07-25T00:18:32.573081 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:18:32.703954 #5] INFO -- : Joined group `notifications_course_change` with member id `notifications-8619104d-810e-4720-a88f-808a43a0b570` +I, [2018-07-25T00:18:32.704024 #5] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-07-25T00:18:33.382624 #5] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-07-25T00:18:33.382747 #5] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-07-25T00:18:33.474319 #5] INFO -- : Joined group `notifications_notifications` with member id `notifications-558a0f9f-3453-4edf-8009-6e51514c6af6` +I, [2018-07-25T00:18:33.474472 #5] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-07-25T00:18:33.644860 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:18:33.654244 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:18:33.843657 #5] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-07-25T00:18:33.844060 #5] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-07-25T00:18:34.645971 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:18:34.655075 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:18:35.646324 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:18:35.655403 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:18:36.647961 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:18:36.656094 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:18:37.648429 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:18:37.658169 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:18:38.649948 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:18:38.658780 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:18:39.650440 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:18:39.659439 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:18:40.651057 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:18:40.659843 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:18:41.481913 #5] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-07-25T00:18:41.671434 #5] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-07-25T00:18:41.663708 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:18:41.874283 #5] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-07-25T00:18:42.674847 #5] INFO -- : Seeking section_change/0 to offset 0 +E, [2018-07-25T00:18:43.503843 #5] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- NoMethodError: undefined method `notify' for EventStream:Class +/usr/src/app/app/consumers/courses_consumer.rb:10:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-07-25T00:18:43.503967 #5] INFO -- : Leaving group `notifications_course_change` +E, [2018-07-25T00:18:43.556890 #5] ERROR -- : Client fetch loop error: undefined method `notify' for EventStream:Class +I, [2018-07-25T00:18:43.557085 #5] INFO -- : Joining group `notifications_course_change` +E, [2018-07-25T00:18:43.589618 #5] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-07-25T00:18:43.896225 #5] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- NoMethodError: undefined method `notify' for EventStream:Class +/usr/src/app/app/consumers/sections_consumer.rb:10:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-07-25T00:18:43.908950 #5] INFO -- : Leaving group `notifications_notifications` +E, [2018-07-25T00:18:43.913661 #5] ERROR -- : Client fetch loop error: undefined method `notify' for EventStream:Class +I, [2018-07-25T00:18:43.913871 #5] INFO -- : Joining group `notifications_notifications` +E, [2018-07-25T00:18:43.924478 #5] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-07-25T00:18:44.171556 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:18:44.419577 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:18:44.590005 #5] INFO -- : Joining group `notifications_course_change` +I, [2018-07-25T00:18:44.599203 #5] INFO -- : Joined group `notifications_course_change` with member id `notifications-3abbf3fc-c7ec-4b40-8735-f2b65075c088` +I, [2018-07-25T00:18:44.599263 #5] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-07-25T00:18:44.604701 #5] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-07-25T00:18:44.605020 #5] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-07-25T00:18:44.925208 #5] INFO -- : Joining group `notifications_notifications` +I, [2018-07-25T00:18:44.933809 #5] INFO -- : Joined group `notifications_notifications` with member id `notifications-5bb54aca-e34d-48ab-9ffc-ea0c7c29246c` +I, [2018-07-25T00:18:44.933857 #5] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-07-25T00:18:44.940023 #5] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-07-25T00:18:44.940217 #5] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-07-25T00:18:45.179399 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:18:45.425816 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:18:46.182317 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:18:46.428154 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:18:47.183517 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:18:47.429338 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:18:48.187717 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:18:48.435984 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:18:49.190833 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:18:49.437570 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:18:50.191134 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:18:50.438114 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:18:51.191485 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:18:51.440237 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:18:52.192376 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:18:52.442272 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:18:53.192875 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:18:53.443570 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:18:54.193614 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:18:54.444679 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:18:54.623622 #5] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-07-25T00:18:55.008377 #5] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-07-25T00:18:55.208671 #5] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-07-25T00:18:55.446537 #5] INFO -- : Seeking course_change/0 to offset 0 +E, [2018-07-25T00:18:56.632223 #5] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- NoMethodError: undefined method `notify' for EventStream:Class +/usr/src/app/app/consumers/courses_consumer.rb:10:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-07-25T00:18:56.632493 #5] INFO -- : Leaving group `notifications_course_change` +E, [2018-07-25T00:18:56.678869 #5] ERROR -- : Client fetch loop error: undefined method `notify' for EventStream:Class +I, [2018-07-25T00:18:56.679318 #5] INFO -- : Joining group `notifications_course_change` +E, [2018-07-25T00:18:56.682539 #5] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-07-25T00:18:57.013739 #5] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- NoMethodError: undefined method `notify' for EventStream:Class +/usr/src/app/app/consumers/sections_consumer.rb:10:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-07-25T00:18:57.015441 #5] INFO -- : Leaving group `notifications_notifications` +E, [2018-07-25T00:18:57.059892 #5] ERROR -- : Client fetch loop error: undefined method `notify' for EventStream:Class +I, [2018-07-25T00:18:57.060406 #5] INFO -- : Joining group `notifications_notifications` +E, [2018-07-25T00:18:57.078130 #5] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-07-25T00:18:57.326173 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:18:57.380139 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:18:57.746368 #5] INFO -- : Joining group `notifications_course_change` +I, [2018-07-25T00:18:58.100855 #5] INFO -- : Joining group `notifications_notifications` +I, [2018-07-25T00:18:58.101532 #5] INFO -- : Joined group `notifications_course_change` with member id `notifications-ab0b1b3c-8c25-42fd-85e4-80c13f1b4dda` +I, [2018-07-25T00:18:58.101621 #5] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-07-25T00:18:58.202427 #5] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-07-25T00:18:58.202532 #5] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-07-25T00:18:58.263296 #5] INFO -- : Joined group `notifications_notifications` with member id `notifications-1eae369e-c6ed-48d8-823a-2e2aeda52ce6` +I, [2018-07-25T00:18:58.263368 #5] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-07-25T00:18:58.326631 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:18:58.328887 #5] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-07-25T00:18:58.329027 #5] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-07-25T00:18:58.380979 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:18:59.328859 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:18:59.381356 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:19:00.331576 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:19:00.381749 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:19:01.334630 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:19:01.382135 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:19:02.335380 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:19:02.382523 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:19:03.337749 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:19:03.383213 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:19:04.340855 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:19:04.384270 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:19:05.341991 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:19:05.386433 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:19:06.342441 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:19:06.388529 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:19:07.343003 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:19:07.388975 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:19:08.225352 #5] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-07-25T00:19:08.344123 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:19:08.351563 #5] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-07-25T00:19:08.390887 #5] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-07-25T00:19:09.344833 #5] INFO -- : Seeking section_change/0 to offset 0 +E, [2018-07-25T00:19:10.229639 #5] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- NoMethodError: undefined method `notify' for EventStream:Class +/usr/src/app/app/consumers/courses_consumer.rb:10:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-07-25T00:19:10.230231 #5] INFO -- : Leaving group `notifications_course_change` +E, [2018-07-25T00:19:10.241487 #5] ERROR -- : Client fetch loop error: undefined method `notify' for EventStream:Class +I, [2018-07-25T00:19:10.242718 #5] INFO -- : Joining group `notifications_course_change` +E, [2018-07-25T00:19:10.250558 #5] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-07-25T00:19:10.358634 #5] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- NoMethodError: undefined method `notify' for EventStream:Class +/usr/src/app/app/consumers/sections_consumer.rb:10:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-07-25T00:19:10.360927 #5] INFO -- : Leaving group `notifications_notifications` +E, [2018-07-25T00:19:10.364318 #5] ERROR -- : Client fetch loop error: undefined method `notify' for EventStream:Class +I, [2018-07-25T00:19:10.364546 #5] INFO -- : Joining group `notifications_notifications` +E, [2018-07-25T00:19:10.365439 #5] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-07-25T00:19:10.433801 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:19:10.454438 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:19:11.251252 #5] INFO -- : Joining group `notifications_course_change` +I, [2018-07-25T00:19:11.256811 #5] INFO -- : Joined group `notifications_course_change` with member id `notifications-9de61fb8-f644-4aae-8730-42a18ce50fa7` +I, [2018-07-25T00:19:11.256862 #5] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-07-25T00:19:11.259880 #5] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-07-25T00:19:11.259942 #5] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-07-25T00:19:11.365667 #5] INFO -- : Joining group `notifications_notifications` +I, [2018-07-25T00:19:11.369049 #5] INFO -- : Joined group `notifications_notifications` with member id `notifications-dc191946-b995-4bd0-8b24-f37de90c82d3` +I, [2018-07-25T00:19:11.369093 #5] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-07-25T00:19:11.371665 #5] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-07-25T00:19:11.371734 #5] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-07-25T00:19:11.434225 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:19:11.455532 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:19:12.435508 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:19:12.456030 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:19:13.438576 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:19:13.467198 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:19:14.439340 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:19:14.468446 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:19:15.439825 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:19:15.469238 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:19:16.440485 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:19:16.469590 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:19:17.441097 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:19:17.479944 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:19:18.441654 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:19:18.480740 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:19:19.442045 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:19:19.481115 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:19:20.442524 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:19:20.481423 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:19:21.304543 #5] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-07-25T00:19:21.389430 #5] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-07-25T00:19:21.443635 #5] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-07-25T00:19:21.482695 #5] INFO -- : Seeking course_change/0 to offset 0 +E, [2018-07-25T00:19:23.312987 #5] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- NoMethodError: undefined method `notify' for EventStream:Class +/usr/src/app/app/consumers/courses_consumer.rb:10:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-07-25T00:19:23.317995 #5] INFO -- : Leaving group `notifications_course_change` +E, [2018-07-25T00:19:23.321886 #5] ERROR -- : Client fetch loop error: undefined method `notify' for EventStream:Class +I, [2018-07-25T00:19:23.322742 #5] INFO -- : Joining group `notifications_course_change` +E, [2018-07-25T00:19:23.333314 #5] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-07-25T00:19:23.404521 #5] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- NoMethodError: undefined method `notify' for EventStream:Class +/usr/src/app/app/consumers/sections_consumer.rb:10:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-07-25T00:19:23.416567 #5] INFO -- : Leaving group `notifications_notifications` +E, [2018-07-25T00:19:23.422346 #5] ERROR -- : Client fetch loop error: undefined method `notify' for EventStream:Class +I, [2018-07-25T00:19:23.422605 #5] INFO -- : Joining group `notifications_notifications` +E, [2018-07-25T00:19:23.423864 #5] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-07-25T00:19:23.453415 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:19:23.462788 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:19:24.410521 #5] INFO -- : Joining group `notifications_course_change` +I, [2018-07-25T00:19:24.446756 #5] INFO -- : Joining group `notifications_notifications` +I, [2018-07-25T00:19:24.464775 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:19:24.466000 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:19:24.641336 #5] INFO -- : Joined group `notifications_course_change` with member id `notifications-f5847ace-ddaa-43be-b7b1-3e15917a87e3` +I, [2018-07-25T00:19:24.641432 #5] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-07-25T00:19:24.642103 #5] INFO -- : Joined group `notifications_notifications` with member id `notifications-642ab97d-da85-4e2d-b398-99b2601bb0f0` +I, [2018-07-25T00:19:24.642167 #5] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-07-25T00:19:24.670206 #5] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-07-25T00:19:24.670336 #5] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-07-25T00:19:24.690829 #5] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-07-25T00:19:24.690931 #5] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-07-25T00:19:25.545498 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:19:25.549090 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:19:26.654278 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:19:26.655415 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:19:27.654815 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:19:27.656069 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:19:28.655235 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:19:28.656379 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:19:29.655682 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:19:29.656885 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:19:30.657408 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:19:30.657585 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:19:31.659091 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:19:31.659847 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:19:32.665889 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:19:32.666154 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:19:33.668582 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:19:33.691117 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:19:34.678676 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:19:34.691538 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:19:34.719868 #5] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-07-25T00:19:34.724485 #5] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-07-25T00:19:35.679062 #5] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-07-25T00:19:35.696040 #5] INFO -- : Seeking section_change/0 to offset 0 +E, [2018-07-25T00:19:36.734852 #5] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- NoMethodError: undefined method `notify' for EventStream:Class +/usr/src/app/app/consumers/sections_consumer.rb:10:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-07-25T00:19:36.751080 #5] INFO -- : Leaving group `notifications_notifications` +E, [2018-07-25T00:19:36.763329 #5] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- NoMethodError: undefined method `notify' for EventStream:Class +/usr/src/app/app/consumers/courses_consumer.rb:10:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-07-25T00:19:36.764530 #5] INFO -- : Leaving group `notifications_course_change` +E, [2018-07-25T00:19:36.764005 #5] ERROR -- : Client fetch loop error: undefined method `notify' for EventStream:Class +I, [2018-07-25T00:19:36.768293 #5] INFO -- : Joining group `notifications_notifications` +E, [2018-07-25T00:19:36.771352 #5] ERROR -- : Client fetch loop error: undefined method `notify' for EventStream:Class +I, [2018-07-25T00:19:36.778098 #5] INFO -- : Joining group `notifications_course_change` +E, [2018-07-25T00:19:36.778410 #5] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-07-25T00:19:36.779480 #5] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-07-25T00:19:36.851715 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:19:36.995782 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:19:37.778993 #5] INFO -- : Joining group `notifications_notifications` +I, [2018-07-25T00:19:37.779882 #5] INFO -- : Joining group `notifications_course_change` +I, [2018-07-25T00:19:37.826220 #5] INFO -- : Joined group `notifications_course_change` with member id `notifications-aa450b17-dcfb-4ee1-86e4-7a8c9e7d36cb` +I, [2018-07-25T00:19:37.826280 #5] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-07-25T00:19:37.826553 #5] INFO -- : Joined group `notifications_notifications` with member id `notifications-dd55a47d-f089-458f-9dfa-bcc6bd4aa9ae` +I, [2018-07-25T00:19:37.826579 #5] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-07-25T00:19:37.832780 #5] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-07-25T00:19:37.835358 #5] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-07-25T00:19:37.846119 #5] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-07-25T00:19:37.846231 #5] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-07-25T00:19:37.852688 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:19:37.996448 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:19:38.857051 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:19:38.996818 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:19:39.858017 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:19:39.997305 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:19:40.859345 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:19:40.997782 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:19:41.861176 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:19:41.998393 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:19:42.861822 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:19:42.998842 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:19:43.862871 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:19:43.999626 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:19:44.863694 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:19:45.000155 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:19:45.864236 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:19:46.000497 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:19:46.865028 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:19:47.000857 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:19:47.845598 #5] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-07-25T00:19:47.864209 #5] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-07-25T00:19:47.865668 #5] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-07-25T00:19:48.001176 #5] INFO -- : Seeking course_change/0 to offset 0 +E, [2018-07-25T00:19:49.851486 #5] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- NoMethodError: undefined method `notify' for EventStream:Class +/usr/src/app/app/consumers/courses_consumer.rb:10:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-07-25T00:19:49.851662 #5] INFO -- : Leaving group `notifications_course_change` +E, [2018-07-25T00:19:49.858267 #5] ERROR -- : Client fetch loop error: undefined method `notify' for EventStream:Class +I, [2018-07-25T00:19:49.858566 #5] INFO -- : Joining group `notifications_course_change` +E, [2018-07-25T00:19:49.860372 #5] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-07-25T00:19:49.866995 #5] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- NoMethodError: undefined method `notify' for EventStream:Class +/usr/src/app/app/consumers/sections_consumer.rb:10:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-07-25T00:19:49.867622 #5] INFO -- : Leaving group `notifications_notifications` +E, [2018-07-25T00:19:49.870426 #5] ERROR -- : Client fetch loop error: undefined method `notify' for EventStream:Class +I, [2018-07-25T00:19:49.870736 #5] INFO -- : Joining group `notifications_notifications` +E, [2018-07-25T00:19:49.872494 #5] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-07-25T00:19:50.004111 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:19:50.242153 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:19:50.860779 #5] INFO -- : Joining group `notifications_course_change` +I, [2018-07-25T00:19:50.865536 #5] INFO -- : Joined group `notifications_course_change` with member id `notifications-65712dea-1238-4454-bd13-368cd6cc125e` +I, [2018-07-25T00:19:50.865579 #5] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-07-25T00:19:50.868561 #5] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-07-25T00:19:50.868634 #5] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-07-25T00:19:50.872733 #5] INFO -- : Joining group `notifications_notifications` +I, [2018-07-25T00:19:50.876266 #5] INFO -- : Joined group `notifications_notifications` with member id `notifications-0793b4cb-7437-4561-a1ec-2fe385f03a4c` +I, [2018-07-25T00:19:50.876319 #5] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-07-25T00:19:50.878493 #5] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-07-25T00:19:50.878569 #5] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-07-25T00:19:51.004521 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:19:51.242677 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:19:52.004942 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:19:52.243031 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:19:53.005388 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:19:53.243853 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:19:54.005845 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:19:54.244535 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:19:55.006279 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:19:55.249641 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:19:56.006608 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:19:56.250867 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:19:57.008690 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:19:57.251208 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:19:58.008993 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:19:58.251822 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:19:59.009278 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:19:59.252273 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:20:00.009722 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:20:00.252605 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:20:00.877732 #5] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-07-25T00:20:00.886561 #5] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-07-25T00:20:01.010574 #5] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-07-25T00:20:01.262862 #5] INFO -- : Seeking course_change/0 to offset 0 +E, [2018-07-25T00:20:02.881472 #5] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- NoMethodError: undefined method `notify' for EventStream:Class +/usr/src/app/app/consumers/courses_consumer.rb:10:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-07-25T00:20:02.881571 #5] INFO -- : Leaving group `notifications_course_change` +E, [2018-07-25T00:20:02.884128 #5] ERROR -- : Client fetch loop error: undefined method `notify' for EventStream:Class +I, [2018-07-25T00:20:02.897990 #5] INFO -- : Joining group `notifications_course_change` +E, [2018-07-25T00:20:02.899634 #5] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- NoMethodError: undefined method `notify' for EventStream:Class +/usr/src/app/app/consumers/sections_consumer.rb:10:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-07-25T00:20:02.900619 #5] INFO -- : Leaving group `notifications_notifications` +E, [2018-07-25T00:20:02.901666 #5] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-07-25T00:20:02.903815 #5] ERROR -- : Client fetch loop error: undefined method `notify' for EventStream:Class +I, [2018-07-25T00:20:02.904013 #5] INFO -- : Joining group `notifications_notifications` +E, [2018-07-25T00:20:02.904990 #5] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-07-25T00:20:02.909620 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:20:03.229783 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:20:03.903006 #5] INFO -- : Joining group `notifications_course_change` +I, [2018-07-25T00:20:03.905196 #5] INFO -- : Joining group `notifications_notifications` +I, [2018-07-25T00:20:03.908827 #5] INFO -- : Joined group `notifications_course_change` with member id `notifications-ec516eda-7af8-436e-8083-cdae236cfa59` +I, [2018-07-25T00:20:03.908871 #5] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-07-25T00:20:03.910334 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:20:03.912845 #5] INFO -- : Joined group `notifications_notifications` with member id `notifications-28e6c79b-13f1-46ac-9a8c-e70893fabcd1` +I, [2018-07-25T00:20:03.913068 #5] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-07-25T00:20:03.949904 #5] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-07-25T00:20:03.949978 #5] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-07-25T00:20:03.955132 #5] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-07-25T00:20:03.955235 #5] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-07-25T00:20:04.230345 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:20:04.912004 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:20:05.230852 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:20:05.912387 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:20:06.231738 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:20:06.913638 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:20:07.232749 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:20:07.914129 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:20:08.244625 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:20:08.914961 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:20:09.245962 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:20:09.915635 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:20:10.246984 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:20:10.916773 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:20:11.247923 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:20:11.917719 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:20:12.248364 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:20:12.918285 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:20:13.250234 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:20:13.918816 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:20:13.960899 #5] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-07-25T00:20:13.961894 #5] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-07-25T00:20:14.250858 #5] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-07-25T00:20:14.919176 #5] INFO -- : Seeking course_change/0 to offset 0 +E, [2018-07-25T00:20:15.968344 #5] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- NoMethodError: undefined method `notify' for EventStream:Class +/usr/src/app/app/consumers/sections_consumer.rb:10:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-07-25T00:20:15.969040 #5] INFO -- : Leaving group `notifications_notifications` +E, [2018-07-25T00:20:15.985889 #5] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- NoMethodError: undefined method `notify' for EventStream:Class +/usr/src/app/app/consumers/courses_consumer.rb:10:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +E, [2018-07-25T00:20:15.994977 #5] ERROR -- : Client fetch loop error: undefined method `notify' for EventStream:Class +I, [2018-07-25T00:20:15.996169 #5] INFO -- : Joining group `notifications_notifications` +I, [2018-07-25T00:20:15.999364 #5] INFO -- : Leaving group `notifications_course_change` +E, [2018-07-25T00:20:16.007214 #5] ERROR -- : Client fetch loop error: undefined method `notify' for EventStream:Class +I, [2018-07-25T00:20:16.007458 #5] INFO -- : Joining group `notifications_course_change` +E, [2018-07-25T00:20:16.009635 #5] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-07-25T00:20:16.009792 #5] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-07-25T00:20:16.519379 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:20:16.540726 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:20:17.009853 #5] INFO -- : Joining group `notifications_course_change` +I, [2018-07-25T00:20:17.010213 #5] INFO -- : Joining group `notifications_notifications` +I, [2018-07-25T00:20:17.014699 #5] INFO -- : Joined group `notifications_notifications` with member id `notifications-7ad237f8-568e-4c9d-8f7e-96fe265e8f51` +I, [2018-07-25T00:20:17.014755 #5] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-07-25T00:20:17.019176 #5] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-07-25T00:20:17.019239 #5] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-07-25T00:20:17.020710 #5] INFO -- : Joined group `notifications_course_change` with member id `notifications-bda8bbe3-71e6-4464-8244-f292437ea7bc` +I, [2018-07-25T00:20:17.020750 #5] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-07-25T00:20:17.024688 #5] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-07-25T00:20:17.024787 #5] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-07-25T00:20:17.519803 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:20:17.541071 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:20:18.520199 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:20:18.544034 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:20:19.520636 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:20:19.544887 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:20:20.521139 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:20:20.546170 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:20:21.522180 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:20:21.547324 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:20:22.522840 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:20:22.548215 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:20:23.523544 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:20:23.548785 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:20:24.523851 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:20:24.549213 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:20:25.524516 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:20:25.549767 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:20:26.530963 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:20:26.550598 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:20:27.027552 #5] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-07-25T00:20:27.036822 #5] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-07-25T00:20:27.534658 #5] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-07-25T00:20:27.567211 #5] INFO -- : Seeking course_change/0 to offset 0 +E, [2018-07-25T00:20:29.057714 #5] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- NoMethodError: undefined method `notify' for EventStream:Class +/usr/src/app/app/consumers/sections_consumer.rb:10:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-07-25T00:20:29.057857 #5] INFO -- : Leaving group `notifications_notifications` +E, [2018-07-25T00:20:29.061128 #5] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- NoMethodError: undefined method `notify' for EventStream:Class +/usr/src/app/app/consumers/courses_consumer.rb:10:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-07-25T00:20:29.062431 #5] INFO -- : Leaving group `notifications_course_change` +E, [2018-07-25T00:20:29.077219 #5] ERROR -- : Client fetch loop error: undefined method `notify' for EventStream:Class +I, [2018-07-25T00:20:29.077442 #5] INFO -- : Joining group `notifications_notifications` +E, [2018-07-25T00:20:29.078730 #5] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-07-25T00:20:29.079332 #5] ERROR -- : Client fetch loop error: undefined method `notify' for EventStream:Class +I, [2018-07-25T00:20:29.079503 #5] INFO -- : Joining group `notifications_course_change` +E, [2018-07-25T00:20:29.081378 #5] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-07-25T00:20:29.176464 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:20:29.633999 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:20:30.078941 #5] INFO -- : Joining group `notifications_notifications` +I, [2018-07-25T00:20:30.081752 #5] INFO -- : Joining group `notifications_course_change` +I, [2018-07-25T00:20:30.108304 #5] INFO -- : Joined group `notifications_notifications` with member id `notifications-db16802d-332a-45f0-a6c6-039d2d924d50` +I, [2018-07-25T00:20:30.108374 #5] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-07-25T00:20:30.196185 #5] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-07-25T00:20:30.196944 #5] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-07-25T00:20:30.202433 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:20:30.554220 #5] INFO -- : Joined group `notifications_course_change` with member id `notifications-93f4d280-2426-4c78-a397-e2f64dd15266` +I, [2018-07-25T00:20:30.554281 #5] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-07-25T00:20:30.559365 #5] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-07-25T00:20:30.559457 #5] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-07-25T00:20:30.635802 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:20:31.271325 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:20:31.642701 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:20:32.272276 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:20:32.647601 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:20:33.272766 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:20:33.649177 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:20:34.273150 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:20:34.649761 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:20:35.274679 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:20:35.650155 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:20:36.275991 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:20:36.650682 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:20:37.278463 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:20:37.651183 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:20:38.279471 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:20:38.651856 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:20:39.280166 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:20:39.652890 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:20:40.226768 #5] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-07-25T00:20:40.280867 #5] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-07-25T00:20:40.587985 #5] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-07-25T00:20:40.653814 #5] INFO -- : Seeking course_change/0 to offset 0 +E, [2018-07-25T00:20:42.232353 #5] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- NoMethodError: undefined method `notify' for EventStream:Class +/usr/src/app/app/consumers/sections_consumer.rb:10:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-07-25T00:20:42.232463 #5] INFO -- : Leaving group `notifications_notifications` +E, [2018-07-25T00:20:42.239538 #5] ERROR -- : Client fetch loop error: undefined method `notify' for EventStream:Class +I, [2018-07-25T00:20:42.239815 #5] INFO -- : Joining group `notifications_notifications` +E, [2018-07-25T00:20:42.240628 #5] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-07-25T00:20:42.255387 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-07-25T00:20:42.610755 #5] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- NoMethodError: undefined method `notify' for EventStream:Class +/usr/src/app/app/consumers/courses_consumer.rb:10:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-07-25T00:20:42.610860 #5] INFO -- : Leaving group `notifications_course_change` +E, [2018-07-25T00:20:42.622017 #5] ERROR -- : Client fetch loop error: undefined method `notify' for EventStream:Class +I, [2018-07-25T00:20:42.622238 #5] INFO -- : Joining group `notifications_course_change` +E, [2018-07-25T00:20:42.628090 #5] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-07-25T00:20:42.786552 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:20:43.274165 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:20:43.275087 #5] INFO -- : Joining group `notifications_notifications` +I, [2018-07-25T00:20:43.295218 #5] INFO -- : Joined group `notifications_notifications` with member id `notifications-b8dab941-b1ac-4de2-b720-3ab795f7a0f7` +I, [2018-07-25T00:20:43.295274 #5] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-07-25T00:20:43.299869 #5] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-07-25T00:20:43.299953 #5] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-07-25T00:20:43.628820 #5] INFO -- : Joining group `notifications_course_change` +I, [2018-07-25T00:20:43.633129 #5] INFO -- : Joined group `notifications_course_change` with member id `notifications-850e5a10-0dba-481c-ba17-17060c94a3b3` +I, [2018-07-25T00:20:43.633396 #5] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-07-25T00:20:43.638193 #5] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-07-25T00:20:43.638274 #5] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-07-25T00:20:43.787050 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:20:44.274743 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:20:44.787605 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:20:45.275079 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:20:45.789076 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:20:46.275683 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:20:46.789530 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:20:47.277145 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:20:47.790093 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:20:48.277839 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:20:48.791053 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:20:49.279669 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:20:49.791284 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:20:50.280043 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:20:50.797212 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:20:51.280696 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:20:51.797622 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:20:52.281404 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:20:52.798352 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:20:53.281937 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:20:53.313834 #5] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-07-25T00:20:53.673836 #5] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-07-25T00:20:53.798913 #5] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-07-25T00:20:54.282447 #5] INFO -- : Seeking section_change/0 to offset 0 +E, [2018-07-25T00:20:55.317300 #5] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- NoMethodError: undefined method `notify' for EventStream:Class +/usr/src/app/app/consumers/sections_consumer.rb:10:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-07-25T00:32:48.056705 #5] INFO -- : New topics added to target list: course_change +I, [2018-07-25T00:32:48.056831 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-07-25T00:32:48.057858 #5] INFO -- : New topics added to target list: section_change +I, [2018-07-25T00:32:48.057916 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-07-25T00:32:48.059242 #5] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.19.0.9:9094 +E, [2018-07-25T00:32:48.059353 #5] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.19.0.9:9094 +E, [2018-07-25T00:32:48.059557 #5] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.19.0.9:9094 +E, [2018-07-25T00:32:48.059617 #5] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.19.0.9:9094 +E, [2018-07-25T00:32:53.060238 #5] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: +- kafka://kafka:9094: Connection refused - connect(2) for 172.19.0.9:9094 +I, [2018-07-25T00:32:53.061736 #5] INFO -- : New topics added to target list: course_change +I, [2018-07-25T00:32:53.061971 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-07-25T00:32:53.063485 #5] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: +- kafka://kafka:9094: Connection refused - connect(2) for 172.19.0.9:9094 +I, [2018-07-25T00:32:53.065324 #5] INFO -- : New topics added to target list: section_change +I, [2018-07-25T00:32:53.065407 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-07-25T00:32:53.067278 #5] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.19.0.9:9094 +E, [2018-07-25T00:32:53.067662 #5] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.19.0.9:9094 +E, [2018-07-25T00:32:53.071022 #5] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.19.0.9:9094 +E, [2018-07-25T00:32:53.071132 #5] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.19.0.9:9094 +E, [2018-07-25T00:32:58.069272 #5] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: +- kafka://kafka:9094: Connection refused - connect(2) for 172.19.0.9:9094 +I, [2018-07-25T00:32:58.070901 #5] INFO -- : New topics added to target list: section_change +I, [2018-07-25T00:32:58.070971 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-07-25T00:32:58.072118 #5] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: +- kafka://kafka:9094: Connection refused - connect(2) for 172.19.0.9:9094 +E, [2018-07-25T00:32:58.076651 #5] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.19.0.9:9094 +E, [2018-07-25T00:32:58.077323 #5] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.19.0.9:9094 +I, [2018-07-25T00:32:58.080209 #5] INFO -- : New topics added to target list: course_change +I, [2018-07-25T00:32:58.080353 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-07-25T00:32:58.083161 #5] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.19.0.9:9094 +E, [2018-07-25T00:32:58.084052 #5] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.19.0.9:9094 +E, [2018-07-25T00:33:03.078929 #5] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: +- kafka://kafka:9094: Connection refused - connect(2) for 172.19.0.9:9094 +I, [2018-07-25T00:33:03.080935 #5] INFO -- : New topics added to target list: section_change +I, [2018-07-25T00:33:03.081006 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-07-25T00:33:03.085269 #5] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: +- kafka://kafka:9094: Connection refused - connect(2) for 172.19.0.9:9094 +I, [2018-07-25T00:33:03.086106 #5] INFO -- : New topics added to target list: course_change +I, [2018-07-25T00:33:03.086150 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-07-25T00:33:03.242385 #5] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-07-25T00:33:03.243420 #5] INFO -- : Joining group `notifications_course_change` +I, [2018-07-25T00:33:03.289405 #5] INFO -- : Will fetch at most 1048576 bytes at a time per partition from course_change +I, [2018-07-25T00:33:03.289730 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-07-25T00:33:03.293839 #5] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-07-25T00:33:03.293966 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:33:03.306165 #5] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-07-25T00:33:03.306321 #5] INFO -- : Joining group `notifications_notifications` +I, [2018-07-25T00:33:03.384962 #5] INFO -- : Will fetch at most 1048576 bytes at a time per partition from section_change +I, [2018-07-25T00:33:03.385125 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-07-25T00:33:03.391058 #5] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-07-25T00:33:03.391164 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:33:04.294235 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:33:04.391864 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:33:05.294749 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:33:05.447793 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:33:06.295520 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:33:06.448721 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:33:07.298496 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:33:07.451005 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:33:08.309552 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:33:08.452201 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-07-25T00:33:09.030914 #5] ERROR -- : Failed to find coordinator for group `notifications_course_change`; retrying... +I, [2018-07-25T00:33:09.310157 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:33:09.453314 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:33:09.470392 #5] INFO -- : Joined group `notifications_notifications` with member id `notifications-2b7ced30-ed62-496f-af2e-296dfa861c0f` +I, [2018-07-25T00:33:09.470450 #5] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-07-25T00:33:10.031497 #5] INFO -- : Joining group `notifications_course_change` +I, [2018-07-25T00:33:10.056740 #5] INFO -- : Joined group `notifications_course_change` with member id `notifications-24c3ae85-3887-46e6-8a21-cc8dda4ba371` +I, [2018-07-25T00:33:10.056813 #5] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-07-25T00:33:10.311022 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:33:10.453822 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:33:10.471303 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-07-25T00:33:10.475545 #5] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-07-25T00:33:10.658966 #5] INFO -- : Partitions assigned for `section_change`: 0 +I, [2018-07-25T00:33:11.057527 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-07-25T00:33:11.067624 #5] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-07-25T00:33:11.090835 #5] INFO -- : Partitions assigned for `course_change`: 0 +I, [2018-07-25T00:33:11.311471 #5] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-07-25T00:33:11.311610 #5] INFO -- : New topics added to target list: course_change +I, [2018-07-25T00:33:11.311679 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-07-25T00:33:11.316732 #5] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-07-25T00:33:11.454182 #5] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-07-25T00:33:11.454343 #5] INFO -- : New topics added to target list: section_change +I, [2018-07-25T00:33:11.454394 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-07-25T00:33:11.462601 #5] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +E, [2018-07-25T00:33:12.788067 #5] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- NoMethodError: undefined method `notify' for EventStream:Class +/usr/src/app/app/consumers/sections_consumer.rb:11:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-07-25T00:33:12.788149 #5] INFO -- : Leaving group `notifications_notifications` +E, [2018-07-25T00:33:12.806454 #5] ERROR -- : Client fetch loop error: undefined method `notify' for EventStream:Class +I, [2018-07-25T00:33:12.806745 #5] INFO -- : Joining group `notifications_notifications` +E, [2018-07-25T00:33:12.810634 #5] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-07-25T00:33:12.823424 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-07-25T00:33:13.189226 #5] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- NoMethodError: undefined method `notify' for EventStream:Class +/usr/src/app/app/consumers/courses_consumer.rb:11:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-07-25T00:33:13.200443 #5] INFO -- : Leaving group `notifications_course_change` +E, [2018-07-25T00:33:13.238273 #5] ERROR -- : Client fetch loop error: undefined method `notify' for EventStream:Class +I, [2018-07-25T00:33:13.240467 #5] INFO -- : Joining group `notifications_course_change` +E, [2018-07-25T00:33:13.254513 #5] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-07-25T00:33:13.783635 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:33:13.811012 #5] INFO -- : Joining group `notifications_notifications` +I, [2018-07-25T00:33:13.823438 #5] INFO -- : Joined group `notifications_notifications` with member id `notifications-c58bdaf5-860f-4932-bd85-b10519e51502` +I, [2018-07-25T00:33:13.823491 #5] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-07-25T00:33:13.824280 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:33:13.844836 #5] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-07-25T00:33:13.844916 #5] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-07-25T00:33:14.255196 #5] INFO -- : Joining group `notifications_course_change` +I, [2018-07-25T00:33:14.345995 #5] INFO -- : Joined group `notifications_course_change` with member id `notifications-b3e38b29-4219-47d9-8987-77295fcb9c93` +I, [2018-07-25T00:33:14.346069 #5] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-07-25T00:33:14.386566 #5] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-07-25T00:33:14.387417 #5] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-07-25T00:33:14.784703 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:33:14.825240 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:33:15.786437 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:33:15.825610 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:33:16.787527 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:33:16.826845 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:33:17.790001 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:33:17.827214 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:33:18.790833 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:33:18.827858 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:33:19.791548 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:33:19.829259 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:33:20.792843 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:33:20.829899 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:33:21.793592 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:33:21.830568 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:33:22.794821 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:33:22.831206 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:33:23.795880 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:33:23.831597 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:33:23.933542 #5] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-07-25T00:33:24.421454 #5] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-07-25T00:33:24.796659 #5] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-07-25T00:33:24.832266 #5] INFO -- : Seeking section_change/0 to offset 0 +E, [2018-07-25T00:33:25.961039 #5] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- NoMethodError: undefined method `notify' for EventStream:Class +/usr/src/app/app/consumers/sections_consumer.rb:11:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-07-25T00:33:25.961118 #5] INFO -- : Leaving group `notifications_notifications` +E, [2018-07-25T00:33:25.964965 #5] ERROR -- : Client fetch loop error: undefined method `notify' for EventStream:Class +I, [2018-07-25T00:33:25.965321 #5] INFO -- : Joining group `notifications_notifications` +E, [2018-07-25T00:33:25.971979 #5] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-07-25T00:33:26.064196 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-07-25T00:33:26.433474 #5] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- NoMethodError: undefined method `notify' for EventStream:Class +/usr/src/app/app/consumers/courses_consumer.rb:11:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-07-25T00:33:26.435855 #5] INFO -- : Leaving group `notifications_course_change` +E, [2018-07-25T00:33:26.459432 #5] ERROR -- : Client fetch loop error: undefined method `notify' for EventStream:Class +I, [2018-07-25T00:33:26.459821 #5] INFO -- : Joining group `notifications_course_change` +E, [2018-07-25T00:33:26.478058 #5] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-07-25T00:33:26.621450 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:33:26.972278 #5] INFO -- : Joining group `notifications_notifications` +I, [2018-07-25T00:33:26.992593 #5] INFO -- : Joined group `notifications_notifications` with member id `notifications-b0caf434-5145-4fc7-88ac-976190417889` +I, [2018-07-25T00:33:26.992647 #5] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-07-25T00:33:27.014557 #5] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-07-25T00:33:27.014641 #5] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-07-25T00:33:27.064943 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:33:27.479455 #5] INFO -- : Joining group `notifications_course_change` +I, [2018-07-25T00:33:27.483934 #5] INFO -- : Joined group `notifications_course_change` with member id `notifications-5b5daf2f-b07c-4657-b12d-403a12035a70` +I, [2018-07-25T00:33:27.483984 #5] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-07-25T00:33:27.488545 #5] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-07-25T00:33:27.488609 #5] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-07-25T00:33:27.622538 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:33:28.066598 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:33:28.622921 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:33:29.301567 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:33:29.623585 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:33:30.302184 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:33:30.624105 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:33:31.302573 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:33:31.624799 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:33:32.303158 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:33:32.625908 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:33:33.304260 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:33:33.626896 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:33:34.304705 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:33:34.630246 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:33:35.305434 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:33:35.630777 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:33:36.306443 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:33:36.631288 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:33:37.308028 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:33:37.396094 #5] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-07-25T00:33:37.496614 #5] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-07-25T00:33:37.632258 #5] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-07-25T00:33:38.308297 #5] INFO -- : Seeking section_change/0 to offset 0 +E, [2018-07-25T00:33:39.404130 #5] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- NoMethodError: undefined method `notify' for EventStream:Class +/usr/src/app/app/consumers/sections_consumer.rb:11:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-07-25T00:33:39.404304 #5] INFO -- : Leaving group `notifications_notifications` +E, [2018-07-25T00:33:39.408770 #5] ERROR -- : Client fetch loop error: undefined method `notify' for EventStream:Class +I, [2018-07-25T00:33:39.409229 #5] INFO -- : Joining group `notifications_notifications` +E, [2018-07-25T00:33:39.410217 #5] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-07-25T00:33:39.412499 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-07-25T00:33:39.500820 #5] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- NoMethodError: undefined method `notify' for EventStream:Class +/usr/src/app/app/consumers/courses_consumer.rb:11:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-07-25T00:39:06.511644 #5] INFO -- : New topics added to target list: section_change +I, [2018-07-25T00:39:06.511801 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-07-25T00:39:06.521239 #5] INFO -- : New topics added to target list: course_change +I, [2018-07-25T00:39:06.521334 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-07-25T00:39:06.532650 #5] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.19.0.14:9094 +E, [2018-07-25T00:39:06.532766 #5] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.19.0.14:9094 +E, [2018-07-25T00:39:06.532984 #5] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.19.0.14:9094 +E, [2018-07-25T00:39:06.533070 #5] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.19.0.14:9094 +E, [2018-07-25T00:39:11.533543 #5] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: +- kafka://kafka:9094: Connection refused - connect(2) for 172.19.0.14:9094 +I, [2018-07-25T00:39:11.535151 #5] INFO -- : New topics added to target list: section_change +I, [2018-07-25T00:39:11.535220 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-07-25T00:39:11.536533 #5] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: +- kafka://kafka:9094: Connection refused - connect(2) for 172.19.0.14:9094 +E, [2018-07-25T00:39:11.546658 #5] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.19.0.14:9094 +E, [2018-07-25T00:39:11.546827 #5] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.19.0.14:9094 +I, [2018-07-25T00:39:11.547203 #5] INFO -- : New topics added to target list: course_change +I, [2018-07-25T00:39:11.547283 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-07-25T00:39:11.569359 #5] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.19.0.14:9094 +E, [2018-07-25T00:39:11.569469 #5] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.19.0.14:9094 +E, [2018-07-25T00:39:16.547414 #5] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: +- kafka://kafka:9094: Connection refused - connect(2) for 172.19.0.14:9094 +I, [2018-07-25T00:39:16.548355 #5] INFO -- : New topics added to target list: section_change +I, [2018-07-25T00:39:16.548453 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-07-25T00:39:16.549483 #5] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.19.0.14:9094 +E, [2018-07-25T00:39:16.549680 #5] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.19.0.14:9094 +E, [2018-07-25T00:39:16.569826 #5] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: +- kafka://kafka:9094: Connection refused - connect(2) for 172.19.0.14:9094 +I, [2018-07-25T00:39:16.570571 #5] INFO -- : New topics added to target list: course_change +I, [2018-07-25T00:39:16.570629 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-07-25T00:39:16.571479 #5] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.19.0.14:9094 +E, [2018-07-25T00:39:16.571567 #5] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.19.0.14:9094 +E, [2018-07-25T00:39:21.550158 #5] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: +- kafka://kafka:9094: Connection refused - connect(2) for 172.19.0.14:9094 +I, [2018-07-25T00:39:21.550908 #5] INFO -- : New topics added to target list: section_change +I, [2018-07-25T00:39:21.550953 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-07-25T00:39:21.572593 #5] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: +- kafka://kafka:9094: Connection refused - connect(2) for 172.19.0.14:9094 +I, [2018-07-25T00:39:21.574949 #5] INFO -- : New topics added to target list: course_change +I, [2018-07-25T00:39:21.575000 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-07-25T00:39:21.639529 #5] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-07-25T00:39:21.639716 #5] INFO -- : Joining group `notifications_notifications` +I, [2018-07-25T00:39:21.646028 #5] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-07-25T00:39:21.646184 #5] INFO -- : Joining group `notifications_course_change` +I, [2018-07-25T00:39:21.651806 #5] INFO -- : Will fetch at most 1048576 bytes at a time per partition from section_change +I, [2018-07-25T00:39:21.651978 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-07-25T00:39:21.658812 #5] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-07-25T00:39:21.658918 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:39:21.676858 #5] INFO -- : Will fetch at most 1048576 bytes at a time per partition from course_change +I, [2018-07-25T00:39:21.676994 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-07-25T00:39:21.689955 #5] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-07-25T00:39:21.690168 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:39:22.660670 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:39:22.691414 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:39:23.661983 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:39:23.696086 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:39:24.662610 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:39:24.697588 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:39:25.663342 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:39:25.703378 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:39:26.663869 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:39:26.705422 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-07-25T00:39:27.067231 #5] ERROR -- : Failed to find coordinator for group `notifications_course_change`; retrying... +I, [2018-07-25T00:39:27.664667 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:39:27.706084 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:39:27.893333 #5] INFO -- : Joined group `notifications_notifications` with member id `notifications-1ec2c08c-4034-40fa-8d61-cfc0a12aa416` +I, [2018-07-25T00:39:27.893415 #5] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-07-25T00:39:28.067836 #5] INFO -- : Joining group `notifications_course_change` +I, [2018-07-25T00:39:28.118597 #5] INFO -- : Joined group `notifications_course_change` with member id `notifications-48edf318-301a-4856-9b36-3b5c9f4df236` +I, [2018-07-25T00:39:28.118669 #5] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-07-25T00:39:28.665120 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:39:28.712125 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:39:28.894021 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-07-25T00:39:28.901918 #5] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-07-25T00:39:28.923692 #5] INFO -- : Partitions assigned for `section_change`: 0 +I, [2018-07-25T00:39:29.119288 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-07-25T00:39:29.124054 #5] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-07-25T00:39:29.145282 #5] INFO -- : Partitions assigned for `course_change`: 0 +I, [2018-07-25T00:39:29.666280 #5] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-07-25T00:39:29.667692 #5] INFO -- : New topics added to target list: section_change +I, [2018-07-25T00:39:29.667751 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-07-25T00:39:29.688959 #5] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-07-25T00:39:29.712698 #5] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-07-25T00:39:29.712863 #5] INFO -- : New topics added to target list: course_change +I, [2018-07-25T00:39:29.712923 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-07-25T00:39:29.745853 #5] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +E, [2018-07-25T00:39:30.944784 #5] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- NoMethodError: undefined method `write' for EventStream:Class +/usr/src/app/app/controllers/eventstream.rb:14:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:11:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-07-25T00:39:30.944863 #5] INFO -- : Leaving group `notifications_notifications` +E, [2018-07-25T00:39:30.982825 #5] ERROR -- : Client fetch loop error: undefined method `write' for EventStream:Class +I, [2018-07-25T00:39:30.983053 #5] INFO -- : Joining group `notifications_notifications` +E, [2018-07-25T00:39:30.994556 #5] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-07-25T00:39:31.048482 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-07-25T00:39:31.176372 #5] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- NoMethodError: undefined method `write' for EventStream:Class +/usr/src/app/app/controllers/eventstream.rb:14:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:11:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-07-25T00:39:31.176501 #5] INFO -- : Leaving group `notifications_course_change` +E, [2018-07-25T00:39:31.201527 #5] ERROR -- : Client fetch loop error: undefined method `write' for EventStream:Class +I, [2018-07-25T00:39:31.201850 #5] INFO -- : Joining group `notifications_course_change` +E, [2018-07-25T00:39:31.221869 #5] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-07-25T00:39:31.224085 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:39:31.994813 #5] INFO -- : Joining group `notifications_notifications` +I, [2018-07-25T00:39:32.029859 #5] INFO -- : Joined group `notifications_notifications` with member id `notifications-a82e6559-87b4-475f-8529-ded131b0397f` +I, [2018-07-25T00:39:32.029929 #5] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-07-25T00:39:32.035942 #5] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-07-25T00:39:32.036030 #5] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-07-25T00:39:32.049912 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:39:32.222780 #5] INFO -- : Joining group `notifications_course_change` +I, [2018-07-25T00:39:32.224968 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:39:32.252073 #5] INFO -- : Joined group `notifications_course_change` with member id `notifications-5f984a58-1610-4209-8ba8-c4ded7869b4d` +I, [2018-07-25T00:39:32.252141 #5] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-07-25T00:39:32.261159 #5] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-07-25T00:39:32.261243 #5] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-07-25T00:39:33.050523 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:39:33.226042 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:39:34.051001 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:39:34.226841 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:39:35.051844 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:39:35.227971 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:39:36.053643 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:39:36.228758 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:39:37.055391 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:39:37.231001 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:39:38.056332 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:39:38.231403 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:39:39.058574 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:39:39.234584 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:39:40.058836 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:39:40.235028 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:39:41.059261 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:39:41.235713 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:39:42.059558 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:39:42.100804 #5] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-07-25T00:39:42.237070 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:39:42.293821 #5] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-07-25T00:39:43.059825 #5] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-07-25T00:39:43.239846 #5] INFO -- : Seeking course_change/0 to offset 0 +E, [2018-07-25T00:39:44.104692 #5] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- NoMethodError: undefined method `write' for EventStream:Class +/usr/src/app/app/controllers/eventstream.rb:14:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:11:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-07-25T00:39:44.104752 #5] INFO -- : Leaving group `notifications_notifications` +E, [2018-07-25T00:39:44.107374 #5] ERROR -- : Client fetch loop error: undefined method `write' for EventStream:Class +I, [2018-07-25T00:39:44.107604 #5] INFO -- : Joining group `notifications_notifications` +E, [2018-07-25T00:39:44.109537 #5] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-07-25T00:39:44.235569 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-07-25T00:39:44.298569 #5] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- NoMethodError: undefined method `write' for EventStream:Class +/usr/src/app/app/controllers/eventstream.rb:14:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:11:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-07-25T00:39:44.306369 #5] INFO -- : Leaving group `notifications_course_change` +E, [2018-07-25T00:39:44.314567 #5] ERROR -- : Client fetch loop error: undefined method `write' for EventStream:Class +I, [2018-07-25T00:39:44.315836 #5] INFO -- : Joining group `notifications_course_change` +E, [2018-07-25T00:39:44.319047 #5] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-07-25T00:39:44.325057 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:39:45.110069 #5] INFO -- : Joining group `notifications_notifications` +I, [2018-07-25T00:39:45.116011 #5] INFO -- : Joined group `notifications_notifications` with member id `notifications-5e8acfbe-194c-4d18-a053-ecaf1a1397b4` +I, [2018-07-25T00:39:45.116084 #5] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-07-25T00:39:45.118388 #5] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-07-25T00:39:45.118452 #5] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-07-25T00:39:45.236025 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:39:45.319349 #5] INFO -- : Joining group `notifications_course_change` +I, [2018-07-25T00:39:45.324298 #5] INFO -- : Joined group `notifications_course_change` with member id `notifications-275e3f6d-a30b-409b-8d58-702f26afaafb` +I, [2018-07-25T00:39:45.324345 #5] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-07-25T00:39:45.325844 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:39:45.326898 #5] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-07-25T00:39:45.326960 #5] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-07-25T00:39:46.236677 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:39:46.326667 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:39:47.237801 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:39:47.327322 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:39:48.238181 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:39:48.327979 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:39:49.240750 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:39:49.328401 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:39:50.241650 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:39:50.330677 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:39:51.242003 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:39:51.331458 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:39:52.242507 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:39:52.331830 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:39:53.243053 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:39:53.332678 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:39:54.243662 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:39:54.333738 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:39:55.127955 #5] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-07-25T00:39:55.245585 #5] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-07-25T00:39:55.334106 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:39:55.345105 #5] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-07-25T00:39:56.334785 #5] INFO -- : Seeking course_change/0 to offset 0 +E, [2018-07-25T00:39:57.146036 #5] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- NoMethodError: undefined method `write' for EventStream:Class +/usr/src/app/app/controllers/eventstream.rb:14:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:11:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-07-25T00:39:57.146108 #5] INFO -- : Leaving group `notifications_notifications` +E, [2018-07-25T00:39:57.176357 #5] ERROR -- : Client fetch loop error: undefined method `write' for EventStream:Class +I, [2018-07-25T00:39:57.176539 #5] INFO -- : Joining group `notifications_notifications` +E, [2018-07-25T00:39:57.181407 #5] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-07-25T00:39:57.212057 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-07-25T00:39:57.363893 #5] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- NoMethodError: undefined method `write' for EventStream:Class +/usr/src/app/app/controllers/eventstream.rb:14:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:11:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-07-25T00:39:57.366144 #5] INFO -- : Leaving group `notifications_course_change` +E, [2018-07-25T00:39:57.381621 #5] ERROR -- : Client fetch loop error: undefined method `write' for EventStream:Class +I, [2018-07-25T00:39:57.381838 #5] INFO -- : Joining group `notifications_course_change` +E, [2018-07-25T00:39:57.383919 #5] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-07-25T00:39:58.081844 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:39:58.182009 #5] INFO -- : Joining group `notifications_notifications` +I, [2018-07-25T00:39:58.185673 #5] INFO -- : Joined group `notifications_notifications` with member id `notifications-dab38c71-b629-4a3e-841b-4babcb79b128` +I, [2018-07-25T00:39:58.185725 #5] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-07-25T00:39:58.187791 #5] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-07-25T00:39:58.187856 #5] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-07-25T00:39:58.212460 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:39:58.384572 #5] INFO -- : Joining group `notifications_course_change` +I, [2018-07-25T00:39:58.388571 #5] INFO -- : Joined group `notifications_course_change` with member id `notifications-adf8f097-c862-40c1-a24f-4b94587b23f6` +I, [2018-07-25T00:39:58.388618 #5] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-07-25T00:39:58.391059 #5] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-07-25T00:39:58.391121 #5] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-07-25T00:39:59.082298 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:39:59.212960 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:40:00.082982 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:40:00.214110 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:40:01.083534 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:40:01.214940 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:40:02.084174 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:40:02.216155 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:40:03.084716 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:40:03.217259 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:40:04.085665 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:40:04.218737 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:40:05.086734 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:40:05.225331 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:40:06.087451 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:40:06.226202 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:40:07.088255 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:40:07.227616 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:40:08.089358 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:40:08.195714 #5] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-07-25T00:40:08.227949 #5] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-07-25T00:40:08.398752 #5] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-07-25T00:40:09.089779 #5] INFO -- : Seeking course_change/0 to offset 0 +E, [2018-07-25T00:40:10.202255 #5] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- NoMethodError: undefined method `write' for EventStream:Class +/usr/src/app/app/controllers/eventstream.rb:14:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:11:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-07-25T00:40:10.202345 #5] INFO -- : Leaving group `notifications_notifications` +E, [2018-07-25T00:40:10.206030 #5] ERROR -- : Client fetch loop error: undefined method `write' for EventStream:Class +I, [2018-07-25T00:40:10.206327 #5] INFO -- : Joining group `notifications_notifications` +E, [2018-07-25T00:40:10.208148 #5] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-07-25T00:40:10.288857 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-07-25T00:40:10.402229 #5] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- NoMethodError: undefined method `write' for EventStream:Class +/usr/src/app/app/controllers/eventstream.rb:14:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:11:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-07-25T00:40:10.404284 #5] INFO -- : Leaving group `notifications_course_change` +E, [2018-07-25T00:40:10.408157 #5] ERROR -- : Client fetch loop error: undefined method `write' for EventStream:Class +I, [2018-07-25T00:40:10.408539 #5] INFO -- : Joining group `notifications_course_change` +E, [2018-07-25T00:40:10.409950 #5] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-07-25T00:40:10.434792 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:40:11.208847 #5] INFO -- : Joining group `notifications_notifications` +I, [2018-07-25T00:40:11.216029 #5] INFO -- : Joined group `notifications_notifications` with member id `notifications-0fc6574a-a4ae-4190-ae90-3c2eca86a9ee` +I, [2018-07-25T00:40:11.216082 #5] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-07-25T00:40:11.220408 #5] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-07-25T00:40:11.220503 #5] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-07-25T00:40:11.289220 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:40:11.410580 #5] INFO -- : Joining group `notifications_course_change` +I, [2018-07-25T00:40:11.419853 #5] INFO -- : Joined group `notifications_course_change` with member id `notifications-f886e1b3-c4f1-499a-a413-43353a9e7ddb` +I, [2018-07-25T00:40:11.419914 #5] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-07-25T00:40:11.432649 #5] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-07-25T00:40:11.432722 #5] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-07-25T00:40:11.435118 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:40:12.289791 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:40:12.435693 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:40:13.290106 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:40:13.436593 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:40:14.296857 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:40:14.449344 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:40:15.297902 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:40:15.452141 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:40:16.298226 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:40:16.452636 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:40:17.298824 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:40:17.453230 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:40:18.301245 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:40:18.454094 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:40:19.301705 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:40:19.454551 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:40:20.302134 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:40:20.456280 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:40:21.238221 #5] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-07-25T00:40:21.303319 #5] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-07-25T00:40:21.454535 #5] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-07-25T00:40:21.457670 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:40:22.459607 #5] INFO -- : Seeking course_change/0 to offset 0 +E, [2018-07-25T00:40:23.247803 #5] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- NoMethodError: undefined method `write' for EventStream:Class +/usr/src/app/app/controllers/eventstream.rb:14:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:11:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-07-25T00:40:23.247899 #5] INFO -- : Leaving group `notifications_notifications` +E, [2018-07-25T00:40:23.264169 #5] ERROR -- : Client fetch loop error: undefined method `write' for EventStream:Class +I, [2018-07-25T00:40:23.264432 #5] INFO -- : Joining group `notifications_notifications` +E, [2018-07-25T00:40:23.265352 #5] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-07-25T00:40:23.350141 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-07-25T00:40:23.465594 #5] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- NoMethodError: undefined method `write' for EventStream:Class +/usr/src/app/app/controllers/eventstream.rb:14:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:11:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-07-25T00:40:23.478323 #5] INFO -- : Leaving group `notifications_course_change` +E, [2018-07-25T00:40:23.489276 #5] ERROR -- : Client fetch loop error: undefined method `write' for EventStream:Class +I, [2018-07-25T00:40:23.489491 #5] INFO -- : Joining group `notifications_course_change` +E, [2018-07-25T00:40:23.490357 #5] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-07-25T00:40:23.779534 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:40:24.267276 #5] INFO -- : Joining group `notifications_notifications` +I, [2018-07-25T00:40:24.269852 #5] INFO -- : Joined group `notifications_notifications` with member id `notifications-262e050c-ac23-4da9-8ad4-ebe5e974dae2` +I, [2018-07-25T00:40:24.269898 #5] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-07-25T00:40:24.273803 #5] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-07-25T00:40:24.273883 #5] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-07-25T00:40:24.350935 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:40:24.490554 #5] INFO -- : Joining group `notifications_course_change` +I, [2018-07-25T00:40:24.494651 #5] INFO -- : Joined group `notifications_course_change` with member id `notifications-d504e2d0-e159-4a12-a426-07fc2722ef13` +I, [2018-07-25T00:40:24.494697 #5] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-07-25T00:40:24.497521 #5] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-07-25T00:40:24.497583 #5] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-07-25T00:40:24.780235 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:40:25.351990 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:40:25.780721 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:40:26.352433 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:40:26.781187 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:40:27.352798 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:40:27.781990 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:40:28.355950 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:40:28.782376 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:40:29.357754 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:40:29.783220 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:40:30.358312 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:40:30.783803 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:40:31.359042 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:40:31.784104 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:40:32.359557 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:40:32.785254 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:40:33.360327 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:40:33.786165 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:40:34.279534 #5] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-07-25T00:40:34.360689 #5] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-07-25T00:40:34.505124 #5] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-07-25T00:40:34.786541 #5] INFO -- : Seeking course_change/0 to offset 0 +E, [2018-07-25T00:40:36.292687 #5] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- NoMethodError: undefined method `write' for EventStream:Class +/usr/src/app/app/controllers/eventstream.rb:14:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:11:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-07-25T00:40:36.292758 #5] INFO -- : Leaving group `notifications_notifications` +E, [2018-07-25T00:40:36.298025 #5] ERROR -- : Client fetch loop error: undefined method `write' for EventStream:Class +I, [2018-07-25T00:40:36.298227 #5] INFO -- : Joining group `notifications_notifications` +E, [2018-07-25T00:40:36.300445 #5] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-07-25T00:40:36.427841 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-07-25T00:40:36.511270 #5] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- NoMethodError: undefined method `write' for EventStream:Class +/usr/src/app/app/controllers/eventstream.rb:14:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:11:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-07-25T00:40:36.513249 #5] INFO -- : Leaving group `notifications_course_change` +E, [2018-07-25T00:40:36.515710 #5] ERROR -- : Client fetch loop error: undefined method `write' for EventStream:Class +I, [2018-07-25T00:40:36.515985 #5] INFO -- : Joining group `notifications_course_change` +E, [2018-07-25T00:40:36.517271 #5] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-07-25T00:40:36.719974 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:40:37.300881 #5] INFO -- : Joining group `notifications_notifications` +I, [2018-07-25T00:40:37.303808 #5] INFO -- : Joined group `notifications_notifications` with member id `notifications-12da997c-968d-49ea-b91f-11997860c073` +I, [2018-07-25T00:40:37.303854 #5] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-07-25T00:40:37.307147 #5] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-07-25T00:40:37.307217 #5] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-07-25T00:40:37.429028 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:40:37.517552 #5] INFO -- : Joining group `notifications_course_change` +I, [2018-07-25T00:40:37.522745 #5] INFO -- : Joined group `notifications_course_change` with member id `notifications-92afca42-05fc-4f8f-a289-f04c0de49764` +I, [2018-07-25T00:40:37.522792 #5] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-07-25T00:40:37.524744 #5] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-07-25T00:40:37.524835 #5] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-07-25T00:40:37.720490 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:40:38.429806 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:40:38.720819 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:40:39.430362 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:40:39.721442 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:40:40.431946 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:40:40.721883 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:40:41.435107 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:40:41.722328 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:40:42.436342 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:40:42.723298 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:40:43.437350 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:40:43.723716 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:40:44.437662 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:40:44.724236 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:40:45.438149 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:40:45.724617 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:40:46.438827 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:40:46.726934 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:40:47.315204 #5] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-07-25T00:40:47.439112 #5] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-07-25T00:40:47.535986 #5] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-07-25T00:40:47.801385 #5] INFO -- : Seeking course_change/0 to offset 0 +E, [2018-07-25T00:40:49.373897 #5] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- NoMethodError: undefined method `write' for EventStream:Class +/usr/src/app/app/controllers/eventstream.rb:14:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:11:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-07-25T00:40:49.374037 #5] INFO -- : Leaving group `notifications_notifications` +E, [2018-07-25T00:40:49.390972 #5] ERROR -- : Client fetch loop error: undefined method `write' for EventStream:Class +I, [2018-07-25T00:40:49.391342 #5] INFO -- : Joining group `notifications_notifications` +E, [2018-07-25T00:40:49.393262 #5] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-07-25T00:40:49.571894 #5] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- NoMethodError: undefined method `write' for EventStream:Class +/usr/src/app/app/controllers/eventstream.rb:14:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:11:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-07-25T00:40:49.584327 #5] INFO -- : Leaving group `notifications_course_change` +E, [2018-07-25T00:40:49.612849 #5] ERROR -- : Client fetch loop error: undefined method `write' for EventStream:Class +I, [2018-07-25T00:40:49.613514 #5] INFO -- : Joining group `notifications_course_change` +E, [2018-07-25T00:40:49.625358 #5] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-07-25T00:40:50.060251 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:40:50.379612 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:40:50.393589 #5] INFO -- : Joining group `notifications_notifications` +I, [2018-07-25T00:40:50.397991 #5] INFO -- : Joined group `notifications_notifications` with member id `notifications-f6ef5c8a-6e8f-468b-8447-0b6ce283192c` +I, [2018-07-25T00:40:50.398060 #5] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-07-25T00:40:50.403046 #5] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-07-25T00:40:50.403142 #5] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-07-25T00:40:50.626449 #5] INFO -- : Joining group `notifications_course_change` +I, [2018-07-25T00:40:50.634176 #5] INFO -- : Joined group `notifications_course_change` with member id `notifications-b47e1279-5a45-4b92-8a37-4c770afcc17a` +I, [2018-07-25T00:40:50.634231 #5] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-07-25T00:40:50.644133 #5] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-07-25T00:40:50.644334 #5] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-07-25T00:40:51.060761 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:40:51.380074 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:40:52.062990 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:40:52.380778 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:40:53.069233 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:40:53.474123 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:40:54.069595 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:40:54.475430 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:40:55.070322 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:40:55.476611 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:40:56.070775 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:40:56.477036 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:40:57.071275 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:40:57.477479 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:40:58.071998 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:40:58.478292 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:40:59.072495 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:40:59.478944 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:41:00.079291 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:41:00.416569 #5] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-07-25T00:41:00.479321 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:41:00.656880 #5] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-07-25T00:41:01.079762 #5] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-07-25T00:41:01.479647 #5] INFO -- : Seeking course_change/0 to offset 0 +E, [2018-07-25T00:41:02.422462 #5] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- NoMethodError: undefined method `write' for EventStream:Class +/usr/src/app/app/controllers/eventstream.rb:14:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:11:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-07-25T00:41:02.422562 #5] INFO -- : Leaving group `notifications_notifications` +E, [2018-07-25T00:41:02.428449 #5] ERROR -- : Client fetch loop error: undefined method `write' for EventStream:Class +I, [2018-07-25T00:41:02.428773 #5] INFO -- : Joining group `notifications_notifications` +E, [2018-07-25T00:41:02.430295 #5] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-07-25T00:41:02.438545 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-07-25T00:41:02.660927 #5] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- NoMethodError: undefined method `write' for EventStream:Class +/usr/src/app/app/controllers/eventstream.rb:14:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:11:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-07-25T00:41:02.662881 #5] INFO -- : Leaving group `notifications_course_change` +E, [2018-07-25T00:41:02.666427 #5] ERROR -- : Client fetch loop error: undefined method `write' for EventStream:Class +I, [2018-07-25T00:41:02.666692 #5] INFO -- : Joining group `notifications_course_change` +E, [2018-07-25T00:41:02.672940 #5] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-07-25T00:41:02.699979 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:41:03.431302 #5] INFO -- : Joining group `notifications_notifications` +I, [2018-07-25T00:41:03.438117 #5] INFO -- : Joined group `notifications_notifications` with member id `notifications-5fe522a2-f4d4-4d62-ac75-65d9825a847f` +I, [2018-07-25T00:41:03.438180 #5] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-07-25T00:41:03.438989 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:41:03.440977 #5] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-07-25T00:41:03.441056 #5] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-07-25T00:41:03.674083 #5] INFO -- : Joining group `notifications_course_change` +I, [2018-07-25T00:41:03.677300 #5] INFO -- : Joined group `notifications_course_change` with member id `notifications-133d33cd-bc46-46b1-b605-4aefb20b57d4` +I, [2018-07-25T00:41:03.677375 #5] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-07-25T00:41:03.680558 #5] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-07-25T00:41:03.680619 #5] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-07-25T00:41:03.700555 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:41:04.439346 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:41:04.700937 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:41:05.439763 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:41:05.701787 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:41:06.440627 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:41:06.703060 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:41:07.441078 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:41:07.703652 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:41:08.442028 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:41:08.704077 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:41:09.443287 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:41:09.704740 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:41:10.444286 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:41:10.705373 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:41:11.445088 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:41:11.705942 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:41:12.445630 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:41:12.706223 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:41:13.451551 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:41:13.463678 #5] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-07-25T00:41:13.688838 #5] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-07-25T00:41:13.710034 #5] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-07-25T00:41:14.619807 #5] INFO -- : Seeking section_change/0 to offset 0 +E, [2018-07-25T00:41:15.696942 #5] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- NoMethodError: undefined method `write' for EventStream:Class +/usr/src/app/app/controllers/eventstream.rb:14:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:11:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-07-25T00:41:15.697077 #5] INFO -- : Leaving group `notifications_course_change` +E, [2018-07-25T00:41:15.704391 #5] ERROR -- : Client fetch loop error: undefined method `write' for EventStream:Class +I, [2018-07-25T00:41:15.704741 #5] INFO -- : Joining group `notifications_course_change` +E, [2018-07-25T00:41:15.707933 #5] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-07-25T00:41:16.252151 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:41:16.708193 #5] INFO -- : Joining group `notifications_course_change` +I, [2018-07-25T00:41:16.712408 #5] INFO -- : Joined group `notifications_course_change` with member id `notifications-bc97829e-f84a-43c4-ab07-df0aa04cd4a0` +I, [2018-07-25T00:41:16.718146 #5] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-07-25T00:41:16.722522 #5] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-07-25T00:41:16.722631 #5] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-07-25T00:41:17.252625 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-07-25T00:41:17.476115 #5] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- NoMethodError: undefined method `write' for EventStream:Class +/usr/src/app/app/controllers/eventstream.rb:14:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:11:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-07-25T00:41:17.476179 #5] INFO -- : Leaving group `notifications_notifications` +E, [2018-07-25T00:41:17.479153 #5] ERROR -- : Client fetch loop error: undefined method `write' for EventStream:Class +I, [2018-07-25T00:41:17.479323 #5] INFO -- : Joining group `notifications_notifications` +E, [2018-07-25T00:41:17.480039 #5] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-07-25T00:41:17.521770 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:41:18.253834 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:41:18.480341 #5] INFO -- : Joining group `notifications_notifications` +I, [2018-07-25T00:41:18.483548 #5] INFO -- : Joined group `notifications_notifications` with member id `notifications-1b50aec2-d881-461c-9cc8-c42262099acd` +I, [2018-07-25T00:41:18.483614 #5] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-07-25T00:41:18.485334 #5] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-07-25T00:41:18.485409 #5] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-07-25T00:41:18.522996 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:41:19.254229 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:41:19.523880 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:41:20.254878 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:41:20.530543 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:41:21.280976 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:41:21.538957 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:41:22.281370 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:41:22.539322 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:41:23.287318 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:41:23.539727 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:41:24.288025 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:41:24.540212 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:41:25.288946 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:41:25.540655 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:41:26.306008 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:41:26.541081 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:41:26.734456 #5] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-07-25T00:41:27.306650 #5] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-07-25T00:41:27.542819 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:41:28.539299 #5] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-07-25T00:41:28.543278 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-07-25T00:41:28.745992 #5] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- NoMethodError: undefined method `write' for EventStream:Class +/usr/src/app/app/controllers/eventstream.rb:14:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:11:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-07-25T00:43:30.693550 #5] INFO -- : New topics added to target list: course_change +I, [2018-07-25T00:43:30.693713 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-07-25T00:43:30.695485 #5] INFO -- : New topics added to target list: section_change +I, [2018-07-25T00:43:30.695548 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-07-25T00:43:30.697329 #5] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.19.0.14:9094 +E, [2018-07-25T00:43:30.699506 #5] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.19.0.14:9094 +E, [2018-07-25T00:43:30.707859 #5] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.19.0.14:9094 +E, [2018-07-25T00:43:30.710314 #5] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.19.0.14:9094 +E, [2018-07-25T00:43:35.703915 #5] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: +- kafka://kafka:9094: Connection refused - connect(2) for 172.19.0.14:9094 +I, [2018-07-25T00:43:35.705893 #5] INFO -- : New topics added to target list: section_change +I, [2018-07-25T00:43:35.705962 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-07-25T00:43:35.707246 #5] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.19.0.14:9094 +E, [2018-07-25T00:43:35.707383 #5] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.19.0.14:9094 +E, [2018-07-25T00:43:35.710793 #5] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: +- kafka://kafka:9094: Connection refused - connect(2) for 172.19.0.14:9094 +I, [2018-07-25T00:43:35.711638 #5] INFO -- : New topics added to target list: course_change +I, [2018-07-25T00:43:35.711713 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-07-25T00:43:35.735881 #5] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.19.0.14:9094 +E, [2018-07-25T00:43:35.736020 #5] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.19.0.14:9094 +E, [2018-07-25T00:43:40.710700 #5] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: +- kafka://kafka:9094: Connection refused - connect(2) for 172.19.0.14:9094 +I, [2018-07-25T00:43:40.712974 #5] INFO -- : New topics added to target list: section_change +I, [2018-07-25T00:43:40.713071 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-07-25T00:43:40.714943 #5] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.19.0.14:9094 +E, [2018-07-25T00:43:40.715783 #5] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.19.0.14:9094 +E, [2018-07-25T00:43:40.738611 #5] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: +- kafka://kafka:9094: Connection refused - connect(2) for 172.19.0.14:9094 +I, [2018-07-25T00:43:40.756968 #5] INFO -- : New topics added to target list: course_change +I, [2018-07-25T00:43:40.757023 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-07-25T00:43:40.770300 #5] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.19.0.14:9094 +E, [2018-07-25T00:43:40.770417 #5] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.19.0.14:9094 +E, [2018-07-25T00:43:45.716526 #5] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: +- kafka://kafka:9094: Connection refused - connect(2) for 172.19.0.14:9094 +I, [2018-07-25T00:43:45.717317 #5] INFO -- : New topics added to target list: section_change +I, [2018-07-25T00:43:45.717360 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-07-25T00:43:45.770721 #5] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: +- kafka://kafka:9094: Connection refused - connect(2) for 172.19.0.14:9094 +I, [2018-07-25T00:43:45.772595 #5] INFO -- : New topics added to target list: course_change +I, [2018-07-25T00:43:45.772677 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-07-25T00:43:46.230758 #5] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-07-25T00:43:46.231020 #5] INFO -- : Joining group `notifications_course_change` +I, [2018-07-25T00:43:46.275923 #5] INFO -- : Will fetch at most 1048576 bytes at a time per partition from course_change +I, [2018-07-25T00:43:46.276084 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-07-25T00:43:46.299470 #5] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-07-25T00:43:46.299781 #5] INFO -- : Joining group `notifications_notifications` +I, [2018-07-25T00:43:46.321371 #5] INFO -- : Will fetch at most 1048576 bytes at a time per partition from section_change +I, [2018-07-25T00:43:46.321540 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-07-25T00:43:46.373759 #5] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-07-25T00:43:46.373906 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:43:46.389950 #5] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-07-25T00:43:46.390060 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:43:47.392867 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:43:47.393213 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:43:48.393962 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:43:48.393841 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:43:49.395844 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:43:49.396047 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:43:50.396488 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:43:50.396751 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:43:51.399070 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:43:51.399184 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:43:52.112753 #5] INFO -- : Joined group `notifications_notifications` with member id `notifications-62b47253-dd16-495b-b3f2-b9272b673a68` +I, [2018-07-25T00:43:52.113009 #5] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-07-25T00:43:52.287029 #5] INFO -- : Joined group `notifications_course_change` with member id `notifications-3a7fe99a-8c39-4922-9306-06222cf607a0` +I, [2018-07-25T00:43:52.287081 #5] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-07-25T00:43:52.399432 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:43:52.399549 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:43:53.243799 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-07-25T00:43:53.298500 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-07-25T00:43:53.400027 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:43:53.400191 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:43:53.401960 #5] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-07-25T00:43:53.437991 #5] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-07-25T00:43:53.784164 #5] INFO -- : Partitions assigned for `section_change`: 0 +I, [2018-07-25T00:43:53.907310 #5] INFO -- : Partitions assigned for `course_change`: 0 +I, [2018-07-25T00:43:54.408920 #5] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-07-25T00:43:54.415984 #5] INFO -- : New topics added to target list: section_change +I, [2018-07-25T00:43:54.416060 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-07-25T00:43:54.409072 #5] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-07-25T00:43:54.417603 #5] INFO -- : New topics added to target list: course_change +I, [2018-07-25T00:43:54.417647 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-07-25T00:43:54.443378 #5] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-07-25T00:43:54.449253 #5] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +E, [2018-07-25T00:43:55.968669 #5] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- NoMethodError: undefined method `write' for EventStream:Class +/usr/src/app/app/controllers/eventstream.rb:14:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:11:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-07-25T00:43:55.968753 #5] INFO -- : Leaving group `notifications_notifications` +E, [2018-07-25T00:43:55.974719 #5] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- NoMethodError: undefined method `write' for EventStream:Class +/usr/src/app/app/controllers/eventstream.rb:14:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:11:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-07-25T00:43:55.974778 #5] INFO -- : Leaving group `notifications_course_change` +E, [2018-07-25T00:43:56.032984 #5] ERROR -- : Client fetch loop error: undefined method `write' for EventStream:Class +I, [2018-07-25T00:43:56.033909 #5] INFO -- : Joining group `notifications_course_change` +E, [2018-07-25T00:43:56.040303 #5] ERROR -- : Client fetch loop error: undefined method `write' for EventStream:Class +E, [2018-07-25T00:43:56.051826 #5] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-07-25T00:43:56.052661 #5] INFO -- : Joining group `notifications_notifications` +E, [2018-07-25T00:43:56.063291 #5] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-07-25T00:43:56.072014 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:43:56.102505 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:43:57.052363 #5] INFO -- : Joining group `notifications_course_change` +I, [2018-07-25T00:43:57.064416 #5] INFO -- : Joining group `notifications_notifications` +I, [2018-07-25T00:43:57.072573 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:43:57.103199 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:43:57.103410 #5] INFO -- : Joined group `notifications_course_change` with member id `notifications-1ef698ee-559e-4423-9275-e76111f696ea` +I, [2018-07-25T00:43:57.103443 #5] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-07-25T00:43:57.116378 #5] INFO -- : Joined group `notifications_notifications` with member id `notifications-9a917bef-aa7f-4771-8e94-6c7deb8f88f8` +I, [2018-07-25T00:43:57.116430 #5] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-07-25T00:43:57.118156 #5] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-07-25T00:43:57.118228 #5] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-07-25T00:43:57.138311 #5] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-07-25T00:43:57.138411 #5] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-07-25T00:43:58.073000 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:43:58.103547 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:43:59.073363 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:43:59.105073 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:44:00.073952 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:44:00.106458 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:44:01.075721 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:44:01.106812 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:44:02.076352 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:44:02.107325 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:44:03.077265 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:44:03.108901 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:44:04.077752 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:44:04.110510 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:44:05.079309 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:44:05.111803 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:44:06.079726 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:44:06.112351 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:44:07.081013 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:44:07.112799 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:44:07.178406 #5] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-07-25T00:44:07.195449 #5] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-07-25T00:44:08.081593 #5] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-07-25T00:44:08.117638 #5] INFO -- : Seeking course_change/0 to offset 0 +E, [2018-07-25T00:44:09.184453 #5] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- NoMethodError: undefined method `write' for EventStream:Class +/usr/src/app/app/controllers/eventstream.rb:14:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:11:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-07-25T00:44:09.184527 #5] INFO -- : Leaving group `notifications_course_change` +E, [2018-07-25T00:44:09.196396 #5] ERROR -- : Client fetch loop error: undefined method `write' for EventStream:Class +I, [2018-07-25T00:44:09.196631 #5] INFO -- : Joining group `notifications_course_change` +E, [2018-07-25T00:44:09.199694 #5] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- NoMethodError: undefined method `write' for EventStream:Class +/usr/src/app/app/controllers/eventstream.rb:14:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:11:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-07-25T00:44:09.239130 #5] INFO -- : Leaving group `notifications_notifications` +E, [2018-07-25T00:44:09.227232 #5] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-07-25T00:44:09.268492 #5] ERROR -- : Client fetch loop error: undefined method `write' for EventStream:Class +I, [2018-07-25T00:44:09.268840 #5] INFO -- : Joining group `notifications_notifications` +E, [2018-07-25T00:44:09.272153 #5] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-07-25T00:44:09.288431 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:44:09.385668 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:44:10.239811 #5] INFO -- : Joining group `notifications_course_change` +I, [2018-07-25T00:44:10.257221 #5] INFO -- : Joined group `notifications_course_change` with member id `notifications-8b5311ae-0f1b-48ec-841e-608b458e7846` +I, [2018-07-25T00:44:10.257275 #5] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-07-25T00:44:10.269504 #5] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-07-25T00:44:10.269606 #5] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-07-25T00:44:10.272430 #5] INFO -- : Joining group `notifications_notifications` +I, [2018-07-25T00:44:10.290448 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:44:10.293173 #5] INFO -- : Joined group `notifications_notifications` with member id `notifications-f00c4f76-20a3-4bd6-b2f1-3c5a66ef59fc` +I, [2018-07-25T00:44:10.293232 #5] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-07-25T00:44:10.309436 #5] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-07-25T00:44:10.309514 #5] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-07-25T00:44:10.386479 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:44:11.291175 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:44:11.387854 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:44:12.292523 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:44:12.389080 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:44:13.293862 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:44:13.391194 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:44:14.295023 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:44:14.391665 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:44:15.296193 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:44:15.392766 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:44:16.296768 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:44:16.393102 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:44:17.298481 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:44:17.393547 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:44:18.299850 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:44:18.394043 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:44:19.300459 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:44:19.394762 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:44:20.301683 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:44:20.302821 #5] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-07-25T00:44:20.353269 #5] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-07-25T00:44:20.395160 #5] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-07-25T00:44:21.302379 #5] INFO -- : Seeking course_change/0 to offset 0 +E, [2018-07-25T00:44:22.308531 #5] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- NoMethodError: undefined method `write' for EventStream:Class +/usr/src/app/app/controllers/eventstream.rb:14:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:11:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-07-25T00:44:22.308604 #5] INFO -- : Leaving group `notifications_course_change` +E, [2018-07-25T00:44:22.312644 #5] ERROR -- : Client fetch loop error: undefined method `write' for EventStream:Class +I, [2018-07-25T00:44:22.312924 #5] INFO -- : Joining group `notifications_course_change` +E, [2018-07-25T00:44:22.315968 #5] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-07-25T00:44:22.357540 #5] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- NoMethodError: undefined method `write' for EventStream:Class +/usr/src/app/app/controllers/eventstream.rb:14:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:11:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-07-25T00:44:22.362980 #5] INFO -- : Leaving group `notifications_notifications` +E, [2018-07-25T00:44:22.366419 #5] ERROR -- : Client fetch loop error: undefined method `write' for EventStream:Class +I, [2018-07-25T00:44:22.366708 #5] INFO -- : Joining group `notifications_notifications` +E, [2018-07-25T00:44:22.368683 #5] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-07-25T00:44:22.376846 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:44:22.424694 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:44:23.316487 #5] INFO -- : Joining group `notifications_course_change` +I, [2018-07-25T00:44:23.324873 #5] INFO -- : Joined group `notifications_course_change` with member id `notifications-4b0491e5-1114-4a5d-91b9-7810d23dfe0f` +I, [2018-07-25T00:44:23.324920 #5] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-07-25T00:44:23.332730 #5] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-07-25T00:44:23.332795 #5] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-07-25T00:44:23.369470 #5] INFO -- : Joining group `notifications_notifications` +I, [2018-07-25T00:44:23.377361 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:44:23.380792 #5] INFO -- : Joined group `notifications_notifications` with member id `notifications-e275057a-5d69-47f9-bb8d-cb243777c1af` +I, [2018-07-25T00:44:23.380847 #5] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-07-25T00:44:23.385826 #5] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-07-25T00:44:23.385893 #5] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-07-25T00:44:23.425311 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:44:24.378551 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:44:24.426047 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:44:25.379600 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:44:25.426521 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:44:26.383604 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:44:26.427001 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:44:27.384144 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:44:27.428254 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:44:28.384547 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:44:28.428642 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:44:29.384890 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:44:29.515801 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:44:30.386614 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:44:30.516435 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:44:31.390174 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:44:31.517152 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:44:32.390529 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:44:32.519024 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:44:33.350801 #5] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-07-25T00:44:33.391115 #5] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-07-25T00:44:33.395836 #5] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-07-25T00:44:33.525258 #5] INFO -- : Seeking section_change/0 to offset 0 +E, [2018-07-25T00:44:35.358582 #5] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- NoMethodError: undefined method `write' for EventStream:Class +/usr/src/app/app/controllers/eventstream.rb:14:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:11:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-07-25T00:44:35.358683 #5] INFO -- : Leaving group `notifications_course_change` +E, [2018-07-25T00:44:35.362876 #5] ERROR -- : Client fetch loop error: undefined method `write' for EventStream:Class +I, [2018-07-25T00:44:35.363135 #5] INFO -- : Joining group `notifications_course_change` +E, [2018-07-25T00:44:35.365161 #5] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-07-25T00:44:35.403085 #5] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- NoMethodError: undefined method `write' for EventStream:Class +/usr/src/app/app/controllers/eventstream.rb:14:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:11:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-07-25T00:44:35.407293 #5] INFO -- : Leaving group `notifications_notifications` +E, [2018-07-25T00:44:35.444632 #5] ERROR -- : Client fetch loop error: undefined method `write' for EventStream:Class +I, [2018-07-25T00:44:35.444802 #5] INFO -- : Joining group `notifications_notifications` +E, [2018-07-25T00:44:35.451523 #5] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-07-25T00:44:35.452215 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:44:36.053856 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:44:36.365675 #5] INFO -- : Joining group `notifications_course_change` +I, [2018-07-25T00:44:36.379528 #5] INFO -- : Joined group `notifications_course_change` with member id `notifications-4ef5e1c4-1734-402e-bce9-240c5c05b67d` +I, [2018-07-25T00:44:36.379582 #5] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-07-25T00:44:36.381894 #5] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-07-25T00:44:36.381960 #5] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-07-25T00:44:36.451794 #5] INFO -- : Joining group `notifications_notifications` +I, [2018-07-25T00:44:36.452630 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:44:36.458563 #5] INFO -- : Joined group `notifications_notifications` with member id `notifications-9961662b-c618-4970-9a78-b6bf72dd9d7a` +I, [2018-07-25T00:44:36.458614 #5] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-07-25T00:44:36.469133 #5] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-07-25T00:44:36.469218 #5] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-07-25T00:44:37.054474 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:44:37.453933 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:44:38.055604 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:44:38.454526 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:44:39.056911 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:44:39.469755 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:44:40.060563 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:44:40.470100 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:44:41.061398 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:44:41.470566 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:44:42.061928 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:44:42.470910 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:44:43.062518 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:44:43.471313 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:44:44.063337 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:44:44.471961 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:44:45.063646 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:44:45.473239 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:44:46.064545 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:44:46.396395 #5] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-07-25T00:44:46.474250 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:44:46.480047 #5] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-07-25T00:44:47.064858 #5] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-07-25T00:44:47.475735 #5] INFO -- : Seeking section_change/0 to offset 0 +E, [2018-07-25T00:44:48.399347 #5] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- NoMethodError: undefined method `write' for EventStream:Class +/usr/src/app/app/controllers/eventstream.rb:14:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:11:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-07-25T00:44:48.399424 #5] INFO -- : Leaving group `notifications_course_change` +E, [2018-07-25T00:44:48.402119 #5] ERROR -- : Client fetch loop error: undefined method `write' for EventStream:Class +I, [2018-07-25T00:44:48.402288 #5] INFO -- : Joining group `notifications_course_change` +E, [2018-07-25T00:44:48.403073 #5] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-07-25T00:44:48.487741 #5] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- NoMethodError: undefined method `write' for EventStream:Class +/usr/src/app/app/controllers/eventstream.rb:14:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:11:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-07-25T00:44:48.514731 #5] INFO -- : Leaving group `notifications_notifications` +E, [2018-07-25T00:44:48.529715 #5] ERROR -- : Client fetch loop error: undefined method `write' for EventStream:Class +I, [2018-07-25T00:44:48.530246 #5] INFO -- : Joining group `notifications_notifications` +E, [2018-07-25T00:44:48.531452 #5] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-07-25T00:44:48.608198 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:44:48.625742 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:44:49.403553 #5] INFO -- : Joining group `notifications_course_change` +I, [2018-07-25T00:44:49.407191 #5] INFO -- : Joined group `notifications_course_change` with member id `notifications-b1025b4f-77c1-4ee7-aa8f-cb80394abf22` +I, [2018-07-25T00:44:49.407240 #5] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-07-25T00:44:49.410952 #5] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-07-25T00:44:49.411018 #5] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-07-25T00:44:49.532716 #5] INFO -- : Joining group `notifications_notifications` +I, [2018-07-25T00:44:49.539988 #5] INFO -- : Joined group `notifications_notifications` with member id `notifications-e97dd052-0693-4f62-b72a-f17b168ecd7f` +I, [2018-07-25T00:44:49.540050 #5] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-07-25T00:44:49.543527 #5] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-07-25T00:44:49.543614 #5] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-07-25T00:44:49.608816 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:44:49.626762 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:44:50.609190 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:44:50.627203 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:44:51.611146 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:44:51.628181 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:44:52.612362 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:44:52.628543 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:44:53.612962 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:44:53.629535 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:44:54.614439 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:44:54.629916 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:44:55.615208 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:44:55.630258 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:44:56.615640 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:44:56.630640 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:44:57.616089 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:44:57.635655 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:44:58.616988 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:44:58.636296 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:44:59.419931 #5] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-07-25T00:44:59.554984 #5] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-07-25T00:44:59.617661 #5] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-07-25T00:44:59.636654 #5] INFO -- : Seeking course_change/0 to offset 0 +E, [2018-07-25T00:45:01.425212 #5] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- NoMethodError: undefined method `write' for EventStream:Class +/usr/src/app/app/controllers/eventstream.rb:14:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:11:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-07-25T00:45:01.425331 #5] INFO -- : Leaving group `notifications_course_change` +E, [2018-07-25T00:45:01.428300 #5] ERROR -- : Client fetch loop error: undefined method `write' for EventStream:Class +I, [2018-07-25T00:45:01.428468 #5] INFO -- : Joining group `notifications_course_change` +E, [2018-07-25T00:45:01.429470 #5] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-07-25T00:45:01.510846 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-07-25T00:45:01.559543 #5] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- NoMethodError: undefined method `write' for EventStream:Class +/usr/src/app/app/controllers/eventstream.rb:14:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:11:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-07-25T00:45:01.561711 #5] INFO -- : Leaving group `notifications_notifications` +E, [2018-07-25T00:45:01.564656 #5] ERROR -- : Client fetch loop error: undefined method `write' for EventStream:Class +I, [2018-07-25T00:45:01.565075 #5] INFO -- : Joining group `notifications_notifications` +E, [2018-07-25T00:45:01.566707 #5] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-07-25T00:45:01.584938 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:45:02.430095 #5] INFO -- : Joining group `notifications_course_change` +I, [2018-07-25T00:45:02.439880 #5] INFO -- : Joined group `notifications_course_change` with member id `notifications-f716385a-6af9-45d2-8ecf-eef889f42372` +I, [2018-07-25T00:45:02.439950 #5] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-07-25T00:45:02.442296 #5] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-07-25T00:45:02.442375 #5] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-07-25T00:45:02.511231 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:45:02.567034 #5] INFO -- : Joining group `notifications_notifications` +I, [2018-07-25T00:45:02.570441 #5] INFO -- : Joined group `notifications_notifications` with member id `notifications-3e03668b-5729-42e8-8c3c-52158937506a` +I, [2018-07-25T00:45:02.570513 #5] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-07-25T00:45:02.573629 #5] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-07-25T00:45:02.573713 #5] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-07-25T00:45:02.586748 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:45:03.511884 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:45:03.587181 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:45:04.513266 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:45:04.587695 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:45:05.515092 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:45:05.589131 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:45:06.515684 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:45:06.589532 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:45:07.516091 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:45:07.596239 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:45:08.517019 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:45:08.596756 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:45:09.517582 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:45:09.597796 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:45:10.518432 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:45:10.599674 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:45:11.519444 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:45:11.601452 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:45:12.451064 #5] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-07-25T00:45:12.520268 #5] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-07-25T00:45:12.594773 #5] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-07-25T00:45:12.603005 #5] INFO -- : Seeking section_change/0 to offset 0 +E, [2018-07-25T00:45:14.456049 #5] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- NoMethodError: undefined method `write' for EventStream:Class +/usr/src/app/app/controllers/eventstream.rb:14:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:11:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-07-25T00:45:14.456127 #5] INFO -- : Leaving group `notifications_course_change` +E, [2018-07-25T00:45:14.459084 #5] ERROR -- : Client fetch loop error: undefined method `write' for EventStream:Class +I, [2018-07-25T00:45:14.459242 #5] INFO -- : Joining group `notifications_course_change` +E, [2018-07-25T00:45:14.464074 #5] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-07-25T00:45:14.599611 #5] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- NoMethodError: undefined method `write' for EventStream:Class +/usr/src/app/app/controllers/eventstream.rb:14:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:11:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-07-25T00:45:14.601419 #5] INFO -- : Leaving group `notifications_notifications` +E, [2018-07-25T00:45:14.603498 #5] ERROR -- : Client fetch loop error: undefined method `write' for EventStream:Class +I, [2018-07-25T00:45:14.603841 #5] INFO -- : Joining group `notifications_notifications` +E, [2018-07-25T00:45:14.604839 #5] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-07-25T00:45:14.732946 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:45:14.751532 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:45:15.464401 #5] INFO -- : Joining group `notifications_course_change` +I, [2018-07-25T00:45:15.467446 #5] INFO -- : Joined group `notifications_course_change` with member id `notifications-7fbbbc7a-d13c-4bc9-b814-fa204bb737a6` +I, [2018-07-25T00:45:15.467490 #5] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-07-25T00:45:15.469134 #5] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-07-25T00:45:15.469197 #5] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-07-25T00:45:15.605278 #5] INFO -- : Joining group `notifications_notifications` +I, [2018-07-25T00:45:15.608988 #5] INFO -- : Joined group `notifications_notifications` with member id `notifications-0dcb36da-78ca-4dc3-9f57-14c1a49c9bfb` +I, [2018-07-25T00:45:15.609030 #5] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-07-25T00:45:15.611984 #5] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-07-25T00:45:15.612046 #5] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-07-25T00:45:15.734150 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:45:15.752441 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:45:16.734885 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:45:16.753320 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:45:17.735940 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:45:17.753853 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:45:18.736268 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:45:18.754948 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:45:19.737793 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:45:19.755280 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:45:20.738762 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:45:20.757373 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:45:21.739302 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:45:21.757784 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:45:22.739825 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:45:22.758074 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:45:23.740368 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:45:23.758667 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:45:24.740730 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:45:24.759711 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:45:25.475588 #5] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-07-25T00:45:25.623974 #5] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-07-25T00:45:25.741267 #5] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-07-25T00:45:25.766603 #5] INFO -- : Seeking course_change/0 to offset 0 +E, [2018-07-25T00:45:27.478736 #5] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- NoMethodError: undefined method `write' for EventStream:Class +/usr/src/app/app/controllers/eventstream.rb:14:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:11:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-07-25T00:45:27.478877 #5] INFO -- : Leaving group `notifications_course_change` +E, [2018-07-25T00:45:27.480950 #5] ERROR -- : Client fetch loop error: undefined method `write' for EventStream:Class +I, [2018-07-25T00:45:27.481169 #5] INFO -- : Joining group `notifications_course_change` +E, [2018-07-25T00:45:27.482025 #5] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-07-25T00:45:27.548876 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-07-25T00:45:27.627834 #5] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- NoMethodError: undefined method `write' for EventStream:Class +/usr/src/app/app/controllers/eventstream.rb:14:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:11:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-07-25T00:45:27.630075 #5] INFO -- : Leaving group `notifications_notifications` +E, [2018-07-25T00:45:27.633362 #5] ERROR -- : Client fetch loop error: undefined method `write' for EventStream:Class +I, [2018-07-25T00:45:27.633609 #5] INFO -- : Joining group `notifications_notifications` +E, [2018-07-25T00:45:27.635416 #5] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-07-25T00:45:27.710325 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:45:28.482277 #5] INFO -- : Joining group `notifications_course_change` +I, [2018-07-25T00:45:28.485953 #5] INFO -- : Joined group `notifications_course_change` with member id `notifications-23311ae7-727e-4179-b92a-b2732fdae061` +I, [2018-07-25T00:45:28.486007 #5] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-07-25T00:45:28.493263 #5] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-07-25T00:45:28.493337 #5] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-07-25T00:45:28.549269 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:45:28.635785 #5] INFO -- : Joining group `notifications_notifications` +I, [2018-07-25T00:45:28.639355 #5] INFO -- : Joined group `notifications_notifications` with member id `notifications-bd7e2532-f76f-4c1f-b40f-fd13a93c2c56` +I, [2018-07-25T00:45:28.639408 #5] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-07-25T00:45:28.641509 #5] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-07-25T00:45:28.641579 #5] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-07-25T00:45:28.710959 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:45:30.313969 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:45:30.315681 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:45:31.315409 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:45:31.316094 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:45:32.315911 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:45:32.316479 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:45:33.316483 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:45:33.316854 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:45:34.318955 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:45:34.319093 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:45:35.319274 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:45:35.319419 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:45:36.320816 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:45:36.321100 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:45:37.321941 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:45:37.322056 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:45:38.322430 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:45:38.322654 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:45:38.524406 #5] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-07-25T00:45:38.661304 #5] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-07-25T00:45:39.324414 #5] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-07-25T00:45:39.326019 #5] INFO -- : Seeking course_change/0 to offset 0 +E, [2018-07-25T00:45:40.527711 #5] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- NoMethodError: undefined method `write' for EventStream:Class +/usr/src/app/app/controllers/eventstream.rb:14:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:11:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-07-25T00:45:40.527781 #5] INFO -- : Leaving group `notifications_course_change` +E, [2018-07-25T00:45:40.530432 #5] ERROR -- : Client fetch loop error: undefined method `write' for EventStream:Class +I, [2018-07-25T00:45:40.530641 #5] INFO -- : Joining group `notifications_course_change` +E, [2018-07-25T00:45:40.531532 #5] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-07-25T00:45:40.664184 #5] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- NoMethodError: undefined method `write' for EventStream:Class +/usr/src/app/app/controllers/eventstream.rb:14:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:11:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-07-25T00:47:54.077109 #5] INFO -- : New topics added to target list: section_change +I, [2018-07-25T00:47:54.077198 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-07-25T00:47:54.078520 #5] INFO -- : New topics added to target list: course_change +I, [2018-07-25T00:47:54.078569 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-07-25T00:47:54.080206 #5] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.19.0.14:9094 +E, [2018-07-25T00:47:54.080313 #5] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.19.0.14:9094 +E, [2018-07-25T00:47:54.080555 #5] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.19.0.14:9094 +E, [2018-07-25T00:47:54.080637 #5] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.19.0.14:9094 +E, [2018-07-25T00:47:59.081014 #5] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: +- kafka://kafka:9094: Connection refused - connect(2) for 172.19.0.14:9094 +I, [2018-07-25T00:47:59.082021 #5] INFO -- : New topics added to target list: section_change +I, [2018-07-25T00:47:59.082065 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-07-25T00:47:59.083206 #5] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: +- kafka://kafka:9094: Connection refused - connect(2) for 172.19.0.14:9094 +I, [2018-07-25T00:47:59.094201 #5] INFO -- : New topics added to target list: course_change +I, [2018-07-25T00:47:59.094277 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-07-25T00:47:59.095084 #5] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.19.0.14:9094 +E, [2018-07-25T00:47:59.095219 #5] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.19.0.14:9094 +E, [2018-07-25T00:47:59.101085 #5] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.19.0.14:9094 +E, [2018-07-25T00:47:59.101660 #5] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.19.0.14:9094 +E, [2018-07-25T00:48:04.096396 #5] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: +- kafka://kafka:9094: Connection refused - connect(2) for 172.19.0.14:9094 +I, [2018-07-25T00:48:04.097123 #5] INFO -- : New topics added to target list: section_change +I, [2018-07-25T00:48:04.097165 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-07-25T00:48:04.098390 #5] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.19.0.14:9094 +E, [2018-07-25T00:48:04.098492 #5] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.19.0.14:9094 +E, [2018-07-25T00:48:04.102905 #5] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: +- kafka://kafka:9094: Connection refused - connect(2) for 172.19.0.14:9094 +I, [2018-07-25T00:48:04.103599 #5] INFO -- : New topics added to target list: course_change +I, [2018-07-25T00:48:04.103636 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-07-25T00:48:04.104415 #5] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.19.0.14:9094 +E, [2018-07-25T00:48:04.104508 #5] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.19.0.14:9094 +E, [2018-07-25T00:48:09.098963 #5] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: +- kafka://kafka:9094: Connection refused - connect(2) for 172.19.0.14:9094 +I, [2018-07-25T00:48:09.100164 #5] INFO -- : New topics added to target list: section_change +I, [2018-07-25T00:48:09.100232 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-07-25T00:48:09.104956 #5] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: +- kafka://kafka:9094: Connection refused - connect(2) for 172.19.0.14:9094 +I, [2018-07-25T00:48:09.108292 #5] INFO -- : New topics added to target list: course_change +I, [2018-07-25T00:48:09.108363 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-07-25T00:48:09.987629 #5] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-07-25T00:48:09.987834 #5] INFO -- : Joining group `notifications_course_change` +I, [2018-07-25T00:48:10.024757 #5] INFO -- : Will fetch at most 1048576 bytes at a time per partition from course_change +I, [2018-07-25T00:48:10.024954 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-07-25T00:48:10.031644 #5] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-07-25T00:48:10.031787 #5] INFO -- : Joining group `notifications_notifications` +I, [2018-07-25T00:48:10.038454 #5] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-07-25T00:48:10.038602 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:48:10.128217 #5] INFO -- : Will fetch at most 1048576 bytes at a time per partition from section_change +I, [2018-07-25T00:48:10.128619 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-07-25T00:48:10.157483 #5] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-07-25T00:48:10.157615 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:48:11.043721 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:48:11.158151 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:48:12.045748 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:48:12.158577 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:48:13.046211 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:48:13.159208 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:48:14.047189 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:48:14.164390 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:48:15.077673 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:48:15.166974 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:48:16.078635 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:48:16.170386 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:48:17.082976 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:48:17.171017 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:48:18.084139 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:48:18.116320 #5] INFO -- : Joined group `notifications_notifications` with member id `notifications-a5c87ba6-ad6e-4ca9-93d3-844dd112af1c` +I, [2018-07-25T00:48:18.116389 #5] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-07-25T00:48:18.172090 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:48:18.563320 #5] INFO -- : Joined group `notifications_course_change` with member id `notifications-7d74643d-0598-4b39-bcf5-46e876b65658` +I, [2018-07-25T00:48:18.563375 #5] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-07-25T00:48:19.084699 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:48:19.117168 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-07-25T00:48:19.172541 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:48:19.173082 #5] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-07-25T00:48:19.260146 #5] INFO -- : Partitions assigned for `section_change`: 0 +I, [2018-07-25T00:48:19.564341 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-07-25T00:48:19.568558 #5] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-07-25T00:48:19.581563 #5] INFO -- : Partitions assigned for `course_change`: 0 +I, [2018-07-25T00:48:20.085153 #5] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-07-25T00:48:20.085258 #5] INFO -- : New topics added to target list: course_change +I, [2018-07-25T00:48:20.085290 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-07-25T00:48:20.090462 #5] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-07-25T00:48:20.174080 #5] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-07-25T00:48:20.174186 #5] INFO -- : New topics added to target list: section_change +I, [2018-07-25T00:48:20.174220 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-07-25T00:48:20.180074 #5] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +E, [2018-07-25T00:48:21.293389 #5] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- NoMethodError: undefined method `write' for nil:NilClass +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:139:in `write' +/usr/src/app/app/controllers/eventstream.rb:15:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:11:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-07-25T00:48:21.293523 #5] INFO -- : Leaving group `notifications_notifications` +E, [2018-07-25T00:48:21.378492 #5] ERROR -- : Client fetch loop error: undefined method `write' for nil:NilClass +I, [2018-07-25T00:48:21.378827 #5] INFO -- : Joining group `notifications_notifications` +E, [2018-07-25T00:48:21.380986 #5] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-07-25T00:48:21.444242 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-07-25T00:48:21.607004 #5] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- NoMethodError: undefined method `write' for nil:NilClass +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:139:in `write' +/usr/src/app/app/controllers/eventstream.rb:15:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:11:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-07-25T00:48:21.609126 #5] INFO -- : Leaving group `notifications_course_change` +E, [2018-07-25T00:48:21.638630 #5] ERROR -- : Client fetch loop error: undefined method `write' for nil:NilClass +I, [2018-07-25T00:48:21.639010 #5] INFO -- : Joining group `notifications_course_change` +E, [2018-07-25T00:48:21.649946 #5] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-07-25T00:48:22.183609 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:48:22.381261 #5] INFO -- : Joining group `notifications_notifications` +I, [2018-07-25T00:48:22.392359 #5] INFO -- : Joined group `notifications_notifications` with member id `notifications-9413da34-95b1-40b1-8352-55f8ee956c52` +I, [2018-07-25T00:48:22.392410 #5] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-07-25T00:48:22.410248 #5] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-07-25T00:48:22.410320 #5] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-07-25T00:48:22.445319 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:48:22.650524 #5] INFO -- : Joining group `notifications_course_change` +I, [2018-07-25T00:48:22.670622 #5] INFO -- : Joined group `notifications_course_change` with member id `notifications-28fb12ba-6c2b-4cd5-a37f-9216c9656dfc` +I, [2018-07-25T00:48:22.670688 #5] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-07-25T00:48:22.733426 #5] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-07-25T00:48:22.733547 #5] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-07-25T00:48:23.184562 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:48:23.445772 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:48:24.185141 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:48:24.446988 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:48:25.185902 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:48:25.447717 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:48:26.187519 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:48:26.449768 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:48:27.188500 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:48:27.450363 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:48:28.189106 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:48:28.451766 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:48:29.190112 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:48:29.452681 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:48:30.191215 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:48:30.453802 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:48:31.191591 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:48:31.455358 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:48:32.191928 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:48:32.422663 #5] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-07-25T00:48:32.456044 #5] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-07-25T00:48:32.752150 #5] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-07-25T00:48:33.192191 #5] INFO -- : Seeking course_change/0 to offset 0 +E, [2018-07-25T00:48:34.426187 #5] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- NoMethodError: undefined method `write' for nil:NilClass +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:139:in `write' +/usr/src/app/app/controllers/eventstream.rb:15:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:11:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-07-25T00:48:34.426373 #5] INFO -- : Leaving group `notifications_notifications` +E, [2018-07-25T00:48:34.439454 #5] ERROR -- : Client fetch loop error: undefined method `write' for nil:NilClass +I, [2018-07-25T00:48:34.439668 #5] INFO -- : Joining group `notifications_notifications` +E, [2018-07-25T00:48:34.440517 #5] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-07-25T00:48:34.504046 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-07-25T00:48:34.758613 #5] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- NoMethodError: undefined method `write' for nil:NilClass +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:139:in `write' +/usr/src/app/app/controllers/eventstream.rb:15:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:11:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-07-25T00:48:34.760461 #5] INFO -- : Leaving group `notifications_course_change` +E, [2018-07-25T00:48:34.764627 #5] ERROR -- : Client fetch loop error: undefined method `write' for nil:NilClass +I, [2018-07-25T00:48:34.765201 #5] INFO -- : Joining group `notifications_course_change` +E, [2018-07-25T00:48:34.779065 #5] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-07-25T00:48:34.908265 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:48:35.441063 #5] INFO -- : Joining group `notifications_notifications` +I, [2018-07-25T00:48:35.446698 #5] INFO -- : Joined group `notifications_notifications` with member id `notifications-1b29b05b-9418-4617-add6-761ba70ff451` +I, [2018-07-25T00:48:35.446854 #5] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-07-25T00:48:35.453042 #5] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-07-25T00:48:35.453187 #5] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-07-25T00:48:35.504444 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:48:35.780639 #5] INFO -- : Joining group `notifications_course_change` +I, [2018-07-25T00:48:35.788167 #5] INFO -- : Joined group `notifications_course_change` with member id `notifications-01d0290f-588c-40f6-bdec-3adc7177f9f4` +I, [2018-07-25T00:48:35.788243 #5] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-07-25T00:48:35.792526 #5] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-07-25T00:48:35.792648 #5] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-07-25T00:48:35.908721 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:48:36.505980 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:48:36.909351 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:48:37.506933 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:48:37.909854 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:48:38.507491 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:48:38.917644 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:48:39.508127 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:48:39.920666 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:48:40.509671 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:48:40.928497 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:48:41.510285 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:48:41.929089 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:48:42.510595 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:48:42.929405 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:48:43.511014 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:48:43.929737 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:48:44.511883 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:48:44.930180 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:48:45.485486 #5] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-07-25T00:48:45.512585 #5] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-07-25T00:48:45.801230 #5] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-07-25T00:48:45.930876 #5] INFO -- : Seeking course_change/0 to offset 0 +E, [2018-07-25T00:48:47.495046 #5] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- NoMethodError: undefined method `write' for nil:NilClass +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:139:in `write' +/usr/src/app/app/controllers/eventstream.rb:15:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:11:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-07-25T00:48:47.495108 #5] INFO -- : Leaving group `notifications_notifications` +E, [2018-07-25T00:48:47.499634 #5] ERROR -- : Client fetch loop error: undefined method `write' for nil:NilClass +I, [2018-07-25T00:48:47.499816 #5] INFO -- : Joining group `notifications_notifications` +E, [2018-07-25T00:48:47.501024 #5] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-07-25T00:48:47.509094 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-07-25T00:48:47.808333 #5] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- NoMethodError: undefined method `write' for nil:NilClass +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:139:in `write' +/usr/src/app/app/controllers/eventstream.rb:15:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:11:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-07-25T00:48:47.811131 #5] INFO -- : Leaving group `notifications_course_change` +E, [2018-07-25T00:48:47.813715 #5] ERROR -- : Client fetch loop error: undefined method `write' for nil:NilClass +I, [2018-07-25T00:48:47.813979 #5] INFO -- : Joining group `notifications_course_change` +E, [2018-07-25T00:48:47.814969 #5] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-07-25T00:48:47.830654 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:48:48.583469 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:48:48.585437 #5] INFO -- : Joining group `notifications_notifications` +I, [2018-07-25T00:48:48.645566 #5] INFO -- : Joined group `notifications_notifications` with member id `notifications-7e772e1a-eecb-45c9-9947-8081c51e6bed` +I, [2018-07-25T00:48:48.645634 #5] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-07-25T00:48:48.654506 #5] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-07-25T00:48:48.654877 #5] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-07-25T00:48:48.815881 #5] INFO -- : Joining group `notifications_course_change` +I, [2018-07-25T00:48:48.826867 #5] INFO -- : Joined group `notifications_course_change` with member id `notifications-cdce5a5a-3e28-45d6-9317-677561ddafc8` +I, [2018-07-25T00:48:48.826938 #5] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-07-25T00:48:48.837007 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:48:48.855427 #5] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-07-25T00:48:48.855522 #5] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-07-25T00:48:49.584076 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:48:49.837621 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:48:50.584806 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:48:50.839333 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:48:51.585317 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:48:51.840461 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:48:52.585662 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:48:52.843344 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:48:53.586337 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:48:53.844197 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:48:54.586766 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:48:54.844580 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:48:55.587258 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:48:55.845186 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:48:56.591901 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:48:56.847117 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:48:57.592816 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:48:57.848897 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:48:58.593646 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:48:58.661255 #5] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-07-25T00:48:58.849366 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:48:58.870373 #5] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-07-25T00:48:59.594141 #5] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-07-25T00:48:59.849715 #5] INFO -- : Seeking course_change/0 to offset 0 +E, [2018-07-25T00:49:00.664519 #5] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- NoMethodError: undefined method `write' for nil:NilClass +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:139:in `write' +/usr/src/app/app/controllers/eventstream.rb:15:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:11:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-07-25T00:49:00.664594 #5] INFO -- : Leaving group `notifications_notifications` +E, [2018-07-25T00:49:00.667918 #5] ERROR -- : Client fetch loop error: undefined method `write' for nil:NilClass +I, [2018-07-25T00:49:00.668193 #5] INFO -- : Joining group `notifications_notifications` +E, [2018-07-25T00:49:00.669394 #5] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-07-25T00:49:00.683080 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-07-25T00:49:00.885208 #5] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- NoMethodError: undefined method `write' for nil:NilClass +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:139:in `write' +/usr/src/app/app/controllers/eventstream.rb:15:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:11:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-07-25T00:49:00.887507 #5] INFO -- : Leaving group `notifications_course_change` +E, [2018-07-25T00:49:00.890798 #5] ERROR -- : Client fetch loop error: undefined method `write' for nil:NilClass +I, [2018-07-25T00:49:00.891075 #5] INFO -- : Joining group `notifications_course_change` +E, [2018-07-25T00:49:00.891993 #5] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-07-25T00:49:00.940266 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:49:01.669792 #5] INFO -- : Joining group `notifications_notifications` +I, [2018-07-25T00:49:01.684295 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:49:01.686438 #5] INFO -- : Joined group `notifications_notifications` with member id `notifications-907823a3-040a-4cbb-8783-258fd73266cb` +I, [2018-07-25T00:49:01.686494 #5] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-07-25T00:49:01.689465 #5] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-07-25T00:49:01.689541 #5] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-07-25T00:49:01.892824 #5] INFO -- : Joining group `notifications_course_change` +I, [2018-07-25T00:49:01.896304 #5] INFO -- : Joined group `notifications_course_change` with member id `notifications-56ed6a74-aa62-452d-8aad-92aa6ac5741b` +I, [2018-07-25T00:49:01.896381 #5] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-07-25T00:49:01.901145 #5] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-07-25T00:49:01.901223 #5] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-07-25T00:49:01.941049 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:49:02.684671 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:49:02.941481 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:49:03.685957 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:49:03.941780 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:49:04.687460 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:49:04.942679 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:49:05.689717 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:49:05.944038 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:49:06.693874 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:49:06.944453 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:49:07.695263 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:49:07.944880 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:49:08.695833 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:49:08.945275 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:49:09.696515 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:49:09.946828 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:49:10.697419 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:49:10.964422 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:49:11.698143 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:49:11.710417 #5] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-07-25T00:49:11.907278 #5] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-07-25T00:49:11.965099 #5] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-07-25T00:49:12.748073 #5] INFO -- : Seeking section_change/0 to offset 0 +E, [2018-07-25T00:49:14.718338 #5] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- NoMethodError: undefined method `write' for nil:NilClass +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:139:in `write' +/usr/src/app/app/controllers/eventstream.rb:15:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:11:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-07-25T00:49:14.718638 #5] INFO -- : Leaving group `notifications_course_change` +E, [2018-07-25T00:49:14.740796 #5] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- NoMethodError: undefined method `write' for nil:NilClass +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:139:in `write' +/usr/src/app/app/controllers/eventstream.rb:15:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:11:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-07-25T00:52:41.990402 #5] INFO -- : New topics added to target list: course_change +I, [2018-07-25T00:52:41.990512 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-07-25T00:52:41.996326 #5] INFO -- : New topics added to target list: section_change +I, [2018-07-25T00:52:41.996399 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-07-25T00:52:41.999227 #5] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.19.0.13:9094 +E, [2018-07-25T00:52:41.999352 #5] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.19.0.13:9094 +E, [2018-07-25T00:52:41.999617 #5] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.19.0.13:9094 +E, [2018-07-25T00:52:41.999701 #5] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.19.0.13:9094 +E, [2018-07-25T00:52:47.001128 #5] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: +- kafka://kafka:9094: Connection refused - connect(2) for 172.19.0.13:9094 +I, [2018-07-25T00:52:47.005071 #5] INFO -- : New topics added to target list: course_change +I, [2018-07-25T00:52:47.005393 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-07-25T00:52:47.007200 #5] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: +- kafka://kafka:9094: Connection refused - connect(2) for 172.19.0.13:9094 +I, [2018-07-25T00:52:47.008480 #5] INFO -- : New topics added to target list: section_change +I, [2018-07-25T00:52:47.008557 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-07-25T00:52:47.018329 #5] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.19.0.13:9094 +E, [2018-07-25T00:52:47.018588 #5] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.19.0.13:9094 +E, [2018-07-25T00:52:47.025497 #5] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.19.0.13:9094 +E, [2018-07-25T00:52:47.025702 #5] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.19.0.13:9094 +E, [2018-07-25T00:52:52.019008 #5] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: +- kafka://kafka:9094: Connection refused - connect(2) for 172.19.0.13:9094 +I, [2018-07-25T00:52:52.020087 #5] INFO -- : New topics added to target list: section_change +I, [2018-07-25T00:52:52.020141 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-07-25T00:52:52.021424 #5] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.19.0.13:9094 +E, [2018-07-25T00:52:52.021516 #5] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.19.0.13:9094 +E, [2018-07-25T00:52:52.026003 #5] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: +- kafka://kafka:9094: Connection refused - connect(2) for 172.19.0.13:9094 +I, [2018-07-25T00:52:52.027107 #5] INFO -- : New topics added to target list: course_change +I, [2018-07-25T00:52:52.027155 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-07-25T00:52:52.028815 #5] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.19.0.13:9094 +E, [2018-07-25T00:52:52.029056 #5] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.19.0.13:9094 +E, [2018-07-25T00:52:57.021912 #5] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: +- kafka://kafka:9094: Connection refused - connect(2) for 172.19.0.13:9094 +I, [2018-07-25T00:52:57.022727 #5] INFO -- : New topics added to target list: section_change +I, [2018-07-25T00:52:57.022778 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-07-25T00:52:57.031453 #5] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: +- kafka://kafka:9094: Connection refused - connect(2) for 172.19.0.13:9094 +I, [2018-07-25T00:52:57.034405 #5] INFO -- : New topics added to target list: course_change +I, [2018-07-25T00:52:57.034461 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-07-25T00:52:57.167420 #5] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-07-25T00:52:57.167601 #5] INFO -- : Joining group `notifications_course_change` +I, [2018-07-25T00:52:57.213371 #5] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-07-25T00:52:57.213526 #5] INFO -- : Joining group `notifications_notifications` +I, [2018-07-25T00:52:57.224761 #5] INFO -- : Will fetch at most 1048576 bytes at a time per partition from section_change +I, [2018-07-25T00:52:57.224928 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-07-25T00:52:57.235045 #5] INFO -- : Will fetch at most 1048576 bytes at a time per partition from course_change +I, [2018-07-25T00:52:57.235179 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-07-25T00:52:57.244817 #5] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-07-25T00:52:57.244964 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:52:57.246789 #5] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-07-25T00:52:57.246974 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:52:58.245401 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:52:58.247434 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:52:59.246028 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:52:59.248088 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:53:00.248386 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:53:00.248535 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:53:01.249423 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:53:01.249969 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:53:02.250997 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:53:02.251237 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:53:02.772052 #5] INFO -- : Joined group `notifications_notifications` with member id `notifications-4c18f0ec-0e3b-4003-ac7c-1a89f99ffc31` +I, [2018-07-25T00:53:02.772121 #5] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-07-25T00:53:02.849134 #5] INFO -- : Joined group `notifications_course_change` with member id `notifications-498d9765-b657-4b86-8380-b2a96002a479` +I, [2018-07-25T00:53:02.849206 #5] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-07-25T00:53:03.251631 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:53:03.251741 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:53:03.772905 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-07-25T00:53:03.780265 #5] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-07-25T00:53:03.850912 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-07-25T00:53:03.864684 #5] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-07-25T00:53:03.905894 #5] INFO -- : Partitions assigned for `section_change`: 0 +I, [2018-07-25T00:53:03.929122 #5] INFO -- : Partitions assigned for `course_change`: 0 +I, [2018-07-25T00:53:04.256649 #5] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-07-25T00:53:04.265514 #5] INFO -- : New topics added to target list: section_change +I, [2018-07-25T00:53:04.265575 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-07-25T00:53:04.265234 #5] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-07-25T00:53:04.350078 #5] INFO -- : New topics added to target list: course_change +I, [2018-07-25T00:53:04.350214 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-07-25T00:53:04.626154 #5] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-07-25T00:53:04.634158 #5] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +E, [2018-07-25T00:53:08.069971 #5] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- NoMethodError: undefined method `write' for nil:NilClass +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:139:in `write' +/usr/src/app/app/controllers/eventstream.rb:16:in `on_message' +/usr/src/app/app/consumers/sections_consumer.rb:11:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-07-25T00:53:08.070108 #5] INFO -- : Leaving group `notifications_notifications` +E, [2018-07-25T00:53:08.070982 #5] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- NoMethodError: undefined method `write' for nil:NilClass +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:139:in `write' +/usr/src/app/app/controllers/eventstream.rb:16:in `on_message' +/usr/src/app/app/consumers/courses_consumer.rb:11:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-07-25T00:53:08.071023 #5] INFO -- : Leaving group `notifications_course_change` +E, [2018-07-25T00:53:08.121407 #5] ERROR -- : Client fetch loop error: undefined method `write' for nil:NilClass +I, [2018-07-25T00:53:08.121660 #5] INFO -- : Joining group `notifications_course_change` +E, [2018-07-25T00:53:08.135408 #5] ERROR -- : Client fetch loop error: undefined method `write' for nil:NilClass +I, [2018-07-25T00:53:08.135662 #5] INFO -- : Joining group `notifications_notifications` +E, [2018-07-25T00:53:08.138179 #5] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-07-25T00:53:08.180018 #5] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-07-25T00:53:08.200619 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:53:08.464108 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:53:09.140755 #5] INFO -- : Joining group `notifications_course_change` +I, [2018-07-25T00:53:09.174273 #5] INFO -- : Joined group `notifications_course_change` with member id `notifications-b6e65dc6-d57c-4297-a4b1-93aab7dae396` +I, [2018-07-25T00:53:09.174343 #5] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-07-25T00:53:09.189834 #5] INFO -- : Joining group `notifications_notifications` +I, [2018-07-25T00:53:09.202804 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:53:09.207711 #5] INFO -- : Joined group `notifications_notifications` with member id `notifications-08f67071-83be-449c-a4d6-6b56da628a09` +I, [2018-07-25T00:53:09.207797 #5] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-07-25T00:53:09.213372 #5] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-07-25T00:53:09.213853 #5] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-07-25T00:53:09.243958 #5] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-07-25T00:53:09.244083 #5] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-07-25T00:53:09.464645 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:53:10.203888 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:53:10.465893 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:53:11.204485 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:53:11.467538 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:53:12.207549 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:53:12.468100 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:53:13.208089 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:53:13.468621 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:53:14.208961 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:53:14.469356 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:53:15.209784 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:53:15.469907 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:53:16.210777 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:53:16.471786 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:53:17.211466 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:53:17.472884 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:53:18.240994 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:53:18.473370 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:53:19.226645 #5] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-07-25T00:53:19.259401 #5] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-07-25T00:53:19.289603 #5] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-07-25T00:53:19.474622 #5] INFO -- : Seeking course_change/0 to offset 0 +E, [2018-07-25T00:53:21.235350 #5] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- NoMethodError: undefined method `write' for nil:NilClass +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:139:in `write' +/usr/src/app/app/controllers/eventstream.rb:16:in `on_message' +/usr/src/app/app/consumers/sections_consumer.rb:11:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-07-25T00:53:21.235459 #5] INFO -- : Leaving group `notifications_notifications` +E, [2018-07-25T00:53:21.241693 #5] ERROR -- : Client fetch loop error: undefined method `write' for nil:NilClass +I, [2018-07-25T00:53:21.241928 #5] INFO -- : Joining group `notifications_notifications` +E, [2018-07-25T00:53:21.246492 #5] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-07-25T00:53:21.300232 #5] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- NoMethodError: undefined method `write' for nil:NilClass +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:139:in `write' +/usr/src/app/app/controllers/eventstream.rb:16:in `on_message' +/usr/src/app/app/consumers/courses_consumer.rb:11:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-07-25T00:53:21.305519 #5] INFO -- : Leaving group `notifications_course_change` +E, [2018-07-25T00:53:21.320113 #5] ERROR -- : Client fetch loop error: undefined method `write' for nil:NilClass +I, [2018-07-25T00:53:21.320554 #5] INFO -- : Joining group `notifications_course_change` +I, [2018-07-25T00:53:21.330644 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-07-25T00:53:21.332748 #5] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-07-25T00:53:21.484495 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:53:22.247113 #5] INFO -- : Joining group `notifications_notifications` +I, [2018-07-25T00:53:22.253753 #5] INFO -- : Joined group `notifications_notifications` with member id `notifications-2cf6d7ef-4c1f-46d1-a9a0-3620cd205408` +I, [2018-07-25T00:53:22.253812 #5] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-07-25T00:53:22.273884 #5] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-07-25T00:53:22.273981 #5] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-07-25T00:53:22.331117 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:53:22.334044 #5] INFO -- : Joining group `notifications_course_change` +I, [2018-07-25T00:53:22.350133 #5] INFO -- : Joined group `notifications_course_change` with member id `notifications-73519842-89d1-42f9-bbc2-2166bea63d6d` +I, [2018-07-25T00:53:22.350188 #5] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-07-25T00:53:22.353861 #5] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-07-25T00:53:22.353942 #5] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-07-25T00:53:22.485113 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:53:23.331702 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:53:23.485958 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:53:24.332338 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:53:24.487023 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:53:25.333215 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:53:25.487900 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:53:26.333673 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:53:26.488315 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:53:27.334450 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:53:27.488953 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:53:28.338584 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:53:28.491339 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:53:29.339027 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:53:29.492282 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:53:30.339434 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:53:30.492623 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:53:31.339885 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:53:31.492948 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:53:32.310544 #5] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-07-25T00:53:32.341145 #5] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-07-25T00:53:32.361799 #5] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-07-25T00:53:32.495371 #5] INFO -- : Seeking course_change/0 to offset 0 +E, [2018-07-25T00:53:34.317435 #5] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- NoMethodError: undefined method `write' for nil:NilClass +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:139:in `write' +/usr/src/app/app/controllers/eventstream.rb:16:in `on_message' +/usr/src/app/app/consumers/sections_consumer.rb:11:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-07-25T00:53:34.317658 #5] INFO -- : Leaving group `notifications_notifications` +E, [2018-07-25T00:53:34.324397 #5] ERROR -- : Client fetch loop error: undefined method `write' for nil:NilClass +I, [2018-07-25T00:53:34.324642 #5] INFO -- : Joining group `notifications_notifications` +I, [2018-07-25T00:53:34.325081 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-07-25T00:53:34.331329 #5] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-07-25T00:53:34.367893 #5] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- NoMethodError: undefined method `write' for nil:NilClass +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:139:in `write' +/usr/src/app/app/controllers/eventstream.rb:16:in `on_message' +/usr/src/app/app/consumers/courses_consumer.rb:11:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-07-25T00:53:34.369976 #5] INFO -- : Leaving group `notifications_course_change` +E, [2018-07-25T00:53:34.388528 #5] ERROR -- : Client fetch loop error: undefined method `write' for nil:NilClass +I, [2018-07-25T00:53:34.389237 #5] INFO -- : Joining group `notifications_course_change` +E, [2018-07-25T00:53:34.390722 #5] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-07-25T00:53:34.443996 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:53:35.325807 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:53:35.331828 #5] INFO -- : Joining group `notifications_notifications` +I, [2018-07-25T00:53:35.349765 #5] INFO -- : Joined group `notifications_notifications` with member id `notifications-316f5237-bfcb-466d-9442-97332597cdda` +I, [2018-07-25T00:53:35.349834 #5] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-07-25T00:53:35.356175 #5] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-07-25T00:53:35.356244 #5] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-07-25T00:53:35.391349 #5] INFO -- : Joining group `notifications_course_change` +I, [2018-07-25T00:53:35.418188 #5] INFO -- : Joined group `notifications_course_change` with member id `notifications-bf8d0a6c-b5f0-4626-a61d-fc0af70ce856` +I, [2018-07-25T00:53:35.418292 #5] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-07-25T00:53:35.421696 #5] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-07-25T00:53:35.421793 #5] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-07-25T00:53:35.444655 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:53:36.326311 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:53:36.445092 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:53:37.326895 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:53:37.446182 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:53:38.327279 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:53:38.446839 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:53:39.328165 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:53:39.447880 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:53:40.329019 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:53:40.448535 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:53:41.329457 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:53:41.449019 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:53:42.331126 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:53:42.450224 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:53:43.331814 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:53:43.450884 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:53:44.332269 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:53:44.451383 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:53:45.332921 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:53:45.369730 #5] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-07-25T00:53:45.433539 #5] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-07-25T00:53:45.451857 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:53:46.333359 #5] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-07-25T00:53:46.452707 #5] INFO -- : Seeking course_change/0 to offset 0 +E, [2018-07-25T00:53:47.374632 #5] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- NoMethodError: undefined method `write' for nil:NilClass +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:139:in `write' +/usr/src/app/app/controllers/eventstream.rb:16:in `on_message' +/usr/src/app/app/consumers/sections_consumer.rb:11:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-07-25T00:53:47.374795 #5] INFO -- : Leaving group `notifications_notifications` +E, [2018-07-25T00:53:47.377337 #5] ERROR -- : Client fetch loop error: undefined method `write' for nil:NilClass +I, [2018-07-25T00:53:47.377664 #5] INFO -- : Joining group `notifications_notifications` +E, [2018-07-25T00:53:47.378723 #5] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-07-25T00:53:47.455789 #5] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- NoMethodError: undefined method `write' for nil:NilClass +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:139:in `write' +/usr/src/app/app/controllers/eventstream.rb:16:in `on_message' +/usr/src/app/app/consumers/courses_consumer.rb:11:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-07-25T00:53:47.457816 #5] INFO -- : Leaving group `notifications_course_change` +E, [2018-07-25T00:53:47.464388 #5] ERROR -- : Client fetch loop error: undefined method `write' for nil:NilClass +I, [2018-07-25T00:53:47.465192 #5] INFO -- : Joining group `notifications_course_change` +E, [2018-07-25T00:53:47.467564 #5] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-07-25T00:53:47.643187 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:53:47.665492 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:53:48.378942 #5] INFO -- : Joining group `notifications_notifications` +I, [2018-07-25T00:53:48.383100 #5] INFO -- : Joined group `notifications_notifications` with member id `notifications-49aba5ae-5ddc-4e2e-b69e-bf570d329af2` +I, [2018-07-25T00:53:48.383152 #5] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-07-25T00:53:48.384944 #5] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-07-25T00:53:48.385007 #5] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-07-25T00:53:48.467828 #5] INFO -- : Joining group `notifications_course_change` +I, [2018-07-25T00:53:48.470656 #5] INFO -- : Joined group `notifications_course_change` with member id `notifications-4ec5d77c-6e7b-4f3a-9e39-3e3bcd88f364` +I, [2018-07-25T00:53:48.470710 #5] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-07-25T00:53:48.473385 #5] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-07-25T00:53:48.473523 #5] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-07-25T00:53:48.643722 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:53:48.666095 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:53:49.644141 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:53:49.666815 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:53:50.645232 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:53:50.667417 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:53:51.645932 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:53:51.667842 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:53:52.646330 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:53:52.668847 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:53:53.646799 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:53:53.669345 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:53:54.648506 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:53:54.669800 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:53:55.653917 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:53:55.718215 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:53:56.654450 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:53:56.759969 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:53:57.654936 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:53:57.760492 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:53:58.399013 #5] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-07-25T00:53:58.481079 #5] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-07-25T00:53:58.656462 #5] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-07-25T00:53:58.760793 #5] INFO -- : Seeking course_change/0 to offset 0 +E, [2018-07-25T00:54:00.404702 #5] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- NoMethodError: undefined method `write' for nil:NilClass +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:139:in `write' +/usr/src/app/app/controllers/eventstream.rb:16:in `on_message' +/usr/src/app/app/consumers/sections_consumer.rb:11:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-07-25T00:54:00.404779 #5] INFO -- : Leaving group `notifications_notifications` +E, [2018-07-25T00:54:00.409339 #5] ERROR -- : Client fetch loop error: undefined method `write' for nil:NilClass +I, [2018-07-25T00:54:00.409553 #5] INFO -- : Joining group `notifications_notifications` +E, [2018-07-25T00:54:00.410476 #5] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-07-25T00:54:00.420869 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-07-25T00:54:00.484591 #5] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- NoMethodError: undefined method `write' for nil:NilClass +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:139:in `write' +/usr/src/app/app/controllers/eventstream.rb:16:in `on_message' +/usr/src/app/app/consumers/courses_consumer.rb:11:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-07-25T00:54:00.486450 #5] INFO -- : Leaving group `notifications_course_change` +E, [2018-07-25T00:54:00.489110 #5] ERROR -- : Client fetch loop error: undefined method `write' for nil:NilClass +I, [2018-07-25T00:54:00.489310 #5] INFO -- : Joining group `notifications_course_change` +E, [2018-07-25T00:54:00.491152 #5] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-07-25T00:54:00.620888 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:54:01.411120 #5] INFO -- : Joining group `notifications_notifications` +I, [2018-07-25T00:54:01.414541 #5] INFO -- : Joined group `notifications_notifications` with member id `notifications-2d16ec38-14d9-4584-a0ba-0ded95338dfe` +I, [2018-07-25T00:54:01.414597 #5] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-07-25T00:54:01.416761 #5] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-07-25T00:54:01.416824 #5] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-07-25T00:54:01.421230 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:54:01.491705 #5] INFO -- : Joining group `notifications_course_change` +I, [2018-07-25T00:54:01.495463 #5] INFO -- : Joined group `notifications_course_change` with member id `notifications-5a04bec5-89eb-46a1-8fc2-4a9eea3a67ba` +I, [2018-07-25T00:54:01.495512 #5] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-07-25T00:54:01.499261 #5] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-07-25T00:54:01.499390 #5] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-07-25T00:54:01.621737 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:54:02.422308 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:54:02.623170 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:54:03.422786 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:54:03.624750 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:54:04.423112 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:54:04.625348 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:54:05.423373 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:54:05.625974 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:54:06.424107 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:54:06.626860 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:54:07.424442 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:54:07.627671 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:54:08.425004 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:54:08.628041 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:54:09.425355 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:54:09.628918 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:54:10.426740 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:54:10.629431 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:54:11.423374 #5] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-07-25T00:54:11.427878 #5] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-07-25T00:54:11.505460 #5] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-07-25T00:54:11.629696 #5] INFO -- : Seeking course_change/0 to offset 0 +E, [2018-07-25T00:54:13.429830 #5] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- NoMethodError: undefined method `write' for nil:NilClass +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:139:in `write' +/usr/src/app/app/controllers/eventstream.rb:16:in `on_message' +/usr/src/app/app/consumers/sections_consumer.rb:11:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-07-25T00:54:13.430140 #5] INFO -- : Leaving group `notifications_notifications` +E, [2018-07-25T00:54:13.434006 #5] ERROR -- : Client fetch loop error: undefined method `write' for nil:NilClass +I, [2018-07-25T00:54:13.434365 #5] INFO -- : Joining group `notifications_notifications` +E, [2018-07-25T00:54:13.514737 #5] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-07-25T00:54:13.517134 #5] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- NoMethodError: undefined method `write' for nil:NilClass +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:139:in `write' +/usr/src/app/app/controllers/eventstream.rb:16:in `on_message' +/usr/src/app/app/consumers/courses_consumer.rb:11:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-07-25T00:54:13.520964 #5] INFO -- : Leaving group `notifications_course_change` +E, [2018-07-25T00:54:13.525628 #5] ERROR -- : Client fetch loop error: undefined method `write' for nil:NilClass +I, [2018-07-25T00:54:13.525992 #5] INFO -- : Joining group `notifications_course_change` +E, [2018-07-25T00:54:13.531239 #5] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-07-25T00:54:13.540229 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:54:13.669034 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:54:14.518897 #5] INFO -- : Joining group `notifications_notifications` +I, [2018-07-25T00:54:14.566686 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:54:14.578224 #5] INFO -- : Joining group `notifications_course_change` +I, [2018-07-25T00:54:14.602771 #5] INFO -- : Joined group `notifications_notifications` with member id `notifications-072f1fee-b62c-4873-b04f-dbe88dae4420` +I, [2018-07-25T00:54:14.603301 #5] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-07-25T00:54:14.612213 #5] INFO -- : Joined group `notifications_course_change` with member id `notifications-afe7569b-13f7-4f51-a5c1-26eff86ae850` +I, [2018-07-25T00:54:14.619870 #5] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-07-25T00:54:14.626921 #5] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-07-25T00:54:14.627724 #5] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-07-25T00:54:14.628376 #5] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-07-25T00:54:14.628440 #5] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-07-25T00:54:14.671688 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:54:15.609413 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:54:15.676280 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:54:16.610070 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:54:16.677336 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:54:17.679065 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:54:18.180846 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:54:18.679486 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:54:19.181324 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:54:19.679853 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:54:20.181642 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:54:20.680742 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:54:21.181971 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:54:21.681124 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:54:22.182727 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:54:22.681576 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:54:23.183272 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:54:23.682005 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:54:24.183818 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:54:24.639269 #5] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-07-25T00:54:24.640313 #5] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-07-25T00:54:24.682495 #5] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-07-25T00:54:25.184332 #5] INFO -- : Seeking section_change/0 to offset 0 +E, [2018-07-25T00:54:26.642525 #5] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- NoMethodError: undefined method `write' for nil:NilClass +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:139:in `write' +/usr/src/app/app/controllers/eventstream.rb:16:in `on_message' +/usr/src/app/app/consumers/sections_consumer.rb:11:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-07-25T00:54:26.642620 #5] INFO -- : Leaving group `notifications_notifications` +E, [2018-07-25T00:54:26.643807 #5] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- NoMethodError: undefined method `write' for nil:NilClass +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:139:in `write' +/usr/src/app/app/controllers/eventstream.rb:16:in `on_message' +/usr/src/app/app/consumers/courses_consumer.rb:11:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-07-25T00:54:26.647852 #5] INFO -- : Leaving group `notifications_course_change` +E, [2018-07-25T00:54:26.651208 #5] ERROR -- : Client fetch loop error: undefined method `write' for nil:NilClass +I, [2018-07-25T00:54:26.651479 #5] INFO -- : Joining group `notifications_notifications` +E, [2018-07-25T00:54:26.651867 #5] ERROR -- : Client fetch loop error: undefined method `write' for nil:NilClass +I, [2018-07-25T00:54:26.652020 #5] INFO -- : Joining group `notifications_course_change` +E, [2018-07-25T00:54:26.654544 #5] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-07-25T00:54:26.655150 #5] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-07-25T00:54:26.731010 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:54:26.779619 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:54:27.657949 #5] INFO -- : Joining group `notifications_course_change` +I, [2018-07-25T00:54:27.658518 #5] INFO -- : Joining group `notifications_notifications` +I, [2018-07-25T00:54:27.664162 #5] INFO -- : Joined group `notifications_course_change` with member id `notifications-b974b715-7d4b-471b-8414-1ff811ae8cdd` +I, [2018-07-25T00:54:27.664401 #5] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-07-25T00:54:27.667922 #5] INFO -- : Joined group `notifications_notifications` with member id `notifications-fbf69a4d-e624-43c9-bc94-0e493ff69bd1` +I, [2018-07-25T00:54:27.667981 #5] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-07-25T00:54:27.678032 #5] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-07-25T00:54:27.678148 #5] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-07-25T00:54:27.679016 #5] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-07-25T00:54:27.679086 #5] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-07-25T00:54:27.731693 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:54:27.780162 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:54:28.732145 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:54:28.780821 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:54:29.745508 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:54:29.787065 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:54:30.746097 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:54:30.787504 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:54:31.746806 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:54:31.788111 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:54:32.747367 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:54:32.788398 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:54:33.748028 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:54:33.789362 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:54:34.748437 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:54:34.789998 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:54:35.749229 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:54:35.790469 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:54:36.749690 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:54:36.791266 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:54:37.707103 #5] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-07-25T00:54:37.750054 #5] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-07-25T00:54:37.751393 #5] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-07-25T00:54:37.792148 #5] INFO -- : Seeking section_change/0 to offset 0 +E, [2018-07-25T00:54:39.712346 #5] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- NoMethodError: undefined method `write' for nil:NilClass +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:139:in `write' +/usr/src/app/app/controllers/eventstream.rb:16:in `on_message' +/usr/src/app/app/consumers/courses_consumer.rb:11:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-07-25T00:54:39.712448 #5] INFO -- : Leaving group `notifications_course_change` +E, [2018-07-25T00:54:39.715411 #5] ERROR -- : Client fetch loop error: undefined method `write' for nil:NilClass +I, [2018-07-25T00:54:39.715648 #5] INFO -- : Joining group `notifications_course_change` +E, [2018-07-25T00:54:39.718258 #5] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-07-25T00:54:39.734550 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-07-25T00:54:39.754108 #5] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- NoMethodError: undefined method `write' for nil:NilClass +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:139:in `write' +/usr/src/app/app/controllers/eventstream.rb:16:in `on_message' +/usr/src/app/app/consumers/sections_consumer.rb:11:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-07-25T00:54:39.754166 #5] INFO -- : Leaving group `notifications_notifications` +E, [2018-07-25T00:54:39.758352 #5] ERROR -- : Client fetch loop error: undefined method `write' for nil:NilClass +I, [2018-07-25T00:54:39.758533 #5] INFO -- : Joining group `notifications_notifications` +E, [2018-07-25T00:54:39.759292 #5] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-07-25T00:54:39.898221 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:54:40.719426 #5] INFO -- : Joining group `notifications_course_change` +I, [2018-07-25T00:54:40.722854 #5] INFO -- : Joined group `notifications_course_change` with member id `notifications-c9c929f1-02d3-403b-a2ba-b83513f08e4f` +I, [2018-07-25T00:54:40.722901 #5] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-07-25T00:54:40.724968 #5] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-07-25T00:54:40.725042 #5] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-07-25T00:54:40.735218 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:54:40.759679 #5] INFO -- : Joining group `notifications_notifications` +I, [2018-07-25T00:54:40.764258 #5] INFO -- : Joined group `notifications_notifications` with member id `notifications-f0b62bea-ad8d-4969-8b63-96605944855c` +I, [2018-07-25T00:54:40.764315 #5] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-07-25T00:54:40.767207 #5] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-07-25T00:54:40.767289 #5] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-07-25T00:54:40.898566 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:54:41.735806 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:54:41.899086 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:54:42.737332 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:54:42.899514 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:54:43.738271 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:54:43.899898 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:54:44.738651 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:54:44.900481 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:54:45.739180 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:54:45.900956 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:54:46.739650 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:54:46.901265 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:54:47.740327 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:54:47.901712 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:54:48.740997 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:54:48.902225 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:54:49.741668 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:54:49.902711 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:54:50.740083 #5] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-07-25T00:54:50.742454 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:54:50.777307 #5] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-07-25T00:54:50.903804 #5] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-07-25T00:54:51.743834 #5] INFO -- : Seeking course_change/0 to offset 0 +E, [2018-07-25T00:54:52.750787 #5] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- NoMethodError: undefined method `write' for nil:NilClass +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:139:in `write' +/usr/src/app/app/controllers/eventstream.rb:16:in `on_message' +/usr/src/app/app/consumers/courses_consumer.rb:11:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-07-25T00:54:52.752806 #5] INFO -- : Leaving group `notifications_course_change` +E, [2018-07-25T00:54:52.784053 #5] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- NoMethodError: undefined method `write' for nil:NilClass +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:139:in `write' +/usr/src/app/app/controllers/eventstream.rb:16:in `on_message' +/usr/src/app/app/consumers/sections_consumer.rb:11:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-07-25T00:54:52.784140 #5] INFO -- : Leaving group `notifications_notifications` +E, [2018-07-25T00:54:52.808406 #5] ERROR -- : Client fetch loop error: undefined method `write' for nil:NilClass +I, [2018-07-25T00:54:52.808701 #5] INFO -- : Joining group `notifications_course_change` +I, [2018-07-25T00:54:52.809646 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-07-25T00:54:52.809877 #5] ERROR -- : Client fetch loop error: undefined method `write' for nil:NilClass +I, [2018-07-25T00:54:52.810465 #5] INFO -- : Joining group `notifications_notifications` +E, [2018-07-25T00:54:52.816871 #5] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-07-25T00:54:52.817621 #5] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-07-25T00:54:52.823746 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:54:53.810682 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:54:53.817202 #5] INFO -- : Joining group `notifications_course_change` +I, [2018-07-25T00:54:53.817918 #5] INFO -- : Joining group `notifications_notifications` +I, [2018-07-25T00:54:53.826579 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:54:53.831608 #5] INFO -- : Joined group `notifications_course_change` with member id `notifications-869b1da5-eb14-49a8-9066-5fe8a6ab55a8` +I, [2018-07-25T00:54:53.831677 #5] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-07-25T00:54:53.848165 #5] INFO -- : Joined group `notifications_notifications` with member id `notifications-700a3f51-be09-4a90-9020-cceb8b071202` +I, [2018-07-25T00:54:53.848239 #5] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-07-25T00:54:53.850570 #5] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-07-25T00:54:53.850640 #5] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-07-25T00:54:53.889951 #5] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-07-25T00:54:53.890043 #5] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-07-25T00:54:54.811028 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:54:54.828073 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:54:55.811588 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:54:55.829664 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:54:56.812269 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:54:56.830201 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:54:57.812558 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:54:57.830543 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:54:58.813627 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:54:58.830838 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:54:59.814132 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:54:59.831413 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:55:00.815877 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:55:00.831905 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:55:01.816449 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:55:01.832527 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:55:02.817757 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:55:02.833275 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:55:03.821102 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:55:03.834322 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:55:03.929400 #5] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-07-25T00:55:03.929937 #5] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-07-25T00:55:04.821399 #5] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-07-25T00:55:04.837508 #5] INFO -- : Seeking section_change/0 to offset 0 +E, [2018-07-25T00:55:05.933544 #5] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- NoMethodError: undefined method `write' for nil:NilClass +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:139:in `write' +/usr/src/app/app/controllers/eventstream.rb:16:in `on_message' +/usr/src/app/app/consumers/courses_consumer.rb:11:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-07-25T00:55:05.934719 #5] INFO -- : Leaving group `notifications_course_change` +E, [2018-07-25T00:55:05.934644 #5] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- NoMethodError: undefined method `write' for nil:NilClass +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:139:in `write' +/usr/src/app/app/controllers/eventstream.rb:16:in `on_message' +/usr/src/app/app/consumers/sections_consumer.rb:11:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-07-25T00:55:05.934956 #5] INFO -- : Leaving group `notifications_notifications` +E, [2018-07-25T00:55:05.939233 #5] ERROR -- : Client fetch loop error: undefined method `write' for nil:NilClass +I, [2018-07-25T00:55:05.939935 #5] INFO -- : Joining group `notifications_course_change` +E, [2018-07-25T00:55:05.946113 #5] ERROR -- : Client fetch loop error: undefined method `write' for nil:NilClass +I, [2018-07-25T00:55:05.946681 #5] INFO -- : Joining group `notifications_notifications` +E, [2018-07-25T00:55:05.947762 #5] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-07-25T00:55:05.947891 #5] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-07-25T00:55:06.380232 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:55:06.415807 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:55:06.948118 #5] INFO -- : Joining group `notifications_course_change` +I, [2018-07-25T00:55:06.948883 #5] INFO -- : Joining group `notifications_notifications` +I, [2018-07-25T00:55:06.978437 #5] INFO -- : Joined group `notifications_course_change` with member id `notifications-473e5ade-3a85-4abe-b921-5a42dcf847e1` +I, [2018-07-25T00:55:06.978510 #5] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-07-25T00:55:06.982514 #5] INFO -- : Joined group `notifications_notifications` with member id `notifications-a4e44c76-9879-4de7-b078-b35a46103d03` +I, [2018-07-25T00:55:06.982558 #5] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-07-25T00:55:06.985344 #5] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-07-25T00:55:06.985410 #5] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-07-25T00:55:06.985821 #5] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-07-25T00:55:06.985877 #5] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-07-25T00:55:07.380654 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:55:07.416211 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:55:08.381185 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:55:08.416560 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:55:09.382021 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:55:09.417339 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:55:10.382815 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:55:10.418280 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:55:11.383160 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:55:11.419555 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:55:12.383564 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:55:12.420043 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:55:13.384329 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:55:13.420601 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:55:14.384936 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:55:14.421199 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:55:15.386497 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:55:15.421886 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:55:16.387109 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:55:16.422177 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:55:17.028890 #5] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-07-25T00:55:17.029536 #5] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-07-25T00:55:17.387653 #5] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-07-25T00:55:17.423132 #5] INFO -- : Seeking course_change/0 to offset 0 +E, [2018-07-25T00:55:19.036789 #5] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- NoMethodError: undefined method `write' for nil:NilClass +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:139:in `write' +/usr/src/app/app/controllers/eventstream.rb:16:in `on_message' +/usr/src/app/app/consumers/sections_consumer.rb:11:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-07-25T00:56:47.487331 #5] INFO -- : New topics added to target list: section_change +I, [2018-07-25T00:56:47.487409 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-07-25T00:56:47.490131 #5] INFO -- : New topics added to target list: course_change +I, [2018-07-25T00:56:47.490203 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-07-25T00:56:47.490683 #5] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.19.0.13:9094 +E, [2018-07-25T00:56:47.490790 #5] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.19.0.13:9094 +E, [2018-07-25T00:56:47.491656 #5] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.19.0.13:9094 +E, [2018-07-25T00:56:47.491756 #5] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.19.0.13:9094 +E, [2018-07-25T00:56:52.491559 #5] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: +- kafka://kafka:9094: Connection refused - connect(2) for 172.19.0.13:9094 +I, [2018-07-25T00:56:52.492331 #5] INFO -- : New topics added to target list: section_change +I, [2018-07-25T00:56:52.492373 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-07-25T00:56:52.493220 #5] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.19.0.13:9094 +E, [2018-07-25T00:56:52.493310 #5] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.19.0.13:9094 +E, [2018-07-25T00:56:52.493394 #5] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: +- kafka://kafka:9094: Connection refused - connect(2) for 172.19.0.13:9094 +I, [2018-07-25T00:56:52.493948 #5] INFO -- : New topics added to target list: course_change +I, [2018-07-25T00:56:52.493989 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-07-25T00:56:52.495501 #5] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.19.0.13:9094 +E, [2018-07-25T00:56:52.495671 #5] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.19.0.13:9094 +E, [2018-07-25T00:56:57.493656 #5] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: +- kafka://kafka:9094: Connection refused - connect(2) for 172.19.0.13:9094 +I, [2018-07-25T00:56:57.495770 #5] INFO -- : New topics added to target list: section_change +I, [2018-07-25T00:56:57.495825 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-07-25T00:56:57.496488 #5] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: +- kafka://kafka:9094: Connection refused - connect(2) for 172.19.0.13:9094 +I, [2018-07-25T00:56:57.497978 #5] INFO -- : New topics added to target list: course_change +I, [2018-07-25T00:56:57.498021 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-07-25T00:56:57.499515 #5] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.19.0.13:9094 +E, [2018-07-25T00:56:57.499760 #5] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.19.0.13:9094 +E, [2018-07-25T00:56:57.500231 #5] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.19.0.13:9094 +E, [2018-07-25T00:56:57.500342 #5] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.19.0.13:9094 +E, [2018-07-25T00:57:02.501740 #5] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: +- kafka://kafka:9094: Connection refused - connect(2) for 172.19.0.13:9094 +I, [2018-07-25T00:57:02.505080 #5] INFO -- : New topics added to target list: course_change +I, [2018-07-25T00:57:02.505222 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-07-25T00:57:02.506217 #5] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: +- kafka://kafka:9094: Connection refused - connect(2) for 172.19.0.13:9094 +I, [2018-07-25T00:57:02.519060 #5] INFO -- : New topics added to target list: section_change +I, [2018-07-25T00:57:02.521798 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-07-25T00:57:02.910984 #5] ERROR -- : No brokers in cluster +I, [2018-07-25T00:57:02.952528 #5] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-07-25T00:57:02.952742 #5] INFO -- : Joining group `notifications_notifications` +I, [2018-07-25T00:57:03.023700 #5] INFO -- : Will fetch at most 1048576 bytes at a time per partition from section_change +I, [2018-07-25T00:57:03.023845 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-07-25T00:57:03.150373 #5] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-07-25T00:57:03.150488 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:57:04.151383 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:57:05.154153 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:57:06.156166 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:57:07.156499 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-07-25T00:57:07.911491 #5] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: + +I, [2018-07-25T00:57:07.912189 #5] INFO -- : New topics added to target list: course_change +I, [2018-07-25T00:57:07.912227 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-07-25T00:57:07.920801 #5] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-07-25T00:57:07.921025 #5] INFO -- : Joining group `notifications_course_change` +I, [2018-07-25T00:57:08.003173 #5] INFO -- : Joined group `notifications_notifications` with member id `notifications-e483e343-5436-4c9f-9646-f7cd8dac9397` +I, [2018-07-25T00:57:08.003232 #5] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-07-25T00:57:08.008212 #5] INFO -- : Joined group `notifications_course_change` with member id `notifications-134fab51-c17b-43ce-a111-c05b885459c0` +I, [2018-07-25T00:57:08.008330 #5] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-07-25T00:57:08.012909 #5] INFO -- : Will fetch at most 1048576 bytes at a time per partition from course_change +I, [2018-07-25T00:57:08.013067 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-07-25T00:57:08.032314 #5] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-07-25T00:57:08.032494 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:57:08.156942 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T00:57:08.360294 #5] INFO -- : Partitions assigned for `course_change`: 0 +I, [2018-07-25T00:57:09.004368 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-07-25T00:57:09.008439 #5] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-07-25T00:57:09.032907 #5] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-07-25T00:57:09.033057 #5] INFO -- : New topics added to target list: course_change +I, [2018-07-25T00:57:09.033150 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-07-25T00:57:09.047584 #5] INFO -- : Partitions assigned for `section_change`: 0 +I, [2018-07-25T00:57:09.129892 #5] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-07-25T00:57:09.157286 #5] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-07-25T00:57:09.157450 #5] INFO -- : New topics added to target list: section_change +I, [2018-07-25T00:57:09.157556 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-07-25T00:57:09.269189 #5] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-07-25T00:57:12.464936 #5] INFO -- : Inline processing of topic course_change with 1 messages took 5.0 ms +I, [2018-07-25T00:57:12.466604 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:57:12.466700 #5] INFO -- : Committing offsets with recommit: course_change/0:1 +I, [2018-07-25T00:57:12.512032 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-07-25T00:57:12.512103 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:57:12.512324 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-07-25T00:57:12.512383 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:57:13.106612 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T00:57:13.106688 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:13.106738 #5] INFO -- : Committing offsets with recommit: section_change/0:1 +I, [2018-07-25T00:57:13.121257 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T00:57:13.121317 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:13.121570 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T00:57:13.121603 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:13.121775 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-25T00:57:13.121805 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:13.121990 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-25T00:57:13.122020 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:13.122205 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T00:57:13.122235 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:13.122392 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-25T00:57:13.122422 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:13.122594 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-25T00:57:13.122623 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:13.122807 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-25T00:57:13.122836 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:13.122993 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-25T00:57:13.123022 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:13.123197 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-25T00:57:13.123227 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:13.123413 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T00:57:13.123442 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:13.123598 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-25T00:57:13.123626 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:13.123831 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-25T00:57:13.123860 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:13.124018 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-25T00:57:13.124047 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:13.124221 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-25T00:57:13.124251 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:13.124429 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T00:57:13.124457 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:13.124611 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-25T00:57:13.124665 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:13.124818 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-25T00:57:13.124847 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:13.125021 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-25T00:57:13.125051 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:13.125370 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T00:57:13.125419 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:13.125670 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T00:57:13.125710 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:13.125963 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T00:57:13.126002 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:13.126207 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-25T00:57:13.126245 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:13.137991 #5] INFO -- : Inline processing of topic section_change with 1 messages took 11.55 ms +I, [2018-07-25T00:57:13.138095 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:13.138442 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T00:57:13.138490 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:13.138805 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T00:57:13.138853 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:13.146275 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T00:57:13.146319 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:13.146525 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T00:57:13.146557 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:13.146749 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T00:57:13.146779 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:13.146939 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-25T00:57:13.146968 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:13.147154 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T00:57:13.147183 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:13.147343 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-25T00:57:13.147372 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:13.149702 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T00:57:13.149765 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:14.513078 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-07-25T00:57:14.513156 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:57:14.513382 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-07-25T00:57:14.513414 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:57:14.513588 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.07 ms +I, [2018-07-25T00:57:14.513617 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:57:14.513796 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.06 ms +I, [2018-07-25T00:57:14.513826 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:57:14.514030 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.05 ms +I, [2018-07-25T00:57:14.514074 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:57:14.514273 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.07 ms +I, [2018-07-25T00:57:14.514304 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:57:14.514479 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.07 ms +I, [2018-07-25T00:57:14.514508 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:57:14.514678 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.05 ms +I, [2018-07-25T00:57:14.514707 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:57:14.514902 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.07 ms +I, [2018-07-25T00:57:14.514932 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:57:14.515124 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-07-25T00:57:14.515153 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:57:14.515324 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.07 ms +I, [2018-07-25T00:57:14.515353 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:57:14.515527 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.05 ms +I, [2018-07-25T00:57:14.515572 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:57:14.515748 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.07 ms +I, [2018-07-25T00:57:14.515789 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:57:14.515964 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.07 ms +I, [2018-07-25T00:57:14.516003 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:57:14.516178 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.06 ms +I, [2018-07-25T00:57:14.516208 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:57:15.150431 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T00:57:15.150490 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:15.150697 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T00:57:15.150723 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:15.150903 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-25T00:57:15.150934 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:15.151107 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-25T00:57:15.151137 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:15.153226 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T00:57:15.153298 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:15.153601 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T00:57:15.153653 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:15.153951 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T00:57:15.154002 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:15.154265 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T00:57:15.154312 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:15.154624 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T00:57:15.154674 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:15.154920 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T00:57:15.154968 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:15.155265 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T00:57:15.155317 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:15.155567 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T00:57:15.155617 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:15.155917 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T00:57:15.155961 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:15.156218 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T00:57:15.156262 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:15.156560 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T00:57:15.156599 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:15.158279 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.14 ms +I, [2018-07-25T00:57:15.170047 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:15.170937 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T00:57:15.171001 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:15.171278 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T00:57:15.171378 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:15.171637 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T00:57:15.171686 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:15.171984 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T00:57:15.172035 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:15.172297 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T00:57:15.176291 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:15.177021 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T00:57:15.177090 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:15.177698 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T00:57:15.177759 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:15.178069 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T00:57:15.178112 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:16.516972 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-07-25T00:57:16.517077 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:57:16.517331 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-07-25T00:57:16.517411 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:57:16.518202 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.55 ms +I, [2018-07-25T00:57:16.518266 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:57:16.518576 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-07-25T00:57:16.518617 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:57:16.519249 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T00:57:16.519305 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:57:16.520720 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-07-25T00:57:16.520783 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:57:16.521051 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-07-25T00:57:16.521154 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:57:16.537009 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-07-25T00:57:16.537232 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:57:16.538623 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.32 ms +I, [2018-07-25T00:57:16.538934 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:57:16.553251 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-07-25T00:57:16.553322 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:57:16.553611 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-07-25T00:57:16.553689 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:57:16.553947 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-07-25T00:57:16.553996 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:57:17.182469 #5] INFO -- : Inline processing of topic section_change with 1 messages took 2.33 ms +I, [2018-07-25T00:57:17.182617 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:17.193995 #5] INFO -- : Inline processing of topic section_change with 1 messages took 2.31 ms +I, [2018-07-25T00:57:17.194269 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:17.203762 #5] INFO -- : Inline processing of topic section_change with 1 messages took 6.41 ms +I, [2018-07-25T00:57:17.203823 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:17.204074 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T00:57:17.204106 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:17.204294 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T00:57:17.204324 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:17.204484 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-25T00:57:17.204513 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:17.204700 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-25T00:57:17.204729 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:17.204904 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-25T00:57:17.204933 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:17.210172 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T00:57:17.210245 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:17.210525 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T00:57:17.210617 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:17.210853 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T00:57:17.210897 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:17.211145 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T00:57:17.211187 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:17.211438 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T00:57:17.211481 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:17.211735 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T00:57:17.211777 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:17.211998 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T00:57:17.212040 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:17.257226 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.99 ms +I, [2018-07-25T00:57:17.257342 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:17.257782 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T00:57:17.257834 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:17.258129 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T00:57:17.258175 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:17.258596 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T00:57:17.258675 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:18.557845 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-07-25T00:57:18.557903 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:57:18.558100 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.06 ms +I, [2018-07-25T00:57:18.558132 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:57:18.558824 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-07-25T00:57:18.558868 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:57:18.559045 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.06 ms +I, [2018-07-25T00:57:18.559106 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:57:18.559270 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.06 ms +I, [2018-07-25T00:57:18.559301 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:57:18.559543 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-07-25T00:57:18.559574 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:57:18.559734 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.05 ms +I, [2018-07-25T00:57:18.559764 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:57:18.563023 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.31 ms +I, [2018-07-25T00:57:18.563099 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:57:18.563417 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-07-25T00:57:18.563469 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:57:18.563988 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.33 ms +I, [2018-07-25T00:57:18.564051 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:57:18.564350 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-07-25T00:57:18.564438 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:57:18.564795 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-07-25T00:57:18.564843 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:57:18.565434 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.23 ms +I, [2018-07-25T00:57:18.565490 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:57:18.565778 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-07-25T00:57:18.565833 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:57:18.566147 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-07-25T00:57:18.566198 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:57:19.259941 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T00:57:19.260000 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:19.260222 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T00:57:19.260254 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:19.260440 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-25T00:57:19.260470 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:19.260637 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-25T00:57:19.260686 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:19.260842 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-25T00:57:19.260891 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:19.261056 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-25T00:57:19.261082 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:19.261260 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-25T00:57:19.261309 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:19.261470 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-25T00:57:19.261515 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:19.261715 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-25T00:57:19.261746 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:19.261922 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-25T00:57:19.261952 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:19.262128 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-25T00:57:19.262158 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:19.262333 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-25T00:57:19.262386 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:19.262545 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-25T00:57:19.262585 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:19.262762 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T00:57:19.262791 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:19.262979 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T00:57:19.263010 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:19.263214 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-25T00:57:19.263244 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:19.263437 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-25T00:57:19.263466 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:19.263666 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T00:57:19.263696 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:19.263860 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-25T00:57:19.263883 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:19.264047 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-25T00:57:19.264090 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:19.264266 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-25T00:57:19.264296 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:19.267305 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.45 ms +I, [2018-07-25T00:57:19.267378 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:19.268308 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.52 ms +I, [2018-07-25T00:57:19.268373 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:20.567642 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-07-25T00:57:20.568351 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:57:20.568619 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-07-25T00:57:20.568652 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:57:20.568989 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-07-25T00:57:20.569032 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:57:20.569228 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.06 ms +I, [2018-07-25T00:57:20.569256 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:57:20.569507 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.06 ms +I, [2018-07-25T00:57:20.569539 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:57:20.569702 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.05 ms +I, [2018-07-25T00:57:20.569731 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:57:20.569926 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.05 ms +I, [2018-07-25T00:57:20.569955 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:57:20.570110 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.05 ms +I, [2018-07-25T00:57:20.570140 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:57:20.570317 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.05 ms +I, [2018-07-25T00:57:20.570346 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:57:20.570528 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.05 ms +I, [2018-07-25T00:57:20.570556 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:57:20.571154 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.05 ms +I, [2018-07-25T00:57:20.571213 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:57:20.571836 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.36 ms +I, [2018-07-25T00:57:20.571894 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:57:20.572118 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.06 ms +I, [2018-07-25T00:57:20.572149 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:57:20.572312 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.06 ms +I, [2018-07-25T00:57:20.572342 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:57:20.572522 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.05 ms +I, [2018-07-25T00:57:20.572550 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:57:20.572733 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-07-25T00:57:20.572762 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:57:20.572917 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.05 ms +I, [2018-07-25T00:57:20.572975 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:57:20.573318 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T00:57:20.573354 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:57:20.573874 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.41 ms +I, [2018-07-25T00:57:20.573913 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:57:20.574365 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-07-25T00:57:20.574446 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:57:21.270620 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T00:57:21.270757 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:21.271043 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T00:57:21.271088 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:21.271384 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T00:57:21.271434 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:21.271686 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T00:57:21.271732 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:21.272026 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T00:57:21.272074 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:21.272319 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T00:57:21.272366 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:21.272647 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T00:57:21.272696 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:21.273707 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T00:57:21.273802 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:21.274126 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T00:57:21.274171 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:21.274451 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T00:57:21.274494 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:21.274829 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T00:57:21.274872 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:21.275087 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T00:57:21.275116 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:21.275323 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-25T00:57:21.275359 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:21.275573 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-25T00:57:21.275604 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:21.275783 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-25T00:57:21.275813 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:21.276570 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T00:57:21.276633 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:21.276942 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T00:57:21.276995 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:21.284817 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T00:57:21.284891 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:21.285137 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T00:57:21.285216 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:22.574849 #5] INFO -- : Committing offsets: course_change/0:65 +I, [2018-07-25T00:57:22.583482 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T00:57:22.583535 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:57:22.583718 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.06 ms +I, [2018-07-25T00:57:22.583750 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:57:22.583939 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-07-25T00:57:22.583970 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:57:22.584131 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.06 ms +I, [2018-07-25T00:57:22.584161 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:57:22.584347 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.05 ms +I, [2018-07-25T00:57:22.584377 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:57:22.584588 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-07-25T00:57:22.584621 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:57:22.584782 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.05 ms +I, [2018-07-25T00:57:22.584812 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:57:22.585022 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.06 ms +I, [2018-07-25T00:57:22.585055 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:57:22.585232 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.05 ms +I, [2018-07-25T00:57:22.585262 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:57:22.585417 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.05 ms +I, [2018-07-25T00:57:22.585447 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:57:22.585681 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-07-25T00:57:22.585740 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:57:22.585968 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.06 ms +I, [2018-07-25T00:57:22.586000 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:57:22.586192 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-07-25T00:57:22.586263 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:57:22.586427 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.06 ms +I, [2018-07-25T00:57:22.586698 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:57:23.285577 #5] INFO -- : Committing offsets: section_change/0:119 +I, [2018-07-25T00:57:23.298803 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T00:57:23.298853 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:23.299168 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T00:57:23.299203 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:23.299675 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T00:57:23.301171 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:23.301618 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T00:57:23.301681 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:23.301974 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T00:57:23.302028 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:23.302325 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T00:57:23.302377 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:23.302670 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T00:57:23.302723 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:23.303052 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T00:57:23.303105 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:23.303414 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T00:57:23.303463 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:23.303768 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T00:57:23.303821 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:23.304311 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T00:57:23.304381 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:23.304689 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T00:57:23.304737 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:23.305306 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-07-25T00:57:23.305369 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:23.305690 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T00:57:23.305758 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:23.306068 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T00:57:23.306186 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:23.306466 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T00:57:23.306543 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:23.306807 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T00:57:23.306857 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:23.307147 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T00:57:23.307196 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:23.307503 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T00:57:23.307557 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:23.307845 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T00:57:23.307922 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:23.312609 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T00:57:23.312714 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:23.313475 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T00:57:23.313541 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:23.313915 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T00:57:23.313968 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:23.314323 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T00:57:23.314376 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:23.318721 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T00:57:23.318832 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:23.319096 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T00:57:23.319136 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:23.319491 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T00:57:23.319525 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:23.319777 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T00:57:23.319816 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:24.587577 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-07-25T00:57:24.587662 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:57:24.587973 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T00:57:24.588023 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:57:24.588289 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-07-25T00:57:24.588353 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:57:24.588885 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-07-25T00:57:24.588931 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:57:24.589188 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-07-25T00:57:24.589229 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:57:24.589460 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-07-25T00:57:24.589509 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:57:24.589754 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-07-25T00:57:24.589795 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:57:24.590015 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-07-25T00:57:24.590066 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:57:24.590500 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-07-25T00:57:24.590589 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:57:24.591061 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T00:57:24.591189 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:57:24.591659 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T00:57:24.591715 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:57:24.592031 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T00:57:24.592085 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:57:24.592389 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T00:57:24.592450 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:57:24.598598 #5] INFO -- : Inline processing of topic course_change with 1 messages took 5.94 ms +I, [2018-07-25T00:57:24.598667 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:57:25.320673 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-07-25T00:57:25.320755 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:25.321212 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-25T00:57:25.321317 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:25.321666 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T00:57:25.321720 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:25.322086 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T00:57:25.322137 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:25.322405 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T00:57:25.322438 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:25.322657 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T00:57:25.322690 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:25.322892 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-25T00:57:25.322922 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:25.323162 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T00:57:25.323201 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:25.323578 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-25T00:57:25.324099 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:25.332937 #5] INFO -- : Inline processing of topic section_change with 1 messages took 5.8 ms +I, [2018-07-25T00:57:25.332995 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:25.333296 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T00:57:25.333345 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:25.333577 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T00:57:25.333609 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:25.333852 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T00:57:25.333900 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:25.334077 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-25T00:57:25.334107 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:25.334430 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T00:57:25.339383 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:25.343483 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T00:57:25.343553 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:25.345488 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.85 ms +I, [2018-07-25T00:57:25.346003 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:25.347636 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-07-25T00:57:25.347688 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:25.361813 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T00:57:25.361888 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:25.362127 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T00:57:25.362167 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:25.362434 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T00:57:25.362475 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:26.605917 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.24 ms +I, [2018-07-25T00:57:26.606133 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:57:26.606681 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-07-25T00:57:26.606744 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:57:26.607211 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.27 ms +I, [2018-07-25T00:57:26.607270 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:57:26.607614 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-07-25T00:57:26.607950 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:57:26.612078 #5] INFO -- : Inline processing of topic course_change with 1 messages took 3.91 ms +I, [2018-07-25T00:57:26.612497 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:57:26.613630 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.31 ms +I, [2018-07-25T00:57:26.613696 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:57:26.615452 #5] INFO -- : Inline processing of topic course_change with 1 messages took 1.54 ms +I, [2018-07-25T00:57:26.615564 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:57:27.409804 #5] INFO -- : Inline processing of topic section_change with 1 messages took 18.63 ms +I, [2018-07-25T00:57:27.523141 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:27.523930 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-07-25T00:57:27.523990 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:27.524521 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T00:57:27.524568 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:27.524808 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T00:57:27.524908 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:27.525403 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T00:57:27.559689 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:27.560343 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T00:57:27.560426 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:27.562039 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.53 ms +I, [2018-07-25T00:57:27.562211 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:27.562638 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T00:57:27.562692 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:27.563125 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T00:57:27.563203 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:27.563646 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T00:57:27.563991 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:27.577410 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T00:57:27.577515 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:27.577957 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-25T00:57:27.578021 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:28.624704 #5] INFO -- : Inline processing of topic course_change with 1 messages took 1.17 ms +I, [2018-07-25T00:57:28.624870 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:57:28.625264 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T00:57:28.625313 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:57:28.625589 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-07-25T00:57:28.625681 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:57:28.625953 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-07-25T00:57:28.626003 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:57:28.628238 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-07-25T00:57:28.628310 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:57:28.628613 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-07-25T00:57:28.628666 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:57:28.629058 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-07-25T00:57:28.629114 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:57:28.632555 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-07-25T00:57:28.632627 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:57:28.632932 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T00:57:28.632990 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:57:28.633320 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-07-25T00:57:28.633370 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:57:28.633676 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-07-25T00:57:28.633727 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:57:28.637206 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.7 ms +I, [2018-07-25T00:57:28.637342 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:57:28.637703 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-07-25T00:57:28.637760 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:57:28.651204 #5] INFO -- : Inline processing of topic course_change with 1 messages took 12.72 ms +I, [2018-07-25T00:57:28.651356 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:57:28.651738 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T00:57:28.692383 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:57:29.578892 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T00:57:29.579022 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:29.579225 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-25T00:57:29.579258 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:29.579503 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T00:57:29.579534 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:29.579714 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-25T00:57:29.579745 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:29.580052 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T00:57:29.580085 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:29.580254 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-25T00:57:29.580284 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:29.580522 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T00:57:29.580553 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:30.693813 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-07-25T00:57:30.693898 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:57:30.694252 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T00:57:30.694370 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:57:30.694670 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-07-25T00:57:30.694722 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:57:30.695020 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-07-25T00:57:30.695150 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:57:30.695413 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T00:57:30.695478 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:57:30.695705 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-07-25T00:57:30.695817 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:57:30.696117 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-07-25T00:57:30.696160 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:57:30.696538 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-07-25T00:57:30.696584 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:57:30.696935 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-07-25T00:57:30.696979 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:57:31.581314 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T00:57:31.581427 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:31.581730 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T00:57:31.581772 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:31.582026 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T00:57:31.582106 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:31.582322 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-25T00:57:31.582362 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:31.582649 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T00:57:31.582689 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:31.583321 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-07-25T00:57:31.583416 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:31.583726 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T00:57:31.583776 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:31.584046 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T00:57:31.584122 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:31.584414 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T00:57:31.584462 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:31.584757 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T00:57:31.584844 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:31.585133 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T00:57:31.585182 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:32.697333 #5] INFO -- : Committing offsets: course_change/0:124 +I, [2018-07-25T00:57:32.700583 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-07-25T00:57:32.700643 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:57:32.700932 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-07-25T00:57:32.700976 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:57:32.701228 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.07 ms +I, [2018-07-25T00:57:32.701264 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:57:32.701488 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-07-25T00:57:32.701526 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:57:32.701769 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.07 ms +I, [2018-07-25T00:57:32.701803 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:57:32.703397 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-07-25T00:57:32.703471 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:57:32.703757 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-07-25T00:57:32.703803 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:57:32.704071 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-07-25T00:57:32.704115 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:57:32.704425 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.06 ms +I, [2018-07-25T00:57:32.704458 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:57:32.704743 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-07-25T00:57:32.704788 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:57:32.705011 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.07 ms +I, [2018-07-25T00:57:32.705047 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:57:32.705286 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T00:57:32.705319 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:57:33.585495 #5] INFO -- : Committing offsets: section_change/0:198 +I, [2018-07-25T00:57:33.589709 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T00:57:33.589791 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:33.589982 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-25T00:57:33.590013 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:33.590214 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-25T00:57:33.590245 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:33.590407 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-25T00:57:33.590436 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:33.590623 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-25T00:57:33.590653 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:33.590835 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T00:57:33.590863 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:33.591020 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-25T00:57:33.591051 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:33.591257 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-25T00:57:33.591286 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:33.591467 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-25T00:57:33.591495 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:33.591649 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-25T00:57:33.591678 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:33.591886 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T00:57:33.591916 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:33.592097 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T00:57:33.592474 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:33.592760 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T00:57:33.592802 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:33.593080 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T00:57:33.593125 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:34.706431 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-07-25T00:57:34.706494 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:57:34.706724 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.06 ms +I, [2018-07-25T00:57:34.706758 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:57:34.706931 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.06 ms +I, [2018-07-25T00:57:34.707015 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:57:34.707186 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.06 ms +I, [2018-07-25T00:57:34.707218 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:57:34.707468 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-07-25T00:57:34.707540 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:57:34.707927 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T00:57:34.707995 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:57:34.708483 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.26 ms +I, [2018-07-25T00:57:34.708559 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:57:34.709026 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-07-25T00:57:34.709102 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:57:34.709535 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-07-25T00:57:34.709586 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:57:34.709967 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-07-25T00:57:34.710036 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:57:34.710387 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.06 ms +I, [2018-07-25T00:57:34.710419 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:57:34.710582 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.05 ms +I, [2018-07-25T00:57:34.710612 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:57:34.710798 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-07-25T00:57:34.710828 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:57:35.594226 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T00:57:35.594285 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:35.594466 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-25T00:57:35.594524 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:35.595394 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T00:57:35.595440 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:35.595653 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T00:57:35.595684 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:35.595845 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-25T00:57:35.595875 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:35.596060 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-25T00:57:35.596090 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:35.596275 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T00:57:35.596304 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:35.596498 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T00:57:35.596532 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:35.596727 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-25T00:57:35.596757 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:35.596941 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-25T00:57:35.596971 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:35.597125 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-25T00:57:35.597154 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:35.597329 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-25T00:57:35.597358 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:35.599183 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T00:57:35.599263 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:35.599459 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-25T00:57:35.599490 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:35.599672 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-25T00:57:35.599701 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:35.599885 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T00:57:35.599914 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:35.600070 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-25T00:57:35.600100 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:35.600276 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-25T00:57:35.600305 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:35.600488 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-25T00:57:35.600518 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:35.600672 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-25T00:57:35.600701 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:35.601176 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T00:57:35.601229 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:35.601496 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T00:57:35.601545 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:35.601835 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T00:57:35.601886 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:35.607099 #5] INFO -- : Inline processing of topic section_change with 1 messages took 4.96 ms +I, [2018-07-25T00:57:35.607192 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:35.607951 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T00:57:35.608020 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:35.608476 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T00:57:35.608558 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:36.712335 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T00:57:36.712394 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:57:36.713081 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.55 ms +I, [2018-07-25T00:57:36.713126 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:57:36.713555 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-07-25T00:57:36.713626 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:57:36.714003 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T00:57:36.714071 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:57:36.714450 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-07-25T00:57:36.714514 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:57:36.714876 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T00:57:36.714944 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:57:36.715293 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-07-25T00:57:36.715355 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:57:36.715749 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-07-25T00:57:36.715811 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:57:36.716055 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.06 ms +I, [2018-07-25T00:57:36.716099 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:57:36.716269 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.07 ms +I, [2018-07-25T00:57:36.716297 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:57:37.609323 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T00:57:37.609400 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:37.609633 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T00:57:37.609665 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:37.609863 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-25T00:57:37.610270 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:37.610541 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T00:57:37.610582 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:37.610776 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-25T00:57:37.610813 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:37.611528 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-07-25T00:57:37.611637 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:37.612017 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T00:57:37.612115 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:37.612431 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T00:57:37.612536 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:37.612773 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T00:57:37.612810 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:37.612987 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-25T00:57:37.613023 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:37.613194 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-25T00:57:37.613240 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:37.613404 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-25T00:57:37.613433 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:37.613605 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-25T00:57:37.613640 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:37.613820 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-25T00:57:37.613855 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:37.614043 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-25T00:57:37.614073 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:37.614263 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-25T00:57:37.614295 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:37.614484 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-25T00:57:37.614521 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:37.615971 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.29 ms +I, [2018-07-25T00:57:37.616181 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:37.616585 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T00:57:37.616645 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:38.723623 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-07-25T00:57:38.723682 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:57:38.723877 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.06 ms +I, [2018-07-25T00:57:38.723907 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:57:38.724098 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.05 ms +I, [2018-07-25T00:57:38.724127 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:57:38.724310 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-07-25T00:57:38.724339 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:57:38.724493 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.05 ms +I, [2018-07-25T00:57:38.724522 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:57:38.724708 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.05 ms +I, [2018-07-25T00:57:38.724736 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:57:38.724890 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.05 ms +I, [2018-07-25T00:57:38.724918 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:57:38.725093 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.05 ms +I, [2018-07-25T00:57:38.725122 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:57:38.725298 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-07-25T00:57:38.725326 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:57:38.725508 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.06 ms +I, [2018-07-25T00:57:38.725537 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:57:38.725687 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.05 ms +I, [2018-07-25T00:57:38.725716 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:57:38.725894 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.05 ms +I, [2018-07-25T00:57:38.725923 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:57:38.726075 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.05 ms +I, [2018-07-25T00:57:38.726103 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:57:38.726280 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.05 ms +I, [2018-07-25T00:57:38.726309 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:57:38.726484 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.07 ms +I, [2018-07-25T00:57:38.726512 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:57:38.731170 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.35 ms +I, [2018-07-25T00:57:38.731224 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:57:39.622135 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T00:57:39.622220 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:39.622956 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T00:57:39.623206 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:39.623850 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-25T00:57:39.623963 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:39.624432 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T00:57:39.624496 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:39.633894 #5] INFO -- : Inline processing of topic section_change with 1 messages took 3.62 ms +I, [2018-07-25T00:57:39.633977 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:39.634452 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T00:57:39.634505 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:39.634959 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T00:57:39.635042 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:39.635348 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T00:57:39.635439 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:39.635788 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T00:57:39.635836 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:39.636033 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-25T00:57:39.636065 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:39.636278 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-25T00:57:39.636308 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:39.636483 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-25T00:57:39.636514 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:39.636807 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-25T00:57:39.636858 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:39.637090 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-25T00:57:39.637135 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:39.637303 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-25T00:57:39.637332 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:39.637532 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T00:57:39.637562 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:39.637747 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-25T00:57:39.637776 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:39.637969 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T00:57:39.637998 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:39.638165 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-25T00:57:39.638193 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:39.638371 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-25T00:57:39.638400 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:39.638576 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-25T00:57:39.638605 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:39.649702 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T00:57:39.649856 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:39.650359 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T00:57:39.650557 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:39.651142 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T00:57:39.651184 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:39.652208 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.52 ms +I, [2018-07-25T00:57:39.652333 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:39.653028 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-25T00:57:39.653101 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:39.653585 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T00:57:39.653652 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:40.734811 #5] INFO -- : Inline processing of topic course_change with 1 messages took 1.26 ms +I, [2018-07-25T00:57:40.738001 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:57:40.738514 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-07-25T00:57:40.738563 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:57:40.741506 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-07-25T00:57:40.741554 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:57:40.742130 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-07-25T00:57:40.742198 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:57:41.655746 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-25T00:57:41.655826 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:41.656140 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T00:57:41.656178 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:41.656492 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T00:57:41.656545 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:41.656870 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T00:57:41.656907 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:41.657117 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T00:57:41.657180 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:41.657415 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-25T00:57:41.657446 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:41.657666 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T00:57:41.657698 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:41.658019 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T00:57:41.658058 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:41.658270 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-25T00:57:41.658300 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:42.742961 #5] INFO -- : Committing offsets: course_change/0:179 +I, [2018-07-25T00:57:42.750003 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T00:57:42.750059 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:57:43.659365 #5] INFO -- : Committing offsets: section_change/0:293 +I, [2018-07-25T00:57:43.670726 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T00:57:43.670781 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:43.671023 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T00:57:43.671073 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:43.671439 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T00:57:43.671478 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:43.671676 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-25T00:57:43.671722 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:43.671902 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-25T00:57:43.671931 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:43.672115 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T00:57:43.672145 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:43.672327 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-25T00:57:43.672356 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:43.672525 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-25T00:57:43.672572 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:43.672732 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-25T00:57:43.672783 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:43.672944 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-25T00:57:43.672974 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:43.673149 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-25T00:57:43.673194 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:43.673364 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-25T00:57:43.673393 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:44.752835 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-07-25T00:57:44.752908 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:57:44.753166 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.07 ms +I, [2018-07-25T00:57:44.753207 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:57:44.753441 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-07-25T00:57:44.753480 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:57:44.755877 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-07-25T00:57:44.755933 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:57:45.674067 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T00:57:45.674126 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:45.674362 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-25T00:57:45.674392 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:45.674595 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T00:57:45.674627 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:45.674813 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-25T00:57:45.674844 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:45.675033 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-25T00:57:45.675065 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:45.675254 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-25T00:57:45.675289 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:45.675475 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-25T00:57:45.675516 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:45.676730 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.09 ms +I, [2018-07-25T00:57:45.676776 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:45.677000 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T00:57:45.677031 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:45.677309 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T00:57:45.677344 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:45.677521 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-25T00:57:45.677551 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:45.677743 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-25T00:57:45.677773 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:45.677946 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-25T00:57:45.677976 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:46.757916 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-07-25T00:57:46.757993 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:57:46.758251 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T00:57:46.758286 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:57:46.758488 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.06 ms +I, [2018-07-25T00:57:46.758518 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:57:46.759455 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.79 ms +I, [2018-07-25T00:57:46.759504 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:57:46.759753 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-07-25T00:57:46.759800 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:57:46.760302 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-07-25T00:57:46.760351 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:57:46.762165 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-07-25T00:57:46.762233 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:57:46.762485 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-07-25T00:57:46.762531 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:57:46.762939 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T00:57:46.762985 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:57:46.763522 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.33 ms +I, [2018-07-25T00:57:46.763604 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:57:46.764438 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-07-25T00:57:46.764702 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:57:46.765954 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.71 ms +I, [2018-07-25T00:57:46.766268 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:57:46.767683 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.97 ms +I, [2018-07-25T00:57:46.767938 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:57:46.770090 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.59 ms +I, [2018-07-25T00:57:46.770312 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:57:47.714571 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.35 ms +I, [2018-07-25T00:57:47.715068 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:47.717530 #5] INFO -- : Inline processing of topic section_change with 1 messages took 2.02 ms +I, [2018-07-25T00:57:47.717698 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:47.719721 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-07-25T00:57:47.719930 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:47.722474 #5] INFO -- : Inline processing of topic section_change with 1 messages took 2.01 ms +I, [2018-07-25T00:57:47.722777 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:47.727507 #5] INFO -- : Inline processing of topic section_change with 1 messages took 3.98 ms +I, [2018-07-25T00:57:47.728150 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:47.729093 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-07-25T00:57:47.729219 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:47.730091 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.48 ms +I, [2018-07-25T00:57:47.730147 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:47.730619 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T00:57:47.730808 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:48.773664 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.41 ms +I, [2018-07-25T00:57:48.773723 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:57:48.773955 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-07-25T00:57:48.773988 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:57:48.774467 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.06 ms +I, [2018-07-25T00:57:48.774499 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:57:48.774972 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-07-25T00:57:48.775011 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:57:49.732248 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.4 ms +I, [2018-07-25T00:57:49.732311 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:49.732545 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T00:57:49.732577 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:49.732795 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-25T00:57:49.732909 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:49.733086 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-25T00:57:49.733116 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:49.733632 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-07-25T00:57:49.733690 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:49.734004 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T00:57:49.734231 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:49.734520 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T00:57:49.734566 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:49.735067 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-07-25T00:57:49.735114 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:49.735367 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T00:57:49.735411 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:49.736064 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T00:57:49.736121 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:49.736479 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T00:57:49.736525 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:49.737110 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T00:57:49.737177 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:49.737519 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T00:57:49.737564 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:49.737867 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T00:57:49.737909 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:49.739195 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.09 ms +I, [2018-07-25T00:57:49.739260 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:49.739694 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T00:57:49.739739 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:49.740099 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T00:57:49.743220 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:49.743691 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T00:57:49.743779 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:49.746686 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-07-25T00:57:49.746760 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:49.747104 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T00:57:49.747158 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:49.754111 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T00:57:49.754165 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:50.777791 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T00:57:50.777873 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:57:50.778263 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-07-25T00:57:50.778311 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:57:50.778983 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.31 ms +I, [2018-07-25T00:57:50.779023 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:57:50.779356 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-07-25T00:57:50.779400 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:57:50.779663 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T00:57:50.779697 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:57:50.780045 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.06 ms +I, [2018-07-25T00:57:50.780077 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:57:50.780488 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.06 ms +I, [2018-07-25T00:57:50.780521 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:57:50.780876 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.07 ms +I, [2018-07-25T00:57:50.780908 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:57:50.781230 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-07-25T00:57:50.781264 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:57:50.781499 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T00:57:50.781531 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:57:50.781784 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.06 ms +I, [2018-07-25T00:57:50.781815 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:57:50.782134 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-07-25T00:57:50.782203 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:57:50.782450 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.06 ms +I, [2018-07-25T00:57:50.782480 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:57:51.756020 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T00:57:51.756076 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:51.756318 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T00:57:51.756350 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:51.756602 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T00:57:51.756633 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:51.756925 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T00:57:51.756958 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:51.757262 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T00:57:51.757313 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:51.757645 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T00:57:51.757734 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:51.760612 #5] INFO -- : Inline processing of topic section_change with 1 messages took 2.6 ms +I, [2018-07-25T00:57:51.760658 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:51.760910 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T00:57:51.760942 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:51.761183 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T00:57:51.761215 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:51.761378 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-25T00:57:51.761408 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:51.761625 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-25T00:57:51.761656 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:51.761854 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T00:57:51.761884 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:51.762163 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-25T00:57:51.762225 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:51.762399 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-25T00:57:51.762429 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:51.762625 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-25T00:57:51.762648 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:51.762917 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T00:57:51.762942 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:51.763198 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T00:57:51.763228 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:51.763367 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-25T00:57:51.763396 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:51.764745 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.23 ms +I, [2018-07-25T00:57:51.764799 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:51.774689 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T00:57:51.774742 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:51.775119 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-07-25T00:57:51.775151 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:51.775316 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-25T00:57:51.775346 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:51.775575 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T00:57:51.775605 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:51.775764 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-25T00:57:51.776414 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:51.777839 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T00:57:51.777885 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:51.778060 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-25T00:57:51.778091 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:51.778386 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-25T00:57:51.778417 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:51.778578 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-25T00:57:51.778608 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:51.778922 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-25T00:57:51.778954 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:51.779206 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-25T00:57:51.779236 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:51.779395 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-25T00:57:51.779472 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:51.779629 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-25T00:57:51.779658 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:51.779934 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-25T00:57:51.779964 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:51.780125 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-25T00:57:51.780154 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:51.780384 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-25T00:57:51.780413 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:51.780647 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T00:57:51.780677 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:51.780837 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-25T00:57:51.780939 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:51.781097 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-25T00:57:51.781126 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:51.781315 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T00:57:51.781344 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:51.781504 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-25T00:57:51.781533 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:51.781757 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T00:57:51.781788 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:52.783102 #5] INFO -- : Committing offsets: course_change/0:215 +I, [2018-07-25T00:57:52.820715 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-07-25T00:57:52.820815 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:57:52.821772 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.32 ms +I, [2018-07-25T00:57:52.821948 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:57:52.822301 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T00:57:52.822404 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:57:52.822680 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-07-25T00:57:52.822732 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:57:52.823152 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-07-25T00:57:52.825227 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:57:52.825672 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-07-25T00:57:52.825731 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:57:52.829291 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.5 ms +I, [2018-07-25T00:57:52.829388 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:57:52.839152 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-07-25T00:57:52.839273 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:57:53.782358 #5] INFO -- : Committing offsets: section_change/0:388 +I, [2018-07-25T00:57:53.824466 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-07-25T00:57:53.824539 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:53.824773 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T00:57:53.824807 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:53.825025 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-25T00:57:53.825056 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:53.825252 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T00:57:53.825296 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:53.826303 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.74 ms +I, [2018-07-25T00:57:53.826391 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:53.826936 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T00:57:53.828452 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:53.830354 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T00:57:53.830445 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:53.830789 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T00:57:53.830842 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:54.839993 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T00:57:54.840127 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:57:54.840349 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-07-25T00:57:54.840379 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:57:54.840575 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-07-25T00:57:54.840605 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:57:54.840763 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.05 ms +I, [2018-07-25T00:57:54.840792 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:57:54.840972 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.05 ms +I, [2018-07-25T00:57:54.841000 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:57:54.841156 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.05 ms +I, [2018-07-25T00:57:54.841206 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:57:54.841358 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.05 ms +I, [2018-07-25T00:57:54.841395 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:57:55.831764 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T00:57:55.831823 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:55.832069 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-25T00:57:55.832101 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:55.832270 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-25T00:57:55.832300 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:55.832502 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T00:57:55.832532 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:55.832692 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-25T00:57:55.832746 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:55.832904 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-25T00:57:55.832968 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:55.833434 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-07-25T00:57:55.833610 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:55.833976 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T00:57:55.834006 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:55.834318 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T00:57:55.834349 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:55.834871 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T00:57:55.834914 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:55.835115 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-25T00:57:55.835146 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:55.835308 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-25T00:57:55.835338 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:56.842475 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-07-25T00:57:56.842536 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:57:56.842725 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.06 ms +I, [2018-07-25T00:57:56.842755 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:57:56.842935 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.07 ms +I, [2018-07-25T00:57:56.843001 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:57:56.843214 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.07 ms +I, [2018-07-25T00:57:56.843271 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:57:56.843438 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.06 ms +I, [2018-07-25T00:57:56.843467 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:57:56.843659 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-07-25T00:57:56.843688 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:57:56.843844 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.05 ms +I, [2018-07-25T00:57:56.843872 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:57:56.844046 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.05 ms +I, [2018-07-25T00:57:56.844080 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:57:56.844253 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.06 ms +I, [2018-07-25T00:57:56.844282 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:57:56.844467 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-07-25T00:57:56.844496 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:57:56.845658 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.72 ms +I, [2018-07-25T00:57:56.845713 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:57:57.836369 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T00:57:57.836432 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:57.836664 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-25T00:57:57.836698 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:57.836899 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-25T00:57:57.836932 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:57.837142 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T00:57:57.837174 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:57.837849 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T00:57:57.837909 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:57.838109 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T00:57:57.838142 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:57.838348 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-25T00:57:57.838381 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:57.838588 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-25T00:57:57.838621 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:57.838827 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T00:57:57.838963 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:57.839224 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-25T00:57:57.839274 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:57.839464 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T00:57:57.839496 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:57.839696 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-25T00:57:57.839765 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:57.841842 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T00:57:57.841925 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:57.842266 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T00:57:57.842323 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:58.848639 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-07-25T00:57:58.849094 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:57:58.849497 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-07-25T00:57:58.849551 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:57:58.849839 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-07-25T00:57:58.849888 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:57:58.850200 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-07-25T00:57:58.850248 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:57:58.850500 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-07-25T00:57:58.850547 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:57:58.850828 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-07-25T00:57:58.850872 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:57:58.851103 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-07-25T00:57:58.851146 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:57:58.851422 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-07-25T00:57:58.851468 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:57:59.843553 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T00:57:59.843612 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:59.843820 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T00:57:59.843851 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:59.844032 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-25T00:57:59.844062 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:59.844252 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-25T00:57:59.844282 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:59.844440 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-25T00:57:59.844500 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:59.844652 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-25T00:57:59.844681 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:59.844861 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T00:57:59.844890 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:59.845051 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-25T00:57:59.845080 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:59.845261 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-25T00:57:59.845290 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:59.845443 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-25T00:57:59.845472 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:59.845652 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-25T00:57:59.845681 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:59.845861 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-25T00:57:59.845891 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:59.846044 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-25T00:57:59.846072 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:59.846418 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T00:57:59.846451 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:59.846700 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-25T00:57:59.846732 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:59.846917 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T00:57:59.846946 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:59.847101 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-25T00:57:59.847139 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:59.847329 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-25T00:57:59.847358 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:59.847513 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-25T00:57:59.848317 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:59.848728 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T00:57:59.848775 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:59.849054 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T00:57:59.849102 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:59.849455 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T00:57:59.849501 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:59.849980 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T00:57:59.850079 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:59.850415 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T00:57:59.850463 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:59.850772 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T00:57:59.850819 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:59.851083 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T00:57:59.851130 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:59.851401 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T00:57:59.851447 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:59.851716 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T00:57:59.851764 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:59.860568 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T00:57:59.860692 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:59.860973 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T00:57:59.861029 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:59.861194 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-25T00:57:59.861225 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:59.861405 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-25T00:57:59.861443 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:59.861624 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-25T00:57:59.861654 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:59.861839 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-25T00:57:59.861869 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:59.862022 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-25T00:57:59.862051 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:59.862323 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T00:57:59.862355 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:59.862532 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-25T00:57:59.862561 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:59.862712 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-25T00:57:59.862742 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:59.862918 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-25T00:57:59.862947 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:59.863099 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-25T00:57:59.863141 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:59.863291 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-25T00:57:59.863348 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:59.863498 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-25T00:57:59.863527 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:59.863699 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-25T00:57:59.863727 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:59.863904 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T00:57:59.863933 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:59.864107 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T00:57:59.864136 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:59.864324 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T00:57:59.864353 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:59.864513 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-25T00:57:59.864566 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:57:59.864760 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T00:57:59.864792 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:58:00.853024 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-07-25T00:58:00.853111 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:58:00.853488 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-07-25T00:58:00.853545 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:58:00.853848 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T00:58:00.853903 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:58:00.854232 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-07-25T00:58:00.854287 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:58:01.868777 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-07-25T00:58:01.868886 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:58:01.869240 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T00:58:01.869266 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:58:01.869589 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T00:58:01.869622 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:58:01.870421 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T00:58:01.870458 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:58:01.870808 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T00:58:01.870935 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:58:01.871269 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T00:58:01.871339 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:58:01.871721 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T00:58:01.871756 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:58:01.872129 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T00:58:01.872224 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:58:01.872618 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T00:58:01.872654 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:58:01.873023 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T00:58:01.873055 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:58:01.873442 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T00:58:01.873535 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:58:01.873790 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T00:58:01.873881 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:58:01.874081 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-25T00:58:01.874111 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:58:01.874370 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T00:58:01.874400 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:58:01.874583 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T00:58:01.874612 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:58:02.949991 #5] INFO -- : Committing offsets: course_change/0:253 +I, [2018-07-25T00:58:03.217815 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.31 ms +I, [2018-07-25T00:58:03.217960 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:58:03.218164 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.06 ms +I, [2018-07-25T00:58:03.218214 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:58:03.218395 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.07 ms +I, [2018-07-25T00:58:03.218425 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:58:03.218605 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.05 ms +I, [2018-07-25T00:58:03.218641 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:58:03.229356 #5] INFO -- : Inline processing of topic course_change with 1 messages took 10.47 ms +I, [2018-07-25T00:58:03.229793 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:58:03.230362 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-07-25T00:58:03.230422 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:58:03.230718 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T00:58:03.231032 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:58:03.231323 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-07-25T00:58:03.231399 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:58:03.875867 #5] INFO -- : Committing offsets: section_change/0:485 +I, [2018-07-25T00:58:03.880473 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T00:58:03.880589 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:58:03.883040 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-07-25T00:58:03.883111 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:58:03.883604 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T00:58:03.883673 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:58:03.884086 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T00:58:03.884167 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:58:03.884663 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-25T00:58:03.884722 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:58:03.885353 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.43 ms +I, [2018-07-25T00:58:03.885427 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:58:03.886018 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T00:58:03.886199 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:58:03.887174 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.54 ms +I, [2018-07-25T00:58:03.887241 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:58:05.232681 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-07-25T00:58:05.232758 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:58:05.233010 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-07-25T00:58:05.233052 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:58:05.233400 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-07-25T00:58:05.233441 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:58:05.233658 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.07 ms +I, [2018-07-25T00:58:05.233698 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:58:05.233934 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.07 ms +I, [2018-07-25T00:58:05.233973 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:58:05.234239 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.07 ms +I, [2018-07-25T00:58:05.234282 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:58:05.234575 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-07-25T00:58:05.234619 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:58:05.234989 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-07-25T00:58:05.235039 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:58:05.236661 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-07-25T00:58:05.236736 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:58:05.237049 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T00:58:05.237107 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:58:05.889174 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T00:58:05.889248 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:58:05.889531 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T00:58:05.889571 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:58:05.889794 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T00:58:05.889865 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:58:05.890080 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T00:58:05.890117 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:58:05.890365 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-25T00:58:05.890402 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:58:05.890607 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-25T00:58:05.890644 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:58:05.890892 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T00:58:05.890930 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:58:05.891129 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-25T00:58:05.891166 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:58:05.891437 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-25T00:58:05.891475 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:58:05.891682 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T00:58:05.891758 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:58:05.891960 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-25T00:58:05.891997 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:58:05.892239 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T00:58:05.892314 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:58:05.894527 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T00:58:05.894590 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:58:07.238148 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-07-25T00:58:07.238398 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:58:07.239004 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-07-25T00:58:07.239046 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:58:07.239261 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.07 ms +I, [2018-07-25T00:58:07.239294 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:58:07.239494 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-07-25T00:58:07.239527 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:58:07.239727 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-07-25T00:58:07.239759 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:58:07.240455 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.25 ms +I, [2018-07-25T00:58:07.240502 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:58:07.240758 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-07-25T00:58:07.240794 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:58:07.240985 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.06 ms +I, [2018-07-25T00:58:07.241041 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:58:07.241236 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-07-25T00:58:07.241392 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:58:07.241627 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.07 ms +I, [2018-07-25T00:58:07.241659 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:58:07.241862 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-07-25T00:58:07.241894 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:58:07.242059 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.06 ms +I, [2018-07-25T00:58:07.242091 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:58:07.242274 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.07 ms +I, [2018-07-25T00:58:07.242305 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:58:07.242567 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T00:58:07.242614 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:58:07.242900 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-07-25T00:58:07.242975 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:58:07.243181 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.07 ms +I, [2018-07-25T00:58:07.243214 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:58:07.243423 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.06 ms +I, [2018-07-25T00:58:07.243455 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:58:07.895470 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T00:58:07.895527 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:58:07.895709 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-25T00:58:07.895740 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:58:07.895934 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-25T00:58:07.895964 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:58:07.896124 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-25T00:58:07.896186 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:58:07.896343 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-25T00:58:07.896961 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:58:07.897189 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T00:58:07.897247 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:58:07.897418 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-25T00:58:07.897449 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:58:07.897642 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-25T00:58:07.897672 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:58:07.897868 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T00:58:07.897898 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:58:07.898057 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-25T00:58:07.898087 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:58:07.898268 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T00:58:07.898327 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:58:07.898552 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-25T00:58:07.898917 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:58:07.899214 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T00:58:07.899256 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:58:07.899529 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T00:58:07.899572 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:58:07.899826 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T00:58:07.899868 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:58:07.900143 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T00:58:07.900188 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:58:07.900428 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T00:58:07.900470 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:58:07.900711 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-25T00:58:07.900942 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:58:07.901195 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-25T00:58:07.901248 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:58:07.904131 #5] INFO -- : Inline processing of topic section_change with 1 messages took 2.61 ms +I, [2018-07-25T00:58:07.904206 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:58:07.908653 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T00:58:07.908719 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:58:07.908998 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T00:58:07.909229 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:58:07.909548 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T00:58:07.909596 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:58:07.913080 #5] INFO -- : Inline processing of topic section_change with 1 messages took 3.23 ms +I, [2018-07-25T00:58:07.916804 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:58:07.917149 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T00:58:07.917181 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:58:07.917367 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-25T00:58:07.917405 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:58:07.917584 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-25T00:58:07.917613 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:58:07.917792 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-25T00:58:07.917822 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:58:07.918004 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-25T00:58:07.918034 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:58:07.918209 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-25T00:58:07.918245 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:58:07.918411 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-25T00:58:07.918452 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:58:07.918619 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-25T00:58:07.918648 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:58:07.918824 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-25T00:58:07.918854 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:58:09.250378 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-07-25T00:58:09.250452 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:58:09.250727 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T00:58:09.250785 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:58:09.252104 #5] INFO -- : Inline processing of topic course_change with 1 messages took 1.12 ms +I, [2018-07-25T00:58:09.252160 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:58:09.252647 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-07-25T00:58:09.252706 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:58:09.252953 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-07-25T00:58:09.252985 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:58:09.253180 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.07 ms +I, [2018-07-25T00:58:09.253220 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:58:09.253472 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.07 ms +I, [2018-07-25T00:58:09.256437 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:58:09.256836 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-07-25T00:58:09.256915 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:58:09.261643 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-07-25T00:58:09.261711 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:58:09.261965 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-07-25T00:58:09.262010 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:58:09.262280 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-07-25T00:58:09.262403 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:58:09.919717 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T00:58:09.919908 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:58:09.920318 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T00:58:09.920357 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:58:09.920591 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T00:58:09.920622 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:58:09.920905 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T00:58:09.920954 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:58:09.921196 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T00:58:09.921227 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:58:09.921393 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-25T00:58:09.921423 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:58:09.921612 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-25T00:58:09.921642 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:58:09.921885 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T00:58:09.921916 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:58:09.922088 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-25T00:58:09.922118 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:58:09.922305 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-25T00:58:09.922419 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:58:09.922978 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T00:58:09.923014 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:58:09.923196 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-25T00:58:09.923228 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:58:09.923435 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-25T00:58:09.923467 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:58:09.923735 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T00:58:09.923771 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:58:09.923940 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-25T00:58:09.923998 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:58:09.924163 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-25T00:58:09.924192 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:58:09.924384 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T00:58:09.924413 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:58:11.263106 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T00:58:11.263176 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:58:11.263365 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.06 ms +I, [2018-07-25T00:58:11.263396 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:58:11.263615 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.05 ms +I, [2018-07-25T00:58:11.263645 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:58:11.263835 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-07-25T00:58:11.263910 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:58:11.264135 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-07-25T00:58:11.264172 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:58:11.264512 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-07-25T00:58:11.264571 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:58:11.925158 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T00:58:11.925230 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:58:11.925483 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T00:58:11.925594 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:58:11.925853 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T00:58:11.925886 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:58:11.926069 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T00:58:11.926092 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:58:11.926236 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-25T00:58:11.926259 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:58:11.926423 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T00:58:11.926446 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:58:11.926596 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-25T00:58:11.926625 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:58:11.926807 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-25T00:58:11.926831 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:58:11.927376 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.43 ms +I, [2018-07-25T00:58:11.927433 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:58:11.927755 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T00:58:11.927803 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:58:13.264933 #5] INFO -- : Committing offsets: course_change/0:305 +I, [2018-07-25T00:58:13.267430 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-07-25T00:58:13.267489 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:58:13.267686 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.07 ms +I, [2018-07-25T00:58:13.267718 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:58:13.267904 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.05 ms +I, [2018-07-25T00:58:13.267934 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:58:13.268108 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.07 ms +I, [2018-07-25T00:58:13.268137 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:58:13.268289 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.05 ms +I, [2018-07-25T00:58:13.268318 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:58:13.268498 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.05 ms +I, [2018-07-25T00:58:13.268527 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:58:13.268701 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.05 ms +I, [2018-07-25T00:58:13.268730 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:58:13.268960 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.06 ms +I, [2018-07-25T00:58:13.268990 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:58:13.269173 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.05 ms +I, [2018-07-25T00:58:13.269201 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:58:13.269354 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.05 ms +I, [2018-07-25T00:58:13.269405 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:58:13.269557 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.05 ms +I, [2018-07-25T00:58:13.269586 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:58:13.269757 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.07 ms +I, [2018-07-25T00:58:13.269786 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:58:13.269938 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.05 ms +I, [2018-07-25T00:58:13.269988 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:58:13.270139 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.05 ms +I, [2018-07-25T00:58:13.270168 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:58:13.270344 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.05 ms +I, [2018-07-25T00:58:13.270373 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:58:13.928225 #5] INFO -- : Committing offsets: section_change/0:566 +I, [2018-07-25T00:58:13.933479 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T00:58:13.933615 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:58:13.934003 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T00:58:13.934048 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:58:13.934247 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-25T00:58:13.934278 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:58:13.934506 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T00:58:13.934551 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:58:13.934835 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T00:58:13.934876 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:58:13.935139 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T00:58:13.935166 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:58:13.935345 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-25T00:58:13.935374 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:58:13.935560 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-25T00:58:13.935585 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:58:13.935755 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-25T00:58:13.935784 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:58:13.935957 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-25T00:58:13.935987 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:58:13.936188 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T00:58:13.936232 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:58:13.936439 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-25T00:58:13.936495 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:58:13.936904 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T00:58:13.936970 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:58:13.937881 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.53 ms +I, [2018-07-25T00:58:13.937930 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:58:13.938169 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T00:58:13.938202 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:58:13.938389 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-25T00:58:13.938438 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:58:13.938611 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-25T00:58:13.938640 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:58:13.938822 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-25T00:58:13.938852 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:58:13.939125 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T00:58:13.939164 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:58:13.939671 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-25T00:58:13.939724 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:58:13.939935 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-25T00:58:13.939978 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:58:13.940577 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T00:58:13.940617 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:58:13.940819 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T00:58:13.940855 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:58:13.941043 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-25T00:58:13.941079 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:58:13.941256 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-25T00:58:13.941299 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:58:13.941483 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-25T00:58:13.941513 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:58:13.942053 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T00:58:13.942104 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:58:13.942554 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-07-25T00:58:13.942599 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:58:13.943091 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T00:58:13.943132 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:58:13.943344 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-25T00:58:13.943379 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:58:13.943599 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T00:58:13.946690 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:58:13.947262 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T00:58:13.947305 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:58:13.947494 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-25T00:58:13.947526 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:58:13.947719 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-25T00:58:13.947900 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:58:13.948243 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T00:58:13.948301 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:58:13.948508 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-25T00:58:13.948542 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:58:13.948801 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T00:58:13.948906 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:58:13.949232 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T00:58:13.949298 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:58:13.949717 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T00:58:13.949816 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:58:13.950230 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T00:58:13.950270 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:58:13.950447 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-25T00:58:13.950475 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:58:13.950693 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T00:58:13.950722 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:58:13.950891 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-25T00:58:13.950921 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:58:13.951120 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T00:58:13.951149 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:58:15.271237 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-07-25T00:58:15.271295 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:58:15.271472 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.06 ms +I, [2018-07-25T00:58:15.271551 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:58:15.271956 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-07-25T00:58:15.272004 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:58:15.272236 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-07-25T00:58:15.272284 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:58:15.272618 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-07-25T00:58:15.272660 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:58:15.272911 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-07-25T00:58:15.272946 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:58:15.273243 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-07-25T00:58:15.273334 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:58:15.273605 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.07 ms +I, [2018-07-25T00:58:15.273675 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:58:15.273835 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.05 ms +I, [2018-07-25T00:58:15.273865 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:58:15.274022 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.05 ms +I, [2018-07-25T00:58:15.274088 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:58:15.274242 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.05 ms +I, [2018-07-25T00:58:15.274271 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T00:58:16.045515 #5] INFO -- : Inline processing of topic section_change with 1 messages took 62.7 ms +I, [2018-07-25T00:58:16.046802 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:58:16.062943 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-07-25T00:58:16.063088 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T00:58:16.070118 #5] INFO -- : Inline processing of topic section_change with 1 messages took 6.75 ms +I, [2018-07-25T00:59:57.670654 #5] INFO -- : New topics added to target list: section_change +I, [2018-07-25T00:59:57.671512 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-07-25T00:59:57.673010 #5] INFO -- : New topics added to target list: course_change +I, [2018-07-25T00:59:57.673096 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-07-25T00:59:57.674664 #5] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.19.0.9:9094 +E, [2018-07-25T00:59:57.674894 #5] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.19.0.9:9094 +E, [2018-07-25T00:59:57.675272 #5] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.19.0.9:9094 +E, [2018-07-25T00:59:57.675401 #5] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.19.0.9:9094 +E, [2018-07-25T01:00:02.676667 #5] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: +- kafka://kafka:9094: Connection refused - connect(2) for 172.19.0.9:9094 +I, [2018-07-25T01:00:02.679862 #5] INFO -- : New topics added to target list: course_change +I, [2018-07-25T01:00:02.679918 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-07-25T01:00:02.681655 #5] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: +- kafka://kafka:9094: Connection refused - connect(2) for 172.19.0.9:9094 +I, [2018-07-25T01:00:02.682509 #5] INFO -- : New topics added to target list: section_change +I, [2018-07-25T01:00:02.682563 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-07-25T01:00:02.684348 #5] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.19.0.9:9094 +E, [2018-07-25T01:00:02.684930 #5] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.19.0.9:9094 +E, [2018-07-25T01:00:02.685207 #5] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.19.0.9:9094 +E, [2018-07-25T01:00:02.685282 #5] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.19.0.9:9094 +E, [2018-07-25T01:00:07.686606 #5] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: +- kafka://kafka:9094: Connection refused - connect(2) for 172.19.0.9:9094 +E, [2018-07-25T01:00:07.689354 #5] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: +- kafka://kafka:9094: Connection refused - connect(2) for 172.19.0.9:9094 +I, [2018-07-25T01:00:07.692111 #5] INFO -- : New topics added to target list: course_change +I, [2018-07-25T01:00:07.692211 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-07-25T01:00:07.700851 #5] INFO -- : New topics added to target list: section_change +I, [2018-07-25T01:00:07.700918 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-07-25T01:00:07.701438 #5] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.19.0.9:9094 +E, [2018-07-25T01:00:07.701642 #5] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.19.0.9:9094 +E, [2018-07-25T01:00:07.706762 #5] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.19.0.9:9094 +E, [2018-07-25T01:00:07.706875 #5] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.19.0.9:9094 +E, [2018-07-25T01:00:12.702036 #5] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: +- kafka://kafka:9094: Connection refused - connect(2) for 172.19.0.9:9094 +I, [2018-07-25T01:00:12.703678 #5] INFO -- : New topics added to target list: course_change +I, [2018-07-25T01:00:12.703729 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-07-25T01:00:12.707906 #5] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: +- kafka://kafka:9094: Connection refused - connect(2) for 172.19.0.9:9094 +I, [2018-07-25T01:00:12.716897 #5] INFO -- : New topics added to target list: section_change +I, [2018-07-25T01:00:12.717013 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-07-25T01:00:13.261949 #5] ERROR -- : No brokers in cluster +E, [2018-07-25T01:00:13.265628 #5] ERROR -- : No brokers in cluster +E, [2018-07-25T01:00:18.262589 #5] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: + +I, [2018-07-25T01:00:18.266014 #5] INFO -- : New topics added to target list: course_change +I, [2018-07-25T01:00:18.266124 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-07-25T01:00:18.266336 #5] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: + +I, [2018-07-25T01:00:18.267552 #5] INFO -- : New topics added to target list: section_change +I, [2018-07-25T01:00:18.267670 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-07-25T01:00:18.485904 #5] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-07-25T01:00:18.486303 #5] INFO -- : Joining group `notifications_notifications` +I, [2018-07-25T01:00:18.493566 #5] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-07-25T01:00:18.493767 #5] INFO -- : Joining group `notifications_course_change` +I, [2018-07-25T01:00:18.576298 #5] INFO -- : Will fetch at most 1048576 bytes at a time per partition from section_change +I, [2018-07-25T01:00:18.576796 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-07-25T01:00:18.579350 #5] INFO -- : Will fetch at most 1048576 bytes at a time per partition from course_change +I, [2018-07-25T01:00:18.579537 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-07-25T01:00:18.590554 #5] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-07-25T01:00:18.591149 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T01:00:18.607319 #5] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-07-25T01:00:18.607494 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T01:00:19.592145 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T01:00:19.608338 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T01:00:20.593011 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T01:00:20.608850 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T01:00:21.593543 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T01:00:21.609180 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T01:00:22.594104 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T01:00:22.610180 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T01:00:23.597425 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T01:00:23.614896 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T01:00:24.599988 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T01:00:24.616084 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T01:00:25.601671 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T01:00:25.617801 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T01:00:26.602697 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T01:00:26.618343 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T01:00:26.743164 #5] INFO -- : Joined group `notifications_course_change` with member id `notifications-55727fc6-90f9-458d-a63e-fb9014359844` +I, [2018-07-25T01:00:26.743235 #5] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-07-25T01:00:26.780149 #5] INFO -- : Joined group `notifications_notifications` with member id `notifications-9ddd3100-a6cf-4315-b070-846cd64d3b25` +I, [2018-07-25T01:00:26.780205 #5] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-07-25T01:00:27.603077 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T01:00:27.621970 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T01:00:27.745255 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-07-25T01:00:27.763190 #5] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-07-25T01:00:27.781023 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-07-25T01:00:27.800153 #5] INFO -- : Partitions assigned for `course_change`: 0 +I, [2018-07-25T01:00:27.830245 #5] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-07-25T01:00:27.875475 #5] INFO -- : Partitions assigned for `section_change`: 0 +I, [2018-07-25T01:00:28.606220 #5] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-07-25T01:00:28.606464 #5] INFO -- : New topics added to target list: section_change +I, [2018-07-25T01:00:28.606728 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-07-25T01:00:28.617916 #5] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-07-25T01:00:28.629456 #5] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-07-25T01:00:28.630205 #5] INFO -- : New topics added to target list: course_change +I, [2018-07-25T01:00:28.630332 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-07-25T01:00:28.644514 #5] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-07-25T01:00:31.858546 #5] INFO -- : Inline processing of topic course_change with 1 messages took 25.41 ms +I, [2018-07-25T01:00:31.858775 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:00:31.858859 #5] INFO -- : Committing offsets with recommit: course_change/0:1 +I, [2018-07-25T01:00:31.865547 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.27 ms +I, [2018-07-25T01:00:31.865612 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:00:31.865890 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T01:00:31.865997 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:00:31.866600 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.37 ms +I, [2018-07-25T01:00:31.866654 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:00:31.941367 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T01:00:31.941524 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:31.941589 #5] INFO -- : Committing offsets with recommit: section_change/0:1 +I, [2018-07-25T01:00:31.979054 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-07-25T01:00:31.979396 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:31.980009 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-07-25T01:00:31.980068 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:31.981007 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-07-25T01:00:31.981096 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:31.982332 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.75 ms +I, [2018-07-25T01:00:31.982435 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:31.985554 #5] INFO -- : Inline processing of topic section_change with 1 messages took 2.52 ms +I, [2018-07-25T01:00:31.985645 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:31.987062 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.17 ms +I, [2018-07-25T01:00:31.987117 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:31.999568 #5] INFO -- : Inline processing of topic section_change with 1 messages took 11.72 ms +I, [2018-07-25T01:00:31.999637 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:32.000095 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T01:00:32.000138 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:32.000488 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T01:00:32.000533 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:32.000980 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T01:00:32.001105 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:32.001546 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-07-25T01:00:32.001590 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:32.002052 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-07-25T01:00:32.002097 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:32.002499 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-25T01:00:32.002541 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:32.002853 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T01:00:32.002893 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:32.003301 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T01:00:32.005011 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:32.005844 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-07-25T01:00:32.005912 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:32.015668 #5] INFO -- : Inline processing of topic section_change with 1 messages took 9.12 ms +I, [2018-07-25T01:00:32.015743 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:32.016291 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-07-25T01:00:32.016335 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:32.016692 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T01:00:32.016740 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:32.017143 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T01:00:32.017218 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:32.017829 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.44 ms +I, [2018-07-25T01:00:32.017879 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:32.028121 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.34 ms +I, [2018-07-25T01:00:32.028235 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:32.028934 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-07-25T01:00:32.030843 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:32.032714 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.39 ms +I, [2018-07-25T01:00:32.032925 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:32.034335 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.14 ms +I, [2018-07-25T01:00:32.034782 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:32.045801 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.91 ms +I, [2018-07-25T01:00:32.045950 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:32.046756 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.44 ms +I, [2018-07-25T01:00:32.046825 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:33.867692 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-07-25T01:00:33.867740 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:00:33.868009 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-07-25T01:00:33.868042 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:00:33.869174 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-07-25T01:00:33.869216 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:00:33.869492 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-07-25T01:00:33.869523 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:00:33.869738 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T01:00:33.869767 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:00:33.869983 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T01:00:33.870012 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:00:33.870224 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T01:00:33.870252 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:00:33.870461 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-07-25T01:00:33.870497 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:00:33.870820 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-07-25T01:00:33.870854 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:00:33.871090 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-07-25T01:00:33.871119 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:00:33.871372 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-07-25T01:00:33.871435 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:00:33.881274 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.23 ms +I, [2018-07-25T01:00:33.881325 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:00:33.883632 #5] INFO -- : Inline processing of topic course_change with 1 messages took 2.01 ms +I, [2018-07-25T01:00:33.883738 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:00:33.884130 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T01:00:33.884162 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:00:34.051012 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-07-25T01:00:34.051082 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:34.051491 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T01:00:34.051543 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:34.051929 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T01:00:34.051983 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:34.052400 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T01:00:34.053804 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:34.054902 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-07-25T01:00:34.057800 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:34.075108 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.51 ms +I, [2018-07-25T01:00:34.075298 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:34.075889 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T01:00:34.075931 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:34.085595 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-07-25T01:00:34.085672 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:34.092941 #5] INFO -- : Inline processing of topic section_change with 1 messages took 6.86 ms +I, [2018-07-25T01:00:34.093000 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:34.093330 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T01:00:34.093377 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:34.093645 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T01:00:34.093673 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:34.093898 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T01:00:34.093928 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:34.094150 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T01:00:34.094180 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:34.094410 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T01:00:34.094439 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:34.094659 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T01:00:34.094688 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:34.094901 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T01:00:34.094930 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:34.095213 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T01:00:34.095246 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:34.095492 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T01:00:34.095543 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:34.099214 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T01:00:34.099259 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:34.105638 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.87 ms +I, [2018-07-25T01:00:34.105709 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:34.106029 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T01:00:34.106063 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:34.106306 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T01:00:34.106359 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:34.106559 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T01:00:34.106589 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:34.106812 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T01:00:34.106841 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:34.107087 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T01:00:34.107128 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:34.107339 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T01:00:34.107368 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:35.885132 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.24 ms +I, [2018-07-25T01:00:35.885201 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:00:35.885548 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-07-25T01:00:35.885598 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:00:35.885952 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-07-25T01:00:35.885998 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:00:35.886333 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-07-25T01:00:35.886381 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:00:35.886713 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-07-25T01:00:35.886800 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:00:35.892572 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.23 ms +I, [2018-07-25T01:00:35.892639 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:00:35.893008 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-07-25T01:00:35.893051 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:00:35.893364 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-07-25T01:00:35.893408 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:00:35.893734 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-07-25T01:00:35.893779 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:00:35.894095 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-07-25T01:00:35.894140 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:00:35.894489 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-07-25T01:00:35.894537 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:00:36.108110 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T01:00:36.108158 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:36.108404 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T01:00:36.108435 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:36.108645 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T01:00:36.108674 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:36.108934 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T01:00:36.108961 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:36.109170 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T01:00:36.109201 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:36.109701 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-07-25T01:00:36.109742 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:36.109987 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T01:00:36.110014 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:36.110251 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T01:00:36.110282 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:36.110492 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T01:00:36.110531 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:36.110746 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T01:00:36.110776 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:36.111006 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T01:00:36.111036 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:36.111303 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T01:00:36.111348 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:36.112642 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.68 ms +I, [2018-07-25T01:00:36.112709 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:36.113845 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.65 ms +I, [2018-07-25T01:00:36.113898 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:36.114792 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.71 ms +I, [2018-07-25T01:00:36.117638 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:36.118037 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T01:00:36.118980 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:36.119464 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T01:00:36.119546 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:36.119892 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T01:00:36.121295 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:36.121816 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T01:00:36.121902 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:36.122270 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T01:00:36.122320 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:36.122694 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T01:00:36.122815 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:37.895677 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.41 ms +I, [2018-07-25T01:00:37.895731 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:00:37.896005 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-07-25T01:00:37.896042 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:00:37.896271 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T01:00:37.896300 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:00:37.896513 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T01:00:37.896542 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:00:37.896750 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-07-25T01:00:37.896779 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:00:37.897018 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-07-25T01:00:37.897048 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:00:37.898090 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.25 ms +I, [2018-07-25T01:00:37.898130 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:00:37.898351 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-07-25T01:00:37.898404 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:00:37.898620 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T01:00:37.898649 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:00:37.898918 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-07-25T01:00:37.898949 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:00:37.900778 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-07-25T01:00:37.901550 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:00:37.901963 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-07-25T01:00:37.902002 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:00:37.902201 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-07-25T01:00:37.902258 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:00:37.902463 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-07-25T01:00:37.902494 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:00:37.902724 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-07-25T01:00:37.902755 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:00:37.902986 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-07-25T01:00:37.903015 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:00:37.913902 #5] INFO -- : Inline processing of topic course_change with 1 messages took 10.76 ms +I, [2018-07-25T01:00:37.913984 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:00:37.915876 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.23 ms +I, [2018-07-25T01:00:37.915940 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:00:37.917690 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.76 ms +I, [2018-07-25T01:00:37.918329 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:00:38.123638 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T01:00:38.123687 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:38.123945 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T01:00:38.123977 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:38.124206 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T01:00:38.124236 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:38.124478 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T01:00:38.124614 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:38.125035 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T01:00:38.125090 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:38.125464 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T01:00:38.125516 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:38.125778 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T01:00:38.125809 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:38.126030 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T01:00:38.126059 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:38.126311 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T01:00:38.126342 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:38.127979 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-25T01:00:38.128214 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:38.128651 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T01:00:38.128785 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:38.131718 #5] INFO -- : Inline processing of topic section_change with 1 messages took 2.32 ms +I, [2018-07-25T01:00:38.131786 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:38.140328 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-25T01:00:38.145760 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:38.146153 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T01:00:38.146186 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:38.147308 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T01:00:38.147399 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:38.148567 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.63 ms +I, [2018-07-25T01:00:38.148610 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:38.149633 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-25T01:00:38.149705 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:38.153106 #5] INFO -- : Inline processing of topic section_change with 1 messages took 3.21 ms +I, [2018-07-25T01:00:38.154575 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:38.154949 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T01:00:38.156847 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:38.157179 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T01:00:38.157236 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:38.160433 #5] INFO -- : Inline processing of topic section_change with 1 messages took 3.06 ms +I, [2018-07-25T01:00:38.160608 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:39.942017 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.25 ms +I, [2018-07-25T01:00:39.942086 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:00:39.942530 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-07-25T01:00:39.942594 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:00:39.943004 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-07-25T01:00:39.943053 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:00:39.943430 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-07-25T01:00:39.943507 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:00:39.943921 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-07-25T01:00:39.944001 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:00:39.944290 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-07-25T01:00:39.944321 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:00:39.944537 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T01:00:39.944566 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:00:39.944776 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-07-25T01:00:39.944805 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:00:39.945009 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-07-25T01:00:39.945042 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:00:39.945246 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-07-25T01:00:39.945274 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:00:39.948737 #5] INFO -- : Inline processing of topic course_change with 1 messages took 3.26 ms +I, [2018-07-25T01:00:39.948803 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:00:39.949303 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.24 ms +I, [2018-07-25T01:00:39.953632 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:00:39.960906 #5] INFO -- : Inline processing of topic course_change with 1 messages took 1.58 ms +I, [2018-07-25T01:00:39.961548 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:00:39.963876 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.74 ms +I, [2018-07-25T01:00:39.964410 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:00:39.966352 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.77 ms +I, [2018-07-25T01:00:39.966417 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:00:39.968853 #5] INFO -- : Inline processing of topic course_change with 1 messages took 1.59 ms +I, [2018-07-25T01:00:39.968938 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:00:39.972853 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.23 ms +I, [2018-07-25T01:00:39.973029 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:00:39.973549 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.23 ms +I, [2018-07-25T01:00:39.973640 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:00:39.974023 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-07-25T01:00:39.974069 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:00:40.169855 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-07-25T01:00:40.169931 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:40.170332 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T01:00:40.170387 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:40.171089 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.48 ms +I, [2018-07-25T01:00:40.176967 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:40.177737 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T01:00:40.177794 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:40.178233 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T01:00:40.178286 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:40.178665 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T01:00:40.178715 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:40.220865 #5] INFO -- : Inline processing of topic section_change with 1 messages took 41.89 ms +I, [2018-07-25T01:00:40.220949 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:40.221364 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T01:00:40.221407 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:40.221655 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T01:00:40.221690 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:40.221936 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T01:00:40.221968 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:40.222196 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T01:00:40.242624 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:40.243293 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-07-25T01:00:40.243349 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:40.243729 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T01:00:40.243786 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:40.255295 #5] INFO -- : Inline processing of topic section_change with 1 messages took 11.28 ms +I, [2018-07-25T01:00:40.255404 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:40.255899 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-25T01:00:40.255948 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:40.258736 #5] INFO -- : Inline processing of topic section_change with 1 messages took 2.57 ms +I, [2018-07-25T01:00:40.258808 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:40.271112 #5] INFO -- : Inline processing of topic section_change with 1 messages took 10.01 ms +I, [2018-07-25T01:00:40.271274 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:40.282896 #5] INFO -- : Inline processing of topic section_change with 1 messages took 11.18 ms +I, [2018-07-25T01:00:40.283060 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:40.283629 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-25T01:00:40.283696 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:41.974996 #5] INFO -- : Committing offsets: course_change/0:67 +I, [2018-07-25T01:00:41.982282 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-07-25T01:00:41.982331 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:00:41.982568 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T01:00:41.982599 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:00:41.982817 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T01:00:41.982847 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:00:41.983063 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T01:00:41.983093 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:00:41.983402 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-07-25T01:00:41.983441 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:00:41.983716 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-07-25T01:00:41.983748 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:00:41.984000 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T01:00:41.984028 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:00:41.984239 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-07-25T01:00:41.984263 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:00:41.984526 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T01:00:41.984925 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:00:41.985457 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-07-25T01:00:41.985517 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:00:41.985881 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-07-25T01:00:41.985931 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:00:42.284798 #5] INFO -- : Committing offsets: section_change/0:115 +I, [2018-07-25T01:00:42.290719 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-25T01:00:42.290778 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:42.291124 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T01:00:42.291169 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:42.291488 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T01:00:42.291532 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:42.291917 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T01:00:42.291967 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:42.292290 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T01:00:42.292336 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:42.292687 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T01:00:42.292731 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:42.293089 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T01:00:42.293123 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:42.293629 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T01:00:42.293702 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:42.293987 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T01:00:42.294020 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:42.294240 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T01:00:42.294269 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:42.294519 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T01:00:42.294550 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:42.295136 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.46 ms +I, [2018-07-25T01:00:42.295180 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:42.297625 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T01:00:42.297668 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:42.297911 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T01:00:42.297964 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:42.298175 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T01:00:42.298205 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:42.298451 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T01:00:42.298493 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:42.300423 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.03 ms +I, [2018-07-25T01:00:42.300469 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:42.300755 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T01:00:42.300788 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:42.301003 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T01:00:42.301029 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:42.301235 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T01:00:42.301263 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:42.301921 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T01:00:42.301978 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:42.307243 #5] INFO -- : Inline processing of topic section_change with 1 messages took 5.0 ms +I, [2018-07-25T01:00:42.307705 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:42.308156 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T01:00:42.308238 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:42.308582 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T01:00:42.308626 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:43.987743 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-07-25T01:00:43.987794 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:00:43.988043 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-07-25T01:00:43.988074 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:00:43.988291 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T01:00:43.988322 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:00:43.988713 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-07-25T01:00:43.988746 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:00:43.989032 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-07-25T01:00:43.989069 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:00:43.989264 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-07-25T01:00:43.989307 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:00:43.989900 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-07-25T01:00:43.989977 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:00:43.990340 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-07-25T01:00:43.990414 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:00:43.990770 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-07-25T01:00:43.990821 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:00:43.991159 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-07-25T01:00:43.991248 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:00:43.993562 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.23 ms +I, [2018-07-25T01:00:43.993608 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:00:43.993977 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-07-25T01:00:43.994028 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:00:43.994270 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-07-25T01:00:43.994300 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:00:44.309428 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T01:00:44.309477 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:44.309745 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T01:00:44.309826 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:44.310375 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-07-25T01:00:44.310455 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:44.310733 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T01:00:44.310777 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:44.311022 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T01:00:44.311046 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:44.311283 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T01:00:44.311312 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:44.311539 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T01:00:44.311574 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:44.312093 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-07-25T01:00:44.312154 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:44.312563 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T01:00:44.312613 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:44.315316 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-07-25T01:00:44.315443 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:44.316514 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.76 ms +I, [2018-07-25T01:00:44.316562 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:44.316860 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T01:00:44.316891 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:44.317160 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T01:00:44.317191 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:44.320245 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.84 ms +I, [2018-07-25T01:00:44.320363 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:44.320932 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-07-25T01:00:44.320999 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:44.329846 #5] INFO -- : Inline processing of topic section_change with 1 messages took 8.57 ms +I, [2018-07-25T01:00:44.331631 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:44.332673 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T01:00:44.332725 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:44.332957 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T01:00:44.332987 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:44.333210 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T01:00:44.333239 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:44.333451 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T01:00:44.333480 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:45.995371 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-07-25T01:00:45.995424 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:00:45.995671 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T01:00:45.995703 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:00:45.995944 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T01:00:45.995976 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:00:45.996242 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-07-25T01:00:45.996275 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:00:45.996532 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-07-25T01:00:45.996567 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:00:45.996777 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T01:00:45.996804 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:00:45.997261 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.23 ms +I, [2018-07-25T01:00:45.997310 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:00:45.997641 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-07-25T01:00:45.997685 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:00:45.997989 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T01:00:45.998032 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:00:45.998398 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-07-25T01:00:45.998491 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:00:45.999473 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.78 ms +I, [2018-07-25T01:00:45.999919 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:00:46.000599 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.25 ms +I, [2018-07-25T01:00:46.000643 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:00:46.000909 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T01:00:46.000940 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:00:46.001169 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T01:00:46.001200 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:00:46.001417 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T01:00:46.001478 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:00:46.001694 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T01:00:46.001719 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:00:46.003029 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.25 ms +I, [2018-07-25T01:00:46.003158 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:00:46.003566 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-07-25T01:00:46.003618 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:00:46.004038 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.24 ms +I, [2018-07-25T01:00:46.004088 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:00:46.004434 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-07-25T01:00:46.004479 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:00:46.004796 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-07-25T01:00:46.004843 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:00:46.005160 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-07-25T01:00:46.005211 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:00:46.005535 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-07-25T01:00:46.005580 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:00:46.334697 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T01:00:46.334749 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:46.334995 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T01:00:46.335042 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:46.335301 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T01:00:46.335367 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:46.335949 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.46 ms +I, [2018-07-25T01:00:46.335988 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:46.336294 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T01:00:46.336329 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:46.336616 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T01:00:46.336651 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:46.336886 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T01:00:46.336918 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:46.337147 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T01:00:46.337178 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:46.337407 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T01:00:46.337455 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:46.341455 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T01:00:46.341500 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:46.341858 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T01:00:46.341897 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:46.342148 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T01:00:46.342181 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:46.342406 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T01:00:46.342438 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:46.342664 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T01:00:46.342694 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:46.344162 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-07-25T01:00:46.344228 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:46.344646 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T01:00:46.344688 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:46.345052 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T01:00:46.345250 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:46.345714 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T01:00:46.345770 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:46.346150 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T01:00:46.346215 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:46.346564 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T01:00:46.346614 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:46.347366 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T01:00:46.347433 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:46.347769 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T01:00:46.347807 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:46.348111 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T01:00:46.348152 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:46.348394 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T01:00:46.348423 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:48.008887 #5] INFO -- : Inline processing of topic course_change with 1 messages took 1.07 ms +I, [2018-07-25T01:00:48.009043 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:00:48.012878 #5] INFO -- : Inline processing of topic course_change with 1 messages took 3.57 ms +I, [2018-07-25T01:00:48.013349 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:00:48.017707 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.42 ms +I, [2018-07-25T01:00:48.017775 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:00:48.018181 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-07-25T01:00:48.018226 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:00:48.018558 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-07-25T01:00:48.018602 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:00:48.021477 #5] INFO -- : Inline processing of topic course_change with 1 messages took 2.2 ms +I, [2018-07-25T01:00:48.021766 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:00:48.022254 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-07-25T01:00:48.022312 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:00:48.022674 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-07-25T01:00:48.022724 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:00:48.023081 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-07-25T01:00:48.023129 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:00:48.023466 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-07-25T01:00:48.023530 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:00:48.023836 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-07-25T01:00:48.023892 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:00:48.032205 #5] INFO -- : Inline processing of topic course_change with 1 messages took 8.12 ms +I, [2018-07-25T01:00:48.032282 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:00:48.032751 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-07-25T01:00:48.032811 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:00:48.037787 #5] INFO -- : Inline processing of topic course_change with 1 messages took 4.72 ms +I, [2018-07-25T01:00:48.037861 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:00:48.039524 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.25 ms +I, [2018-07-25T01:00:48.042224 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:00:48.349154 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T01:00:48.349203 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:48.349436 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T01:00:48.349468 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:48.349748 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T01:00:48.349779 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:48.350010 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T01:00:48.350040 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:48.350265 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T01:00:48.350294 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:48.350529 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T01:00:48.350558 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:48.350781 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T01:00:48.351446 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:48.351917 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T01:00:48.351954 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:48.352239 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T01:00:48.352270 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:48.352953 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.49 ms +I, [2018-07-25T01:00:48.353035 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:48.353409 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T01:00:48.353459 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:48.356097 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T01:00:48.356199 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:48.358736 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.43 ms +I, [2018-07-25T01:00:48.358798 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:48.359194 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T01:00:48.359241 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:48.359576 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T01:00:48.359623 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:48.362338 #5] INFO -- : Inline processing of topic section_change with 1 messages took 2.42 ms +I, [2018-07-25T01:00:48.362410 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:50.051034 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.26 ms +I, [2018-07-25T01:00:50.051109 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:00:50.051493 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-07-25T01:00:50.051547 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:00:50.051902 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-07-25T01:00:50.051953 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:00:50.052350 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-07-25T01:00:50.052397 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:00:50.054242 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.24 ms +I, [2018-07-25T01:00:50.054310 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:00:50.054708 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-07-25T01:00:50.054759 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:00:50.055102 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-07-25T01:00:50.055154 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:00:50.055453 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T01:00:50.055529 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:00:50.056029 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.23 ms +I, [2018-07-25T01:00:50.056113 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:00:50.056546 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-07-25T01:00:50.056600 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:00:50.056964 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-07-25T01:00:50.057018 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:00:50.057418 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-07-25T01:00:50.057474 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:00:50.058149 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-07-25T01:00:50.058208 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:00:50.058624 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-07-25T01:00:50.058770 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:00:50.375704 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.89 ms +I, [2018-07-25T01:00:50.375790 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:50.376131 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T01:00:50.376162 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:50.376390 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T01:00:50.376419 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:50.376639 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T01:00:50.376668 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:50.376888 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T01:00:50.376938 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:50.377129 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T01:00:50.377180 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:50.377418 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T01:00:50.377449 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:50.377656 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T01:00:50.377685 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:50.377892 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T01:00:50.377920 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:50.378128 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T01:00:50.378157 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:50.378365 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T01:00:50.378424 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:50.382635 #5] INFO -- : Inline processing of topic section_change with 1 messages took 4.01 ms +I, [2018-07-25T01:00:50.382717 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:50.383092 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T01:00:50.383124 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:50.386653 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T01:00:50.386698 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:50.386954 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T01:00:50.386985 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:50.387269 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T01:00:50.387345 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:52.064544 #5] INFO -- : Committing offsets: course_change/0:143 +I, [2018-07-25T01:00:52.067280 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.24 ms +I, [2018-07-25T01:00:52.067353 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:00:52.067785 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-07-25T01:00:52.067841 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:00:52.068247 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-07-25T01:00:52.068373 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:00:52.068809 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-07-25T01:00:52.068865 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:00:52.069264 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-07-25T01:00:52.069313 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:00:52.069799 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.3 ms +I, [2018-07-25T01:00:52.069864 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:00:52.070433 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-07-25T01:00:52.070486 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:00:52.070855 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-07-25T01:00:52.070904 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:00:52.389750 #5] INFO -- : Committing offsets: section_change/0:215 +I, [2018-07-25T01:00:52.404156 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T01:00:52.404207 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:52.404514 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T01:00:52.404546 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:52.404806 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T01:00:52.404853 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:52.405068 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T01:00:52.405104 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:52.405332 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T01:00:52.405373 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:52.405602 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T01:00:52.405642 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:52.405869 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T01:00:52.405906 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:52.406144 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T01:00:52.406178 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:52.406588 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-25T01:00:52.406690 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:52.407301 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.43 ms +I, [2018-07-25T01:00:52.407341 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:52.407609 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T01:00:52.407640 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:52.407868 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T01:00:52.408054 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:52.408357 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T01:00:52.408393 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:52.410249 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.7 ms +I, [2018-07-25T01:00:52.410308 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:52.410765 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T01:00:52.410822 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:52.411399 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-07-25T01:00:52.411538 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:52.411927 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T01:00:52.411974 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:52.412333 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T01:00:52.412383 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:52.412734 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T01:00:52.412784 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:52.413175 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T01:00:52.413226 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:52.419047 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-25T01:00:52.419096 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:52.419354 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T01:00:52.419384 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:52.419604 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T01:00:52.419634 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:52.419982 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T01:00:52.420020 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:52.420287 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T01:00:52.422583 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:52.422922 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T01:00:52.422955 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:54.071758 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-07-25T01:00:54.071810 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:00:54.072093 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-07-25T01:00:54.072155 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:00:54.072393 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-07-25T01:00:54.072424 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:00:54.072645 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-07-25T01:00:54.072676 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:00:54.072934 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T01:00:54.072984 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:00:54.075210 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.35 ms +I, [2018-07-25T01:00:54.075269 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:00:54.075655 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-07-25T01:00:54.075705 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:00:54.077602 #5] INFO -- : Inline processing of topic course_change with 1 messages took 1.31 ms +I, [2018-07-25T01:00:54.077662 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:00:54.077982 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-07-25T01:00:54.078014 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:00:54.078244 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T01:00:54.078650 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:00:54.079217 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.38 ms +I, [2018-07-25T01:00:54.079263 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:00:54.079516 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-07-25T01:00:54.079547 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:00:54.079737 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-07-25T01:00:54.079782 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:00:54.079992 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-07-25T01:00:54.080021 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:00:54.080206 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-07-25T01:00:54.080254 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:00:54.080478 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T01:00:54.081376 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:00:54.082822 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.42 ms +I, [2018-07-25T01:00:54.082891 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:00:54.423810 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-07-25T01:00:54.423880 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:54.424319 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-25T01:00:54.424380 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:54.424751 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T01:00:54.424804 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:54.425166 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T01:00:54.425208 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:54.425467 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T01:00:54.425499 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:54.426278 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T01:00:54.426318 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:54.426583 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T01:00:54.426663 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:54.426875 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T01:00:54.426927 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:54.427167 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T01:00:54.427203 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:54.427457 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T01:00:54.427489 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:54.427750 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T01:00:54.427781 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:54.428019 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T01:00:54.428050 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:54.428294 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T01:00:54.428330 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:54.430176 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-25T01:00:54.430228 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:54.430525 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T01:00:54.430563 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:54.431371 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.63 ms +I, [2018-07-25T01:00:54.431425 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:54.432223 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.55 ms +I, [2018-07-25T01:00:54.432280 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:54.432720 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T01:00:54.432758 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:54.436716 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T01:00:54.436765 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:54.437086 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T01:00:54.437136 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:54.438441 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-07-25T01:00:54.438547 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:56.084389 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-07-25T01:00:56.084443 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:00:56.084766 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-07-25T01:00:56.084819 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:00:56.085207 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-07-25T01:00:56.085247 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:00:56.085494 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T01:00:56.085527 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:00:56.085765 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T01:00:56.085797 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:00:56.086031 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-07-25T01:00:56.086063 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:00:56.086308 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T01:00:56.086360 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:00:56.439887 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.44 ms +I, [2018-07-25T01:00:56.440015 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:56.440626 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-07-25T01:00:56.440678 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:56.440969 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T01:00:56.441003 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:56.441291 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T01:00:56.442445 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:56.443288 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.4 ms +I, [2018-07-25T01:00:56.443355 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:56.443805 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T01:00:56.443862 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:56.444899 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.79 ms +I, [2018-07-25T01:00:56.444970 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:56.448673 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-07-25T01:00:56.448761 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:56.449106 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T01:00:56.449148 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:56.449433 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T01:00:56.449480 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:56.454781 #5] INFO -- : Inline processing of topic section_change with 1 messages took 5.09 ms +I, [2018-07-25T01:00:56.454832 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:56.455133 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T01:00:56.455189 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:56.455429 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T01:00:56.455461 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:56.455678 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T01:00:56.455726 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:56.457390 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.47 ms +I, [2018-07-25T01:00:56.463173 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:56.463646 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T01:00:56.463691 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:56.464013 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T01:00:56.464139 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:56.464602 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-25T01:00:56.464649 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:56.466874 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T01:00:56.466939 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:56.467304 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T01:00:56.467355 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:58.089920 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.35 ms +I, [2018-07-25T01:00:58.089975 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:00:58.090253 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-07-25T01:00:58.090286 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:00:58.090524 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T01:00:58.090556 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:00:58.091964 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.25 ms +I, [2018-07-25T01:00:58.092029 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:00:58.468523 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-25T01:00:58.468584 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:58.469073 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-25T01:00:58.470457 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:58.471014 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-25T01:00:58.473070 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:58.473725 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-25T01:00:58.473782 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:58.474192 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T01:00:58.474265 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:58.474631 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T01:00:58.474692 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:58.475033 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T01:00:58.475073 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:58.475392 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T01:00:58.475430 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:58.476829 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-07-25T01:00:58.476923 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:58.477323 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T01:00:58.477372 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:58.477716 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T01:00:58.477799 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:58.478586 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.59 ms +I, [2018-07-25T01:00:58.479640 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:58.480173 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T01:00:58.480228 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:58.480605 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T01:00:58.480653 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:00:58.481155 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-25T01:00:58.481231 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:00.096043 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-07-25T01:01:00.096091 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:01:00.489659 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-07-25T01:01:00.489711 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:00.490003 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T01:01:00.490033 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:00.490288 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T01:01:00.490318 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:00.490540 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T01:01:00.490569 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:00.490819 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T01:01:00.490850 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:00.492248 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-07-25T01:01:00.492289 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:00.492550 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T01:01:00.492579 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:00.493063 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-07-25T01:01:00.493581 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:00.494677 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.76 ms +I, [2018-07-25T01:01:00.494740 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:00.495109 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T01:01:00.495144 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:00.495398 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T01:01:00.495429 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:02.097246 #5] INFO -- : Committing offsets: course_change/0:180 +I, [2018-07-25T01:01:02.103292 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-07-25T01:01:02.103341 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:01:02.103568 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T01:01:02.103598 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:01:02.103834 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T01:01:02.103947 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:01:02.104953 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-07-25T01:01:02.104991 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:01:02.105226 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T01:01:02.105256 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:01:02.105479 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-07-25T01:01:02.105509 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:01:02.105727 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T01:01:02.105757 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:01:02.106038 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-07-25T01:01:02.106103 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:01:02.106635 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.35 ms +I, [2018-07-25T01:01:02.106690 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:01:02.107051 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-07-25T01:01:02.107100 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:01:02.107559 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.25 ms +I, [2018-07-25T01:01:02.107641 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:01:02.495803 #5] INFO -- : Committing offsets: section_change/0:308 +I, [2018-07-25T01:01:02.511627 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.59 ms +I, [2018-07-25T01:01:02.512496 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:02.512998 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T01:01:02.513075 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:02.514557 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.62 ms +I, [2018-07-25T01:01:02.514606 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:02.516636 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-25T01:01:02.516708 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:02.517160 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T01:01:02.517241 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:02.521928 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-07-25T01:01:02.522593 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:02.523765 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-25T01:01:02.523841 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:02.524245 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T01:01:02.524308 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:02.524670 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T01:01:02.524728 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:02.529312 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-07-25T01:01:02.529433 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:02.529876 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T01:01:02.530054 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:02.530683 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T01:01:02.530723 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:02.531045 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T01:01:02.531081 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:04.108950 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.38 ms +I, [2018-07-25T01:01:04.109026 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:01:04.109399 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-07-25T01:01:04.109443 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:01:04.109798 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-07-25T01:01:04.109848 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:01:04.110137 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-07-25T01:01:04.110178 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:01:04.110481 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-07-25T01:01:04.110524 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:01:04.110835 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-07-25T01:01:04.110878 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:01:04.111286 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.25 ms +I, [2018-07-25T01:01:04.111336 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:01:04.111658 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-07-25T01:01:04.111699 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:01:04.111976 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T01:01:04.112040 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:01:04.112448 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-07-25T01:01:04.112488 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:01:04.112826 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-07-25T01:01:04.112869 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:01:04.114351 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-07-25T01:01:04.114407 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:01:04.114725 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T01:01:04.114766 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:01:04.115083 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T01:01:04.115125 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:01:04.115424 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T01:01:04.115464 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:01:04.117130 #5] INFO -- : Inline processing of topic course_change with 1 messages took 1.43 ms +I, [2018-07-25T01:01:04.117199 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:01:04.117594 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-07-25T01:01:04.117646 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:01:04.118067 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.24 ms +I, [2018-07-25T01:01:04.118106 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:01:04.532591 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-07-25T01:01:04.532663 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:04.533069 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T01:01:04.533120 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:04.533514 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T01:01:04.533558 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:04.533901 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T01:01:04.533996 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:04.536311 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-07-25T01:01:04.536455 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:04.537174 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T01:01:04.537227 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:04.542184 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T01:01:04.542235 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:04.542499 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T01:01:04.542533 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:04.542760 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T01:01:04.542792 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:04.543161 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T01:01:04.543206 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:04.543519 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T01:01:04.543559 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:04.543840 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T01:01:04.543876 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:04.544155 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T01:01:04.544186 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:04.544411 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T01:01:04.544459 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:04.544736 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T01:01:04.545768 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:04.546508 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-07-25T01:01:04.551759 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:04.552374 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T01:01:04.552429 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:04.553105 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.5 ms +I, [2018-07-25T01:01:04.556629 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:04.557028 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T01:01:04.557061 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:04.557292 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T01:01:04.557321 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:04.557537 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T01:01:04.557566 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:04.557787 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T01:01:04.557815 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:04.558026 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T01:01:04.558054 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:04.558265 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T01:01:04.558294 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:04.558509 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T01:01:04.558538 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:04.564391 #5] INFO -- : Inline processing of topic section_change with 1 messages took 3.18 ms +I, [2018-07-25T01:01:04.564463 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:04.564906 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T01:01:04.564961 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:04.565352 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T01:01:04.565404 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:04.565772 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T01:01:04.565823 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:04.566600 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.49 ms +I, [2018-07-25T01:01:04.566663 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:06.119697 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.26 ms +I, [2018-07-25T01:01:06.119762 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:01:06.120135 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-07-25T01:01:06.120178 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:01:06.121539 #5] INFO -- : Inline processing of topic course_change with 1 messages took 1.11 ms +I, [2018-07-25T01:01:06.121599 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:01:06.122026 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-07-25T01:01:06.122071 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:01:06.122396 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-07-25T01:01:06.122448 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:01:06.123043 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-07-25T01:01:06.123114 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:01:06.123530 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-07-25T01:01:06.139032 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:01:06.569619 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.64 ms +I, [2018-07-25T01:01:06.569672 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:06.569936 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T01:01:06.569967 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:06.570209 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T01:01:06.570239 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:06.570456 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T01:01:06.570515 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:06.570703 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T01:01:06.570764 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:06.570946 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T01:01:06.571415 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:06.571680 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T01:01:06.572144 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:06.573341 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.43 ms +I, [2018-07-25T01:01:06.573388 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:06.573844 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T01:01:06.573913 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:06.574483 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T01:01:06.574545 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:06.574970 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T01:01:06.575025 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:06.575464 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-25T01:01:06.577302 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:06.577755 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T01:01:06.577797 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:06.578131 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T01:01:06.579196 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:06.584736 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T01:01:06.584788 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:06.585167 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T01:01:06.585210 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:06.585527 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T01:01:06.585568 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:06.585834 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T01:01:06.586094 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:06.586633 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-07-25T01:01:06.586729 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:06.587083 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T01:01:06.587125 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:06.587441 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T01:01:06.587481 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:06.587750 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T01:01:06.587789 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:06.588119 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T01:01:06.588296 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:06.594134 #5] INFO -- : Inline processing of topic section_change with 1 messages took 3.23 ms +I, [2018-07-25T01:01:06.594280 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:06.594804 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T01:01:06.594857 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:06.595229 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T01:01:06.595279 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:06.595626 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T01:01:06.595673 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:06.596805 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.51 ms +I, [2018-07-25T01:01:06.596848 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:06.597118 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T01:01:06.597149 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:06.597386 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T01:01:06.597416 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:06.597712 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T01:01:06.597771 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:06.598372 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T01:01:06.598434 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:06.598722 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T01:01:06.598753 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:06.604443 #5] INFO -- : Inline processing of topic section_change with 1 messages took 4.19 ms +I, [2018-07-25T01:01:06.604639 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:08.143940 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.58 ms +I, [2018-07-25T01:01:08.144006 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:01:08.144400 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-07-25T01:01:08.144444 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:01:08.144763 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-07-25T01:01:08.144859 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:01:08.605385 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-25T01:01:08.605435 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:08.605699 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T01:01:08.605744 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:08.606044 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T01:01:08.606100 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:08.606317 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T01:01:08.606347 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:08.606548 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-25T01:01:08.606576 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:08.607861 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T01:01:08.607904 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:10.282085 #5] INFO -- : Inline processing of topic course_change with 1 messages took 4.77 ms +I, [2018-07-25T01:01:10.282178 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:01:10.282644 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-07-25T01:01:10.282690 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:01:10.283037 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-07-25T01:01:10.283079 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:01:10.283430 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-07-25T01:01:10.283479 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:01:10.283913 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-07-25T01:01:10.283968 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:01:10.285024 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-07-25T01:01:10.285106 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:01:10.288073 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.45 ms +I, [2018-07-25T01:01:10.288149 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:01:10.288703 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.25 ms +I, [2018-07-25T01:01:10.288760 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:01:10.672096 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-07-25T01:01:10.672152 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:10.672460 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T01:01:10.672496 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:10.673130 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.4 ms +I, [2018-07-25T01:01:10.673212 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:10.674765 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T01:01:10.674874 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:10.675201 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T01:01:10.675266 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:10.675518 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T01:01:10.675580 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:10.689056 #5] INFO -- : Inline processing of topic section_change with 1 messages took 13.24 ms +I, [2018-07-25T01:01:10.689132 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:12.289402 #5] INFO -- : Committing offsets: course_change/0:227 +I, [2018-07-25T01:01:12.362452 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.94 ms +I, [2018-07-25T01:01:12.362522 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:01:12.363772 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.41 ms +I, [2018-07-25T01:01:12.363890 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:01:12.690409 #5] INFO -- : Committing offsets: section_change/0:398 +I, [2018-07-25T01:01:12.715643 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.78 ms +I, [2018-07-25T01:01:12.715766 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:12.716373 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-07-25T01:01:12.716418 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:12.716891 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-07-25T01:01:12.716955 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:14.365077 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.36 ms +I, [2018-07-25T01:01:14.365147 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:01:14.365527 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-07-25T01:01:14.365604 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:01:14.365903 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-07-25T01:01:14.365963 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:01:14.366188 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T01:01:14.366219 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:01:14.366470 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-07-25T01:01:14.366513 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:01:14.367197 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.55 ms +I, [2018-07-25T01:01:14.367298 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:01:14.414094 #5] INFO -- : Inline processing of topic course_change with 1 messages took 46.49 ms +I, [2018-07-25T01:01:14.414160 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:01:14.414609 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-07-25T01:01:14.414644 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:01:14.415018 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.24 ms +I, [2018-07-25T01:01:14.415051 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:01:14.415407 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-07-25T01:01:14.415534 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:01:14.415811 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-07-25T01:01:14.415846 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:01:14.718112 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-25T01:01:14.718161 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:14.718454 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T01:01:14.718486 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:14.718768 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T01:01:14.718825 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:14.719060 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T01:01:14.719086 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:14.720413 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T01:01:14.720454 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:14.720707 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T01:01:14.720740 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:14.721181 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T01:01:14.721234 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:14.721677 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T01:01:14.721728 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:14.722122 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T01:01:14.722173 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:14.722544 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T01:01:14.722595 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:14.723034 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T01:01:14.723096 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:14.723501 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T01:01:14.723630 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:14.724161 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-07-25T01:01:14.724212 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:16.416849 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.3 ms +I, [2018-07-25T01:01:16.416919 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:01:16.417280 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-07-25T01:01:16.417397 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:01:16.417918 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.25 ms +I, [2018-07-25T01:01:16.417988 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:01:16.418452 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.24 ms +I, [2018-07-25T01:01:16.418522 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:01:16.418978 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-07-25T01:01:16.419044 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:01:16.419632 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.33 ms +I, [2018-07-25T01:01:16.419700 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:01:16.420613 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.26 ms +I, [2018-07-25T01:01:16.420693 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:01:16.422309 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.25 ms +I, [2018-07-25T01:01:16.422447 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:01:16.424313 #5] INFO -- : Inline processing of topic course_change with 1 messages took 1.58 ms +I, [2018-07-25T01:01:16.424361 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:01:16.725279 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.48 ms +I, [2018-07-25T01:01:16.725360 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:16.727602 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.49 ms +I, [2018-07-25T01:01:16.727677 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:16.729109 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.5 ms +I, [2018-07-25T01:01:16.730534 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:16.732341 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T01:01:16.732399 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:16.734217 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.58 ms +I, [2018-07-25T01:01:16.734292 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:16.739807 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-25T01:01:16.739867 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:16.743726 #5] INFO -- : Inline processing of topic section_change with 1 messages took 2.96 ms +I, [2018-07-25T01:01:16.743840 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:16.744528 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-07-25T01:01:16.744582 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:16.744946 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T01:01:16.744997 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:16.746475 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T01:01:16.746560 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:16.746989 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T01:01:16.747041 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:16.747602 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T01:01:16.747650 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:16.749944 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T01:01:16.750020 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:16.750531 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T01:01:16.750664 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:16.752548 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.12 ms +I, [2018-07-25T01:01:16.752669 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:16.753013 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T01:01:16.753069 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:16.753398 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T01:01:16.753634 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:16.754091 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T01:01:16.754133 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:16.754443 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T01:01:16.755931 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:16.759964 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T01:01:16.760770 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:16.763249 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-07-25T01:01:16.764539 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:16.764960 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T01:01:16.765005 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:16.765317 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T01:01:16.770728 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:16.771185 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T01:01:16.771242 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:16.771560 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T01:01:16.771614 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:16.771902 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T01:01:16.771943 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:16.772256 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T01:01:16.772297 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:16.772645 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T01:01:16.772711 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:16.773025 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T01:01:16.773066 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:16.773384 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T01:01:16.773425 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:16.773938 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-07-25T01:01:16.773999 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:16.774250 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T01:01:16.774280 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:16.774511 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T01:01:16.774541 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:16.774783 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T01:01:16.774814 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:16.775460 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.5 ms +I, [2018-07-25T01:01:16.775516 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:16.775800 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T01:01:16.775850 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:16.776168 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T01:01:16.776226 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:16.777153 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.73 ms +I, [2018-07-25T01:01:16.777242 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:16.777740 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-25T01:01:16.777798 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:16.778430 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.42 ms +I, [2018-07-25T01:01:16.778486 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:16.782621 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-25T01:01:16.784554 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:16.787337 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.95 ms +I, [2018-07-25T01:01:16.790874 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:16.791881 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.54 ms +I, [2018-07-25T01:01:16.792025 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:16.792551 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T01:01:16.792628 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:16.799990 #5] INFO -- : Inline processing of topic section_change with 1 messages took 7.09 ms +I, [2018-07-25T01:01:16.800106 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:16.803128 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-07-25T01:01:16.805375 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:16.807721 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.92 ms +I, [2018-07-25T01:01:16.808274 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:16.814072 #5] INFO -- : Inline processing of topic section_change with 1 messages took 3.84 ms +I, [2018-07-25T01:01:16.814157 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:18.425629 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.38 ms +I, [2018-07-25T01:01:18.425706 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:01:18.426085 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-07-25T01:01:18.426138 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:01:18.426599 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-07-25T01:01:18.426659 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:01:18.816433 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.41 ms +I, [2018-07-25T01:01:18.816504 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:18.816984 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T01:01:18.817021 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:18.817302 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T01:01:18.817344 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:18.817589 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T01:01:18.817635 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:18.819704 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-07-25T01:01:18.819771 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:18.820409 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-07-25T01:01:18.820563 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:18.820975 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T01:01:18.821018 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:18.821594 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-07-25T01:01:18.821647 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:18.822277 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-07-25T01:01:18.822340 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:18.823359 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.73 ms +I, [2018-07-25T01:01:18.823485 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:20.432353 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.27 ms +I, [2018-07-25T01:01:20.432428 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:01:20.432827 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-07-25T01:01:20.432876 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:01:20.433219 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-07-25T01:01:20.433262 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:01:20.827476 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T01:01:20.827526 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:20.828223 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-07-25T01:01:20.828298 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:20.828563 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T01:01:20.828622 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:20.829212 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.41 ms +I, [2018-07-25T01:01:20.829269 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:20.829670 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T01:01:20.829770 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:20.830277 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T01:01:20.830345 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:20.830883 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T01:01:20.830947 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:20.831647 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-07-25T01:01:20.831706 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:20.832370 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.41 ms +I, [2018-07-25T01:01:20.832429 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:20.832786 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T01:01:20.832821 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:20.833813 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.85 ms +I, [2018-07-25T01:01:20.833871 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:20.834417 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T01:01:20.834453 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:22.434447 #5] INFO -- : Committing offsets: course_change/0:255 +I, [2018-07-25T01:01:22.439787 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.43 ms +I, [2018-07-25T01:01:22.439863 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:01:22.440440 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-07-25T01:01:22.440503 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:01:22.440873 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-07-25T01:01:22.440980 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:01:22.441341 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-07-25T01:01:22.441389 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:01:22.441782 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-07-25T01:01:22.441837 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:01:22.442227 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-07-25T01:01:22.442271 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:01:22.442642 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-07-25T01:01:22.442699 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:01:22.443079 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-07-25T01:01:22.443124 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:01:22.443533 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-07-25T01:01:22.443630 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:01:22.449411 #5] INFO -- : Inline processing of topic course_change with 1 messages took 5.47 ms +I, [2018-07-25T01:01:22.449545 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:01:22.835225 #5] INFO -- : Committing offsets: section_change/0:484 +I, [2018-07-25T01:01:22.837949 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T01:01:22.838022 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:22.838361 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T01:01:22.838394 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:22.838797 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-07-25T01:01:22.838832 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:22.839096 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T01:01:22.839141 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:22.839402 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T01:01:22.840705 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:22.841130 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T01:01:22.841164 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:22.841414 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T01:01:22.841444 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:22.841674 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T01:01:22.841704 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:22.842704 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.86 ms +I, [2018-07-25T01:01:22.842747 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:22.843040 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T01:01:22.843071 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:22.843330 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T01:01:22.843360 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:24.450774 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.26 ms +I, [2018-07-25T01:01:24.450825 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:01:24.451077 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T01:01:24.451115 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:01:24.451396 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-07-25T01:01:24.451427 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:01:24.451662 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T01:01:24.451692 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:01:24.451937 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-07-25T01:01:24.451966 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:01:24.452197 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T01:01:24.452227 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:01:24.452461 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-07-25T01:01:24.452490 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:01:24.452729 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-07-25T01:01:24.452759 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:01:24.453119 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-07-25T01:01:24.453229 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:01:24.453461 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-07-25T01:01:24.453491 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:01:24.453799 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-07-25T01:01:24.453828 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:01:24.454173 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-07-25T01:01:24.454223 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:01:24.844516 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T01:01:24.844566 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:24.844840 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T01:01:24.844871 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:24.845095 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T01:01:24.845124 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:24.845356 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T01:01:24.845385 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:24.845629 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T01:01:24.845658 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:24.845886 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T01:01:24.845915 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:24.847048 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T01:01:24.847085 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:24.847346 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T01:01:24.847376 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:24.847608 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T01:01:24.847637 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:24.848034 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T01:01:24.848084 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:24.848439 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T01:01:24.848500 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:24.848844 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T01:01:24.848890 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:24.851380 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T01:01:24.851425 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:24.851683 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T01:01:24.851714 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:24.851945 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T01:01:24.851975 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:24.852198 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T01:01:24.852228 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:24.852684 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T01:01:24.852712 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:24.854341 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T01:01:24.854417 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:24.855662 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-07-25T01:01:24.855759 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:26.455129 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.24 ms +I, [2018-07-25T01:01:26.455197 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:01:26.455496 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-07-25T01:01:26.455530 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:01:26.455761 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T01:01:26.455792 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:01:26.456011 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-07-25T01:01:26.456040 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:01:26.456284 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T01:01:26.456314 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:01:26.456543 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-07-25T01:01:26.456573 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:01:26.456782 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-07-25T01:01:26.456829 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:01:26.457050 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T01:01:26.457081 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:01:26.457307 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-07-25T01:01:26.457336 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:01:26.457547 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-07-25T01:01:26.457576 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:01:26.457787 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-07-25T01:01:26.457825 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:01:26.458035 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-07-25T01:01:26.458064 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:01:26.458277 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-07-25T01:01:26.458308 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:01:26.458532 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T01:01:26.458563 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:01:26.458840 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-07-25T01:01:26.458871 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:01:26.459081 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-07-25T01:01:26.459110 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:01:26.459318 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-07-25T01:01:26.459355 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:01:26.459560 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-07-25T01:01:26.459588 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:01:26.459791 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-07-25T01:01:26.459845 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:01:26.857291 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T01:01:26.857342 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:26.857698 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T01:01:26.857733 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:26.857988 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T01:01:26.858018 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:26.858266 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T01:01:26.858296 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:26.858557 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T01:01:26.858587 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:26.859582 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T01:01:26.859631 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:26.859866 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T01:01:26.859898 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:26.860153 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T01:01:26.860194 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:26.860623 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-07-25T01:01:26.860666 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:26.863480 #5] INFO -- : Inline processing of topic section_change with 1 messages took 2.6 ms +I, [2018-07-25T01:01:26.863802 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:26.864308 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T01:01:26.864358 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:26.864722 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T01:01:26.864769 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:26.865028 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T01:01:26.865087 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:26.865615 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-07-25T01:01:26.865654 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:26.866182 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-07-25T01:01:26.866416 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:26.866697 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T01:01:26.866729 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:26.866963 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T01:01:26.867432 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:26.867714 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T01:01:26.867745 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:26.867991 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T01:01:26.868173 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:26.868570 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T01:01:26.868608 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:26.868821 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T01:01:26.868871 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:26.869383 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T01:01:26.869414 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:26.869625 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T01:01:26.869653 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:26.870056 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-25T01:01:26.870092 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:26.870349 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T01:01:26.870381 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:26.870608 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T01:01:26.870639 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:26.871531 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T01:01:26.871595 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:26.871995 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T01:01:26.872046 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:26.872391 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T01:01:26.872438 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:26.872778 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T01:01:26.872824 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:26.873157 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T01:01:26.873205 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:26.873551 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T01:01:26.873598 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:26.875029 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.23 ms +I, [2018-07-25T01:01:26.875098 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:26.875412 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T01:01:26.875444 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:26.875671 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T01:01:26.875701 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:26.875953 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T01:01:26.875990 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:26.876666 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-07-25T01:01:26.876727 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:26.877464 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.53 ms +I, [2018-07-25T01:01:26.877522 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:26.877921 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T01:01:26.877968 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:28.460910 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-07-25T01:01:28.460961 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:01:28.461310 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-07-25T01:01:28.461343 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:01:28.461567 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T01:01:28.461597 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:01:28.462971 #5] INFO -- : Inline processing of topic course_change with 1 messages took 1.24 ms +I, [2018-07-25T01:01:28.463078 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:01:28.463367 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-07-25T01:01:28.463398 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:01:28.463676 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-07-25T01:01:28.463710 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:01:28.463937 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T01:01:28.463966 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:01:28.464188 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T01:01:28.464217 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:01:28.464487 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-07-25T01:01:28.464534 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:01:28.464864 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-07-25T01:01:28.464909 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:01:28.465216 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T01:01:28.465275 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:01:28.465499 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T01:01:28.465528 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:01:28.465743 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T01:01:28.465772 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:01:28.878930 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-07-25T01:01:28.878980 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:28.880381 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-07-25T01:01:28.880579 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:28.880880 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T01:01:28.880910 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:28.881271 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T01:01:28.881314 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:28.881754 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-07-25T01:01:28.881805 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:28.882295 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-07-25T01:01:28.882412 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:28.882816 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T01:01:28.882907 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:28.883300 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T01:01:28.883352 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:28.883726 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T01:01:28.883763 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:28.884162 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T01:01:28.884216 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:28.885618 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.04 ms +I, [2018-07-25T01:01:28.885744 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:28.886150 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T01:01:28.886201 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:28.886579 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T01:01:28.886666 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:28.887031 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T01:01:28.887079 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:28.887677 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-07-25T01:01:28.887732 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:30.473224 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.49 ms +I, [2018-07-25T01:01:30.473300 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:01:30.473708 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-07-25T01:01:30.473753 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:01:30.474097 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-07-25T01:01:30.474144 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:01:30.474453 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T01:01:30.474487 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:01:30.474784 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T01:01:30.474817 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:01:30.475074 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T01:01:30.475116 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:01:30.475585 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-07-25T01:01:30.475623 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:01:30.475860 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-07-25T01:01:30.475890 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:01:30.476091 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-07-25T01:01:30.476323 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:01:30.476783 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-07-25T01:01:30.476835 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:01:30.477143 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-07-25T01:01:30.477225 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:01:30.477835 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-07-25T01:01:30.477892 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:01:30.478268 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-07-25T01:01:30.478321 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:01:30.478629 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-07-25T01:01:30.478679 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:01:30.479656 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-07-25T01:01:30.479702 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:01:30.479971 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-07-25T01:01:30.480003 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:01:30.908065 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.09 ms +I, [2018-07-25T01:01:30.908226 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:30.909034 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-07-25T01:01:30.909071 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:30.909533 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-07-25T01:01:30.909564 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:30.910148 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T01:01:30.910203 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:30.910676 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T01:01:30.910916 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:30.911443 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-07-25T01:01:30.911503 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:30.912361 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-07-25T01:01:30.913116 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:30.913626 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-07-25T01:01:30.913666 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:30.913997 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T01:01:30.914029 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:30.914304 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T01:01:30.914332 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:30.914632 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T01:01:30.914720 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:30.915335 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-07-25T01:01:30.915368 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:30.915582 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T01:01:30.915706 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:30.916701 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-07-25T01:01:30.916756 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:30.917338 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-07-25T01:01:30.917391 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:30.918080 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T01:01:30.918133 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:30.919256 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T01:01:30.919303 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:30.919829 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T01:01:30.920122 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:30.920501 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T01:01:30.920548 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:30.921194 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T01:01:30.921248 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:30.921674 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T01:01:30.921720 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:30.922770 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.8 ms +I, [2018-07-25T01:01:30.923106 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:30.924115 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-07-25T01:01:30.924247 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:30.925389 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T01:01:30.926484 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:30.927454 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T01:01:30.927858 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:30.930243 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T01:01:30.930297 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:30.930623 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T01:01:30.930666 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:30.930963 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T01:01:30.930997 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:30.931240 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T01:01:30.931270 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:30.931682 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T01:01:30.931875 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:30.932177 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T01:01:30.932209 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:30.932439 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T01:01:30.932469 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:30.932676 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T01:01:30.932709 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:30.933006 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T01:01:30.933069 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:30.933464 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T01:01:30.933533 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:30.933881 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T01:01:30.933914 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:30.934379 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T01:01:30.934418 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:30.934717 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T01:01:30.934773 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:30.935315 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T01:01:30.935364 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:30.935626 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T01:01:30.935658 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:30.935996 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T01:01:30.936050 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:30.936431 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T01:01:30.936511 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:30.936832 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T01:01:30.936907 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:30.937951 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T01:01:30.938058 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:30.938608 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T01:01:30.938703 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:30.938979 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T01:01:30.939107 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:30.939370 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T01:01:30.939400 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:30.939655 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T01:01:30.939693 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:32.480489 #5] INFO -- : Committing offsets: course_change/0:325 +I, [2018-07-25T01:01:32.484609 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.3 ms +I, [2018-07-25T01:01:32.484653 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:01:32.484933 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-07-25T01:01:32.484972 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:01:32.485221 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T01:01:32.485251 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:01:32.485472 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T01:01:32.485510 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:01:32.485751 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-07-25T01:01:32.485782 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:01:32.486024 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T01:01:32.486053 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:01:32.486378 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-07-25T01:01:32.486409 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:01:32.486669 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-07-25T01:01:32.486699 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:01:32.947903 #5] INFO -- : Committing offsets: section_change/0:616 +I, [2018-07-25T01:01:32.950798 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-07-25T01:01:32.950869 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:32.953869 #5] INFO -- : Inline processing of topic section_change with 1 messages took 2.79 ms +I, [2018-07-25T01:01:32.953958 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:32.954450 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-07-25T01:01:32.954483 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:32.954759 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T01:01:32.954789 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:32.955011 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T01:01:32.955069 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:32.955299 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T01:01:32.955328 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:32.955583 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T01:01:32.955613 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:32.955838 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T01:01:32.955867 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:32.956107 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T01:01:32.956136 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:32.956400 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T01:01:32.956430 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:32.957301 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T01:01:32.957359 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:32.957876 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-07-25T01:01:32.957936 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:32.958762 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T01:01:32.958839 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:34.487609 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.35 ms +I, [2018-07-25T01:01:34.487677 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:01:34.487927 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-07-25T01:01:34.487989 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:01:34.488326 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-07-25T01:01:34.488363 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:01:34.488650 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-07-25T01:01:34.488681 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:01:34.488925 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T01:01:34.488954 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:01:34.489344 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-07-25T01:01:34.489389 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:01:34.489709 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-07-25T01:01:34.489751 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:01:34.490087 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-07-25T01:01:34.490130 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:01:34.490469 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-07-25T01:01:34.490511 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:01:34.490826 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T01:01:34.490869 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:01:34.493197 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-07-25T01:01:34.493258 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:01:34.494421 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.91 ms +I, [2018-07-25T01:01:34.494489 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:01:34.494911 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-07-25T01:01:34.494960 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:01:34.496420 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.31 ms +I, [2018-07-25T01:01:34.496461 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:01:34.496726 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-07-25T01:01:34.496757 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:01:34.496967 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-07-25T01:01:34.496996 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:01:34.959650 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-07-25T01:01:34.959715 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:34.960113 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T01:01:34.960149 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:34.960425 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T01:01:34.960467 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:34.961126 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T01:01:34.961161 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:34.962066 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.58 ms +I, [2018-07-25T01:01:34.962239 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:34.962978 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T01:01:34.963017 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:34.963355 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T01:01:34.963394 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:34.963758 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T01:01:34.963805 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:34.964201 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T01:01:34.964251 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:34.964556 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T01:01:34.964592 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:34.965154 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-07-25T01:01:34.965242 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:34.965684 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-25T01:01:34.965788 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:34.966263 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-25T01:01:34.967106 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:34.967641 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-25T01:01:34.967696 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:34.968122 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T01:01:34.968168 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:34.968461 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T01:01:34.968508 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:34.968965 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T01:01:34.969014 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:34.969372 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T01:01:34.969420 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:34.969764 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T01:01:34.969796 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:34.970063 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T01:01:34.970113 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:34.970364 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T01:01:34.970395 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:34.970657 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T01:01:34.970689 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:34.970925 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T01:01:34.970967 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:34.971184 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T01:01:34.971235 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:34.971548 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T01:01:34.971595 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:34.971824 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T01:01:34.971858 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:34.972080 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T01:01:34.972117 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:34.972335 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T01:01:34.972369 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:34.972589 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T01:01:34.972618 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:34.972845 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T01:01:34.972880 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:34.973087 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T01:01:34.976865 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:34.977316 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T01:01:34.977368 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:34.977709 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T01:01:34.977755 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:34.978329 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T01:01:34.978411 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:34.978768 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T01:01:34.978854 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:36.497873 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.25 ms +I, [2018-07-25T01:01:36.498025 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:01:36.498576 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-07-25T01:01:36.498623 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:01:36.499014 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-07-25T01:01:36.499052 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:01:36.499271 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-07-25T01:01:36.499345 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:01:36.499537 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-07-25T01:01:36.499565 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:01:36.499875 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-07-25T01:01:36.499921 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:01:36.500218 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-07-25T01:01:36.500249 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:01:36.500475 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T01:01:36.500522 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:01:36.500850 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-07-25T01:01:36.500895 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:01:36.501218 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-07-25T01:01:36.501255 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:01:36.979803 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-07-25T01:01:36.979972 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:36.980353 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T01:01:36.981313 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:36.981735 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T01:01:36.981793 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:36.982015 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T01:01:36.982070 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:36.982293 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T01:01:36.982323 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:36.982619 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T01:01:36.982653 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:36.982888 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T01:01:36.982918 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:36.983145 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T01:01:36.983174 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:36.983400 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T01:01:36.983430 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:36.983688 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T01:01:36.983726 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:36.984072 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T01:01:36.984117 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:36.984533 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T01:01:36.984567 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:36.985100 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T01:01:36.985136 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:36.985439 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T01:01:36.985473 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:36.985759 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T01:01:36.985791 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:36.986018 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T01:01:36.986046 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:36.986284 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T01:01:36.986315 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:36.986536 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T01:01:36.986566 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:36.988144 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.44 ms +I, [2018-07-25T01:01:36.988249 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:36.988552 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T01:01:36.988582 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:36.988867 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T01:01:36.988924 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:36.989156 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T01:01:36.989186 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:36.992522 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T01:01:36.992583 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:36.992877 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T01:01:36.992909 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:36.993122 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T01:01:36.993152 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:36.993369 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T01:01:36.993399 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:36.993636 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T01:01:36.993665 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:36.993889 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T01:01:36.993919 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:38.501937 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-07-25T01:01:38.501987 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:01:38.502229 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T01:01:38.502259 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:01:38.502476 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-07-25T01:01:38.502516 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:01:38.502728 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-07-25T01:01:38.502769 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:01:38.503178 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.29 ms +I, [2018-07-25T01:01:38.503225 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:01:38.504156 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-07-25T01:01:38.504195 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:01:38.504445 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T01:01:38.504473 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:01:38.504735 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T01:01:38.504771 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:01:38.505000 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T01:01:38.505030 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:01:38.505313 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-07-25T01:01:38.505360 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:01:38.505708 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-07-25T01:01:38.505757 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:01:38.506134 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-07-25T01:01:38.506186 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:01:38.506565 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-07-25T01:01:38.506606 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:01:38.506949 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-07-25T01:01:38.507000 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:01:38.994655 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-25T01:01:38.994709 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:38.996660 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.78 ms +I, [2018-07-25T01:01:38.996908 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:38.997712 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-07-25T01:01:38.997806 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:38.998206 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T01:01:38.998245 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:38.998467 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T01:01:38.998734 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:38.999233 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T01:01:38.999278 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:38.999596 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T01:01:38.999640 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:38.999982 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T01:01:39.000067 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:39.000361 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T01:01:39.000462 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:39.001072 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.47 ms +I, [2018-07-25T01:01:39.001110 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:39.001419 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T01:01:39.001450 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:39.001729 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T01:01:39.001760 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:39.002959 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.04 ms +I, [2018-07-25T01:01:39.003032 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:39.003502 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T01:01:39.003560 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:39.004331 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T01:01:39.004390 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:39.004774 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T01:01:39.004860 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:39.005177 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T01:01:39.005750 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:39.006110 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T01:01:39.006162 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:39.006519 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T01:01:39.006957 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:39.007314 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T01:01:39.007363 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:39.007644 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T01:01:39.007675 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:39.007919 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T01:01:39.007949 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:39.008186 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T01:01:39.008215 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:39.010559 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-07-25T01:01:39.010623 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:39.011025 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T01:01:39.011074 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:39.011505 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T01:01:39.011554 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:39.011899 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T01:01:39.011948 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:39.012329 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T01:01:39.012377 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:39.012757 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T01:01:39.012802 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:39.013168 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T01:01:39.013216 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:40.510116 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-07-25T01:01:40.510164 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:01:40.510404 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T01:01:40.510433 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:01:40.510664 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T01:01:40.510694 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:01:40.510911 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T01:01:40.510939 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:01:40.511402 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.35 ms +I, [2018-07-25T01:01:40.511437 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:01:40.511670 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T01:01:40.511700 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:01:40.511945 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T01:01:40.511974 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:01:40.512183 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-07-25T01:01:40.512212 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:01:40.512425 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T01:01:40.512453 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:01:40.512665 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T01:01:40.512693 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:01:40.512913 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-07-25T01:01:40.512943 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:01:40.513165 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T01:01:40.513194 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:01:40.513405 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T01:01:40.513434 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:01:40.513643 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T01:01:40.513685 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:01:40.513891 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-07-25T01:01:40.513919 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:01:40.514122 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-07-25T01:01:40.514151 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:01:41.015844 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.44 ms +I, [2018-07-25T01:01:41.015925 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:41.016340 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T01:01:41.016377 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:41.016735 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T01:01:41.016769 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:41.017088 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T01:01:41.017165 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:41.017480 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T01:01:41.017553 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:41.017788 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T01:01:41.017819 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:41.018047 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T01:01:41.018076 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:41.019520 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-07-25T01:01:41.019617 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:41.020262 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-07-25T01:01:41.020313 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:41.020738 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T01:01:41.020791 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:41.021152 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T01:01:41.021203 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:41.021713 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-07-25T01:01:41.021762 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:41.022137 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T01:01:41.022184 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:41.022519 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T01:01:41.022565 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:41.022899 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T01:01:41.022940 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:41.023174 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T01:01:41.023205 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:41.023425 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T01:01:41.023455 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:41.023672 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T01:01:41.023705 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:41.025222 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-07-25T01:01:41.025339 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:41.025820 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-25T01:01:41.025858 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:41.026101 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T01:01:41.026131 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:41.026444 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T01:01:41.026499 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:41.026965 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-07-25T01:01:41.027100 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:42.514479 #5] INFO -- : Committing offsets: course_change/0:389 +I, [2018-07-25T01:01:43.027605 #5] INFO -- : Committing offsets: section_change/0:745 +I, [2018-07-25T01:01:43.031005 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.51 ms +I, [2018-07-25T01:01:43.031082 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:43.031765 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-07-25T01:01:43.031839 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:43.032208 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T01:01:43.032241 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:43.033498 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.1 ms +I, [2018-07-25T01:01:43.033568 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:43.034076 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-07-25T01:01:43.034128 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:43.034829 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T01:01:43.034881 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:43.035366 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T01:01:43.035421 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:44.517172 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-07-25T01:01:44.517220 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:01:44.517450 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T01:01:44.517481 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:01:45.036750 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.47 ms +I, [2018-07-25T01:01:45.036859 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:45.037406 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-25T01:01:45.037488 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:45.038142 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.42 ms +I, [2018-07-25T01:01:45.038208 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:45.038991 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-25T01:01:45.039080 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:45.039538 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T01:01:45.039593 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:45.040367 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.57 ms +I, [2018-07-25T01:01:45.040430 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:45.040927 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-07-25T01:01:45.040976 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:45.041441 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T01:01:45.041485 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:45.041921 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-07-25T01:01:45.041972 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:45.042443 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-07-25T01:01:45.043828 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:47.045609 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-07-25T01:01:47.046828 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:47.047321 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-07-25T01:01:47.047364 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:47.047759 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T01:01:47.047798 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:47.048208 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T01:01:47.048483 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:47.049228 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-07-25T01:01:47.049292 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:47.049736 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T01:01:47.049770 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:48.519052 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-07-25T01:01:48.519101 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:01:49.050857 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-25T01:01:49.051176 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:49.051480 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T01:01:49.051511 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:49.051783 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T01:01:49.051812 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:49.052050 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T01:01:49.052079 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:49.052384 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T01:01:49.052414 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:49.052806 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T01:01:49.052864 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:49.053217 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T01:01:49.053249 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:49.053664 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-07-25T01:01:49.053710 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:50.521642 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-07-25T01:01:50.521692 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:01:50.522064 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-07-25T01:01:50.522099 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:01:51.057132 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-07-25T01:01:51.057187 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:51.057632 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-07-25T01:01:51.057674 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:51.057994 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T01:01:51.058074 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:51.058384 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T01:01:51.058430 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:51.058801 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T01:01:51.058836 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:51.059391 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.42 ms +I, [2018-07-25T01:01:51.059514 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:51.062637 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.03 ms +I, [2018-07-25T01:01:51.063174 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:51.063797 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T01:01:51.063886 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:51.064230 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T01:01:51.064261 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:52.522443 #5] INFO -- : Committing offsets: course_change/0:394 +I, [2018-07-25T01:01:52.525396 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.28 ms +I, [2018-07-25T01:01:52.525499 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:01:52.525904 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-07-25T01:01:52.525940 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:01:52.526154 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-07-25T01:01:52.526190 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:01:52.526411 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T01:01:52.526440 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:01:52.526647 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-07-25T01:01:52.526677 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:01:52.527042 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T01:01:52.527079 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:01:53.064688 #5] INFO -- : Committing offsets: section_change/0:785 +I, [2018-07-25T01:01:53.067088 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T01:01:53.067133 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:53.067440 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T01:01:53.067471 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:53.067778 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T01:01:53.067847 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:53.068319 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T01:01:53.068393 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:53.069868 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-07-25T01:01:53.069968 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:53.070424 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T01:01:53.070460 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:53.070893 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-07-25T01:01:53.070970 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:53.072382 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.23 ms +I, [2018-07-25T01:01:53.072448 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:53.073478 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.73 ms +I, [2018-07-25T01:01:53.073544 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:53.075051 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-07-25T01:01:53.075099 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:53.075516 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-07-25T01:01:53.075555 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:54.528220 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.32 ms +I, [2018-07-25T01:01:54.528325 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:01:54.528965 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.38 ms +I, [2018-07-25T01:01:54.529028 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:01:54.529970 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.27 ms +I, [2018-07-25T01:01:54.530148 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:01:54.531137 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.55 ms +I, [2018-07-25T01:01:54.531247 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:01:54.531660 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-07-25T01:01:54.531696 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:01:54.532137 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.29 ms +I, [2018-07-25T01:01:54.532214 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:01:54.532584 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-07-25T01:01:54.532654 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:01:54.533100 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-07-25T01:01:54.533144 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:01:55.076457 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T01:01:55.076528 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:55.076779 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T01:01:55.076810 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:55.077103 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T01:01:55.077133 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:55.077607 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-07-25T01:01:55.077665 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:55.078039 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T01:01:55.078076 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:55.078347 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T01:01:55.078378 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:55.078650 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T01:01:55.078680 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:55.079830 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.02 ms +I, [2018-07-25T01:01:55.079880 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:55.080192 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T01:01:55.080224 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:55.080481 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T01:01:55.080512 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:56.534224 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-07-25T01:01:56.534311 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:01:56.534520 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-07-25T01:01:56.534578 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:01:56.534798 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T01:01:56.534827 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:01:56.535044 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T01:01:56.535073 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:01:56.535281 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-07-25T01:01:56.535310 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:01:56.535531 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-07-25T01:01:56.535560 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:01:56.535769 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-07-25T01:01:56.535798 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:01:56.536012 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-07-25T01:01:56.536040 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:01:56.536280 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-07-25T01:01:56.536310 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:01:56.536516 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-07-25T01:01:56.536545 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:01:56.536744 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-07-25T01:01:56.536777 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:01:56.536987 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-07-25T01:01:56.538586 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:01:56.538978 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-07-25T01:01:56.539011 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:01:57.081253 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T01:01:57.081313 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:57.081653 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T01:01:57.081687 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:57.081964 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T01:01:57.081994 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:57.082223 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T01:01:57.082262 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:57.082509 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T01:01:57.082547 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:57.083984 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T01:01:57.084021 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:57.084281 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T01:01:57.084311 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:57.084602 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T01:01:57.084658 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:57.085059 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T01:01:57.085124 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:57.085512 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T01:01:57.085562 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:57.085878 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T01:01:57.085919 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:57.086919 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.86 ms +I, [2018-07-25T01:01:57.086952 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:57.087211 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T01:01:57.087241 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:57.087564 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T01:01:57.087599 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:58.565486 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.86 ms +I, [2018-07-25T01:01:58.565620 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:01:58.566271 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.3 ms +I, [2018-07-25T01:01:58.566327 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:01:58.626022 #5] INFO -- : Inline processing of topic course_change with 1 messages took 59.03 ms +I, [2018-07-25T01:01:58.626252 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:01:58.634714 #5] INFO -- : Inline processing of topic course_change with 1 messages took 7.9 ms +I, [2018-07-25T01:01:58.634795 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:01:59.098721 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.59 ms +I, [2018-07-25T01:01:59.098801 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:59.104749 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-07-25T01:01:59.105600 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:01:59.117061 #5] INFO -- : Inline processing of topic section_change with 1 messages took 9.91 ms +I, [2018-07-25T01:01:59.126129 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:00.663506 #5] INFO -- : Inline processing of topic course_change with 1 messages took 1.11 ms +I, [2018-07-25T01:02:00.663799 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:02:00.664412 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.3 ms +I, [2018-07-25T01:02:00.664477 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:02:00.690523 #5] INFO -- : Inline processing of topic course_change with 1 messages took 25.7 ms +I, [2018-07-25T01:02:00.690615 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:02:00.691365 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.34 ms +I, [2018-07-25T01:02:00.691411 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:02:01.142665 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.56 ms +I, [2018-07-25T01:02:01.142767 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:01.143194 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-25T01:02:01.143245 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:01.143701 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-07-25T01:02:01.143750 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:02.692048 #5] INFO -- : Committing offsets: course_change/0:429 +I, [2018-07-25T01:02:02.701217 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.23 ms +I, [2018-07-25T01:02:02.701268 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:02:02.701597 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-07-25T01:02:02.701625 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:02:02.701961 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-07-25T01:02:02.702011 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:02:02.702299 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-07-25T01:02:02.702332 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:02:02.702617 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-07-25T01:02:02.702648 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:02:02.703089 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.32 ms +I, [2018-07-25T01:02:02.703123 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:02:03.198046 #5] INFO -- : Committing offsets: section_change/0:826 +I, [2018-07-25T01:02:03.230204 #5] INFO -- : Inline processing of topic section_change with 1 messages took 6.61 ms +I, [2018-07-25T01:02:03.255386 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:03.255983 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-25T01:02:03.256039 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:03.256549 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T01:02:03.256625 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:03.257903 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.8 ms +I, [2018-07-25T01:02:03.257967 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:03.260537 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.16 ms +I, [2018-07-25T01:02:03.260726 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:03.261680 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T01:02:03.261744 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:04.711111 #5] INFO -- : Inline processing of topic course_change with 1 messages took 4.53 ms +I, [2018-07-25T01:02:04.711255 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:02:04.712294 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.24 ms +I, [2018-07-25T01:02:04.712369 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:02:04.712800 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-07-25T01:02:04.712862 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:02:04.716640 #5] INFO -- : Inline processing of topic course_change with 1 messages took 1.18 ms +I, [2018-07-25T01:02:04.716711 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:02:05.263130 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-07-25T01:02:05.263193 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:05.263643 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-25T01:02:05.263685 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:05.264155 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-07-25T01:02:05.264257 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:05.264658 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T01:02:05.264693 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:05.264962 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T01:02:05.264996 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:05.265336 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T01:02:05.265367 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:05.265689 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T01:02:05.265739 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:05.266004 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T01:02:05.266035 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:05.266389 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T01:02:05.266432 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:05.268335 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.72 ms +I, [2018-07-25T01:02:05.268406 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:05.269628 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.69 ms +I, [2018-07-25T01:02:05.270255 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:05.271588 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.65 ms +I, [2018-07-25T01:02:05.271807 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:05.272229 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T01:02:05.272289 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:05.273533 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.42 ms +I, [2018-07-25T01:02:05.273623 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:05.274524 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-07-25T01:02:05.274674 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:05.275546 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-07-25T01:02:05.275603 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:05.276300 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-07-25T01:02:05.276366 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:05.277130 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-07-25T01:02:05.277219 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:05.279444 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.84 ms +I, [2018-07-25T01:02:05.279487 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:05.279948 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T01:02:05.279996 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:05.280253 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T01:02:05.282257 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:05.284546 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.67 ms +I, [2018-07-25T01:02:05.284661 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:05.285142 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T01:02:05.285697 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:05.286215 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T01:02:05.286318 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:05.288010 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.45 ms +I, [2018-07-25T01:02:05.288057 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:05.288313 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T01:02:05.288345 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:05.288687 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T01:02:05.288938 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:05.289781 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T01:02:05.289823 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:05.290868 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.8 ms +I, [2018-07-25T01:02:05.290935 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:05.291889 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.43 ms +I, [2018-07-25T01:02:05.292033 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:06.718502 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.24 ms +I, [2018-07-25T01:02:06.718553 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:02:06.718877 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-07-25T01:02:06.718910 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:02:06.719165 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-07-25T01:02:06.719197 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:02:06.719422 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T01:02:06.719451 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:02:06.719734 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T01:02:06.719766 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:02:07.297360 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.47 ms +I, [2018-07-25T01:02:07.297439 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:07.298018 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T01:02:07.298084 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:07.298711 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-07-25T01:02:07.298787 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:07.299397 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T01:02:07.299569 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:07.299998 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T01:02:07.300062 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:07.300725 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-07-25T01:02:07.300793 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:07.301903 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.82 ms +I, [2018-07-25T01:02:07.301992 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:07.302531 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T01:02:07.302593 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:07.303944 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-07-25T01:02:07.304279 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:07.304846 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T01:02:07.305066 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:07.305820 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-07-25T01:02:07.305906 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:07.306481 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-07-25T01:02:07.306549 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:07.307092 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T01:02:07.307148 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:07.309800 #5] INFO -- : Inline processing of topic section_change with 1 messages took 2.29 ms +I, [2018-07-25T01:02:07.309881 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:07.310479 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T01:02:07.310535 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:07.310877 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T01:02:07.310917 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:07.311204 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T01:02:07.311252 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:07.311779 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-25T01:02:07.311822 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:07.312227 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T01:02:07.312263 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:07.312529 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T01:02:07.312694 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:07.314461 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.59 ms +I, [2018-07-25T01:02:07.314544 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:07.315080 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T01:02:07.315136 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:07.316056 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T01:02:07.316129 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:07.316566 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T01:02:07.316622 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:07.317202 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-07-25T01:02:07.317455 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:07.318844 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-07-25T01:02:07.318990 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:07.320210 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.7 ms +I, [2018-07-25T01:02:07.320289 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:07.320737 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T01:02:07.320786 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:07.321453 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-07-25T01:02:07.322030 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:07.322438 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T01:02:07.322474 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:07.322790 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T01:02:07.322825 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:07.323618 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T01:02:07.323826 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:07.324414 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T01:02:07.324483 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:07.325034 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-07-25T01:02:07.325099 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:07.329601 #5] INFO -- : Inline processing of topic section_change with 1 messages took 4.25 ms +I, [2018-07-25T01:02:07.330129 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:07.330646 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-25T01:02:07.330695 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:07.331188 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-07-25T01:02:07.331233 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:07.331636 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T01:02:07.331685 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:07.332099 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T01:02:07.332160 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:07.334103 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.74 ms +I, [2018-07-25T01:02:07.334273 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:07.334580 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T01:02:07.334613 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:07.334978 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T01:02:07.335014 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:07.335723 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T01:02:07.335850 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:07.337024 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.85 ms +I, [2018-07-25T01:02:07.337126 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:07.337455 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T01:02:07.337486 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:07.337799 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T01:02:07.337845 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:07.338114 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T01:02:07.338144 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:07.338923 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T01:02:07.338995 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:07.339433 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T01:02:07.339486 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:07.339853 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T01:02:07.339929 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:07.340440 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T01:02:07.340487 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:07.340770 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T01:02:07.340801 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:07.341141 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T01:02:07.341173 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:07.341366 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T01:02:07.341884 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:07.342882 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.52 ms +I, [2018-07-25T01:02:07.342956 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:07.343286 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T01:02:07.343367 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:07.343777 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-07-25T01:02:07.343821 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:07.344117 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T01:02:07.344148 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:07.344507 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T01:02:07.344538 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:08.720781 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.23 ms +I, [2018-07-25T01:02:08.720831 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:02:08.721188 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-07-25T01:02:08.721221 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:02:08.721466 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-07-25T01:02:08.721496 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:02:08.721769 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-07-25T01:02:08.721798 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:02:08.722035 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-07-25T01:02:08.722065 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:02:08.722299 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-07-25T01:02:08.723943 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:02:09.350493 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.33 ms +I, [2018-07-25T01:02:09.351144 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:09.356907 #5] INFO -- : Inline processing of topic section_change with 1 messages took 5.0 ms +I, [2018-07-25T01:02:09.357153 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:09.358042 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-25T01:02:09.358102 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:09.359487 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.82 ms +I, [2018-07-25T01:02:09.361219 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:09.363356 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.89 ms +I, [2018-07-25T01:02:09.363663 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:09.364610 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.41 ms +I, [2018-07-25T01:02:09.364721 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:09.365211 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-07-25T01:02:09.365264 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:09.366451 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.94 ms +I, [2018-07-25T01:02:09.366519 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:09.375210 #5] INFO -- : Inline processing of topic section_change with 1 messages took 6.96 ms +I, [2018-07-25T01:02:09.375334 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:10.738036 #5] INFO -- : Inline processing of topic course_change with 1 messages took 7.53 ms +I, [2018-07-25T01:02:10.738113 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:02:10.738533 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-07-25T01:02:10.745972 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:02:10.746502 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-07-25T01:02:10.746557 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:02:10.756167 #5] INFO -- : Inline processing of topic course_change with 1 messages took 9.39 ms +I, [2018-07-25T01:02:10.756245 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:02:10.756658 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-07-25T01:02:10.756710 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:02:10.761419 #5] INFO -- : Inline processing of topic course_change with 1 messages took 4.36 ms +I, [2018-07-25T01:02:10.761508 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:02:10.761913 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-07-25T01:02:10.761965 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:02:11.384764 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T01:02:11.385348 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:11.385607 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T01:02:11.385638 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:11.388415 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T01:02:11.388472 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:11.409979 #5] INFO -- : Inline processing of topic section_change with 1 messages took 21.14 ms +I, [2018-07-25T01:02:11.413996 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:11.418458 #5] INFO -- : Inline processing of topic section_change with 1 messages took 3.33 ms +I, [2018-07-25T01:02:11.421010 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:11.422741 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.22 ms +I, [2018-07-25T01:02:11.430810 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:11.431937 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.48 ms +I, [2018-07-25T01:02:11.432027 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:12.764449 #5] INFO -- : Committing offsets: course_change/0:457 +I, [2018-07-25T01:02:12.819181 #5] INFO -- : Inline processing of topic course_change with 1 messages took 22.01 ms +I, [2018-07-25T01:02:12.819334 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:02:12.820551 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.66 ms +I, [2018-07-25T01:02:12.820759 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:02:12.852740 #5] INFO -- : Inline processing of topic course_change with 1 messages took 31.7 ms +I, [2018-07-25T01:02:12.852829 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:02:12.856486 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-07-25T01:02:12.856549 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:02:12.857080 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-07-25T01:02:12.868616 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:02:12.869216 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.23 ms +I, [2018-07-25T01:02:12.869270 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:02:13.537759 #5] INFO -- : Committing offsets: section_change/0:937 +I, [2018-07-25T01:02:13.664037 #5] INFO -- : Inline processing of topic section_change with 1 messages took 7.23 ms +I, [2018-07-25T01:02:13.664112 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:13.683016 #5] INFO -- : Inline processing of topic section_change with 1 messages took 18.23 ms +I, [2018-07-25T01:02:13.683479 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:13.684377 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.51 ms +I, [2018-07-25T01:02:13.684440 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:13.687878 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.46 ms +I, [2018-07-25T01:02:13.687950 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:13.688382 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T01:02:13.688437 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:13.699677 #5] INFO -- : Inline processing of topic section_change with 1 messages took 11.04 ms +I, [2018-07-25T01:02:13.699779 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:13.700292 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-07-25T01:02:13.729711 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:15.735856 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.72 ms +I, [2018-07-25T01:02:15.735972 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:15.736454 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-07-25T01:02:15.736498 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:15.746961 #5] INFO -- : Inline processing of topic section_change with 1 messages took 10.29 ms +I, [2018-07-25T01:02:15.747038 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:15.748005 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.75 ms +I, [2018-07-25T01:02:15.748050 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:16.871088 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.49 ms +I, [2018-07-25T01:02:16.871174 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:02:16.871682 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-07-25T01:02:16.871716 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:02:17.749343 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.4 ms +I, [2018-07-25T01:02:17.749394 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:17.749813 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-07-25T01:02:17.749845 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:17.750187 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T01:02:17.750218 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:17.750586 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-07-25T01:02:17.750673 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:18.872612 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-07-25T01:02:18.872662 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:02:18.872978 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-07-25T01:02:18.873009 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:02:18.873261 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-07-25T01:02:18.873291 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:02:18.873558 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-07-25T01:02:18.873587 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:02:18.873811 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T01:02:18.873840 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:02:19.751972 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-07-25T01:02:19.752025 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:19.752428 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-07-25T01:02:19.752461 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:19.752754 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T01:02:19.752786 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:19.753157 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T01:02:19.753190 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:19.753588 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-25T01:02:19.753619 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:19.754031 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T01:02:19.754066 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:19.754335 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T01:02:19.754453 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:19.754729 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T01:02:19.754762 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:19.755002 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T01:02:19.755034 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:19.755271 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T01:02:19.755303 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:19.755564 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T01:02:19.755593 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:20.878186 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.33 ms +I, [2018-07-25T01:02:20.878249 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:02:20.878682 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-07-25T01:02:20.878753 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:02:20.879100 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-07-25T01:02:20.879231 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:02:20.879695 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.3 ms +I, [2018-07-25T01:02:20.879730 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:02:20.880065 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-07-25T01:02:20.880097 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:02:20.880371 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-07-25T01:02:20.880400 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:02:20.880798 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-07-25T01:02:20.880873 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:02:20.881250 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-07-25T01:02:20.881290 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:02:20.881616 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T01:02:20.881655 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:02:21.757553 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-07-25T01:02:21.757605 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:21.759149 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-07-25T01:02:21.759191 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:21.759608 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T01:02:21.759640 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:21.759985 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T01:02:21.760018 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:21.760360 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T01:02:21.760392 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:21.760742 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-25T01:02:21.760773 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:21.761060 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T01:02:21.761260 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:21.761664 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-07-25T01:02:21.761696 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:22.882554 #5] INFO -- : Committing offsets: course_change/0:479 +I, [2018-07-25T01:02:22.888576 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.3 ms +I, [2018-07-25T01:02:22.888636 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:02:22.889145 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.26 ms +I, [2018-07-25T01:02:22.889232 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:02:22.889664 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.3 ms +I, [2018-07-25T01:02:22.889738 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:02:22.889992 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T01:02:22.890021 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:02:22.891511 #5] INFO -- : Inline processing of topic course_change with 1 messages took 1.26 ms +I, [2018-07-25T01:02:22.891669 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:02:22.892221 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.25 ms +I, [2018-07-25T01:02:22.892266 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:02:22.892523 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-07-25T01:02:22.892554 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:02:22.892810 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-07-25T01:02:22.892897 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:02:23.762055 #5] INFO -- : Committing offsets: section_change/0:971 +I, [2018-07-25T01:02:23.765981 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.67 ms +I, [2018-07-25T01:02:23.766044 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:23.766614 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-07-25T01:02:23.766651 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:23.767058 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T01:02:23.767113 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:23.768389 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.99 ms +I, [2018-07-25T01:02:23.768475 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:23.771963 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T01:02:23.774138 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:23.774560 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T01:02:23.778016 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:23.780060 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-25T01:02:23.780106 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:23.780420 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T01:02:23.780451 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:23.780679 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T01:02:23.780708 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:23.780922 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T01:02:23.780952 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:23.781727 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.66 ms +I, [2018-07-25T01:02:23.781764 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:23.782032 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T01:02:23.782062 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:24.893825 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-07-25T01:02:24.893875 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:02:24.894115 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-07-25T01:02:24.894145 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:02:24.895149 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.82 ms +I, [2018-07-25T01:02:24.895201 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:02:24.895487 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-07-25T01:02:24.895518 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:02:24.895752 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-07-25T01:02:24.895781 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:02:24.895983 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-07-25T01:02:24.896020 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:02:24.896257 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-07-25T01:02:24.896288 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:02:24.896508 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-07-25T01:02:24.896538 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:02:25.782910 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-07-25T01:02:25.782960 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:25.783832 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T01:02:25.783870 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:25.784142 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T01:02:25.784172 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:25.784534 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T01:02:25.784571 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:25.786063 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-25T01:02:25.786109 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:25.786419 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T01:02:25.786461 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:25.786723 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T01:02:25.786755 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:26.897373 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-07-25T01:02:26.897423 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:02:26.897660 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T01:02:26.897690 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:02:26.897900 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-07-25T01:02:26.897929 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:02:26.898145 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T01:02:26.898174 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:02:26.898374 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-07-25T01:02:26.898403 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:02:26.898598 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-07-25T01:02:26.898627 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:02:26.899026 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.24 ms +I, [2018-07-25T01:02:26.899279 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:02:26.900001 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.24 ms +I, [2018-07-25T01:02:26.900090 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:02:26.900347 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T01:02:26.900378 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:02:27.787794 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-25T01:02:27.787843 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:27.788155 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T01:02:27.788242 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:27.788563 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T01:02:27.788628 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:27.788881 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T01:02:27.788910 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:27.789276 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T01:02:27.789308 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:27.789550 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T01:02:27.789607 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:27.789952 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T01:02:27.789982 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:27.790500 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T01:02:27.790534 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:27.790805 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T01:02:27.790862 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:27.791309 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-07-25T01:02:27.791421 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:27.792255 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.59 ms +I, [2018-07-25T01:02:27.792318 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:28.901317 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.31 ms +I, [2018-07-25T01:02:28.901413 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:02:28.901871 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-07-25T01:02:28.901932 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:02:28.902463 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.25 ms +I, [2018-07-25T01:02:28.902512 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:02:28.903651 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.93 ms +I, [2018-07-25T01:02:28.903737 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:02:28.904166 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-07-25T01:02:28.904229 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:02:28.904809 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.3 ms +I, [2018-07-25T01:02:28.904865 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:02:28.913600 #5] INFO -- : Inline processing of topic course_change with 1 messages took 8.49 ms +I, [2018-07-25T01:02:28.913677 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:02:28.914473 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-07-25T01:02:28.914613 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:02:28.915531 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.67 ms +I, [2018-07-25T01:02:28.915588 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:02:28.915975 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-07-25T01:02:28.916027 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:02:29.793322 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-07-25T01:02:29.794433 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:29.794835 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T01:02:29.794868 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:29.795160 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T01:02:29.795248 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:29.795508 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T01:02:29.795538 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:29.795865 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T01:02:29.795897 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:29.796198 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T01:02:29.796230 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:29.797193 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.84 ms +I, [2018-07-25T01:02:29.797227 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:29.797451 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T01:02:29.797481 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:29.797707 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T01:02:29.797737 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:29.797950 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T01:02:29.797980 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:29.798196 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T01:02:29.798225 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:29.798434 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T01:02:29.798463 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:29.798672 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T01:02:29.798701 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:29.798908 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T01:02:29.799073 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:29.799331 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T01:02:29.799372 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:29.799887 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-07-25T01:02:29.799923 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:29.800198 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T01:02:29.800231 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:29.800434 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T01:02:29.800504 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:29.800699 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T01:02:29.800728 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:29.800985 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T01:02:29.801018 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:29.801376 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T01:02:29.801422 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:29.801858 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T01:02:29.801925 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:29.802172 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T01:02:29.802202 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:29.802429 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T01:02:29.802467 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:30.918386 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.36 ms +I, [2018-07-25T01:02:30.918476 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:02:30.918813 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T01:02:30.918888 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:02:30.920209 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-07-25T01:02:30.920289 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:02:30.920498 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-07-25T01:02:30.920563 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:02:30.920779 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-07-25T01:02:30.920808 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:02:30.921316 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.29 ms +I, [2018-07-25T01:02:30.921496 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:02:30.922172 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-07-25T01:02:30.922332 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:02:30.922921 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-07-25T01:02:30.922953 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:02:31.804595 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T01:02:31.804662 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:31.804886 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T01:02:31.804937 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:31.805158 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T01:02:31.805187 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:31.805416 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T01:02:31.805464 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:31.805671 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T01:02:31.805714 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:31.806864 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T01:02:31.806906 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:31.807304 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T01:02:31.807335 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:31.807552 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T01:02:31.807605 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:31.808052 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-07-25T01:02:31.808089 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:31.808346 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T01:02:31.808376 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:31.808602 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T01:02:31.808632 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:31.808920 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T01:02:31.809005 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:31.809239 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T01:02:31.809269 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:31.809492 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T01:02:31.809521 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:31.809737 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T01:02:31.809766 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:31.809993 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T01:02:31.810033 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:31.810246 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T01:02:31.810313 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:31.810633 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T01:02:31.810696 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:31.811667 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.63 ms +I, [2018-07-25T01:02:31.811762 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:31.812156 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T01:02:31.812189 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:31.812419 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T01:02:31.812452 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:31.812730 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T01:02:31.812782 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:31.813128 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T01:02:31.813174 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:31.813504 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T01:02:31.813550 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:31.813844 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T01:02:31.813886 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:31.814103 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T01:02:31.814134 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:31.814361 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T01:02:31.814397 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:31.814630 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T01:02:31.814662 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:31.815635 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.85 ms +I, [2018-07-25T01:02:31.815667 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:31.817851 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T01:02:31.817950 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:31.820212 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.72 ms +I, [2018-07-25T01:02:31.820275 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:31.822159 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.48 ms +I, [2018-07-25T01:02:31.822205 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:31.822515 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T01:02:31.822546 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:31.822796 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T01:02:31.822826 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:31.823041 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T01:02:31.823070 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:31.823285 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T01:02:31.823314 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:31.823501 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T01:02:31.823529 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:31.823737 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T01:02:31.823766 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:31.823979 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T01:02:31.824008 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:31.824218 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T01:02:31.824280 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:31.824479 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T01:02:31.824508 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:31.824702 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T01:02:31.826942 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:31.827831 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.63 ms +I, [2018-07-25T01:02:31.827895 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:31.828343 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T01:02:31.828393 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:31.829930 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T01:02:31.830226 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:31.831466 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.87 ms +I, [2018-07-25T01:02:31.831531 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:31.833442 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-25T01:02:31.833505 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:31.833851 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T01:02:31.833940 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:31.834296 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T01:02:31.834340 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:31.835244 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T01:02:31.835298 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:31.835661 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T01:02:31.835695 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:31.835937 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T01:02:31.836098 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:31.838481 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.89 ms +I, [2018-07-25T01:02:31.838900 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:31.840264 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.76 ms +I, [2018-07-25T01:02:31.840337 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:31.842536 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.47 ms +I, [2018-07-25T01:02:31.842627 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:31.845765 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.8 ms +I, [2018-07-25T01:02:31.845825 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:31.846129 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T01:02:31.846160 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:31.846388 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T01:02:31.846417 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:31.846635 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T01:02:31.846664 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:31.846887 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T01:02:31.846917 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:31.847133 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T01:02:31.847164 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:31.847349 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T01:02:31.847378 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:31.847607 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T01:02:31.847670 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:31.847885 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T01:02:31.847911 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:31.848130 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T01:02:31.848152 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:31.848358 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T01:02:31.848384 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:31.848593 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T01:02:31.848623 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:31.850822 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.37 ms +I, [2018-07-25T01:02:31.850886 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:31.852426 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-25T01:02:31.852519 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:31.853233 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T01:02:31.853295 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:31.855098 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.55 ms +I, [2018-07-25T01:02:31.855146 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:31.856423 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-07-25T01:02:31.856536 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:31.857710 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.64 ms +I, [2018-07-25T01:02:31.857753 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:31.858003 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T01:02:31.858071 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:31.858471 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-07-25T01:02:31.858535 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:31.858870 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T01:02:31.858907 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:31.859147 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T01:02:31.859211 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:31.859407 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T01:02:31.859462 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:31.872811 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T01:02:31.873303 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:31.874420 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T01:02:31.874456 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:31.874826 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T01:02:31.874871 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:31.877437 #5] INFO -- : Inline processing of topic section_change with 1 messages took 2.04 ms +I, [2018-07-25T01:02:31.877489 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:31.877889 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T01:02:31.877927 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:31.878165 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T01:02:31.878196 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:31.878440 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T01:02:31.878470 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:32.924185 #5] INFO -- : Committing offsets: course_change/0:522 +I, [2018-07-25T01:02:32.928553 #5] INFO -- : Inline processing of topic course_change with 1 messages took 1.28 ms +I, [2018-07-25T01:02:32.928654 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:02:32.929168 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-07-25T01:02:32.929218 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:02:32.929653 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-07-25T01:02:32.929712 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:02:33.880071 #5] INFO -- : Committing offsets: section_change/0:1110 +I, [2018-07-25T01:02:33.882722 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-07-25T01:02:33.883120 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:33.883570 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T01:02:33.883655 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:33.884271 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-07-25T01:02:33.884398 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:33.884912 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-07-25T01:02:33.884995 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:33.885474 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-25T01:02:33.885544 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:33.886020 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-07-25T01:02:33.887840 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:33.898401 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.83 ms +I, [2018-07-25T01:02:33.900265 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:33.904077 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.0 ms +I, [2018-07-25T01:02:33.904959 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:33.906924 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-25T01:02:33.907062 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:33.907679 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-07-25T01:02:33.907728 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:34.930506 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-07-25T01:02:34.930554 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:02:35.909339 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T01:02:35.909387 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:35.909647 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T01:02:35.909676 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:35.909924 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T01:02:35.909954 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:35.910215 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T01:02:35.910251 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:35.910530 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T01:02:35.910556 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:35.910806 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T01:02:35.910836 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:35.911379 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T01:02:35.911434 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:35.911861 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-25T01:02:35.911911 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:35.912297 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T01:02:35.912347 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:35.912737 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T01:02:35.912788 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:37.914551 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.01 ms +I, [2018-07-25T01:02:37.914610 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:37.916225 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.41 ms +I, [2018-07-25T01:02:37.916300 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:37.916895 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-07-25T01:02:37.916934 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:37.917228 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T01:02:37.917258 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:37.917491 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T01:02:37.919463 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:37.919783 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T01:02:37.919815 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:37.920082 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T01:02:37.920112 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:37.920342 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T01:02:37.920371 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:37.920636 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T01:02:37.920661 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:37.921456 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-07-25T01:02:37.921517 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:38.932093 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-07-25T01:02:38.932264 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:02:38.932559 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-07-25T01:02:38.932590 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:02:39.922487 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T01:02:39.922537 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:39.922777 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T01:02:39.922808 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:39.923036 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T01:02:39.923065 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:39.923306 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T01:02:39.923335 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:39.923755 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T01:02:39.923789 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:39.924115 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T01:02:39.924148 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:39.924419 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T01:02:39.924447 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:39.924665 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T01:02:39.924694 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:39.925147 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-07-25T01:02:39.925181 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:40.935993 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-07-25T01:02:40.936042 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:02:40.936279 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T01:02:40.936308 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:02:40.936528 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-07-25T01:02:40.936558 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:02:41.928758 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T01:02:41.928805 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:41.929192 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-25T01:02:41.929225 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:41.930270 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T01:02:41.930307 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:41.930610 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T01:02:41.930643 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:41.930956 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T01:02:41.930991 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:41.931394 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-25T01:02:41.931441 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:41.931801 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T01:02:41.931834 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:41.932132 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T01:02:41.932162 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:41.932409 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T01:02:41.932438 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:42.936981 #5] INFO -- : Committing offsets: course_change/0:531 +I, [2018-07-25T01:02:43.932761 #5] INFO -- : Committing offsets: section_change/0:1158 +I, [2018-07-25T01:02:43.935044 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T01:02:43.935964 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:43.936514 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-25T01:02:43.936569 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:43.936975 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T01:02:43.937025 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:43.937391 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T01:02:43.937478 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:43.937856 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T01:02:43.937905 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:43.938278 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T01:02:43.938326 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:43.938611 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T01:02:43.938642 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:43.939445 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T01:02:43.939497 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:43.939817 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T01:02:43.939862 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:43.940267 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-07-25T01:02:43.940312 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:44.939579 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.25 ms +I, [2018-07-25T01:02:44.939647 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:02:44.940044 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-07-25T01:02:44.940085 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:02:44.940501 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-07-25T01:02:44.940546 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:02:44.940854 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T01:02:44.940898 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:02:45.941142 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-07-25T01:02:45.941192 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:45.941546 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T01:02:45.941580 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:45.941852 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T01:02:45.941882 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:45.942159 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T01:02:45.942197 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:45.942472 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T01:02:45.942502 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:45.942766 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T01:02:45.942799 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:45.943346 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T01:02:45.943377 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:45.943656 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T01:02:45.943692 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:45.943985 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T01:02:45.944017 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:45.944288 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T01:02:45.944318 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:46.941761 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-07-25T01:02:46.941811 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:02:46.942052 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-07-25T01:02:46.942867 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:02:46.943248 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T01:02:46.943280 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:02:47.945988 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-07-25T01:02:47.946038 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:47.946327 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T01:02:47.946398 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:47.946618 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T01:02:47.946676 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:47.946934 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T01:02:47.946964 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:47.947278 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T01:02:47.947323 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:47.947594 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T01:02:47.947653 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:47.947959 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T01:02:47.947989 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:47.948242 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T01:02:47.948270 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:48.944415 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-07-25T01:02:48.944464 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:02:49.979191 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.98 ms +I, [2018-07-25T01:02:49.979254 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:49.979634 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T01:02:49.979670 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:49.980015 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T01:02:49.980081 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:49.983020 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.37 ms +I, [2018-07-25T01:02:49.984763 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:51.213884 #5] INFO -- : Inline processing of topic course_change with 1 messages took 1.46 ms +I, [2018-07-25T01:02:51.217510 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:02:51.993959 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.92 ms +I, [2018-07-25T01:02:51.994539 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:51.995633 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T01:02:51.995878 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:53.218430 #5] INFO -- : Committing offsets: course_change/0:540 +I, [2018-07-25T01:02:53.996252 #5] INFO -- : Committing offsets: section_change/0:1192 +I, [2018-07-25T01:02:54.000125 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T01:02:54.000170 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:54.000437 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T01:02:54.000470 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:54.000823 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T01:02:54.000872 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:54.001174 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T01:02:54.001206 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:54.001648 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-07-25T01:02:54.001701 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:54.002179 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-07-25T01:02:54.002221 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:54.002619 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-25T01:02:54.002987 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:54.003489 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-25T01:02:54.003543 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:55.228523 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.37 ms +I, [2018-07-25T01:02:55.228576 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:02:55.228976 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-07-25T01:02:55.229009 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:02:55.229294 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-07-25T01:02:55.229324 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:02:55.229696 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.25 ms +I, [2018-07-25T01:02:55.229781 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:02:55.230127 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-07-25T01:02:55.230160 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:02:55.230432 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-07-25T01:02:55.230462 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:02:55.230736 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-07-25T01:02:55.230765 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:02:56.004616 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-07-25T01:02:56.004954 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:56.005435 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T01:02:56.005468 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:56.005787 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T01:02:56.005830 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:56.006081 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T01:02:56.006111 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:56.006363 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T01:02:56.006392 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:56.006694 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T01:02:56.006724 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:56.007004 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T01:02:56.007034 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:56.007322 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T01:02:56.007352 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:57.232212 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-07-25T01:02:57.232261 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:02:57.232538 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-07-25T01:02:57.232569 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:02:57.232829 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-07-25T01:02:57.232859 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:02:58.008210 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T01:02:58.008257 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:58.008530 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T01:02:58.008560 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:58.008811 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T01:02:58.008840 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:58.009185 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T01:02:58.009220 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:58.009504 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T01:02:58.009533 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:58.009937 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-07-25T01:02:58.009970 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:58.010590 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.48 ms +I, [2018-07-25T01:02:58.010640 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:02:59.244219 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.27 ms +I, [2018-07-25T01:02:59.245489 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:02:59.247875 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-07-25T01:02:59.248002 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:02:59.248339 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-07-25T01:02:59.248379 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:02:59.253924 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.86 ms +I, [2018-07-25T01:02:59.253978 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:02:59.256490 #5] INFO -- : Inline processing of topic course_change with 1 messages took 1.7 ms +I, [2018-07-25T01:02:59.259844 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:02:59.275006 #5] INFO -- : Inline processing of topic course_change with 1 messages took 9.52 ms +I, [2018-07-25T01:02:59.275160 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:03:00.011997 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-25T01:03:00.012047 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:00.012362 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T01:03:00.012408 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:00.012695 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T01:03:00.012724 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:00.012945 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T01:03:00.012996 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:00.013529 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.41 ms +I, [2018-07-25T01:03:00.013581 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:00.013916 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T01:03:00.013980 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:00.014749 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.48 ms +I, [2018-07-25T01:03:00.014793 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:01.277346 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-07-25T01:03:01.277452 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:03:02.018404 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-07-25T01:03:02.018454 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:02.018900 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-07-25T01:03:02.018935 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:02.019331 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T01:03:02.019363 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:02.019667 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T01:03:02.019695 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:02.019951 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T01:03:02.020087 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:03.278003 #5] INFO -- : Committing offsets: course_change/0:557 +I, [2018-07-25T01:03:03.280103 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-07-25T01:03:03.280146 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:03:03.280378 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T01:03:03.280407 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:03:03.280621 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T01:03:03.280650 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:03:03.280857 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-07-25T01:03:03.280885 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:03:03.281089 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-07-25T01:03:03.281118 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:03:03.282532 #5] INFO -- : Inline processing of topic course_change with 1 messages took 1.19 ms +I, [2018-07-25T01:03:03.282645 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:03:03.282953 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T01:03:03.282985 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:03:03.283221 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T01:03:03.283251 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:03:03.283483 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T01:03:03.283540 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:03:03.283782 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-07-25T01:03:03.283812 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:03:03.284137 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-07-25T01:03:03.284184 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:03:03.284466 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-07-25T01:03:03.284513 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:03:03.284822 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-07-25T01:03:03.284853 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:03:04.020421 #5] INFO -- : Committing offsets: section_change/0:1227 +I, [2018-07-25T01:03:04.022551 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-07-25T01:03:04.022652 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:04.023213 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-07-25T01:03:04.023284 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:04.023590 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T01:03:04.023623 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:04.023929 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T01:03:04.023961 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:04.024178 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T01:03:04.024223 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:04.024465 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T01:03:04.024495 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:04.024705 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T01:03:04.024753 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:04.025889 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T01:03:04.025941 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:04.026278 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T01:03:04.026327 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:04.026739 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T01:03:04.026794 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:04.027098 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T01:03:04.027143 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:04.027497 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T01:03:04.027563 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:04.027917 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T01:03:04.029053 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:04.029388 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T01:03:04.029422 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:04.029739 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T01:03:04.029793 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:04.030404 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-07-25T01:03:04.030455 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:04.030823 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T01:03:04.030872 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:04.031284 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T01:03:04.031390 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:04.031783 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T01:03:04.031831 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:04.032196 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T01:03:04.032231 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:05.285766 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-07-25T01:03:05.285817 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:03:05.286962 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.98 ms +I, [2018-07-25T01:03:05.287022 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:03:05.287317 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-07-25T01:03:05.287351 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:03:05.287650 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-07-25T01:03:05.287685 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:03:05.287906 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-07-25T01:03:05.287945 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:03:06.033058 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-25T01:03:06.033107 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:06.033384 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T01:03:06.033445 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:06.033712 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T01:03:06.033742 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:06.033997 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T01:03:06.034027 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:06.034306 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T01:03:06.034336 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:06.034719 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-07-25T01:03:06.034748 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:06.035020 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T01:03:06.035055 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:06.035408 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T01:03:06.035456 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:06.036032 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T01:03:06.036082 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:06.036474 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T01:03:06.036523 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:07.289088 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-07-25T01:03:07.289137 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:03:07.289388 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-07-25T01:03:07.289417 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:03:07.289634 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T01:03:07.289663 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:03:07.289897 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T01:03:07.289927 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:03:07.291190 #5] INFO -- : Inline processing of topic course_change with 1 messages took 1.04 ms +I, [2018-07-25T01:03:07.291267 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:03:07.291716 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-07-25T01:03:07.291773 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:03:07.292066 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T01:03:07.292098 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:03:07.292344 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-07-25T01:03:07.292382 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:03:07.292613 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T01:03:07.293613 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:03:07.294091 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-07-25T01:03:07.294145 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:03:07.294405 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T01:03:07.294436 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:03:07.294704 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T01:03:07.294734 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:03:07.295033 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T01:03:07.295081 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:03:07.295412 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T01:03:07.295444 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:03:08.039237 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-07-25T01:03:08.039292 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:08.039615 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T01:03:08.039652 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:08.039916 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T01:03:08.039944 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:08.040169 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T01:03:08.040202 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:08.040463 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T01:03:08.040502 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:08.040865 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T01:03:08.040902 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:08.041151 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T01:03:08.041185 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:08.041437 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T01:03:08.041472 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:08.041733 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T01:03:08.041784 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:08.042039 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T01:03:08.042073 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:08.042317 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T01:03:08.042351 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:08.042587 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T01:03:08.042651 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:08.042905 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T01:03:08.042984 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:08.043355 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T01:03:08.043406 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:08.043745 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T01:03:08.043790 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:08.044126 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T01:03:08.044165 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:08.044666 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T01:03:08.044723 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:08.045091 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T01:03:08.045142 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:08.045496 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T01:03:08.045555 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:08.045985 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T01:03:08.046034 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:08.046366 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T01:03:08.046414 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:08.046745 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T01:03:08.046793 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:08.047127 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T01:03:08.047177 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:08.047543 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T01:03:08.047597 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:08.048137 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T01:03:08.048176 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:08.048428 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T01:03:08.048458 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:08.048689 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T01:03:08.048719 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:08.048969 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T01:03:08.048999 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:08.049252 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T01:03:08.049298 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:08.049548 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T01:03:08.049578 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:08.049890 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T01:03:08.049923 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:09.296723 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-07-25T01:03:09.296773 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:03:09.297048 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-07-25T01:03:09.297078 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:03:09.298184 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.94 ms +I, [2018-07-25T01:03:09.298235 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:03:09.298548 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-07-25T01:03:09.298579 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:03:09.299017 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.26 ms +I, [2018-07-25T01:03:09.299092 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:03:10.052768 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-25T01:03:10.052820 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:10.053113 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T01:03:10.053149 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:10.053444 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T01:03:10.053474 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:10.053751 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T01:03:10.053781 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:10.054083 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T01:03:10.054119 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:10.055823 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-07-25T01:03:10.055927 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:10.056420 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-07-25T01:03:10.056470 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:11.300962 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-07-25T01:03:11.301010 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:03:11.301264 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T01:03:11.301294 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:03:11.301483 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-07-25T01:03:11.301511 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:03:11.301722 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-07-25T01:03:11.301750 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:03:11.302020 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-07-25T01:03:11.302052 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:03:12.061797 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-07-25T01:03:12.061852 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:12.062179 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T01:03:12.062214 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:12.062605 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-25T01:03:12.062653 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:12.063105 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T01:03:12.063147 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:12.064012 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.71 ms +I, [2018-07-25T01:03:12.064058 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:12.064393 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T01:03:12.064450 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:12.064733 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T01:03:12.064774 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:12.065160 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T01:03:12.065206 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:13.302770 #5] INFO -- : Committing offsets: course_change/0:599 +I, [2018-07-25T01:03:13.305398 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.29 ms +I, [2018-07-25T01:03:13.305444 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:03:13.305750 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-07-25T01:03:13.305797 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:03:13.306164 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-07-25T01:03:13.306231 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:03:13.307504 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.23 ms +I, [2018-07-25T01:03:13.307582 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:03:13.307855 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-07-25T01:03:13.307886 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:03:13.308132 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-07-25T01:03:13.308175 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:03:13.308438 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T01:03:13.308469 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:03:13.308686 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T01:03:13.308715 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:03:14.066780 #5] INFO -- : Committing offsets: section_change/0:1303 +I, [2018-07-25T01:03:14.069383 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-07-25T01:03:14.069459 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:14.069942 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T01:03:14.069994 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:14.070404 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T01:03:14.070439 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:14.071372 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T01:03:14.071467 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:14.071891 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T01:03:14.071936 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:14.072610 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.46 ms +I, [2018-07-25T01:03:14.072699 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:14.073178 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-07-25T01:03:14.073218 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:16.074860 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-25T01:03:16.074910 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:16.075210 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T01:03:16.075240 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:16.075556 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T01:03:16.075586 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:16.075882 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T01:03:16.075910 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:16.076406 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-07-25T01:03:16.076502 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:16.077011 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-07-25T01:03:16.077048 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:16.077336 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T01:03:16.077378 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:16.077663 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T01:03:16.077710 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:16.078034 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T01:03:16.078083 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:16.078396 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T01:03:16.078443 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:16.078677 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T01:03:16.078707 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:16.078928 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T01:03:16.078993 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:17.309713 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-07-25T01:03:17.309761 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:03:17.310012 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T01:03:17.310043 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:03:17.310285 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-07-25T01:03:17.310315 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:03:17.310543 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-07-25T01:03:17.310572 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:03:17.310795 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-07-25T01:03:17.310833 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:03:17.311055 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-07-25T01:03:17.311084 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:03:17.311298 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-07-25T01:03:17.311340 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:03:18.079742 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-25T01:03:18.079792 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:18.080083 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T01:03:18.080113 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:18.080348 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T01:03:18.080378 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:18.080701 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T01:03:18.080739 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:18.080979 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T01:03:18.081011 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:18.081528 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-07-25T01:03:18.081575 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:18.081872 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T01:03:18.081912 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:18.082233 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T01:03:18.083179 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:18.083617 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-07-25T01:03:18.083649 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:19.312367 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-07-25T01:03:19.312416 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:03:19.312662 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-07-25T01:03:19.313320 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:03:19.313804 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T01:03:19.313839 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:03:19.314077 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T01:03:19.314108 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:03:19.314370 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-07-25T01:03:19.315179 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:03:19.315860 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.23 ms +I, [2018-07-25T01:03:19.315917 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:03:20.085672 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T01:03:20.085721 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:20.086001 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T01:03:20.086032 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:20.086275 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T01:03:20.086304 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:20.086564 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T01:03:20.086593 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:20.086920 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T01:03:20.086975 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:20.087235 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T01:03:20.087262 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:20.087700 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-07-25T01:03:20.087738 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:20.088018 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T01:03:20.088048 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:20.088278 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T01:03:20.088307 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:20.088567 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T01:03:20.088597 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:21.318619 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.26 ms +I, [2018-07-25T01:03:21.318692 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:03:21.319140 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-07-25T01:03:21.319187 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:03:21.319524 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-07-25T01:03:21.319568 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:03:21.321247 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-07-25T01:03:21.321345 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:03:21.322131 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-07-25T01:03:21.322285 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:03:21.322705 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-07-25T01:03:21.322756 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:03:21.323116 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-07-25T01:03:21.323193 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:03:21.323509 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-07-25T01:03:21.324020 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:03:21.324665 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.39 ms +I, [2018-07-25T01:03:21.324724 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:03:22.090497 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-25T01:03:22.090555 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:22.091038 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T01:03:22.091079 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:22.091442 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T01:03:22.091481 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:22.091906 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-07-25T01:03:22.091984 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:22.092302 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T01:03:22.092333 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:22.092800 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-07-25T01:03:22.092846 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:23.325423 #5] INFO -- : Committing offsets: course_change/0:629 +I, [2018-07-25T01:03:23.327840 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.26 ms +I, [2018-07-25T01:03:23.327902 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:03:23.328254 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-07-25T01:03:23.328299 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:03:23.328605 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-07-25T01:03:23.328648 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:03:23.329369 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-07-25T01:03:23.329428 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:03:23.329920 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-07-25T01:03:23.330124 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:03:24.093729 #5] INFO -- : Committing offsets: section_change/0:1347 +I, [2018-07-25T01:03:24.097943 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-07-25T01:03:24.098002 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:24.098530 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T01:03:24.098600 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:24.099211 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T01:03:24.099274 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:24.099755 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-25T01:03:24.099815 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:24.100879 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.82 ms +I, [2018-07-25T01:03:24.110936 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:24.111658 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-07-25T01:03:24.115198 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:24.115714 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T01:03:24.115767 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:24.116204 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T01:03:24.116301 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:24.116940 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-07-25T01:03:24.117046 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:24.117495 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T01:03:24.117566 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:24.117903 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T01:03:24.117953 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:24.118352 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T01:03:24.118401 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:24.118787 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T01:03:24.118861 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:24.135667 #5] INFO -- : Inline processing of topic section_change with 1 messages took 16.53 ms +I, [2018-07-25T01:03:24.135759 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:24.136264 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-25T01:03:24.136315 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:24.137370 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.81 ms +I, [2018-07-25T01:03:24.137444 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:24.137918 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-25T01:03:24.137965 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:25.495745 #5] INFO -- : Inline processing of topic course_change with 1 messages took 2.22 ms +I, [2018-07-25T01:03:25.496283 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:03:25.497701 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.6 ms +I, [2018-07-25T01:03:25.497769 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:03:26.145639 #5] INFO -- : Inline processing of topic section_change with 1 messages took 6.54 ms +I, [2018-07-25T01:03:26.145708 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:26.146159 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T01:03:26.146209 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:26.146631 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-07-25T01:03:26.146668 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:26.147099 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T01:03:26.147132 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:26.147596 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-07-25T01:03:26.147633 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:26.147982 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T01:03:26.150381 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:26.151107 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.42 ms +I, [2018-07-25T01:03:26.151212 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:26.153838 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.12 ms +I, [2018-07-25T01:03:26.153914 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:26.154447 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-07-25T01:03:26.154498 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:26.155224 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-07-25T01:03:26.155303 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:27.498924 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.32 ms +I, [2018-07-25T01:03:27.498976 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:03:27.499288 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-07-25T01:03:27.499320 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:03:27.499609 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-07-25T01:03:27.499639 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:03:27.499882 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-07-25T01:03:27.499913 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:03:27.500200 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-07-25T01:03:27.500238 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:03:27.500538 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-07-25T01:03:27.500569 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:03:28.157476 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.46 ms +I, [2018-07-25T01:03:28.157537 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:28.158260 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.42 ms +I, [2018-07-25T01:03:28.158298 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:28.158592 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T01:03:28.158624 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:28.159043 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-07-25T01:03:28.159177 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:28.159734 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-07-25T01:03:28.159771 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:28.160162 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-25T01:03:28.160194 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:28.161799 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-07-25T01:03:28.161842 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:28.162177 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T01:03:28.162208 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:28.162493 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T01:03:28.163174 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:29.501535 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.23 ms +I, [2018-07-25T01:03:29.501584 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:03:29.502157 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.39 ms +I, [2018-07-25T01:03:29.502516 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:03:29.502960 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.26 ms +I, [2018-07-25T01:03:29.502997 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:03:29.503466 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.24 ms +I, [2018-07-25T01:03:29.503507 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:03:29.503823 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-07-25T01:03:29.503869 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:03:29.505337 #5] INFO -- : Inline processing of topic course_change with 1 messages took 1.19 ms +I, [2018-07-25T01:03:29.505387 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:03:29.505840 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.25 ms +I, [2018-07-25T01:03:29.505900 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:03:29.506191 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-07-25T01:03:29.506223 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:03:29.506542 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-07-25T01:03:29.506586 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:03:30.164843 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-07-25T01:03:30.164895 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:30.165370 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T01:03:30.165408 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:30.166840 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-07-25T01:03:30.166903 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:30.167341 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-25T01:03:30.167393 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:30.167810 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T01:03:30.167862 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:30.168366 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-07-25T01:03:30.168419 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:30.169046 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.44 ms +I, [2018-07-25T01:03:30.169098 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:30.169534 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-25T01:03:30.169584 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:31.511490 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-07-25T01:03:31.511636 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:03:31.512026 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-07-25T01:03:31.512069 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:03:31.512466 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-07-25T01:03:31.512905 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:03:31.513387 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-07-25T01:03:31.513440 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:03:31.513828 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-07-25T01:03:31.513878 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:03:31.514275 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-07-25T01:03:31.514322 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:03:32.174272 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-07-25T01:03:32.174324 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:32.174739 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-07-25T01:03:32.174775 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:32.175109 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T01:03:32.175140 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:32.175380 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T01:03:32.175410 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:32.175694 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T01:03:32.175724 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:32.176047 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T01:03:32.176079 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:32.177065 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T01:03:32.177121 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:32.177407 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T01:03:32.177464 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:32.177796 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T01:03:32.177835 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:33.516060 #5] INFO -- : Committing offsets: course_change/0:657 +I, [2018-07-25T01:03:33.518699 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-07-25T01:03:33.518744 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:03:33.520133 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-07-25T01:03:33.520182 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:03:33.520439 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T01:03:33.520477 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:03:33.521577 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.91 ms +I, [2018-07-25T01:03:33.521618 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:03:33.521864 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T01:03:33.521895 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:03:34.178776 #5] INFO -- : Committing offsets: section_change/0:1400 +I, [2018-07-25T01:03:34.180917 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-07-25T01:03:34.180962 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:34.182002 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T01:03:34.182039 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:34.182326 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T01:03:34.182356 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:34.182675 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T01:03:34.182705 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:34.183437 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T01:03:34.183478 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:34.183750 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T01:03:34.183780 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:34.184060 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T01:03:34.184090 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:35.522951 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-07-25T01:03:35.523000 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:03:35.523271 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-07-25T01:03:35.523302 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:03:35.523520 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-07-25T01:03:35.523550 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:03:35.523771 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-07-25T01:03:35.523801 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:03:35.524005 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-07-25T01:03:35.524033 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:03:35.524253 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-07-25T01:03:35.524305 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:03:35.524533 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-07-25T01:03:35.524562 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:03:35.524766 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-07-25T01:03:35.524795 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:03:35.525005 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T01:03:35.525034 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:03:36.184918 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-25T01:03:36.184968 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:36.185267 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T01:03:36.185296 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:36.186368 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T01:03:36.186409 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:36.186686 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T01:03:36.186720 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:36.187035 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T01:03:36.187080 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:36.187446 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T01:03:36.187493 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:36.187745 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T01:03:36.187801 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:36.188058 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T01:03:36.188090 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:36.188303 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T01:03:36.188358 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:36.188570 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T01:03:36.188598 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:36.188833 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T01:03:36.188862 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:36.189150 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T01:03:36.189181 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:36.189817 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-07-25T01:03:36.189854 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:36.190123 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T01:03:36.190152 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:37.527035 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-07-25T01:03:37.527085 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:03:37.527308 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-07-25T01:03:37.527339 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:03:37.528391 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-07-25T01:03:37.528430 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:03:37.528673 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-07-25T01:03:37.528704 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:03:37.528941 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-07-25T01:03:37.528971 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:03:37.529199 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T01:03:37.529229 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:03:37.529536 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-07-25T01:03:37.529565 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:03:37.529790 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T01:03:37.531737 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:03:38.191004 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T01:03:38.191053 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:38.191374 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T01:03:38.191404 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:38.191674 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T01:03:38.191704 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:38.191944 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T01:03:38.191973 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:38.192249 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T01:03:38.192279 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:38.192572 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T01:03:38.192602 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:38.193023 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-07-25T01:03:38.193064 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:40.194553 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.45 ms +I, [2018-07-25T01:03:40.194617 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:40.195079 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-07-25T01:03:40.195123 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:40.196003 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.67 ms +I, [2018-07-25T01:03:40.196065 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:40.196509 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-07-25T01:03:40.196549 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:42.200120 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-07-25T01:03:42.200198 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:42.201822 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.5 ms +I, [2018-07-25T01:03:42.201920 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:42.202496 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T01:03:42.202531 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:42.202854 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T01:03:42.202894 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:42.204061 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.01 ms +I, [2018-07-25T01:03:42.204168 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:43.535429 #5] INFO -- : Committing offsets: course_change/0:679 +I, [2018-07-25T01:03:43.537130 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-07-25T01:03:43.537174 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:03:43.537408 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T01:03:43.537438 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:03:44.204998 #5] INFO -- : Committing offsets: section_change/0:1437 +I, [2018-07-25T01:03:44.217063 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.48 ms +I, [2018-07-25T01:03:44.217136 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:44.257634 #5] INFO -- : Inline processing of topic section_change with 1 messages took 40.22 ms +I, [2018-07-25T01:03:44.257719 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:44.258988 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-07-25T01:03:44.259322 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:44.260458 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-07-25T01:03:44.260520 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:44.260968 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T01:03:44.261223 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:44.283716 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.81 ms +I, [2018-07-25T01:03:44.283787 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:45.538189 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-07-25T01:03:45.538238 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:03:46.284708 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-07-25T01:03:46.284758 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:46.285218 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-25T01:03:46.285254 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:46.286976 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-07-25T01:03:46.287037 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:48.288462 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.43 ms +I, [2018-07-25T01:03:48.288565 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:48.289163 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.44 ms +I, [2018-07-25T01:03:48.290080 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:48.290482 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T01:03:48.290516 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:48.290995 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-07-25T01:03:48.291041 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:50.291890 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-07-25T01:03:50.292520 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:50.293234 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.4 ms +I, [2018-07-25T01:03:50.293315 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:50.293936 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-07-25T01:03:50.294052 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:50.294610 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-07-25T01:03:50.294646 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:51.547068 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.25 ms +I, [2018-07-25T01:03:51.547122 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:03:51.547413 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-07-25T01:03:51.547447 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:03:51.547744 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-07-25T01:03:51.547778 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:03:51.548035 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-07-25T01:03:51.548070 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:03:52.296888 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-07-25T01:03:52.296993 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:52.297372 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T01:03:52.297403 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:52.297665 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T01:03:52.297692 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:52.297994 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T01:03:52.298039 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:52.299458 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.21 ms +I, [2018-07-25T01:03:52.299581 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:53.548454 #5] INFO -- : Committing offsets: course_change/0:686 +I, [2018-07-25T01:03:53.551397 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-07-25T01:03:53.551442 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:03:53.551675 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T01:03:53.551705 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:03:53.551904 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-07-25T01:03:53.551940 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:03:53.552260 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-07-25T01:03:53.552299 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:03:53.553237 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.24 ms +I, [2018-07-25T01:03:53.553274 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:03:54.300169 #5] INFO -- : Committing offsets: section_change/0:1459 +I, [2018-07-25T01:03:54.303890 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T01:03:54.303977 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:54.305228 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.67 ms +I, [2018-07-25T01:03:54.305377 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:54.305880 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T01:03:54.305921 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:54.306146 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T01:03:54.306176 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:54.306431 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T01:03:54.306465 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:54.306765 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T01:03:54.307196 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:54.307536 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T01:03:54.307570 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:55.554309 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-07-25T01:03:55.554358 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:03:55.554594 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-07-25T01:03:55.554624 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:03:55.554854 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T01:03:55.554889 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:03:55.555110 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T01:03:55.555139 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:03:56.308293 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-07-25T01:03:56.308345 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:56.308960 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.43 ms +I, [2018-07-25T01:03:56.309002 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:56.309398 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T01:03:56.309437 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:56.309843 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-25T01:03:56.309883 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:56.311723 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T01:03:56.314275 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:56.314661 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T01:03:56.314694 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:56.314965 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T01:03:56.314996 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:57.556034 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.29 ms +I, [2018-07-25T01:03:57.556128 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:03:57.556434 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-07-25T01:03:57.556467 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:03:57.556746 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-07-25T01:03:57.556919 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:03:57.557342 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-07-25T01:03:57.557378 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:03:57.557623 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T01:03:57.557653 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:03:58.316493 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-07-25T01:03:58.317225 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:58.317898 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-07-25T01:03:58.317954 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:58.318379 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T01:03:58.318537 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:58.319422 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.56 ms +I, [2018-07-25T01:03:58.319479 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:58.319934 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-25T01:03:58.319994 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:03:59.558789 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.31 ms +I, [2018-07-25T01:03:59.558934 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:03:59.559276 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-07-25T01:03:59.559309 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:03:59.559669 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-07-25T01:03:59.559715 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:04:00.323225 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.6 ms +I, [2018-07-25T01:04:00.323309 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:04:00.323761 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-07-25T01:04:00.323794 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:04:00.324392 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-07-25T01:04:00.324534 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:04:00.325042 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-07-25T01:04:00.325102 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:04:01.564623 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.54 ms +I, [2018-07-25T01:04:01.564796 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:04:01.565595 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.55 ms +I, [2018-07-25T01:04:01.565767 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:04:01.566880 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.36 ms +I, [2018-07-25T01:04:01.566962 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:04:01.567385 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-07-25T01:04:01.567424 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:04:02.372474 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.99 ms +I, [2018-07-25T01:04:02.382237 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:04:02.383704 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T01:04:02.383788 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:04:02.384263 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T01:04:02.384302 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:04:02.384720 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-07-25T01:04:02.385267 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:04:02.385966 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-07-25T01:04:02.386072 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:04:02.386548 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-07-25T01:04:02.386588 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:04:03.568322 #5] INFO -- : Committing offsets: course_change/0:707 +I, [2018-07-25T01:04:03.577349 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.23 ms +I, [2018-07-25T01:04:03.577538 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:04:03.577775 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-07-25T01:04:03.577856 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:04:03.578141 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-07-25T01:04:03.578172 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:04:04.386951 #5] INFO -- : Committing offsets: section_change/0:1488 +I, [2018-07-25T01:04:04.389596 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T01:04:04.389640 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:04:04.389988 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T01:04:04.390020 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:04:04.390288 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T01:04:04.390318 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:04:04.390636 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T01:04:04.391661 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:04:04.392005 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T01:04:04.392036 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:04:04.392417 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-07-25T01:04:04.392448 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:04:04.392825 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-25T01:04:04.392858 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:04:05.579793 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.26 ms +I, [2018-07-25T01:04:05.579896 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:04:05.580421 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-07-25T01:04:05.580477 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:04:05.580980 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-07-25T01:04:05.581050 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:04:05.582390 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-07-25T01:04:05.582454 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:04:05.583171 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-07-25T01:04:05.583213 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:04:06.393780 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-07-25T01:04:06.393829 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:04:06.394101 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T01:04:06.394132 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:04:06.394376 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T01:04:06.394413 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:04:06.394793 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T01:04:06.394866 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:04:06.397151 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-07-25T01:04:06.397228 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:04:07.593301 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.35 ms +I, [2018-07-25T01:04:07.593373 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:04:07.594101 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.24 ms +I, [2018-07-25T01:04:07.594146 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:04:07.594474 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-07-25T01:04:07.594521 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:04:07.594911 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-07-25T01:04:07.594956 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:04:07.595225 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-07-25T01:04:07.595256 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:04:07.595493 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T01:04:07.595522 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:04:08.398587 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.5 ms +I, [2018-07-25T01:04:08.398694 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:04:08.399628 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-07-25T01:04:08.399811 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:04:08.401765 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.72 ms +I, [2018-07-25T01:04:08.401811 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:04:08.402190 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T01:04:08.402337 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:04:08.402797 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-07-25T01:04:08.402848 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:04:08.403252 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T01:04:08.403298 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:04:09.608092 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.31 ms +I, [2018-07-25T01:04:09.608420 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:04:09.608939 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-07-25T01:04:09.609001 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:04:09.610121 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.24 ms +I, [2018-07-25T01:04:09.610186 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:04:09.610680 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-07-25T01:04:09.610749 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:04:09.615920 #5] INFO -- : Inline processing of topic course_change with 1 messages took 4.87 ms +I, [2018-07-25T01:04:09.660372 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:04:10.410650 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.77 ms +I, [2018-07-25T01:04:10.410734 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:04:10.411186 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T01:04:10.411272 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:04:10.411642 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T01:04:10.411696 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:04:10.417001 #5] INFO -- : Inline processing of topic section_change with 1 messages took 4.56 ms +I, [2018-07-25T01:04:10.417081 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:04:11.668175 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.48 ms +I, [2018-07-25T01:04:11.668344 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:04:11.672648 #5] INFO -- : Inline processing of topic course_change with 1 messages took 4.03 ms +I, [2018-07-25T01:04:11.672725 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:04:12.419391 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-07-25T01:04:12.419489 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:04:12.421924 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.86 ms +I, [2018-07-25T01:04:12.422106 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:04:13.675472 #5] INFO -- : Committing offsets: course_change/0:728 +I, [2018-07-25T01:04:13.677975 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.24 ms +I, [2018-07-25T01:04:13.678022 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:04:13.678280 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T01:04:13.678311 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:04:13.678783 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-07-25T01:04:13.678818 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:04:13.679216 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-07-25T01:04:13.679251 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:04:14.422686 #5] INFO -- : Committing offsets: section_change/0:1512 +I, [2018-07-25T01:04:14.427314 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-25T01:04:14.427361 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:04:14.427646 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T01:04:14.427677 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:04:14.427953 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T01:04:14.427991 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:04:14.428213 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T01:04:14.428243 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:04:14.428464 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T01:04:14.428494 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:04:14.428905 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-07-25T01:04:14.430490 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:04:14.430898 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T01:04:14.430940 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:04:14.431277 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T01:04:14.431320 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:04:14.431652 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T01:04:14.434429 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:04:14.435715 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.96 ms +I, [2018-07-25T01:04:14.435807 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:04:14.436413 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-07-25T01:04:14.436504 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:04:14.458980 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T01:04:14.459103 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:04:14.459503 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T01:04:14.459541 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:04:14.459930 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T01:04:14.459974 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:04:14.460273 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T01:04:14.460316 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:04:14.460687 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T01:04:14.460758 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:04:14.461156 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T01:04:14.476399 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:04:14.477279 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-25T01:04:14.477366 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:04:14.488112 #5] INFO -- : Inline processing of topic section_change with 1 messages took 8.81 ms +I, [2018-07-25T01:04:14.489006 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:04:14.489732 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.43 ms +I, [2018-07-25T01:04:14.489797 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:04:14.490372 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-07-25T01:04:14.490459 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:04:14.492521 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.85 ms +I, [2018-07-25T01:04:14.492585 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:04:14.493798 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-07-25T01:04:14.493863 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:04:14.494508 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.42 ms +I, [2018-07-25T01:04:14.494586 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:04:14.494973 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T01:04:14.495036 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:04:14.496146 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-07-25T01:04:14.496306 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:04:14.496739 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T01:04:14.496781 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:04:14.497136 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T01:04:14.497176 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:04:14.509516 #5] INFO -- : Inline processing of topic section_change with 1 messages took 12.04 ms +I, [2018-07-25T01:04:14.513513 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:04:14.514450 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.51 ms +I, [2018-07-25T01:04:14.515458 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:04:14.515951 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T01:04:14.515988 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:04:14.516667 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-25T01:04:14.516732 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:04:14.517134 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T01:04:14.517180 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:04:14.517500 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T01:04:14.517543 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:04:14.517885 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T01:04:14.517963 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:04:14.520728 #5] INFO -- : Inline processing of topic section_change with 1 messages took 2.48 ms +I, [2018-07-25T01:04:14.520801 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:04:14.521170 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T01:04:14.521228 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:04:14.522491 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.07 ms +I, [2018-07-25T01:04:14.522562 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:04:14.522981 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T01:04:14.523031 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:04:14.523386 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T01:04:14.523472 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:04:14.530446 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T01:04:14.530494 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:04:14.530753 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T01:04:14.530784 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:04:14.531024 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T01:04:14.531055 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:04:14.531275 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T01:04:14.531305 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:04:14.531536 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T01:04:14.531572 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:04:14.531819 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T01:04:14.531848 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:04:15.680057 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-07-25T01:04:15.680106 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:04:15.680356 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-07-25T01:04:15.680387 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:04:15.680618 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-07-25T01:04:15.680648 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:04:15.680925 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-07-25T01:04:15.680995 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:04:16.537204 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-07-25T01:04:16.537278 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:04:16.537839 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-07-25T01:04:16.537914 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:04:16.538436 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T01:04:16.538484 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:04:16.538819 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T01:04:16.538861 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:04:16.539211 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T01:04:16.539291 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:04:16.540042 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.42 ms +I, [2018-07-25T01:04:16.540158 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:04:16.541129 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.52 ms +I, [2018-07-25T01:04:16.541282 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:04:16.541680 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T01:04:16.541730 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:04:16.542283 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T01:04:16.542352 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:04:16.542852 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-25T01:04:16.542918 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:04:16.543337 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T01:04:16.543411 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:04:16.544607 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.95 ms +I, [2018-07-25T01:04:16.544672 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:04:16.545113 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T01:04:16.545191 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:04:16.545729 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T01:04:16.546021 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:04:16.547278 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.01 ms +I, [2018-07-25T01:04:16.547362 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:04:16.547971 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-07-25T01:04:16.548065 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:04:16.565942 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-07-25T01:04:16.566047 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:04:16.566990 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.63 ms +I, [2018-07-25T01:04:16.567070 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:04:16.567682 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-07-25T01:04:16.567803 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:04:16.568695 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-07-25T01:04:16.568754 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:04:16.569201 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T01:04:16.569269 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:04:16.569832 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-07-25T01:04:16.569918 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:04:16.570378 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T01:04:16.570441 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:04:16.571032 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-07-25T01:04:16.571100 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:04:16.599180 #5] INFO -- : Inline processing of topic section_change with 1 messages took 27.8 ms +I, [2018-07-25T01:04:16.599273 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:04:16.607777 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-07-25T01:04:16.607858 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:04:16.609235 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.49 ms +I, [2018-07-25T01:04:16.610459 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:04:16.622178 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.81 ms +I, [2018-07-25T01:04:16.622268 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:04:16.637533 #5] INFO -- : Inline processing of topic section_change with 1 messages took 13.77 ms +I, [2018-07-25T01:04:16.637613 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:04:16.641764 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.48 ms +I, [2018-07-25T01:04:16.641837 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:04:16.644921 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.43 ms +I, [2018-07-25T01:04:16.644991 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:04:16.645381 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T01:04:16.645430 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:04:16.646534 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-25T01:04:16.646595 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:04:16.647051 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T01:04:16.647121 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:04:16.648144 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-07-25T01:04:16.649353 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:04:16.649873 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T01:04:16.650132 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:04:16.659026 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.4 ms +I, [2018-07-25T01:04:16.659076 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:04:16.659633 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T01:04:16.659684 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:04:16.660059 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T01:04:16.660205 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:04:16.666138 #5] INFO -- : Inline processing of topic section_change with 1 messages took 2.91 ms +I, [2018-07-25T01:04:16.666207 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:04:16.667063 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.48 ms +I, [2018-07-25T01:04:16.667155 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:04:16.667696 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T01:04:16.667749 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:04:16.668391 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.45 ms +I, [2018-07-25T01:04:16.668447 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:04:16.669272 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.59 ms +I, [2018-07-25T01:04:16.669362 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:04:16.671469 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T01:04:16.671558 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:04:16.672064 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T01:04:16.672121 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:04:16.672495 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T01:04:16.672549 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:04:16.675640 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-07-25T01:04:16.677043 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:04:16.680270 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.94 ms +I, [2018-07-25T01:04:16.680344 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:04:16.681427 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.5 ms +I, [2018-07-25T01:04:16.681490 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:04:16.682517 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.77 ms +I, [2018-07-25T01:04:16.682580 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:04:16.683027 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T01:04:16.683085 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:04:16.683508 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T01:04:16.750195 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:04:16.750714 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T01:04:16.750767 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:04:16.751181 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T01:04:16.751232 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:04:16.751710 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-07-25T01:04:16.751761 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:04:16.752131 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T01:04:16.752177 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:04:16.752511 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T01:04:16.752553 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:04:16.752845 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T01:04:16.756809 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:04:16.757316 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T01:04:16.757367 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:04:16.757787 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T01:04:16.757824 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:04:16.758251 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-07-25T01:04:16.758296 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:04:16.759470 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-07-25T01:04:16.759686 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:04:16.766339 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-07-25T01:04:16.768592 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:04:16.769367 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T01:04:16.769408 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:04:16.769684 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T01:04:16.769730 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:04:16.771698 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.75 ms +I, [2018-07-25T01:04:16.772167 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:04:16.776687 #5] INFO -- : Inline processing of topic section_change with 1 messages took 2.38 ms +I, [2018-07-25T01:04:16.777926 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:04:16.778344 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T01:04:16.778390 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:04:16.778756 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T01:04:16.778803 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:04:16.781825 #5] INFO -- : Inline processing of topic section_change with 1 messages took 2.79 ms +I, [2018-07-25T01:04:16.781913 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:04:17.682438 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.27 ms +I, [2018-07-25T01:04:17.682491 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:04:18.783036 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.44 ms +I, [2018-07-25T01:04:18.783091 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:04:19.683602 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.35 ms +I, [2018-07-25T01:04:19.683667 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:04:20.784266 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.5 ms +I, [2018-07-25T01:04:20.784340 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:04:20.785809 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.02 ms +I, [2018-07-25T01:04:20.785877 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:04:20.786304 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-07-25T01:04:20.786348 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:04:22.788567 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-07-25T01:04:22.788691 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:04:22.789110 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T01:04:22.789143 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:04:22.789484 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T01:04:22.789514 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:04:23.686849 #5] INFO -- : Committing offsets: course_change/0:738 +I, [2018-07-25T01:04:24.789989 #5] INFO -- : Committing offsets: section_change/0:1636 +I, [2018-07-25T01:04:24.792818 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-07-25T01:04:24.792868 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:04:24.793214 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T01:04:24.793245 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:04:24.793551 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T01:04:24.793590 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:04:26.798422 #5] INFO -- : Inline processing of topic section_change with 1 messages took 2.25 ms +I, [2018-07-25T01:04:26.799018 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:04:26.801718 #5] INFO -- : Inline processing of topic section_change with 1 messages took 2.23 ms +I, [2018-07-25T01:04:26.801798 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:04:28.803278 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-07-25T01:04:28.803328 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:04:28.803762 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-07-25T01:04:28.803805 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:04:30.805990 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.68 ms +I, [2018-07-25T01:04:30.806048 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:04:30.808128 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.02 ms +I, [2018-07-25T01:04:30.808520 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:04:32.811678 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.17 ms +I, [2018-07-25T01:04:32.811736 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:04:32.813047 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.13 ms +I, [2018-07-25T01:04:32.813107 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:04:32.813613 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-07-25T01:04:32.813660 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:04:32.814049 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T01:04:32.814085 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:04:33.697213 #5] INFO -- : Committing offsets: course_change/0:738 +I, [2018-07-25T01:04:34.814897 #5] INFO -- : Committing offsets: section_change/0:1649 +I, [2018-07-25T01:04:34.819740 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.48 ms +I, [2018-07-25T01:04:34.820011 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:04:34.820655 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-07-25T01:04:34.820715 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:04:34.821287 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-07-25T01:04:34.821337 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:04:36.823356 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-07-25T01:04:36.823413 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:04:36.824141 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-07-25T01:04:36.824244 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:04:36.825307 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.81 ms +I, [2018-07-25T01:04:36.825404 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:04:37.700584 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.55 ms +I, [2018-07-25T01:04:37.700638 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:04:38.826498 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-07-25T01:04:38.826547 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:04:38.828115 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.43 ms +I, [2018-07-25T01:04:38.828174 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:04:38.828675 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-07-25T01:04:38.828720 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:04:38.829102 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T01:04:38.829138 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:04:38.830290 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.01 ms +I, [2018-07-25T01:04:38.831244 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:04:39.701475 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-07-25T01:04:39.701571 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:04:40.832789 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-25T01:04:40.832842 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:04:40.833153 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T01:04:40.833184 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:04:40.833529 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T01:04:40.833560 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:04:40.833892 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T01:04:40.833923 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:04:42.835954 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-07-25T01:04:42.836082 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:04:42.837241 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-07-25T01:04:42.837288 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:04:42.837934 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.4 ms +I, [2018-07-25T01:04:42.837986 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:04:42.838549 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T01:04:42.838583 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:04:43.704955 #5] INFO -- : Committing offsets: course_change/0:740 +I, [2018-07-25T01:04:44.838822 #5] INFO -- : Committing offsets: section_change/0:1668 +I, [2018-07-25T01:04:44.841406 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-07-25T01:04:44.841475 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:04:44.841809 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T01:04:44.841848 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:04:44.842964 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.97 ms +I, [2018-07-25T01:04:44.843010 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:04:44.843313 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T01:04:44.843344 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:04:44.843836 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-07-25T01:04:44.843954 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:04:46.845125 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.45 ms +I, [2018-07-25T01:04:46.845177 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:04:46.845478 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T01:04:46.845508 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:04:46.846015 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-07-25T01:04:46.846130 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:04:48.848687 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-07-25T01:04:48.848734 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:04:48.850424 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-07-25T01:04:48.850478 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:04:49.730446 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.24 ms +I, [2018-07-25T01:04:49.730606 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:04:49.731241 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.31 ms +I, [2018-07-25T01:04:49.731294 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:04:50.852587 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.12 ms +I, [2018-07-25T01:04:50.852764 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:04:50.853537 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.57 ms +I, [2018-07-25T01:04:50.853600 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:04:50.854074 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T01:04:50.854156 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:04:52.856818 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-07-25T01:04:52.856868 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:04:52.857506 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.4 ms +I, [2018-07-25T01:04:52.857570 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:04:53.735047 #5] INFO -- : Committing offsets: course_change/0:742 +I, [2018-07-25T01:04:54.858727 #5] INFO -- : Committing offsets: section_change/0:1683 +I, [2018-07-25T01:04:54.861739 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-07-25T01:04:54.861783 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:04:54.862238 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-25T01:04:54.862324 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:04:56.863919 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.43 ms +I, [2018-07-25T01:04:56.863972 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:04:56.864313 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T01:04:56.864344 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:04:56.865237 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.5 ms +I, [2018-07-25T01:04:56.865355 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:04:58.867338 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-07-25T01:04:58.867388 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:04:58.867717 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T01:04:58.867748 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:04:58.868115 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T01:04:58.868158 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:05:00.869347 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-07-25T01:05:00.869398 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:05:00.869933 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-07-25T01:05:00.870023 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:05:00.870727 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.56 ms +I, [2018-07-25T01:05:00.870769 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:05:02.872897 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-07-25T01:05:02.872947 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:05:02.873288 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T01:05:02.873381 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:05:02.873724 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T01:05:02.873755 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:05:02.874172 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-07-25T01:05:02.874204 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:05:02.874860 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-07-25T01:05:02.875190 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:05:02.875897 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-07-25T01:05:02.875945 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:05:03.744161 #5] INFO -- : Committing offsets: course_change/0:742 +I, [2018-07-25T01:05:03.746314 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.25 ms +I, [2018-07-25T01:05:03.746370 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:05:03.746710 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-07-25T01:05:03.746791 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:05:03.747141 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-07-25T01:05:03.747171 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:05:04.876685 #5] INFO -- : Committing offsets: section_change/0:1700 +I, [2018-07-25T01:05:04.880914 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-07-25T01:05:04.880961 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:05:04.881299 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T01:05:04.881329 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:05:04.882802 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.26 ms +I, [2018-07-25T01:05:04.882853 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:05:04.883174 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T01:05:04.883211 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:05:05.748158 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-07-25T01:05:05.748209 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:05:05.748734 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.28 ms +I, [2018-07-25T01:05:05.748803 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:05:05.752557 #5] INFO -- : Inline processing of topic course_change with 1 messages took 3.48 ms +I, [2018-07-25T01:05:05.752602 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:05:05.754261 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-07-25T01:05:05.754316 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:05:05.754645 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-07-25T01:05:05.754695 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:05:06.884723 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-25T01:05:06.884772 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:05:06.885063 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T01:05:06.885093 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:05:06.885491 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T01:05:06.885664 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:05:06.886404 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-07-25T01:05:06.886443 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:05:06.886734 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T01:05:06.886764 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:05:06.887016 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T01:05:06.887049 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:05:07.755322 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-07-25T01:05:07.755400 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:05:07.755632 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T01:05:07.755662 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:05:07.755863 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-07-25T01:05:07.755892 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:05:07.756099 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-07-25T01:05:07.756127 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:05:07.756328 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-07-25T01:05:07.756357 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:05:07.756678 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-07-25T01:05:07.756821 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:05:08.888578 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-07-25T01:05:08.888725 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:05:08.889445 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-07-25T01:05:08.889504 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:05:08.890054 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-07-25T01:05:08.890095 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:05:08.890417 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T01:05:08.890463 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:05:08.890867 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T01:05:08.890901 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:05:08.891386 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-07-25T01:05:08.891433 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:05:09.758818 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.38 ms +I, [2018-07-25T01:05:09.759429 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:05:09.761092 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.85 ms +I, [2018-07-25T01:05:09.761153 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:05:09.762221 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-07-25T01:05:09.762287 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:05:10.892237 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-07-25T01:05:10.892294 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:05:10.892712 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T01:05:10.892747 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:05:10.893165 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-07-25T01:05:10.893208 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:05:11.763973 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-07-25T01:05:11.764022 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:05:11.764273 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T01:05:11.764304 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:05:11.764510 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-07-25T01:05:11.764540 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:05:11.765461 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.77 ms +I, [2018-07-25T01:05:11.765614 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:05:11.765880 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T01:05:11.765911 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:05:11.766168 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-07-25T01:05:11.766199 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:05:11.766451 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-07-25T01:05:11.766498 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:05:11.766798 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-07-25T01:05:11.766846 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:05:12.895440 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-07-25T01:05:12.895489 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:05:12.895750 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T01:05:12.895780 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:05:12.896045 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T01:05:12.898349 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:05:12.898816 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T01:05:12.898853 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:05:12.899089 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T01:05:12.899120 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:05:12.899445 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T01:05:12.899502 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:05:12.899801 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T01:05:12.899847 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:05:12.900438 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.47 ms +I, [2018-07-25T01:05:12.900476 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:05:12.900744 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T01:05:12.900774 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:05:12.901010 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T01:05:12.901039 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:05:12.901313 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T01:05:12.901349 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:05:12.901597 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T01:05:12.901637 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:05:12.901871 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T01:05:12.901912 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:05:12.902147 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T01:05:12.902184 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:05:12.902405 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T01:05:12.902474 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:05:12.903603 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.98 ms +I, [2018-07-25T01:05:12.903638 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:05:12.903858 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T01:05:12.903976 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:05:12.904249 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T01:05:12.904277 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:05:12.904491 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T01:05:12.904521 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:05:12.907078 #5] INFO -- : Inline processing of topic section_change with 1 messages took 2.42 ms +I, [2018-07-25T01:05:12.907151 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:05:12.907557 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T01:05:12.907593 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:05:12.907850 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T01:05:12.907881 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:05:12.908106 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T01:05:12.908135 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:05:12.908377 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T01:05:12.908407 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:05:12.908616 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T01:05:12.908645 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:05:12.908849 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T01:05:12.908878 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:05:12.909148 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T01:05:12.909474 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:05:12.911215 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.51 ms +I, [2018-07-25T01:05:12.911257 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:05:12.911950 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.45 ms +I, [2018-07-25T01:05:12.912031 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:05:12.912348 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T01:05:12.912378 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:05:12.915085 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T01:05:12.915173 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:05:12.915635 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T01:05:12.915692 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:05:12.916068 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T01:05:12.916101 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:05:13.768919 #5] INFO -- : Committing offsets: course_change/0:767 +I, [2018-07-25T01:05:13.773298 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-07-25T01:05:13.773376 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:05:13.773673 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T01:05:13.773797 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:05:13.774030 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-07-25T01:05:13.774090 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:05:14.916582 #5] INFO -- : Committing offsets: section_change/0:1752 +I, [2018-07-25T01:05:14.919614 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.95 ms +I, [2018-07-25T01:05:14.919747 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:05:14.920118 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T01:05:14.920151 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:05:14.920889 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T01:05:14.920925 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:05:14.921193 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T01:05:14.921224 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:05:15.774920 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-07-25T01:05:15.774968 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:05:15.775221 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-07-25T01:05:15.775251 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:05:15.775471 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T01:05:15.775501 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:05:15.775715 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T01:05:15.775744 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:05:16.922044 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-07-25T01:05:16.922251 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:05:16.922631 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T01:05:16.922665 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:05:16.922978 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T01:05:16.923010 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:05:16.923309 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T01:05:16.923341 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:05:16.923628 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T01:05:16.923658 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:05:16.923900 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T01:05:16.923929 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:05:17.776769 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-07-25T01:05:17.776819 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:05:17.777044 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T01:05:17.777075 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:05:17.778065 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.78 ms +I, [2018-07-25T01:05:17.778117 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:05:18.924657 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-07-25T01:05:18.924707 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:05:18.924996 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T01:05:18.925027 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:05:18.925316 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T01:05:18.925347 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:05:18.925605 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T01:05:18.925634 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:05:18.925915 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T01:05:18.925945 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:05:18.926206 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T01:05:18.926261 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:05:18.927318 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.93 ms +I, [2018-07-25T01:05:18.927361 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:05:19.778992 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-07-25T01:05:19.779055 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:05:19.779306 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-07-25T01:05:19.779337 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:05:19.779562 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T01:05:19.779592 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:05:20.929233 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-07-25T01:05:20.929296 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:05:20.929616 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T01:05:20.929656 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:05:20.930041 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-25T01:05:20.930085 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:05:20.930363 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T01:05:20.930406 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:05:21.782711 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.38 ms +I, [2018-07-25T01:05:21.782850 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:05:22.933809 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-25T01:05:22.933859 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:05:22.934234 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T01:05:22.934276 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:05:22.935476 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.05 ms +I, [2018-07-25T01:05:22.935525 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:05:22.935985 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T01:05:22.936018 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:05:22.936433 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T01:05:22.936472 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:05:22.936698 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T01:05:22.936746 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:05:23.783355 #5] INFO -- : Committing offsets: course_change/0:781 +I, [2018-07-25T01:05:23.789248 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.83 ms +I, [2018-07-25T01:05:23.789356 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:05:23.791125 #5] INFO -- : Inline processing of topic course_change with 1 messages took 1.41 ms +I, [2018-07-25T01:05:23.791235 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:05:23.792495 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.74 ms +I, [2018-07-25T01:05:23.792660 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:05:23.793442 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.35 ms +I, [2018-07-25T01:05:23.793586 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:05:24.938246 #5] INFO -- : Committing offsets: section_change/0:1779 +I, [2018-07-25T01:05:24.941811 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-07-25T01:05:24.941880 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:05:24.942619 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.41 ms +I, [2018-07-25T01:05:24.942683 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:05:24.943718 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.52 ms +I, [2018-07-25T01:05:24.943834 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:05:25.795407 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-07-25T01:05:25.795457 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:05:25.795806 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-07-25T01:05:25.795861 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:05:26.944532 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-25T01:05:26.944582 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:05:26.944874 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T01:05:26.944904 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:05:26.945161 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T01:05:26.945191 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:05:26.945446 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T01:05:26.945475 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:05:27.796991 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-07-25T01:05:27.797040 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:05:27.797283 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T01:05:27.797313 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:05:27.797570 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-07-25T01:05:27.797600 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:05:27.797928 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-07-25T01:05:27.797986 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:05:27.798231 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-07-25T01:05:27.798257 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:05:28.946500 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-25T01:05:28.946550 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:05:28.946896 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T01:05:28.946929 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:05:28.947166 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T01:05:28.947197 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:05:28.947468 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T01:05:28.947498 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:05:29.799723 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.28 ms +I, [2018-07-25T01:05:29.799775 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:05:29.800071 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-07-25T01:05:29.800110 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:05:29.801443 #5] INFO -- : Inline processing of topic course_change with 1 messages took 1.0 ms +I, [2018-07-25T01:05:29.801525 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:05:29.802078 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.33 ms +I, [2018-07-25T01:05:29.802127 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:05:30.949303 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-07-25T01:05:30.949354 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:05:30.949618 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T01:05:30.949649 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:05:30.949907 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T01:05:30.949938 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:05:30.950226 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T01:05:30.950256 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:05:30.950551 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T01:05:30.950584 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:05:30.951905 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.86 ms +I, [2018-07-25T01:05:30.951963 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:05:31.804769 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-07-25T01:05:31.804851 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:05:31.805123 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-07-25T01:05:31.805159 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:05:31.805408 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-07-25T01:05:31.805460 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:05:31.805699 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-07-25T01:05:31.805729 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:05:32.954253 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-07-25T01:05:32.954340 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:05:32.954683 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T01:05:32.954718 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:05:32.955098 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-25T01:05:32.955135 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:05:32.955694 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-07-25T01:05:32.955759 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:05:32.956077 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T01:05:32.956120 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:05:33.808318 #5] INFO -- : Committing offsets: course_change/0:800 +I, [2018-07-25T01:05:33.810934 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.26 ms +I, [2018-07-25T01:05:33.810999 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:05:33.811270 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-07-25T01:05:33.811350 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:05:33.811800 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.27 ms +I, [2018-07-25T01:05:33.811866 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:05:33.812580 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.42 ms +I, [2018-07-25T01:05:33.812650 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:05:33.812971 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-07-25T01:05:33.813003 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:05:34.960914 #5] INFO -- : Committing offsets: section_change/0:1801 +I, [2018-07-25T01:05:34.964538 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-07-25T01:05:34.964609 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:05:34.966928 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.65 ms +I, [2018-07-25T01:05:34.967077 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:05:34.968865 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.79 ms +I, [2018-07-25T01:05:34.969186 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:05:34.969921 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-07-25T01:05:34.969996 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:05:34.970954 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.48 ms +I, [2018-07-25T01:05:34.971094 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:05:34.972821 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.06 ms +I, [2018-07-25T01:05:34.972956 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:05:34.973609 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-07-25T01:05:34.973675 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:05:34.977970 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.5 ms +I, [2018-07-25T01:05:34.978043 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:05:35.814710 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-07-25T01:05:35.814761 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:05:35.814994 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-07-25T01:05:35.815025 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:05:35.816788 #5] INFO -- : Inline processing of topic course_change with 1 messages took 1.6 ms +I, [2018-07-25T01:05:35.816835 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:05:35.817250 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-07-25T01:05:35.817299 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:05:35.817780 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-07-25T01:05:35.818782 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:05:36.979986 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-07-25T01:05:36.980063 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:05:36.980533 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-25T01:05:36.980587 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:05:36.981069 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-07-25T01:05:36.981120 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:05:37.819666 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-07-25T01:05:37.819717 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:05:37.819979 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-07-25T01:05:37.820010 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:05:37.821625 #5] INFO -- : Inline processing of topic course_change with 1 messages took 1.28 ms +I, [2018-07-25T01:05:37.821727 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:05:37.822986 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.86 ms +I, [2018-07-25T01:05:37.823073 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:05:37.823545 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.23 ms +I, [2018-07-25T01:05:37.823602 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:05:38.982157 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T01:05:38.982207 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:05:38.982454 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T01:05:38.982483 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:05:38.982720 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T01:05:38.982749 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:05:38.983021 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T01:05:38.983050 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:05:38.983276 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T01:05:38.983327 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:05:38.984867 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T01:05:38.984908 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:05:38.985353 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-07-25T01:05:38.985391 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:05:38.985885 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T01:05:38.986019 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:05:39.824363 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-07-25T01:05:39.824413 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:05:39.824681 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T01:05:39.824711 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:05:39.824934 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T01:05:39.824991 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:05:39.825300 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T01:05:39.825332 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:05:39.825547 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-07-25T01:05:39.825576 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:05:39.825784 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-07-25T01:05:39.825812 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:05:39.826021 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-07-25T01:05:39.826050 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:05:39.826249 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-07-25T01:05:39.826277 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:05:40.988731 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.59 ms +I, [2018-07-25T01:05:40.989632 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:05:40.990288 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T01:05:40.990331 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:05:40.990630 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T01:05:40.990676 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:05:40.990937 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T01:05:40.990970 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:05:40.991299 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T01:05:40.991340 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:05:40.991726 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T01:05:40.991759 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:05:41.828309 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-07-25T01:05:41.828361 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:05:41.828608 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-07-25T01:05:41.828636 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:05:41.828947 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-07-25T01:05:41.828979 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:05:41.829976 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.84 ms +I, [2018-07-25T01:05:41.830047 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:05:41.830303 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T01:05:41.830334 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:05:42.994066 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-25T01:05:42.994126 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:05:42.994485 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T01:05:42.994522 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:05:42.994778 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T01:05:42.994810 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:05:42.995088 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T01:05:42.995128 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:05:42.996266 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.0 ms +I, [2018-07-25T01:05:42.996304 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:05:42.996736 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-07-25T01:05:42.996767 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:05:43.830787 #5] INFO -- : Committing offsets: course_change/0:828 +I, [2018-07-25T01:05:43.833803 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-07-25T01:05:43.833851 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:05:43.834103 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T01:05:43.834135 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:05:43.834352 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T01:05:43.834382 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:05:43.834686 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T01:05:43.834723 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:05:43.834985 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-07-25T01:05:43.835044 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:05:44.999167 #5] INFO -- : Committing offsets: section_change/0:1832 +I, [2018-07-25T01:05:45.001856 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.55 ms +I, [2018-07-25T01:05:45.001972 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:05:45.002492 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-25T01:05:45.002538 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:05:45.002831 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T01:05:45.003002 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:05:45.005049 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-07-25T01:05:45.005106 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:05:45.836011 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.25 ms +I, [2018-07-25T01:05:45.836076 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:05:45.836444 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T01:05:45.836480 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:05:45.837120 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-07-25T01:05:45.837182 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:05:45.837535 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-07-25T01:05:45.837575 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:05:47.006072 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.4 ms +I, [2018-07-25T01:05:47.006123 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:05:47.007014 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.72 ms +I, [2018-07-25T01:05:47.007060 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:05:47.007518 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T01:05:47.007573 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:05:47.007971 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T01:05:47.008020 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:05:47.008439 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-25T01:05:47.008493 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:05:47.009539 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-25T01:05:47.009592 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:05:47.010017 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T01:05:47.010051 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:05:47.838555 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.35 ms +I, [2018-07-25T01:05:47.838669 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:05:47.839820 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.48 ms +I, [2018-07-25T01:05:47.839897 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:05:47.840171 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T01:05:47.840201 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:05:47.840424 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T01:05:47.840468 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:05:47.840776 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-07-25T01:05:47.840814 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:05:47.841080 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-07-25T01:05:47.841104 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:05:47.841328 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T01:05:47.841351 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:05:47.841597 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-07-25T01:05:47.841629 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:05:49.010696 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T01:05:49.010747 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:05:49.011054 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T01:05:49.011084 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:05:49.011403 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T01:05:49.011458 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:05:49.011701 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T01:05:49.011731 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:05:49.012784 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.91 ms +I, [2018-07-25T01:05:49.012851 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:05:49.013304 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-25T01:05:49.013349 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:05:49.842797 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-07-25T01:05:49.842847 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:05:49.843102 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-07-25T01:05:49.843133 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:05:49.843373 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-07-25T01:05:49.843403 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:05:51.014580 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-07-25T01:05:51.014629 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:05:51.014967 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T01:05:51.014998 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:05:51.015432 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-07-25T01:05:51.015485 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:05:51.015752 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T01:05:51.015782 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:05:51.016008 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T01:05:51.016167 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:05:51.016453 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T01:05:51.016485 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:05:51.016717 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T01:05:51.016818 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:05:51.017249 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T01:05:51.017829 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:05:51.018263 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T01:05:51.018304 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:05:51.018551 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T01:05:51.018599 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:05:51.019949 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.22 ms +I, [2018-07-25T01:05:51.019995 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:05:51.020289 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T01:05:51.020319 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:05:51.020560 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T01:05:51.020589 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:05:51.022303 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T01:05:51.022502 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:05:51.022922 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T01:05:51.022954 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:05:51.023399 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-07-25T01:05:51.023454 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:05:51.023832 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T01:05:51.023867 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:05:51.844971 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-07-25T01:05:51.845020 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:05:51.845290 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-07-25T01:05:51.845320 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:05:51.845543 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T01:05:51.845573 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:05:51.845799 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-07-25T01:05:51.845828 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:05:51.846030 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-07-25T01:05:51.846059 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:05:51.846277 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-07-25T01:05:51.846306 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:05:51.846484 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.07 ms +I, [2018-07-25T01:05:51.846513 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:05:53.026548 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.99 ms +I, [2018-07-25T01:05:53.026675 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:05:53.027094 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T01:05:53.027126 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:05:53.027439 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T01:05:53.027470 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:05:53.027813 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T01:05:53.027844 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:05:53.846950 #5] INFO -- : Committing offsets: course_change/0:855 +I, [2018-07-25T01:05:53.848885 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-07-25T01:05:53.849016 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:05:55.028287 #5] INFO -- : Committing offsets: section_change/0:1870 +I, [2018-07-25T01:05:55.031041 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.42 ms +I, [2018-07-25T01:05:55.031090 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:05:55.033347 #5] INFO -- : Inline processing of topic section_change with 1 messages took 2.07 ms +I, [2018-07-25T01:05:55.033420 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:05:55.850153 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.25 ms +I, [2018-07-25T01:05:55.850219 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:05:55.850468 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T01:05:55.850499 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:05:55.850780 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-07-25T01:05:55.850811 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:05:57.035428 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.1 ms +I, [2018-07-25T01:05:57.035514 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:05:57.043315 #5] INFO -- : Inline processing of topic section_change with 1 messages took 7.31 ms +I, [2018-07-25T01:05:57.043395 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:05:57.043966 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-07-25T01:05:57.044025 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:05:57.049635 #5] INFO -- : Inline processing of topic section_change with 1 messages took 5.03 ms +I, [2018-07-25T01:05:57.049886 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:05:57.852147 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.28 ms +I, [2018-07-25T01:05:57.852215 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:05:57.852623 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.23 ms +I, [2018-07-25T01:05:57.852667 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:05:59.050705 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-07-25T01:05:59.050754 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:05:59.051036 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T01:05:59.051066 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:05:59.051249 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T01:05:59.051278 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:05:59.051543 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T01:05:59.052156 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:05:59.052855 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.49 ms +I, [2018-07-25T01:05:59.053011 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:05:59.853856 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-07-25T01:05:59.853905 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:05:59.854164 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T01:05:59.854194 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:05:59.854416 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T01:05:59.854446 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:05:59.854693 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-07-25T01:05:59.854723 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:06:01.054553 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-25T01:06:01.054601 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:06:01.054902 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T01:06:01.054948 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:06:01.055242 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T01:06:01.055272 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:06:01.057245 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.71 ms +I, [2018-07-25T01:06:01.057331 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:06:01.856771 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-07-25T01:06:01.856820 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:06:01.857046 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-07-25T01:06:01.857076 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:06:01.857299 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-07-25T01:06:01.857335 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:06:01.857531 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-07-25T01:06:01.857577 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:06:01.857788 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T01:06:01.857828 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:06:03.059934 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-25T01:06:03.059983 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:06:03.060250 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T01:06:03.060281 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:06:03.060560 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T01:06:03.060590 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:06:03.062020 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.27 ms +I, [2018-07-25T01:06:03.062075 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:06:03.062358 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T01:06:03.062388 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:06:03.062599 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T01:06:03.062633 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:06:03.062905 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T01:06:03.062948 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:06:03.063253 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T01:06:03.063298 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:06:03.063623 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T01:06:03.063671 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:06:03.063986 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T01:06:03.064062 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:06:03.064291 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T01:06:03.064321 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:06:03.064547 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T01:06:03.064577 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:06:03.064786 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T01:06:03.064815 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:06:03.065023 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T01:06:03.065053 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:06:03.065274 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T01:06:03.065416 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:06:03.066555 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T01:06:03.066612 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:06:03.066970 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T01:06:03.067084 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:06:03.067472 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T01:06:03.067522 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:06:03.067899 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T01:06:03.067950 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:06:03.068367 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T01:06:03.068461 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:06:03.068993 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-07-25T01:06:03.069064 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:06:03.069546 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T01:06:03.069629 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:06:03.070680 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T01:06:03.070748 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:06:03.071380 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-07-25T01:06:03.071454 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:06:03.072137 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-07-25T01:06:03.072363 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:06:03.072924 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-07-25T01:06:03.072970 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:06:03.075460 #5] INFO -- : Inline processing of topic section_change with 1 messages took 2.13 ms +I, [2018-07-25T01:06:03.075555 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:06:03.076136 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-25T01:06:03.076204 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:06:03.076970 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T01:06:03.077018 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:06:03.077582 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T01:06:03.077690 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:06:03.078073 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T01:06:03.078176 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:06:03.079347 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.91 ms +I, [2018-07-25T01:06:03.079417 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:06:03.080010 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-07-25T01:06:03.080051 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:06:03.080342 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T01:06:03.080374 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:06:03.081413 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.89 ms +I, [2018-07-25T01:06:03.081482 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:06:03.081947 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T01:06:03.081985 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:06:03.082393 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T01:06:03.082446 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:06:03.082821 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T01:06:03.083541 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:06:03.084106 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T01:06:03.084167 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:06:03.085095 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.71 ms +I, [2018-07-25T01:06:03.085162 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:06:03.085672 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T01:06:03.085729 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:06:03.086428 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.41 ms +I, [2018-07-25T01:06:03.086496 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:06:03.086975 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-25T01:06:03.087035 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:06:03.087741 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-07-25T01:06:03.087814 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:06:03.088289 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T01:06:03.088383 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:06:03.858416 #5] INFO -- : Committing offsets: course_change/0:870 +I, [2018-07-25T01:06:03.862239 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.31 ms +I, [2018-07-25T01:06:03.862315 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:06:03.862670 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-07-25T01:06:03.862734 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:06:03.863384 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-07-25T01:06:03.863450 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:06:03.864365 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.55 ms +I, [2018-07-25T01:06:03.864605 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:06:05.088863 #5] INFO -- : Committing offsets: section_change/0:1930 +I, [2018-07-25T01:06:05.091316 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T01:06:05.091388 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:06:05.091643 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T01:06:05.091674 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:06:05.091896 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T01:06:05.091926 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:06:05.092157 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T01:06:05.092187 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:06:05.092414 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T01:06:05.092452 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:06:05.092692 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T01:06:05.092723 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:06:05.092962 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T01:06:05.092993 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:06:05.093234 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T01:06:05.093272 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:06:05.093501 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T01:06:05.094139 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:06:05.095479 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-07-25T01:06:05.095532 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:06:05.095798 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T01:06:05.095828 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:06:05.096885 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.89 ms +I, [2018-07-25T01:06:05.097007 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:06:05.097322 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T01:06:05.097354 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:06:05.097673 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T01:06:05.097704 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:06:05.097987 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T01:06:05.098031 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:06:05.098343 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T01:06:05.098374 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:06:05.865827 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-07-25T01:06:05.865910 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:06:05.866317 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-07-25T01:06:05.866354 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:06:05.866699 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-07-25T01:06:05.866751 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:06:05.867147 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-07-25T01:06:05.867350 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:06:05.867876 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-07-25T01:06:05.867925 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:06:05.868582 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-07-25T01:06:05.868640 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:06:07.099376 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-07-25T01:06:07.099429 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:06:07.099873 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-07-25T01:06:07.099919 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:06:07.100270 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T01:06:07.100304 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:06:07.100798 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-07-25T01:06:07.100841 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:06:07.101269 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-07-25T01:06:07.101358 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:06:07.102424 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-07-25T01:06:07.102545 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:06:07.869558 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.25 ms +I, [2018-07-25T01:06:07.869612 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:06:07.869891 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T01:06:07.869923 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:06:09.103699 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.4 ms +I, [2018-07-25T01:06:09.103784 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:06:09.104393 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-07-25T01:06:09.104446 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:06:09.104810 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T01:06:09.105018 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:06:09.105721 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-07-25T01:06:09.105886 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:06:09.108219 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.42 ms +I, [2018-07-25T01:06:09.108343 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:06:09.871422 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.38 ms +I, [2018-07-25T01:06:09.871594 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:06:09.872297 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-07-25T01:06:09.872356 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:06:09.872669 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T01:06:09.872731 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:06:11.111278 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.61 ms +I, [2018-07-25T01:06:11.111416 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:06:11.112029 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-07-25T01:06:11.112071 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:06:13.115702 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.49 ms +I, [2018-07-25T01:06:13.115805 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:06:13.116279 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-07-25T01:06:13.117278 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:06:13.875880 #5] INFO -- : Committing offsets: course_change/0:885 +I, [2018-07-25T01:06:15.117769 #5] INFO -- : Committing offsets: section_change/0:1961 +I, [2018-07-25T01:06:15.121226 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-07-25T01:06:15.121271 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:06:15.121609 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T01:06:15.121640 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:06:15.125006 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-07-25T01:06:15.125070 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:06:17.126442 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-07-25T01:06:17.126492 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:06:17.126838 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T01:06:17.126918 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:06:17.130439 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.55 ms +I, [2018-07-25T01:06:17.130596 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:06:17.133674 #5] INFO -- : Inline processing of topic section_change with 1 messages took 2.6 ms +I, [2018-07-25T01:06:17.133766 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:06:17.879854 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-07-25T01:06:17.879922 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:06:19.135523 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-07-25T01:06:19.135574 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:06:19.135953 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-25T01:06:19.135988 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:06:19.136353 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-25T01:06:19.136393 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:06:21.138182 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.82 ms +I, [2018-07-25T01:06:21.138254 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:06:21.138892 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.44 ms +I, [2018-07-25T01:06:21.138939 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:06:23.141874 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.53 ms +I, [2018-07-25T01:06:23.141983 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:06:23.143564 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.65 ms +I, [2018-07-25T01:06:23.145716 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:06:23.887471 #5] INFO -- : Committing offsets: course_change/0:886 +I, [2018-07-25T01:06:25.147432 #5] INFO -- : Committing offsets: section_change/0:1975 +I, [2018-07-25T01:06:25.152263 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.42 ms +I, [2018-07-25T01:06:25.152325 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:06:25.152978 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.44 ms +I, [2018-07-25T01:06:25.153024 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:06:25.153509 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-25T01:06:25.153572 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:06:25.891057 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-07-25T01:06:25.891111 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:06:27.155851 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.49 ms +I, [2018-07-25T01:06:27.155915 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:06:27.156459 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-25T01:06:27.156520 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:06:27.157095 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-07-25T01:06:27.157144 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:06:27.891982 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-07-25T01:06:27.892031 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:06:29.161565 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-07-25T01:06:29.161616 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:06:29.162052 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-07-25T01:06:29.162096 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:06:29.163689 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.6 ms +I, [2018-07-25T01:06:29.163766 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:06:31.164615 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-07-25T01:06:31.164701 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:06:31.165384 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.4 ms +I, [2018-07-25T01:06:31.165459 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:06:31.895627 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.23 ms +I, [2018-07-25T01:06:31.895677 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:06:31.895891 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-07-25T01:06:31.895922 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:06:33.168521 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.51 ms +I, [2018-07-25T01:06:33.168740 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:06:33.169408 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T01:06:33.169443 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:06:33.169809 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T01:06:33.169860 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:06:33.170309 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-07-25T01:06:33.170357 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:06:33.170700 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T01:06:33.170764 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:06:33.171015 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T01:06:33.171076 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:06:33.897269 #5] INFO -- : Committing offsets: course_change/0:890 +I, [2018-07-25T01:06:33.900324 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-07-25T01:06:33.900368 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:06:33.900695 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-07-25T01:06:33.901887 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:06:33.902199 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-07-25T01:06:33.902233 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:06:33.902556 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-07-25T01:06:33.902596 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:06:35.171468 #5] INFO -- : Committing offsets: section_change/0:1992 +I, [2018-07-25T01:06:35.175469 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.52 ms +I, [2018-07-25T01:06:35.175554 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:06:35.176423 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.5 ms +I, [2018-07-25T01:06:35.176497 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:06:35.177334 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.56 ms +I, [2018-07-25T01:06:35.177404 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:06:35.903438 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.29 ms +I, [2018-07-25T01:06:35.903514 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:06:35.903856 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-07-25T01:06:35.903894 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:06:35.904446 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.27 ms +I, [2018-07-25T01:06:35.904492 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:06:35.906168 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-07-25T01:06:35.906235 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:06:37.179831 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.99 ms +I, [2018-07-25T01:06:37.179889 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:06:37.180332 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-07-25T01:06:37.180372 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:06:37.180768 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T01:06:37.180800 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:06:37.181056 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T01:06:37.181113 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:06:37.181306 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T01:06:37.181340 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:06:37.182552 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.06 ms +I, [2018-07-25T01:06:37.182737 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:06:37.183741 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.52 ms +I, [2018-07-25T01:06:37.183817 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:06:37.914890 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.74 ms +I, [2018-07-25T01:06:37.915078 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:06:37.928193 #5] INFO -- : Inline processing of topic course_change with 1 messages took 11.93 ms +I, [2018-07-25T01:06:37.928333 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:06:38.000589 #5] INFO -- : Inline processing of topic course_change with 1 messages took 71.89 ms +I, [2018-07-25T01:06:38.001284 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:06:38.003725 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.61 ms +I, [2018-07-25T01:06:38.003819 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:06:38.007590 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.7 ms +I, [2018-07-25T01:06:38.010014 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:06:38.012335 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.84 ms +I, [2018-07-25T01:06:38.012413 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:06:38.016649 #5] INFO -- : Inline processing of topic course_change with 1 messages took 2.14 ms +I, [2018-07-25T01:06:38.016913 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:06:39.184836 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-07-25T01:06:39.184892 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:06:39.185340 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T01:06:39.185392 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:06:39.186955 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.3 ms +I, [2018-07-25T01:06:39.187119 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:06:39.187970 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-07-25T01:06:39.189220 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:06:39.189806 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-07-25T01:06:39.189886 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:06:40.018116 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.35 ms +I, [2018-07-25T01:06:40.018190 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:06:40.019658 #5] INFO -- : Inline processing of topic course_change with 1 messages took 1.02 ms +I, [2018-07-25T01:06:40.019802 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:06:40.021089 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.57 ms +I, [2018-07-25T01:06:40.021152 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:06:40.022118 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.38 ms +I, [2018-07-25T01:06:40.022201 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:06:40.022646 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-07-25T01:06:40.022678 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:06:40.029212 #5] INFO -- : Inline processing of topic course_change with 1 messages took 5.97 ms +I, [2018-07-25T01:06:40.029286 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:06:41.190672 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-07-25T01:06:41.190722 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:06:41.191753 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.83 ms +I, [2018-07-25T01:06:41.192266 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:06:41.192746 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T01:06:41.192780 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:06:41.193004 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T01:06:41.193051 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:06:41.193310 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T01:06:41.193364 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:06:41.193674 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T01:06:41.193721 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:06:41.194084 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T01:06:41.194132 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:06:41.194447 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T01:06:41.194482 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:06:41.194728 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T01:06:41.194758 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:06:41.194974 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T01:06:41.195010 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:06:41.195215 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T01:06:41.195255 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:06:41.195453 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T01:06:41.195484 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:06:41.195697 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T01:06:41.196923 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:06:41.197244 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T01:06:41.197287 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:06:41.197571 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T01:06:41.197602 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:06:41.197843 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T01:06:41.197895 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:06:41.198235 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T01:06:41.198283 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:06:41.198653 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T01:06:41.198707 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:06:41.199048 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T01:06:41.199174 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:06:41.199540 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T01:06:41.199581 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:06:41.200668 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.95 ms +I, [2018-07-25T01:06:41.200703 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:06:41.200993 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T01:06:41.201024 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:06:41.201264 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T01:06:41.201294 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:06:41.201497 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T01:06:41.201527 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:06:41.202535 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.84 ms +I, [2018-07-25T01:06:41.202800 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:06:41.203329 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T01:06:41.203384 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:06:41.203748 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T01:06:41.203799 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:06:41.204162 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T01:06:41.204211 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:06:41.204658 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T01:06:41.204716 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:06:41.205040 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T01:06:41.205118 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:06:41.205428 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T01:06:41.205479 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:06:41.205824 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T01:06:41.205874 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:06:41.206238 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T01:06:41.206290 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:06:41.206651 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T01:06:41.206808 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:06:41.207197 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T01:06:41.207231 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:06:41.207461 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T01:06:41.208448 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:06:41.208945 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-07-25T01:06:41.208999 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:06:41.209368 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T01:06:41.209420 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:06:41.210593 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.42 ms +I, [2018-07-25T01:06:41.210657 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:06:41.211055 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T01:06:41.211103 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:06:41.211399 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T01:06:41.211430 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:06:42.033510 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-07-25T01:06:42.033553 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:06:42.033799 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-07-25T01:06:42.033854 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:06:42.034034 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.07 ms +I, [2018-07-25T01:06:42.034064 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:06:42.034272 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T01:06:42.034297 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:06:42.034531 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T01:06:42.034561 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:06:43.214363 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.96 ms +I, [2018-07-25T01:06:43.214456 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:06:43.215317 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.4 ms +I, [2018-07-25T01:06:43.215380 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:06:43.215894 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-07-25T01:06:43.215973 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:06:43.216375 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T01:06:43.216423 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:06:44.034921 #5] INFO -- : Committing offsets: course_change/0:916 +I, [2018-07-25T01:06:44.036732 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-07-25T01:06:44.036822 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:06:44.037035 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-07-25T01:06:44.037105 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:06:44.037297 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-07-25T01:06:44.037327 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:06:45.218269 #5] INFO -- : Committing offsets: section_change/0:2052 +I, [2018-07-25T01:06:45.220391 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-07-25T01:06:45.220436 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:06:45.220717 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T01:06:45.220749 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:06:45.221040 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T01:06:45.221071 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:06:45.221365 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T01:06:45.221409 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:06:45.222746 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-25T01:06:45.222789 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:06:46.038162 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-07-25T01:06:46.038211 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:06:46.038500 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-07-25T01:06:46.038532 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:06:46.038745 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-07-25T01:06:46.038775 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:06:47.224800 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.82 ms +I, [2018-07-25T01:06:47.224938 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:06:47.225555 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-07-25T01:06:47.225599 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:06:47.225955 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T01:06:47.225986 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:06:47.226277 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T01:06:47.226554 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:06:48.039430 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-07-25T01:06:48.039481 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:06:48.039770 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T01:06:48.039801 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:06:49.227540 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-25T01:06:49.227600 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:06:49.228720 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.88 ms +I, [2018-07-25T01:06:49.228861 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:06:49.229385 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-07-25T01:06:49.229443 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:06:49.229896 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-25T01:06:49.229948 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:06:49.230339 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T01:06:49.230409 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:06:50.040644 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-07-25T01:06:50.040692 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:06:50.040930 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T01:06:50.041037 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:06:50.041950 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-07-25T01:06:50.041998 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:06:50.042223 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T01:06:50.042259 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:06:51.233976 #5] INFO -- : Inline processing of topic section_change with 1 messages took 2.52 ms +I, [2018-07-25T01:06:51.234088 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:06:51.234695 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-07-25T01:06:51.234757 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:06:51.235540 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.43 ms +I, [2018-07-25T01:06:51.235647 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:06:51.236911 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.75 ms +I, [2018-07-25T01:06:51.237311 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:06:52.044277 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.25 ms +I, [2018-07-25T01:06:52.044328 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:06:52.044568 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-07-25T01:06:52.044693 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:06:52.044952 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-07-25T01:06:52.044985 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:06:53.240364 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T01:06:53.240413 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:06:53.241534 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.95 ms +I, [2018-07-25T01:06:53.241594 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:06:53.242298 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-07-25T01:06:53.242349 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:06:53.243119 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.44 ms +I, [2018-07-25T01:06:53.243178 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:06:54.046847 #5] INFO -- : Committing offsets: course_change/0:931 +I, [2018-07-25T01:06:54.050625 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-07-25T01:06:54.050686 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:06:54.051053 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-07-25T01:06:54.051139 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:06:55.243714 #5] INFO -- : Committing offsets: section_change/0:2074 +I, [2018-07-25T01:06:55.246077 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-25T01:06:55.246123 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:06:55.246759 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-07-25T01:06:55.246790 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:06:55.247251 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T01:06:55.247331 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:06:56.052428 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-07-25T01:06:56.052477 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:06:56.052820 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-07-25T01:06:56.052856 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:06:57.249299 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-07-25T01:06:57.249349 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:06:57.249668 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T01:06:57.249698 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:06:57.249961 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T01:06:57.249990 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:06:57.250217 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T01:06:57.250246 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:06:57.251110 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.75 ms +I, [2018-07-25T01:06:57.251146 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:06:57.251468 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T01:06:57.251501 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:06:57.251779 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T01:06:57.251809 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:06:58.053897 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-07-25T01:06:58.053971 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:06:58.054210 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T01:06:58.054241 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:06:58.054456 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-07-25T01:06:58.054486 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:06:59.253565 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.56 ms +I, [2018-07-25T01:06:59.253815 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:06:59.254381 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-07-25T01:06:59.254423 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:06:59.256280 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.63 ms +I, [2018-07-25T01:06:59.256338 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:06:59.256927 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-07-25T01:06:59.257060 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:07:00.055690 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.36 ms +I, [2018-07-25T01:07:00.055766 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:00.056271 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.25 ms +I, [2018-07-25T01:07:00.056340 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:00.057779 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.28 ms +I, [2018-07-25T01:07:00.057901 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:00.059050 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.69 ms +I, [2018-07-25T01:07:00.059184 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:00.059805 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.28 ms +I, [2018-07-25T01:07:00.059888 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:00.060575 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.26 ms +I, [2018-07-25T01:07:00.060680 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:00.061175 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-07-25T01:07:00.061309 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:01.258323 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.5 ms +I, [2018-07-25T01:07:01.258393 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:07:01.259297 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-07-25T01:07:01.259411 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:07:01.259871 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-25T01:07:01.259919 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:07:01.260493 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-07-25T01:07:01.260589 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:07:01.261431 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.47 ms +I, [2018-07-25T01:07:01.261502 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:07:01.262037 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-07-25T01:07:01.262100 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:07:01.262519 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T01:07:01.262597 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:07:02.079855 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-07-25T01:07:02.079907 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:02.080200 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-07-25T01:07:02.080232 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:02.080762 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.35 ms +I, [2018-07-25T01:07:02.080806 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:02.081061 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T01:07:02.081092 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:02.081341 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-07-25T01:07:02.081371 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:03.274385 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.45 ms +I, [2018-07-25T01:07:03.274482 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:07:03.275296 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.43 ms +I, [2018-07-25T01:07:03.275397 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:07:03.276076 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-07-25T01:07:03.276182 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:07:03.276735 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-07-25T01:07:03.276802 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:07:03.279707 #5] INFO -- : Inline processing of topic section_change with 1 messages took 2.18 ms +I, [2018-07-25T01:07:03.279859 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:07:04.082019 #5] INFO -- : Committing offsets: course_change/0:950 +I, [2018-07-25T01:07:04.085446 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.26 ms +I, [2018-07-25T01:07:04.085515 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:04.085962 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.24 ms +I, [2018-07-25T01:07:04.086024 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:04.086401 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-07-25T01:07:04.086436 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:05.280224 #5] INFO -- : Committing offsets: section_change/0:2100 +I, [2018-07-25T01:07:05.284278 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-07-25T01:07:05.284328 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:07:05.284828 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-07-25T01:07:05.284870 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:07:05.285186 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T01:07:05.285237 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:07:06.087467 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-07-25T01:07:06.087518 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:06.087815 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T01:07:06.087854 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:06.088147 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-07-25T01:07:06.088185 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:07.286491 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.41 ms +I, [2018-07-25T01:07:07.286566 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:07:07.287058 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-07-25T01:07:07.287129 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:07:07.287757 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-07-25T01:07:07.287868 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:07:07.291441 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.83 ms +I, [2018-07-25T01:07:07.291514 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:07:07.291995 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T01:07:07.292048 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:07:08.090318 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-07-25T01:07:08.090369 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:08.090726 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-07-25T01:07:08.090827 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:08.091214 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-07-25T01:07:08.091355 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:08.092137 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.39 ms +I, [2018-07-25T01:07:08.092364 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:09.295861 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-07-25T01:07:09.295916 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:07:09.296243 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T01:07:09.296275 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:07:09.296577 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T01:07:09.296608 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:07:10.093732 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.72 ms +I, [2018-07-25T01:07:10.093967 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:10.096625 #5] INFO -- : Inline processing of topic course_change with 1 messages took 1.63 ms +I, [2018-07-25T01:07:10.096710 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:10.097275 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.32 ms +I, [2018-07-25T01:07:10.097333 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:10.100230 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-07-25T01:07:10.100296 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:10.100686 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-07-25T01:07:10.100723 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:11.298583 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.43 ms +I, [2018-07-25T01:07:11.298653 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:07:11.299385 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-25T01:07:11.299425 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:07:11.299813 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T01:07:11.299863 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:07:12.102602 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-07-25T01:07:12.102681 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:12.102985 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-07-25T01:07:12.103014 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:12.103261 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T01:07:12.103293 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:12.103544 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T01:07:12.103584 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:13.304495 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.42 ms +I, [2018-07-25T01:07:13.304570 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:07:13.305236 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-07-25T01:07:13.305300 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:07:13.307675 #5] INFO -- : Inline processing of topic section_change with 1 messages took 2.15 ms +I, [2018-07-25T01:07:13.307989 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:07:13.308557 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-07-25T01:07:13.308611 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:07:13.309618 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.56 ms +I, [2018-07-25T01:07:13.309739 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:07:14.104779 #5] INFO -- : Committing offsets: course_change/0:969 +I, [2018-07-25T01:07:14.106920 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-07-25T01:07:14.106965 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:14.107227 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-07-25T01:07:14.107257 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:14.107504 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-07-25T01:07:14.107534 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:15.310347 #5] INFO -- : Committing offsets: section_change/0:2119 +I, [2018-07-25T01:07:15.325398 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.55 ms +I, [2018-07-25T01:07:15.325473 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:07:15.326580 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.45 ms +I, [2018-07-25T01:07:15.326777 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:07:17.328368 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-07-25T01:07:17.328418 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:07:17.328949 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-07-25T01:07:17.329063 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:07:17.329750 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T01:07:17.329793 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:07:17.330114 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T01:07:17.330147 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:07:19.331124 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-25T01:07:19.331176 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:07:19.331470 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T01:07:19.331500 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:07:19.331867 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T01:07:19.331898 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:07:19.333222 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T01:07:19.333399 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:07:20.109675 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-07-25T01:07:20.109742 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:20.110228 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-07-25T01:07:20.110266 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:21.334541 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-25T01:07:21.334592 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:07:21.334873 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T01:07:21.334903 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:07:21.335213 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T01:07:21.335243 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:07:21.335513 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T01:07:21.335542 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:07:21.336990 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.29 ms +I, [2018-07-25T01:07:21.337067 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:07:22.120448 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-07-25T01:07:22.120503 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:22.120863 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-07-25T01:07:22.120900 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:22.121155 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-07-25T01:07:22.121189 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:22.121459 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-07-25T01:07:22.121494 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:22.121731 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T01:07:22.121765 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:23.343071 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-07-25T01:07:23.343152 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:07:23.343952 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-07-25T01:07:23.344079 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:07:23.345258 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.65 ms +I, [2018-07-25T01:07:23.345721 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:07:23.349144 #5] INFO -- : Inline processing of topic section_change with 1 messages took 2.59 ms +I, [2018-07-25T01:07:23.349219 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:07:23.350249 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.76 ms +I, [2018-07-25T01:07:23.350327 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:07:23.350816 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-25T01:07:23.350888 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:07:23.351450 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T01:07:23.351513 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:07:23.351945 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T01:07:23.351999 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:07:23.352410 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T01:07:23.352508 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:07:23.353376 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.63 ms +I, [2018-07-25T01:07:23.353579 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:07:23.354027 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T01:07:23.354130 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:07:24.122041 #5] INFO -- : Committing offsets: course_change/0:979 +I, [2018-07-25T01:07:24.124167 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-07-25T01:07:24.124225 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:24.125476 #5] INFO -- : Inline processing of topic course_change with 1 messages took 1.09 ms +I, [2018-07-25T01:07:24.125518 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:24.126046 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-07-25T01:07:24.126079 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:24.126285 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T01:07:24.126308 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:24.126489 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-07-25T01:07:24.126522 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:24.126737 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.07 ms +I, [2018-07-25T01:07:24.126760 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:24.126945 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-07-25T01:07:24.126968 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:24.127144 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-07-25T01:07:24.127166 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:24.127343 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-07-25T01:07:24.127366 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:25.356070 #5] INFO -- : Committing offsets: section_change/0:2145 +I, [2018-07-25T01:07:25.360858 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T01:07:25.360905 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:07:25.361240 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T01:07:25.361274 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:07:25.361509 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T01:07:25.361539 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:07:25.362554 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T01:07:25.362594 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:07:25.362966 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T01:07:25.363009 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:07:25.363521 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-25T01:07:25.363669 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:07:25.364162 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T01:07:25.364195 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:07:25.364432 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T01:07:25.364462 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:07:25.364879 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-25T01:07:25.364924 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:07:25.365353 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-25T01:07:25.365400 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:07:25.365718 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T01:07:25.365764 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:07:26.130220 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.43 ms +I, [2018-07-25T01:07:26.130384 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:26.131242 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.45 ms +I, [2018-07-25T01:07:26.131427 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:26.131883 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.23 ms +I, [2018-07-25T01:07:26.131936 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:26.132399 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.25 ms +I, [2018-07-25T01:07:26.132455 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:27.366876 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-07-25T01:07:27.366926 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:07:27.367250 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T01:07:27.367315 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:07:27.367631 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T01:07:27.367661 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:07:28.133887 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.38 ms +I, [2018-07-25T01:07:28.134049 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:28.134957 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.31 ms +I, [2018-07-25T01:07:28.135210 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:28.136038 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.27 ms +I, [2018-07-25T01:07:28.136131 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:29.368710 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-07-25T01:07:29.368799 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:07:29.369062 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T01:07:29.369093 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:07:29.369387 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T01:07:29.369418 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:07:29.369732 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T01:07:29.369763 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:07:30.137249 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.35 ms +I, [2018-07-25T01:07:30.137320 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:30.137833 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.27 ms +I, [2018-07-25T01:07:30.137949 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:30.138252 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T01:07:30.138303 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:30.138545 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-07-25T01:07:30.138575 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:30.138803 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T01:07:30.138883 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:31.370652 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-07-25T01:07:31.370704 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:07:31.370963 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T01:07:31.370994 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:07:31.371253 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T01:07:31.371322 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:07:31.371677 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-25T01:07:31.371739 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:07:31.372865 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.99 ms +I, [2018-07-25T01:07:31.372909 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:07:32.159463 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-07-25T01:07:32.159513 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:32.159769 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-07-25T01:07:32.159798 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:33.375795 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-07-25T01:07:33.375871 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:07:33.376188 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T01:07:33.376219 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:07:33.376528 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T01:07:33.377423 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:07:33.377807 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T01:07:33.377840 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:07:33.378289 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-07-25T01:07:33.378325 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:07:34.160837 #5] INFO -- : Committing offsets: course_change/0:1002 +I, [2018-07-25T01:07:34.167044 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.57 ms +I, [2018-07-25T01:07:34.167308 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:34.173953 #5] INFO -- : Inline processing of topic course_change with 1 messages took 5.58 ms +I, [2018-07-25T01:07:34.174033 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:34.175992 #5] INFO -- : Inline processing of topic course_change with 1 messages took 1.63 ms +I, [2018-07-25T01:07:34.176093 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:35.392305 #5] INFO -- : Committing offsets: section_change/0:2173 +I, [2018-07-25T01:07:35.400444 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-07-25T01:07:35.400557 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:07:35.401115 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-07-25T01:07:35.401170 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:07:35.401629 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T01:07:35.401664 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:07:35.405239 #5] INFO -- : Inline processing of topic section_change with 1 messages took 2.69 ms +I, [2018-07-25T01:07:35.405380 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:07:36.177437 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.32 ms +I, [2018-07-25T01:07:36.177498 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:37.406149 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-25T01:07:37.406198 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:07:37.406515 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T01:07:37.406545 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:07:37.406828 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T01:07:37.407021 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:07:38.178807 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.35 ms +I, [2018-07-25T01:07:38.178860 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:38.179236 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.24 ms +I, [2018-07-25T01:07:38.179272 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:38.179543 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-07-25T01:07:38.179640 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:39.409489 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.47 ms +I, [2018-07-25T01:07:39.409627 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:07:39.410727 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.88 ms +I, [2018-07-25T01:07:39.410773 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:07:39.412286 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.33 ms +I, [2018-07-25T01:07:39.412354 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:07:40.183381 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.42 ms +I, [2018-07-25T01:07:40.183435 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:40.185081 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.69 ms +I, [2018-07-25T01:07:40.185604 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:40.186417 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-07-25T01:07:40.186468 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:40.197711 #5] INFO -- : Inline processing of topic course_change with 1 messages took 10.91 ms +I, [2018-07-25T01:07:40.197766 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:40.198100 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-07-25T01:07:40.198172 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:40.198404 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T01:07:40.198435 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:40.198647 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-07-25T01:07:40.198676 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:40.198956 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-07-25T01:07:40.198986 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:40.199215 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-07-25T01:07:40.199244 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:40.199881 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-07-25T01:07:40.199912 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:40.200150 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-07-25T01:07:40.200219 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:40.200529 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-07-25T01:07:40.200583 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:40.200846 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T01:07:40.200877 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:40.201090 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T01:07:40.201120 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:40.201326 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-07-25T01:07:40.201355 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:40.201564 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-07-25T01:07:40.201594 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:40.201954 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-07-25T01:07:40.207346 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:41.414608 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.19 ms +I, [2018-07-25T01:07:41.414691 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:07:41.415141 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T01:07:41.415208 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +W, [2018-07-25T01:07:41.932379 #5] WARN -- : Reached max fetcher queue size (100), sleeping 1s +I, [2018-07-25T01:07:42.209542 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-07-25T01:07:42.209592 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:42.209841 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T01:07:42.209872 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:42.210102 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T01:07:42.210132 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:42.210347 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T01:07:42.210376 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:42.210623 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-07-25T01:07:42.210653 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:42.210905 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-07-25T01:07:42.210936 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:42.211148 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-07-25T01:07:42.211178 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:42.211641 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.3 ms +I, [2018-07-25T01:07:42.211687 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:42.211942 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T01:07:42.211978 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:42.212221 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-07-25T01:07:42.212251 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:42.212464 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T01:07:42.212493 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:42.212917 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-07-25T01:07:42.212967 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:42.213352 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-07-25T01:07:42.213399 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:42.213740 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-07-25T01:07:42.213790 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:42.214341 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.25 ms +I, [2018-07-25T01:07:42.214393 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:42.214777 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-07-25T01:07:42.214829 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:42.215179 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-07-25T01:07:42.215271 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:42.215596 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-07-25T01:07:42.215646 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:42.215981 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-07-25T01:07:42.216028 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:42.216423 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-07-25T01:07:42.216505 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:42.216856 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-07-25T01:07:42.216901 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:42.218243 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.31 ms +I, [2018-07-25T01:07:42.218327 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:42.219257 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.66 ms +I, [2018-07-25T01:07:42.219322 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:42.220776 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.24 ms +I, [2018-07-25T01:07:42.220821 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:42.221125 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-07-25T01:07:42.221156 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:42.221411 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-07-25T01:07:42.221468 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:42.228125 #5] INFO -- : Inline processing of topic course_change with 1 messages took 6.49 ms +I, [2018-07-25T01:07:42.228183 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:42.228512 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-07-25T01:07:42.228544 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:42.228778 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T01:07:42.228837 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:42.229128 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-07-25T01:07:42.229160 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:42.229387 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T01:07:42.229417 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:42.229643 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T01:07:42.229672 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:42.229907 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T01:07:42.229937 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:42.230200 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-07-25T01:07:42.230233 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:42.232159 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.44 ms +I, [2018-07-25T01:07:42.234276 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:42.234635 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-07-25T01:07:42.234668 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:42.234919 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T01:07:42.234961 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:42.236815 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-07-25T01:07:42.236859 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:42.237709 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.67 ms +I, [2018-07-25T01:07:42.238902 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:42.239421 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-07-25T01:07:42.239465 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:42.239729 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-07-25T01:07:42.239760 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:42.240071 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-07-25T01:07:42.240115 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:42.240353 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T01:07:42.240384 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:42.240624 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T01:07:42.240654 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:42.240880 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T01:07:42.240916 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:42.241146 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-07-25T01:07:42.241176 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:42.241394 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-07-25T01:07:42.241429 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:42.241655 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T01:07:42.241690 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:42.241925 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T01:07:42.241958 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:42.242211 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-07-25T01:07:42.242249 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:42.242489 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T01:07:42.242519 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:42.242759 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T01:07:42.242798 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:42.243830 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-07-25T01:07:42.243862 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:42.244083 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T01:07:42.244112 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:42.244336 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T01:07:42.244365 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:42.244594 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T01:07:42.244622 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:42.244837 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T01:07:42.244865 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:42.245091 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T01:07:42.245121 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:42.245342 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T01:07:42.245371 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:42.245595 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-07-25T01:07:42.245624 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:42.245840 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T01:07:42.245870 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:42.246088 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T01:07:42.246117 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:42.246331 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T01:07:42.246360 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:42.246586 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T01:07:42.246617 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:42.246846 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-07-25T01:07:42.246875 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:42.247122 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T01:07:42.247151 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:42.247368 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T01:07:42.247397 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:42.247604 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-07-25T01:07:42.247632 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:42.247840 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-07-25T01:07:42.247869 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:42.248561 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-07-25T01:07:42.248723 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:42.249090 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-07-25T01:07:42.249121 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:42.250830 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.27 ms +I, [2018-07-25T01:07:42.250899 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:42.252638 #5] INFO -- : Inline processing of topic course_change with 1 messages took 1.3 ms +I, [2018-07-25T01:07:42.252797 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:42.254411 #5] INFO -- : Inline processing of topic course_change with 1 messages took 1.38 ms +I, [2018-07-25T01:07:42.254462 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:42.256089 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.97 ms +I, [2018-07-25T01:07:42.256193 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:42.257402 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.92 ms +I, [2018-07-25T01:07:42.257467 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:42.257907 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-07-25T01:07:42.257956 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:42.258316 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-07-25T01:07:42.258365 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:42.259294 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.71 ms +I, [2018-07-25T01:07:42.259363 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:42.260824 #5] INFO -- : Inline processing of topic course_change with 1 messages took 1.15 ms +I, [2018-07-25T01:07:42.260895 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:42.261656 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.35 ms +I, [2018-07-25T01:07:42.261711 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:42.262023 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-07-25T01:07:42.262057 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:42.263111 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.87 ms +I, [2018-07-25T01:07:42.263180 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:42.263588 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-07-25T01:07:42.263635 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:42.264807 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.94 ms +I, [2018-07-25T01:07:42.264874 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:42.265300 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-07-25T01:07:42.265354 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:42.266561 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.77 ms +I, [2018-07-25T01:07:42.266606 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:42.268807 #5] INFO -- : Inline processing of topic course_change with 1 messages took 2.01 ms +I, [2018-07-25T01:07:42.268918 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:42.269993 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.8 ms +I, [2018-07-25T01:07:42.270056 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:42.270400 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-07-25T01:07:42.270435 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:42.270915 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.35 ms +I, [2018-07-25T01:07:42.270956 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:42.271862 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.72 ms +I, [2018-07-25T01:07:42.271904 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:42.272930 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.81 ms +I, [2018-07-25T01:07:42.272981 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:42.273922 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.73 ms +I, [2018-07-25T01:07:42.273964 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:42.275402 #5] INFO -- : Inline processing of topic course_change with 1 messages took 1.21 ms +I, [2018-07-25T01:07:42.275554 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:42.276384 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-07-25T01:07:42.276463 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:42.278134 #5] INFO -- : Inline processing of topic course_change with 1 messages took 1.01 ms +I, [2018-07-25T01:07:42.278193 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:42.278851 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.29 ms +I, [2018-07-25T01:07:42.278922 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:42.279338 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-07-25T01:07:42.279392 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:42.280583 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-07-25T01:07:42.280622 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:44.281485 #5] INFO -- : Committing offsets: course_change/0:1126 +I, [2018-07-25T01:07:44.284157 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.38 ms +I, [2018-07-25T01:07:44.284208 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:44.284500 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-07-25T01:07:44.284595 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:44.284931 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-07-25T01:07:44.284964 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:44.285180 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-07-25T01:07:44.285210 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:44.285399 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-07-25T01:07:44.285556 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:44.285762 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-07-25T01:07:44.285816 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:44.286002 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-07-25T01:07:44.286032 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:44.286223 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T01:07:44.287272 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:44.287608 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-07-25T01:07:44.287661 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:44.287923 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-07-25T01:07:44.287994 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:44.290539 #5] INFO -- : Inline processing of topic course_change with 1 messages took 2.27 ms +I, [2018-07-25T01:07:44.290606 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:44.291148 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-07-25T01:07:44.291202 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:44.291642 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.23 ms +I, [2018-07-25T01:07:44.291680 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:44.291917 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-07-25T01:07:44.291947 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:44.292144 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T01:07:44.292174 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:44.292371 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T01:07:44.292400 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:44.292591 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T01:07:44.292620 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:44.293708 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.7 ms +I, [2018-07-25T01:07:44.293950 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:44.294556 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-07-25T01:07:44.294823 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:44.296490 #5] INFO -- : Inline processing of topic course_change with 1 messages took 1.08 ms +I, [2018-07-25T01:07:44.296601 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:44.297063 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.31 ms +I, [2018-07-25T01:07:44.297128 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:44.297978 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.29 ms +I, [2018-07-25T01:07:44.298038 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:44.298389 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-07-25T01:07:44.298463 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:44.298695 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-07-25T01:07:44.298759 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:44.299449 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.6 ms +I, [2018-07-25T01:07:44.299506 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:44.299706 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T01:07:44.299735 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:44.300287 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.46 ms +I, [2018-07-25T01:07:44.300330 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:44.300558 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-07-25T01:07:44.300588 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:44.300788 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T01:07:44.300816 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:44.302096 #5] INFO -- : Inline processing of topic course_change with 1 messages took 1.15 ms +I, [2018-07-25T01:07:44.302199 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:44.302681 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-07-25T01:07:44.302733 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:44.304065 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.29 ms +I, [2018-07-25T01:07:44.304125 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:44.304368 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-07-25T01:07:44.304398 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:44.304726 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-07-25T01:07:44.304774 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:44.305159 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.26 ms +I, [2018-07-25T01:07:44.305208 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:44.305477 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-07-25T01:07:44.305525 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:44.305955 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.23 ms +I, [2018-07-25T01:07:44.305989 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:44.306184 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T01:07:44.306214 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:44.306398 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-07-25T01:07:44.306427 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:44.307369 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.84 ms +I, [2018-07-25T01:07:44.307435 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:44.308110 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.55 ms +I, [2018-07-25T01:07:44.308158 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:44.308387 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T01:07:44.308421 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:44.308874 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.35 ms +I, [2018-07-25T01:07:44.308928 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:44.309531 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.44 ms +I, [2018-07-25T01:07:44.309629 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:44.309939 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-07-25T01:07:44.310510 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:44.310776 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-07-25T01:07:44.310806 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:44.311008 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T01:07:44.311037 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:44.311265 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-07-25T01:07:44.311293 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:44.312409 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-07-25T01:07:44.312445 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:44.313301 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.72 ms +I, [2018-07-25T01:07:44.313416 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:44.313930 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-07-25T01:07:44.313963 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:44.314190 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T01:07:44.314220 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:44.314605 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.24 ms +I, [2018-07-25T01:07:44.314641 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:44.314897 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-07-25T01:07:44.314964 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:44.315224 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-07-25T01:07:44.315255 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:44.316221 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.82 ms +I, [2018-07-25T01:07:44.316294 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:44.316726 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.24 ms +I, [2018-07-25T01:07:44.316764 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:44.317600 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.73 ms +I, [2018-07-25T01:07:44.317687 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:44.318346 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.37 ms +I, [2018-07-25T01:07:44.318402 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:44.318682 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-07-25T01:07:44.318714 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:44.319297 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-07-25T01:07:44.319457 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:44.319686 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T01:07:44.319716 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:44.325412 #5] INFO -- : Inline processing of topic course_change with 1 messages took 3.45 ms +I, [2018-07-25T01:07:44.325461 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:44.325918 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-07-25T01:07:44.325959 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:44.326244 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-07-25T01:07:44.326284 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:44.326594 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-07-25T01:07:44.326628 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:44.326954 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-07-25T01:07:44.327147 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:44.327976 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.54 ms +I, [2018-07-25T01:07:44.328115 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:44.330263 #5] INFO -- : Inline processing of topic course_change with 1 messages took 1.77 ms +I, [2018-07-25T01:07:44.330383 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:44.330880 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-07-25T01:07:44.330940 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:44.335148 #5] INFO -- : Inline processing of topic course_change with 1 messages took 3.69 ms +I, [2018-07-25T01:07:44.335279 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:44.335820 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-07-25T01:07:44.335877 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:44.336301 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-07-25T01:07:44.336349 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:44.336739 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-07-25T01:07:44.336793 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:44.337530 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.36 ms +I, [2018-07-25T01:07:44.337593 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:44.338041 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-07-25T01:07:44.338094 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:44.338504 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-07-25T01:07:44.338560 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:44.339008 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.23 ms +I, [2018-07-25T01:07:44.340003 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:44.340869 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.59 ms +I, [2018-07-25T01:07:44.340937 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:44.341741 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.27 ms +I, [2018-07-25T01:07:44.341801 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:44.342233 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-07-25T01:07:44.342295 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:44.342702 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-07-25T01:07:44.343214 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:44.344222 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.25 ms +I, [2018-07-25T01:07:44.344305 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:44.346075 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-07-25T01:07:44.346137 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:44.346513 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-07-25T01:07:44.346554 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:44.347540 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-07-25T01:07:44.347583 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:44.348306 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.54 ms +I, [2018-07-25T01:07:44.348367 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:44.348898 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.3 ms +I, [2018-07-25T01:07:44.348974 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:44.349400 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-07-25T01:07:44.349473 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:44.350134 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.24 ms +I, [2018-07-25T01:07:44.351219 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:44.351682 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-07-25T01:07:44.351732 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:44.352094 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-07-25T01:07:44.352139 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:44.352836 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.53 ms +I, [2018-07-25T01:07:44.352891 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:44.355902 #5] INFO -- : Inline processing of topic course_change with 1 messages took 2.78 ms +I, [2018-07-25T01:07:44.356270 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:44.356703 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-07-25T01:07:44.356752 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:44.357438 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.46 ms +I, [2018-07-25T01:07:44.357525 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:44.357844 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-07-25T01:07:44.357911 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:44.358173 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T01:07:44.358385 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:44.358996 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-07-25T01:07:44.359032 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:44.359277 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T01:07:44.359307 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:44.359900 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-07-25T01:07:44.359959 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:44.360307 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-07-25T01:07:44.360352 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:44.362630 #5] INFO -- : Inline processing of topic course_change with 1 messages took 1.85 ms +I, [2018-07-25T01:07:44.362699 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:44.364129 #5] INFO -- : Inline processing of topic course_change with 1 messages took 1.21 ms +I, [2018-07-25T01:07:44.364185 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:44.364991 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.38 ms +I, [2018-07-25T01:07:44.365048 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:44.365434 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-07-25T01:07:44.365480 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:44.366199 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.54 ms +I, [2018-07-25T01:07:44.366255 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:44.366629 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-07-25T01:07:44.366674 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:44.366999 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-07-25T01:07:44.367032 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:44.367306 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-07-25T01:07:44.368837 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:44.369453 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.23 ms +I, [2018-07-25T01:07:44.370680 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:44.371592 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-07-25T01:07:44.371633 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:44.373769 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-07-25T01:07:44.373826 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:44.374187 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-07-25T01:07:44.374235 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:44.374602 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-07-25T01:07:44.374650 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:44.375011 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-07-25T01:07:44.375477 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:44.375910 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-07-25T01:07:44.375963 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:44.376389 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-07-25T01:07:44.376436 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:44.376812 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-07-25T01:07:44.379007 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:44.379520 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-07-25T01:07:44.379573 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:44.379942 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-07-25T01:07:44.380029 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:44.380335 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-07-25T01:07:44.380422 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:44.380763 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-07-25T01:07:44.380800 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:44.381026 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-07-25T01:07:44.381057 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:44.381268 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-07-25T01:07:44.381297 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:44.381504 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-07-25T01:07:44.381533 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:44.381756 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T01:07:44.381785 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:44.382094 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-07-25T01:07:44.382125 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:44.382341 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T01:07:44.382370 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:44.382589 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-07-25T01:07:44.382618 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:44.382836 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-07-25T01:07:44.382865 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:45.419414 #5] INFO -- : Committing offsets: section_change/0:2185 +I, [2018-07-25T01:07:46.384305 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.46 ms +I, [2018-07-25T01:07:46.384500 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:46.385859 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.56 ms +I, [2018-07-25T01:07:46.385947 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:46.386302 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-07-25T01:07:46.386363 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:46.386744 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-07-25T01:07:46.386796 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:46.388384 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.39 ms +I, [2018-07-25T01:07:46.388452 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:46.389868 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.57 ms +I, [2018-07-25T01:07:46.389964 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:46.390372 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-07-25T01:07:46.390433 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:46.390749 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-07-25T01:07:46.390789 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:46.391101 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-07-25T01:07:46.391149 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:46.391598 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-07-25T01:07:46.391674 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:46.443759 #5] INFO -- : Inline processing of topic course_change with 1 messages took 30.62 ms +I, [2018-07-25T01:07:46.443861 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:46.445227 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.99 ms +I, [2018-07-25T01:07:46.445682 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:46.460162 #5] INFO -- : Inline processing of topic course_change with 1 messages took 9.09 ms +I, [2018-07-25T01:07:46.460263 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:46.477357 #5] INFO -- : Inline processing of topic course_change with 1 messages took 16.5 ms +I, [2018-07-25T01:07:46.477444 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:46.479097 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.98 ms +I, [2018-07-25T01:07:46.479196 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:46.490576 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-07-25T01:07:46.490632 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:46.490911 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T01:07:46.504243 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:46.504815 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.23 ms +I, [2018-07-25T01:07:46.504874 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:46.513183 #5] INFO -- : Inline processing of topic course_change with 1 messages took 8.07 ms +I, [2018-07-25T01:07:46.514044 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:46.521597 #5] INFO -- : Inline processing of topic course_change with 1 messages took 6.22 ms +I, [2018-07-25T01:07:46.521696 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:46.522568 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.65 ms +I, [2018-07-25T01:07:46.522630 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:46.523168 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.3 ms +I, [2018-07-25T01:07:46.523280 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:46.526545 #5] INFO -- : Inline processing of topic course_change with 1 messages took 2.97 ms +I, [2018-07-25T01:07:46.526598 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:46.526900 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-07-25T01:07:46.526933 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:46.530013 #5] INFO -- : Inline processing of topic course_change with 1 messages took 1.72 ms +I, [2018-07-25T01:07:46.531675 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:46.533159 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.46 ms +I, [2018-07-25T01:07:46.533342 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:46.536843 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.3 ms +I, [2018-07-25T01:07:46.536901 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:46.537232 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-07-25T01:07:46.537268 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:46.540089 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-07-25T01:07:46.540159 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:46.543320 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-07-25T01:07:46.543428 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:46.544073 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.26 ms +I, [2018-07-25T01:07:46.544132 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:46.552759 #5] INFO -- : Inline processing of topic course_change with 1 messages took 8.37 ms +I, [2018-07-25T01:07:46.552848 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:46.553303 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-07-25T01:07:46.553353 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:46.557626 #5] INFO -- : Inline processing of topic course_change with 1 messages took 4.01 ms +I, [2018-07-25T01:07:46.557699 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:46.558062 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-07-25T01:07:46.558577 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:46.562260 #5] INFO -- : Inline processing of topic course_change with 1 messages took 3.26 ms +I, [2018-07-25T01:07:46.562338 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:46.568186 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.29 ms +I, [2018-07-25T01:07:46.568249 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:46.573868 #5] INFO -- : Inline processing of topic course_change with 1 messages took 5.39 ms +I, [2018-07-25T01:07:46.573924 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:46.574231 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-07-25T01:07:46.574266 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:46.576641 #5] INFO -- : Inline processing of topic course_change with 1 messages took 2.22 ms +I, [2018-07-25T01:07:46.576694 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:46.577149 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.26 ms +I, [2018-07-25T01:07:46.577220 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:46.578344 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.94 ms +I, [2018-07-25T01:07:46.578389 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:46.578984 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.31 ms +I, [2018-07-25T01:07:46.579049 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:46.581168 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.27 ms +I, [2018-07-25T01:07:46.582475 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:46.585002 #5] INFO -- : Inline processing of topic course_change with 1 messages took 2.15 ms +I, [2018-07-25T01:07:46.585092 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:46.586085 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-07-25T01:07:46.586129 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:46.586528 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.25 ms +I, [2018-07-25T01:07:46.588385 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:46.588753 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-07-25T01:07:46.588791 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:46.589349 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.39 ms +I, [2018-07-25T01:07:46.591176 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:46.591543 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-07-25T01:07:46.591581 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:46.600104 #5] INFO -- : Inline processing of topic course_change with 1 messages took 8.36 ms +I, [2018-07-25T01:07:46.600251 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:46.601201 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.24 ms +I, [2018-07-25T01:07:46.601263 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:46.601658 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-07-25T01:07:46.601787 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:46.602842 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-07-25T01:07:46.602903 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:46.603397 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.27 ms +I, [2018-07-25T01:07:46.603461 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:46.603866 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-07-25T01:07:46.603924 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:46.604239 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-07-25T01:07:46.604314 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:46.604571 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-07-25T01:07:46.605438 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:46.606134 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-07-25T01:07:46.606205 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:46.606698 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.26 ms +I, [2018-07-25T01:07:46.606872 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:46.607272 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-07-25T01:07:46.607314 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:46.608434 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.26 ms +I, [2018-07-25T01:07:46.608488 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:46.608840 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-07-25T01:07:46.608874 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:46.609118 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-07-25T01:07:46.609148 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:46.609446 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-07-25T01:07:46.609478 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:46.610302 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.6 ms +I, [2018-07-25T01:07:46.610657 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:46.611498 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.54 ms +I, [2018-07-25T01:07:46.611572 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:46.614441 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.34 ms +I, [2018-07-25T01:07:46.614533 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:46.616036 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.44 ms +I, [2018-07-25T01:07:46.616113 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:46.617320 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.55 ms +I, [2018-07-25T01:07:46.617415 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:46.617950 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-07-25T01:07:46.617992 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:46.619397 #5] INFO -- : Inline processing of topic course_change with 1 messages took 1.18 ms +I, [2018-07-25T01:07:46.619465 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:46.619878 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-07-25T01:07:46.620033 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:46.620338 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-07-25T01:07:46.620427 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:46.621096 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.43 ms +I, [2018-07-25T01:07:46.621180 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:46.621799 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.41 ms +I, [2018-07-25T01:07:46.621857 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:46.622192 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-07-25T01:07:46.622226 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:46.622514 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T01:07:46.622545 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:46.622813 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-07-25T01:07:46.622845 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:46.623671 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.62 ms +I, [2018-07-25T01:07:46.623712 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:46.624101 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-07-25T01:07:46.624133 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:46.624619 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.31 ms +I, [2018-07-25T01:07:46.624673 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:46.625071 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-07-25T01:07:46.625119 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:46.625415 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-07-25T01:07:46.625461 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:46.625803 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-07-25T01:07:46.625836 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:46.626063 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T01:07:46.626093 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:46.626368 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-07-25T01:07:46.626414 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:46.627635 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-07-25T01:07:46.628055 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:46.630178 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.68 ms +I, [2018-07-25T01:07:46.630306 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:46.630809 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-07-25T01:07:46.630894 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:46.631336 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-07-25T01:07:46.631420 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:46.632075 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-07-25T01:07:46.632205 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:46.632643 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-07-25T01:07:46.632792 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:46.633229 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-07-25T01:07:46.633445 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:46.634530 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.25 ms +I, [2018-07-25T01:07:46.634598 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:46.635424 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.25 ms +I, [2018-07-25T01:07:46.635513 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:46.635777 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-07-25T01:07:46.635814 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:46.636121 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-07-25T01:07:46.636161 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:46.638390 #5] INFO -- : Inline processing of topic course_change with 1 messages took 1.24 ms +I, [2018-07-25T01:07:46.638437 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:46.638869 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-07-25T01:07:46.638913 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:46.639325 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.23 ms +I, [2018-07-25T01:07:46.639369 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:46.639654 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-07-25T01:07:46.639684 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:46.640706 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.9 ms +I, [2018-07-25T01:07:46.640747 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:46.641999 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-07-25T01:07:46.642059 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:48.643848 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.39 ms +I, [2018-07-25T01:07:48.643937 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:48.645119 #5] INFO -- : Inline processing of topic course_change with 1 messages took 1.0 ms +I, [2018-07-25T01:07:48.645163 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:48.645431 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T01:07:48.645462 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:48.645727 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T01:07:48.645859 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:48.646256 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-07-25T01:07:48.646329 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:48.646609 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-07-25T01:07:48.646640 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:48.646890 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-07-25T01:07:48.646921 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:48.647177 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-07-25T01:07:48.647205 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:48.647565 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-07-25T01:07:48.651689 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:48.653417 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.56 ms +I, [2018-07-25T01:07:48.653487 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:48.659135 #5] INFO -- : Inline processing of topic course_change with 1 messages took 5.4 ms +I, [2018-07-25T01:07:48.659194 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:48.659578 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-07-25T01:07:48.659610 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:48.659845 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T01:07:48.659874 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:48.660092 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T01:07:48.660121 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:48.660957 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.72 ms +I, [2018-07-25T01:07:48.661002 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:48.661293 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-07-25T01:07:48.661316 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:48.665033 #5] INFO -- : Inline processing of topic course_change with 1 messages took 3.58 ms +I, [2018-07-25T01:07:48.665108 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:48.666146 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.57 ms +I, [2018-07-25T01:07:48.666234 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:48.667129 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.23 ms +I, [2018-07-25T01:07:48.667196 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:48.668883 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.78 ms +I, [2018-07-25T01:07:48.668957 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:48.673096 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-07-25T01:07:48.673143 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:48.673410 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-07-25T01:07:48.673901 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:48.674224 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T01:07:48.674255 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:48.674751 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.38 ms +I, [2018-07-25T01:07:48.674792 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:48.675076 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-07-25T01:07:48.675107 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:48.675336 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T01:07:48.675365 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:48.675582 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T01:07:48.675612 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:48.675972 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.23 ms +I, [2018-07-25T01:07:48.676029 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:48.676422 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-07-25T01:07:48.676473 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:48.676919 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-07-25T01:07:48.676964 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:48.685964 #5] INFO -- : Inline processing of topic course_change with 1 messages took 8.8 ms +I, [2018-07-25T01:07:48.686020 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:48.687837 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-07-25T01:07:48.687880 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:48.688134 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-07-25T01:07:48.688165 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:48.688575 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-07-25T01:07:48.688616 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:48.688871 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T01:07:48.688902 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:48.689121 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T01:07:48.689165 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:48.689504 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-07-25T01:07:48.689534 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:48.689770 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-07-25T01:07:48.689798 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:48.690002 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T01:07:48.690031 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:48.691801 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-07-25T01:07:48.691861 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:48.692225 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-07-25T01:07:48.692275 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:48.692617 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-07-25T01:07:48.692652 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:48.692901 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-07-25T01:07:48.692934 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:48.693365 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T01:07:48.693402 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:48.693679 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-07-25T01:07:48.693710 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:48.694078 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-07-25T01:07:48.694116 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:48.694532 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.23 ms +I, [2018-07-25T01:07:48.699458 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:48.700126 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-07-25T01:07:48.700200 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:48.700505 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-07-25T01:07:48.700541 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:48.701076 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.29 ms +I, [2018-07-25T01:07:48.701117 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:48.701391 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-07-25T01:07:48.701429 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:48.701728 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-07-25T01:07:48.701762 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:48.702078 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-07-25T01:07:48.702113 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:48.702357 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T01:07:48.702420 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:48.708156 #5] INFO -- : Inline processing of topic course_change with 1 messages took 5.6 ms +I, [2018-07-25T01:07:48.708206 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:48.708513 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-07-25T01:07:48.708544 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:48.708767 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T01:07:48.708797 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:48.709026 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-07-25T01:07:48.709055 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:48.709299 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T01:07:48.709329 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:48.709580 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-07-25T01:07:48.709611 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:48.709826 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T01:07:48.709856 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:48.710059 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T01:07:48.710089 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:48.710684 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-07-25T01:07:48.710719 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:48.710959 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T01:07:48.710989 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:48.711320 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-07-25T01:07:48.711506 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:48.712317 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.37 ms +I, [2018-07-25T01:07:48.712371 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:48.712780 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-07-25T01:07:48.712822 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:48.713420 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.23 ms +I, [2018-07-25T01:07:48.713461 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:48.716911 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.23 ms +I, [2018-07-25T01:07:48.716995 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:48.717341 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-07-25T01:07:48.717400 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:48.717835 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-07-25T01:07:48.717891 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:48.718598 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.39 ms +I, [2018-07-25T01:07:48.718776 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:48.719121 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T01:07:48.719152 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:48.719468 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-07-25T01:07:48.719503 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:48.720236 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.6 ms +I, [2018-07-25T01:07:48.720279 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:48.720569 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-07-25T01:07:48.720867 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:48.721181 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-07-25T01:07:48.721215 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:48.721461 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-07-25T01:07:48.721493 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:48.721747 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-07-25T01:07:48.721777 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:48.722104 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-07-25T01:07:48.722169 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:48.722594 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-07-25T01:07:48.722648 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:48.723023 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-07-25T01:07:48.723549 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:48.723899 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-07-25T01:07:48.723928 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:48.724199 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-07-25T01:07:48.724230 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:48.725030 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.28 ms +I, [2018-07-25T01:07:48.725078 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:48.725352 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T01:07:48.725383 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:48.725777 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.23 ms +I, [2018-07-25T01:07:48.725836 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:48.726228 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-07-25T01:07:48.726280 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:48.726982 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-07-25T01:07:48.727042 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:48.727446 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-07-25T01:07:48.727480 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:50.728374 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-07-25T01:07:50.728424 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:50.728664 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-07-25T01:07:50.728695 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:50.728978 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-07-25T01:07:50.729010 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:50.729267 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T01:07:50.729298 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:50.729526 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T01:07:50.729555 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:50.729779 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-07-25T01:07:50.729809 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:50.730029 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-07-25T01:07:50.730057 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:50.730579 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.37 ms +I, [2018-07-25T01:07:50.730627 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:50.730925 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-07-25T01:07:50.730958 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:50.731436 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.37 ms +I, [2018-07-25T01:07:50.731472 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:50.732034 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.39 ms +I, [2018-07-25T01:07:50.732073 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:50.732559 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-07-25T01:07:50.732618 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:50.733083 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.28 ms +I, [2018-07-25T01:07:50.733121 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:50.733754 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.23 ms +I, [2018-07-25T01:07:50.733844 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:50.734887 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-07-25T01:07:50.734973 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:50.736310 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.23 ms +I, [2018-07-25T01:07:50.736369 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:50.736736 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-07-25T01:07:50.736783 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:50.737107 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-07-25T01:07:50.737152 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:50.737804 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-07-25T01:07:50.737854 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:50.738295 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.24 ms +I, [2018-07-25T01:07:50.738331 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:50.738574 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-07-25T01:07:50.738605 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:50.739208 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.32 ms +I, [2018-07-25T01:07:50.739256 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:50.739504 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T01:07:50.739535 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:50.739761 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T01:07:50.739791 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:50.740248 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-07-25T01:07:50.740283 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:50.741037 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.23 ms +I, [2018-07-25T01:07:50.741125 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:50.741660 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-07-25T01:07:50.741714 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:50.742142 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-07-25T01:07:50.742180 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:50.743451 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.26 ms +I, [2018-07-25T01:07:50.743494 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:50.743756 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T01:07:50.743786 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:50.744077 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-07-25T01:07:50.744158 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:50.744708 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-07-25T01:07:50.744803 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:50.745187 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-07-25T01:07:50.745239 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:50.745632 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-07-25T01:07:50.745927 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:50.746296 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-07-25T01:07:50.746366 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:50.746760 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-07-25T01:07:50.746793 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:50.747390 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-07-25T01:07:50.747445 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:50.747845 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-07-25T01:07:50.747935 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:50.748260 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-07-25T01:07:50.748340 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:50.749161 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-07-25T01:07:50.749289 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:50.749777 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-07-25T01:07:50.749814 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:50.750090 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-07-25T01:07:50.750122 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:50.750324 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-07-25T01:07:50.750381 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:50.751860 #5] INFO -- : Inline processing of topic course_change with 1 messages took 1.33 ms +I, [2018-07-25T01:07:50.751947 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:50.752551 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.3 ms +I, [2018-07-25T01:07:50.752606 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:50.752992 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-07-25T01:07:50.753050 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:50.753330 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T01:07:50.753371 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:50.753826 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-07-25T01:07:50.753876 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:50.754440 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-07-25T01:07:50.754498 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:50.754796 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T01:07:50.754826 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:50.756005 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.7 ms +I, [2018-07-25T01:07:50.756121 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:50.756936 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-07-25T01:07:50.756985 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:50.757984 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.3 ms +I, [2018-07-25T01:07:50.758050 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:50.758474 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-07-25T01:07:50.758555 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:50.759009 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.24 ms +I, [2018-07-25T01:07:50.759192 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:50.759667 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-07-25T01:07:50.759723 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:50.759981 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-07-25T01:07:50.760012 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:50.760274 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-07-25T01:07:50.761173 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:50.761763 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.28 ms +I, [2018-07-25T01:07:50.761910 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:50.762407 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-07-25T01:07:50.762463 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:50.762841 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-07-25T01:07:50.762892 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:50.763574 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.48 ms +I, [2018-07-25T01:07:50.763616 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:50.764037 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-07-25T01:07:50.764146 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:50.764429 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T01:07:50.764461 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:50.764832 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.24 ms +I, [2018-07-25T01:07:50.764868 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:50.765267 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-07-25T01:07:50.765318 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:50.765881 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.33 ms +I, [2018-07-25T01:07:50.765924 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:50.766211 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-07-25T01:07:50.766240 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:50.766493 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T01:07:50.766553 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:50.766783 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T01:07:50.766813 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:50.767087 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-07-25T01:07:50.767146 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:50.767500 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-07-25T01:07:50.767546 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:50.767953 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-07-25T01:07:50.768692 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:50.770465 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.28 ms +I, [2018-07-25T01:07:50.770631 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:50.771058 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-07-25T01:07:50.771112 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:50.771400 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-07-25T01:07:50.771432 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:50.771685 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T01:07:50.771715 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:50.772411 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-07-25T01:07:50.772508 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:50.773657 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.9 ms +I, [2018-07-25T01:07:50.773700 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:50.774418 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-07-25T01:07:50.774467 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:50.775096 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-07-25T01:07:50.775176 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:50.775822 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-07-25T01:07:50.775868 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:50.776159 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-07-25T01:07:50.776194 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:50.776436 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T01:07:50.776467 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:50.776693 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T01:07:50.776722 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:50.777033 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-07-25T01:07:50.777080 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:50.777439 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-07-25T01:07:50.777486 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:52.781262 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.23 ms +I, [2018-07-25T01:07:52.781620 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:52.782767 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.43 ms +I, [2018-07-25T01:07:52.782840 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:52.784467 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.39 ms +I, [2018-07-25T01:07:52.784519 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:52.785119 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.38 ms +I, [2018-07-25T01:07:52.785190 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:52.786162 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.24 ms +I, [2018-07-25T01:07:52.786267 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:52.786772 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-07-25T01:07:52.786816 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:52.787118 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-07-25T01:07:52.787156 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:52.787415 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-07-25T01:07:52.787449 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:52.787881 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.25 ms +I, [2018-07-25T01:07:52.789001 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:52.791311 #5] INFO -- : Inline processing of topic course_change with 1 messages took 1.99 ms +I, [2018-07-25T01:07:52.791434 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:52.792405 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.68 ms +I, [2018-07-25T01:07:52.792475 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:52.793124 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.24 ms +I, [2018-07-25T01:07:52.793185 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:52.794135 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.24 ms +I, [2018-07-25T01:07:52.794203 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:52.794803 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-07-25T01:07:52.794902 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:52.796028 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.73 ms +I, [2018-07-25T01:07:52.796180 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:52.796759 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-07-25T01:07:52.796804 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:52.798990 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.33 ms +I, [2018-07-25T01:07:52.799082 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:52.799866 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-07-25T01:07:52.799925 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:52.800317 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-07-25T01:07:52.800365 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:52.800678 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-07-25T01:07:52.800712 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:52.800950 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T01:07:52.800977 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:52.801417 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.25 ms +I, [2018-07-25T01:07:52.801458 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:52.802108 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.42 ms +I, [2018-07-25T01:07:52.802180 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:52.806363 #5] INFO -- : Inline processing of topic course_change with 1 messages took 3.82 ms +I, [2018-07-25T01:07:52.814199 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:52.814561 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-07-25T01:07:52.814592 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:52.814820 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T01:07:52.814857 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:52.815087 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T01:07:52.815115 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:52.815409 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-07-25T01:07:52.815443 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:52.815682 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T01:07:52.815712 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:52.815937 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T01:07:52.815972 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:52.816190 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T01:07:52.816255 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:52.817579 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.35 ms +I, [2018-07-25T01:07:52.817654 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:52.821856 #5] INFO -- : Inline processing of topic course_change with 1 messages took 1.39 ms +I, [2018-07-25T01:07:52.822099 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:52.822869 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.36 ms +I, [2018-07-25T01:07:52.822953 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:52.824302 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.24 ms +I, [2018-07-25T01:07:52.824385 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:52.824696 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-07-25T01:07:52.824727 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:52.824974 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T01:07:52.825005 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:52.825551 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.31 ms +I, [2018-07-25T01:07:52.825598 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:52.825881 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-07-25T01:07:52.825919 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:52.826657 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-07-25T01:07:52.826697 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:52.827098 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-07-25T01:07:52.827132 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:52.827366 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T01:07:52.827404 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:52.827780 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.24 ms +I, [2018-07-25T01:07:52.827831 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:52.828122 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-07-25T01:07:52.828155 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:52.829723 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-07-25T01:07:52.829788 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:52.830566 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-07-25T01:07:52.830605 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:52.830872 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-07-25T01:07:52.830902 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:52.831156 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-07-25T01:07:52.831844 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:52.832180 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-07-25T01:07:52.832239 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:52.832478 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T01:07:52.832508 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:52.832816 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-07-25T01:07:52.832850 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:52.833282 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-07-25T01:07:52.833334 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:52.833729 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-07-25T01:07:52.833831 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:52.834747 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.7 ms +I, [2018-07-25T01:07:52.834800 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:52.835176 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-07-25T01:07:52.835230 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:52.835705 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-07-25T01:07:52.835741 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:52.836002 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-07-25T01:07:52.836079 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:52.836495 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.25 ms +I, [2018-07-25T01:07:52.836547 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:52.836982 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-07-25T01:07:52.837216 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:52.837795 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.29 ms +I, [2018-07-25T01:07:52.837884 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:52.838286 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-07-25T01:07:52.838338 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:52.839158 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.63 ms +I, [2018-07-25T01:07:52.839204 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:52.839792 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.23 ms +I, [2018-07-25T01:07:52.840400 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:52.840715 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-07-25T01:07:52.840748 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:52.840989 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T01:07:52.841019 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:52.841316 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-07-25T01:07:52.841382 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:52.841770 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-07-25T01:07:52.841821 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:52.842197 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-07-25T01:07:52.842249 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:52.842950 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-07-25T01:07:52.843024 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:52.843252 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-07-25T01:07:52.843310 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:52.843596 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-07-25T01:07:52.843627 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:52.844004 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-07-25T01:07:52.844041 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:52.844248 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-07-25T01:07:52.844317 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:52.844717 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-07-25T01:07:52.844776 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:52.845300 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.28 ms +I, [2018-07-25T01:07:52.845348 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:52.845802 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-07-25T01:07:52.845859 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:52.847130 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-07-25T01:07:52.847170 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:52.847441 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-07-25T01:07:52.847472 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:52.848130 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.53 ms +I, [2018-07-25T01:07:52.848175 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:52.849378 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-07-25T01:07:52.849421 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:52.849713 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T01:07:52.849794 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:52.851228 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.88 ms +I, [2018-07-25T01:07:52.851390 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:54.851811 #5] INFO -- : Committing offsets: course_change/0:1620 +I, [2018-07-25T01:07:54.854023 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.24 ms +I, [2018-07-25T01:07:54.854070 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:54.854338 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T01:07:54.854371 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:54.854615 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T01:07:54.854701 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:54.854944 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T01:07:54.854976 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:54.856053 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.23 ms +I, [2018-07-25T01:07:54.856117 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:54.856429 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-07-25T01:07:54.856461 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:54.856700 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T01:07:54.856740 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:54.857484 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.41 ms +I, [2018-07-25T01:07:54.857603 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:54.858276 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.31 ms +I, [2018-07-25T01:07:54.858371 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:54.858646 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-07-25T01:07:54.858677 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:54.858940 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-07-25T01:07:54.858971 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:54.859979 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-07-25T01:07:54.860023 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:54.860273 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T01:07:54.860308 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:54.860707 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-07-25T01:07:54.860772 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:54.861579 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.58 ms +I, [2018-07-25T01:07:54.861634 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:54.863783 #5] INFO -- : Inline processing of topic course_change with 1 messages took 1.48 ms +I, [2018-07-25T01:07:54.863939 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:54.865809 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.9 ms +I, [2018-07-25T01:07:54.865939 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:54.866470 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.28 ms +I, [2018-07-25T01:07:54.866531 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:54.867097 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.27 ms +I, [2018-07-25T01:07:54.867160 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:54.867572 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-07-25T01:07:54.867618 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:54.867953 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-07-25T01:07:54.868047 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:54.869602 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.34 ms +I, [2018-07-25T01:07:54.869775 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:54.870327 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-07-25T01:07:54.870399 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:54.871395 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-07-25T01:07:54.871461 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:54.872019 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.29 ms +I, [2018-07-25T01:07:54.872615 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:54.873314 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.26 ms +I, [2018-07-25T01:07:54.873377 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:54.873782 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-07-25T01:07:54.873847 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:54.874407 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-07-25T01:07:54.874465 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:54.874868 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-07-25T01:07:54.874918 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:54.875302 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-07-25T01:07:54.875356 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:54.875705 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-07-25T01:07:54.876717 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:54.877450 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-07-25T01:07:54.877517 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:54.878060 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.33 ms +I, [2018-07-25T01:07:54.878124 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:54.878662 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.32 ms +I, [2018-07-25T01:07:54.878720 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:54.879205 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-07-25T01:07:54.879255 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:54.879536 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-07-25T01:07:54.879568 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:54.879813 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-07-25T01:07:54.879843 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:54.880860 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.32 ms +I, [2018-07-25T01:07:54.880927 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:54.881365 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-07-25T01:07:54.881424 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:54.882199 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.49 ms +I, [2018-07-25T01:07:54.882262 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:54.882695 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-07-25T01:07:54.882753 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:54.883776 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.24 ms +I, [2018-07-25T01:07:54.884160 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:54.884720 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-07-25T01:07:54.884769 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:54.885406 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.33 ms +I, [2018-07-25T01:07:54.886397 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:54.890327 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.37 ms +I, [2018-07-25T01:07:54.890411 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:54.890909 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-07-25T01:07:54.891280 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:54.892266 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.61 ms +I, [2018-07-25T01:07:54.892345 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:54.892858 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.25 ms +I, [2018-07-25T01:07:54.892922 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:54.894323 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.75 ms +I, [2018-07-25T01:07:54.894430 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:54.895007 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-07-25T01:07:54.895050 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:54.896201 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.66 ms +I, [2018-07-25T01:07:54.897970 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:54.898625 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.3 ms +I, [2018-07-25T01:07:54.898691 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:54.900076 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.64 ms +I, [2018-07-25T01:07:54.900155 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:54.900984 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-07-25T01:07:54.901025 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:54.901300 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-07-25T01:07:54.901332 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:54.901578 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-07-25T01:07:54.901609 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:54.901834 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T01:07:54.901863 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:54.902158 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-07-25T01:07:54.902740 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:54.903901 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.76 ms +I, [2018-07-25T01:07:54.904011 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:54.907350 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.86 ms +I, [2018-07-25T01:07:54.907436 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:54.907828 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-07-25T01:07:54.907866 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:54.908170 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-07-25T01:07:54.908206 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:54.908520 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-07-25T01:07:54.908551 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:54.908966 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-07-25T01:07:54.909068 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:54.909709 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-07-25T01:07:54.909749 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:54.910068 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-07-25T01:07:54.910101 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:54.911343 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.47 ms +I, [2018-07-25T01:07:54.911410 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:54.911846 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-07-25T01:07:54.912282 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:54.912721 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-07-25T01:07:54.912775 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:54.913186 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-07-25T01:07:54.913237 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:54.913652 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.24 ms +I, [2018-07-25T01:07:54.913686 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:54.914036 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-07-25T01:07:54.914119 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:54.914551 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-07-25T01:07:54.915351 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:54.915846 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.23 ms +I, [2018-07-25T01:07:54.915905 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:54.916388 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-07-25T01:07:54.916445 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:54.916857 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-07-25T01:07:54.916909 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:54.917602 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-07-25T01:07:54.917641 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:55.427572 #5] INFO -- : Committing offsets: section_change/0:2185 +I, [2018-07-25T01:07:56.918491 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-07-25T01:07:56.918541 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:56.918869 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-07-25T01:07:56.918909 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:56.919119 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-07-25T01:07:56.919150 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:56.919380 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-07-25T01:07:56.919448 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:56.920680 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-07-25T01:07:56.920742 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:56.921112 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-07-25T01:07:56.921194 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:56.922038 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-07-25T01:07:56.923354 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:56.924533 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.55 ms +I, [2018-07-25T01:07:56.924650 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:56.925204 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.26 ms +I, [2018-07-25T01:07:56.925938 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:56.926941 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.3 ms +I, [2018-07-25T01:07:56.927023 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:56.927528 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-07-25T01:07:56.927606 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:56.929565 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.48 ms +I, [2018-07-25T01:07:56.931998 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:56.932520 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-07-25T01:07:56.932560 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:56.932812 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-07-25T01:07:56.932844 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:56.933080 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-07-25T01:07:56.933111 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:56.933568 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T01:07:56.933606 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:56.933878 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-07-25T01:07:56.934382 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:56.934758 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-07-25T01:07:56.934793 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:56.935114 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-07-25T01:07:56.935164 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:56.935918 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.58 ms +I, [2018-07-25T01:07:56.935995 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:56.938072 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-07-25T01:07:56.938119 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:56.938477 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T01:07:56.938511 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:56.941779 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.33 ms +I, [2018-07-25T01:07:56.941850 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:56.942230 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-07-25T01:07:56.942768 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:56.943315 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.31 ms +I, [2018-07-25T01:07:56.943374 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:56.944728 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.28 ms +I, [2018-07-25T01:07:56.944818 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:56.945303 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.23 ms +I, [2018-07-25T01:07:56.945402 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:56.946394 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.24 ms +I, [2018-07-25T01:07:56.947410 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:56.948392 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.33 ms +I, [2018-07-25T01:07:56.948440 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:56.948887 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-07-25T01:07:56.948921 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:56.949330 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-07-25T01:07:56.949456 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:56.949699 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-07-25T01:07:56.949730 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:56.950171 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-07-25T01:07:56.950225 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:56.950573 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-07-25T01:07:56.950623 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:56.950951 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-07-25T01:07:56.950997 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:56.951313 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-07-25T01:07:56.951346 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:56.951628 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-07-25T01:07:56.951661 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:56.952305 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-07-25T01:07:56.952339 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:56.952568 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T01:07:56.952602 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:56.953039 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-07-25T01:07:56.953292 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:56.958507 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.24 ms +I, [2018-07-25T01:07:56.958590 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:56.961204 #5] INFO -- : Inline processing of topic course_change with 1 messages took 2.36 ms +I, [2018-07-25T01:07:56.961265 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:56.961578 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-07-25T01:07:56.961609 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:56.961863 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-07-25T01:07:56.963190 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:56.963520 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-07-25T01:07:56.963552 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:56.963831 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-07-25T01:07:56.963926 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:56.964242 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-07-25T01:07:56.964276 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:56.964499 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-07-25T01:07:56.964531 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:56.964869 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T01:07:56.964932 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:56.965546 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-07-25T01:07:56.965592 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:56.965908 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-07-25T01:07:56.965942 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:56.967050 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.92 ms +I, [2018-07-25T01:07:56.967137 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:56.967433 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-07-25T01:07:56.967465 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:56.967792 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-07-25T01:07:56.967827 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:56.968095 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T01:07:56.968128 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:56.968364 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T01:07:56.968397 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:56.968642 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T01:07:56.968674 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:56.969389 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-07-25T01:07:56.969427 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:56.969690 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T01:07:56.969721 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:56.976664 #5] INFO -- : Inline processing of topic course_change with 1 messages took 6.73 ms +I, [2018-07-25T01:07:56.976817 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:56.977363 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.24 ms +I, [2018-07-25T01:07:56.977417 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:56.979685 #5] INFO -- : Inline processing of topic course_change with 1 messages took 1.09 ms +I, [2018-07-25T01:07:56.982642 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:56.986106 #5] INFO -- : Inline processing of topic course_change with 1 messages took 1.33 ms +I, [2018-07-25T01:07:56.986219 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:56.989166 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.24 ms +I, [2018-07-25T01:07:56.989566 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:56.991064 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.39 ms +I, [2018-07-25T01:07:56.991319 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:56.994370 #5] INFO -- : Inline processing of topic course_change with 1 messages took 1.14 ms +I, [2018-07-25T01:07:56.994447 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:56.994888 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-07-25T01:07:56.994937 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:56.995572 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.23 ms +I, [2018-07-25T01:07:56.995624 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:56.995975 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-07-25T01:07:56.996025 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:56.996440 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-07-25T01:07:56.996492 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:56.996848 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-07-25T01:07:56.996894 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:56.997254 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-07-25T01:07:56.997300 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:56.997706 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.23 ms +I, [2018-07-25T01:07:56.997773 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:58.998488 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-07-25T01:07:58.998561 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:58.998876 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-07-25T01:07:58.998911 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:58.999198 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-07-25T01:07:58.999231 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:59.000470 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.23 ms +I, [2018-07-25T01:07:59.000639 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:59.001295 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.5 ms +I, [2018-07-25T01:07:59.001356 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:59.001751 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-07-25T01:07:59.001797 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:59.002160 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-07-25T01:07:59.002228 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:59.002558 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-07-25T01:07:59.002598 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:59.002980 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-07-25T01:07:59.003016 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:59.003251 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-07-25T01:07:59.003316 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:59.004836 #5] INFO -- : Inline processing of topic course_change with 1 messages took 1.33 ms +I, [2018-07-25T01:07:59.004900 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:59.005361 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-07-25T01:07:59.005416 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:59.005785 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-07-25T01:07:59.005833 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:59.006170 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-07-25T01:07:59.006215 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:59.006559 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-07-25T01:07:59.006604 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:59.006864 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T01:07:59.006896 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:59.007113 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T01:07:59.007169 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:59.007402 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T01:07:59.007446 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:59.009068 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-07-25T01:07:59.009126 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:59.009637 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.25 ms +I, [2018-07-25T01:07:59.009696 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:59.010157 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.26 ms +I, [2018-07-25T01:07:59.010214 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:59.010663 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-07-25T01:07:59.010756 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:59.011161 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-07-25T01:07:59.011217 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:59.011601 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-07-25T01:07:59.011638 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:59.011943 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-07-25T01:07:59.012005 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:59.012275 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-07-25T01:07:59.012331 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:59.012716 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-07-25T01:07:59.012768 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:59.014178 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-07-25T01:07:59.014448 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:59.016800 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.35 ms +I, [2018-07-25T01:07:59.016868 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:59.017280 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-07-25T01:07:59.017318 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:59.017610 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-07-25T01:07:59.017738 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:59.019033 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.47 ms +I, [2018-07-25T01:07:59.019121 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:59.019479 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-07-25T01:07:59.019640 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:59.020253 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-07-25T01:07:59.020312 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:59.020709 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-07-25T01:07:59.020844 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:59.021644 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.3 ms +I, [2018-07-25T01:07:59.021710 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:59.023436 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.3 ms +I, [2018-07-25T01:07:59.023710 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:59.024343 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.28 ms +I, [2018-07-25T01:07:59.024484 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:59.026430 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.53 ms +I, [2018-07-25T01:07:59.026627 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:59.027125 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-07-25T01:07:59.027178 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:59.027631 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-07-25T01:07:59.027682 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:59.028042 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-07-25T01:07:59.028130 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:59.028620 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.3 ms +I, [2018-07-25T01:07:59.028759 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:59.029128 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-07-25T01:07:59.029162 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:59.029405 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T01:07:59.029436 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T01:07:59.430155 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-07-25T01:07:59.430214 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:07:59.430608 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T01:07:59.430657 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:07:59.430921 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T01:07:59.430951 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:07:59.431188 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T01:07:59.431221 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:07:59.431500 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T01:07:59.431533 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:07:59.431817 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T01:07:59.431851 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:07:59.432138 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T01:07:59.432167 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:07:59.432457 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T01:07:59.432500 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:07:59.432855 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T01:07:59.432896 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:07:59.433989 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.95 ms +I, [2018-07-25T01:07:59.434023 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:07:59.434361 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T01:07:59.434404 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:07:59.434686 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T01:07:59.434715 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:07:59.434968 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T01:07:59.434998 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:07:59.435226 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T01:07:59.435256 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:07:59.435483 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T01:07:59.435512 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:07:59.435819 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T01:07:59.435864 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:07:59.436129 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T01:07:59.436282 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:07:59.436530 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T01:07:59.436560 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:07:59.436738 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T01:07:59.436798 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:07:59.436981 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T01:07:59.437628 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:07:59.438100 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T01:07:59.438155 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:07:59.438795 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.44 ms +I, [2018-07-25T01:07:59.438897 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:07:59.439352 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-25T01:07:59.439402 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:07:59.439770 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T01:07:59.439840 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:07:59.440132 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T01:07:59.440164 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:07:59.441219 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T01:07:59.441337 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:07:59.441641 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T01:07:59.441704 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:07:59.441957 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T01:07:59.442007 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:07:59.442255 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T01:07:59.442372 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:07:59.443266 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-07-25T01:07:59.443322 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:07:59.443719 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T01:07:59.443766 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:07:59.444106 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T01:07:59.444154 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:07:59.444499 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T01:07:59.444545 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:07:59.444917 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T01:07:59.444970 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:07:59.445441 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T01:07:59.445494 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:07:59.446302 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.62 ms +I, [2018-07-25T01:07:59.446364 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:07:59.447006 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-07-25T01:07:59.447044 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:07:59.447494 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-07-25T01:07:59.447528 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:07:59.448573 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-07-25T01:07:59.448613 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:07:59.449190 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.42 ms +I, [2018-07-25T01:07:59.449359 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:07:59.450040 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.46 ms +I, [2018-07-25T01:07:59.450133 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:07:59.451096 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.56 ms +I, [2018-07-25T01:07:59.451161 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:07:59.451852 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.48 ms +I, [2018-07-25T01:07:59.451912 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:07:59.452523 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.41 ms +I, [2018-07-25T01:07:59.452574 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:07:59.454193 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.78 ms +I, [2018-07-25T01:07:59.454264 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:07:59.454913 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.43 ms +I, [2018-07-25T01:07:59.454972 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:07:59.455481 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T01:07:59.455603 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:07:59.456251 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-25T01:07:59.456583 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:07:59.457144 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-07-25T01:07:59.457914 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:07:59.458331 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T01:07:59.458366 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:07:59.459928 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.3 ms +I, [2018-07-25T01:07:59.459973 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:07:59.460514 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-07-25T01:07:59.460579 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:01.461577 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-25T01:08:01.461642 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:01.462180 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-07-25T01:08:01.462300 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:01.464499 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.75 ms +I, [2018-07-25T01:08:01.464596 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:01.465411 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-07-25T01:08:01.465521 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:01.468572 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-07-25T01:08:01.468650 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:01.469245 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T01:08:01.469287 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:01.469632 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T01:08:01.469666 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:01.470169 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-07-25T01:08:01.470202 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:01.470598 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-25T01:08:01.470648 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:01.470969 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T01:08:01.471020 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:01.472006 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-07-25T01:08:01.472071 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:01.472801 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-07-25T01:08:01.472906 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:01.473508 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-07-25T01:08:01.473548 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:01.473950 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-25T01:08:01.473981 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:01.474353 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T01:08:01.474383 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:01.474756 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T01:08:01.474791 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:01.475014 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T01:08:01.475062 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:01.475548 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-07-25T01:08:01.475607 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:01.476250 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.5 ms +I, [2018-07-25T01:08:01.476317 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:01.476937 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.42 ms +I, [2018-07-25T01:08:01.476983 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:01.477417 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T01:08:01.477468 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:01.478200 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.56 ms +I, [2018-07-25T01:08:01.478263 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:01.478862 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-07-25T01:08:01.478947 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:01.481526 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.76 ms +I, [2018-07-25T01:08:01.481676 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:01.482951 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.63 ms +I, [2018-07-25T01:08:01.483162 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:01.484326 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.65 ms +I, [2018-07-25T01:08:01.484468 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:01.485246 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.49 ms +I, [2018-07-25T01:08:01.485397 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:01.486021 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-07-25T01:08:01.486078 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:01.486606 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-07-25T01:08:01.486658 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:01.487495 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-07-25T01:08:01.487631 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:01.488876 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.77 ms +I, [2018-07-25T01:08:01.488943 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:01.489419 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-07-25T01:08:01.489454 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:01.489790 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T01:08:01.489822 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:01.490142 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T01:08:01.490181 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:01.490486 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T01:08:01.490514 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:01.491062 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-07-25T01:08:01.491161 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:01.491503 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T01:08:01.491553 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:01.492923 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T01:08:01.492976 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:01.493579 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-25T01:08:01.493626 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:01.493889 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T01:08:01.493931 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:01.494239 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T01:08:01.495393 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:01.496068 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-07-25T01:08:01.496137 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:01.496780 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-07-25T01:08:01.496979 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:01.498920 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.84 ms +I, [2018-07-25T01:08:01.499030 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:01.501921 #5] INFO -- : Inline processing of topic section_change with 1 messages took 2.46 ms +I, [2018-07-25T01:08:01.502000 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:01.503828 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.98 ms +I, [2018-07-25T01:08:01.504123 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:01.504604 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-07-25T01:08:01.504698 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:01.505108 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T01:08:01.505145 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:01.507548 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.47 ms +I, [2018-07-25T01:08:01.507613 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:01.508118 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-07-25T01:08:01.508172 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:01.508574 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T01:08:01.508678 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:01.509129 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-07-25T01:08:01.509170 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:01.509454 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T01:08:01.509518 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:01.509812 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T01:08:01.509843 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:01.510104 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T01:08:01.510137 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:01.510639 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-07-25T01:08:01.510712 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:01.511020 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T01:08:01.511051 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:01.511590 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.4 ms +I, [2018-07-25T01:08:01.511694 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:01.512492 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.44 ms +I, [2018-07-25T01:08:01.512621 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:01.513155 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-07-25T01:08:01.513214 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:01.514792 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-07-25T01:08:01.514888 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:01.515634 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.42 ms +I, [2018-07-25T01:08:01.515717 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:01.516397 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.41 ms +I, [2018-07-25T01:08:01.516462 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:01.516920 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T01:08:01.516978 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:01.517418 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T01:08:01.517468 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:01.517837 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T01:08:01.517891 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:01.518338 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T01:08:01.518389 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:01.518750 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T01:08:01.518799 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:01.519283 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-07-25T01:08:01.519332 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:01.519746 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T01:08:01.519856 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:01.520877 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.51 ms +I, [2018-07-25T01:08:01.520954 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:01.521457 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-07-25T01:08:01.521513 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:01.522980 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.49 ms +I, [2018-07-25T01:08:01.523045 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:01.523623 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-07-25T01:08:01.523679 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:01.524316 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-07-25T01:08:01.524444 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:01.525528 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.47 ms +I, [2018-07-25T01:08:01.525610 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:01.526594 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.46 ms +I, [2018-07-25T01:08:01.526662 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:01.533038 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.58 ms +I, [2018-07-25T01:08:01.533118 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:01.533781 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-07-25T01:08:01.533894 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:01.535042 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.63 ms +I, [2018-07-25T01:08:01.535134 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:01.536669 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.05 ms +I, [2018-07-25T01:08:01.536741 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:01.537428 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-07-25T01:08:01.537484 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:01.537957 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-07-25T01:08:01.538011 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:01.538485 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-07-25T01:08:01.538538 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:01.539164 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-07-25T01:08:01.539229 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:01.539802 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-07-25T01:08:01.539852 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:01.540227 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T01:08:01.540279 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:01.540662 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T01:08:01.540808 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:01.541408 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-07-25T01:08:01.541467 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:01.541905 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-25T01:08:01.541951 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:01.542431 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-07-25T01:08:01.542484 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:01.543031 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-07-25T01:08:01.543076 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:01.543516 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-07-25T01:08:01.543562 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:01.544378 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-07-25T01:08:01.544458 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:01.545095 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.4 ms +I, [2018-07-25T01:08:01.545178 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:01.545872 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-07-25T01:08:01.545955 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:03.549147 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T01:08:03.549197 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:03.549540 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T01:08:03.549592 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:03.549871 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T01:08:03.549899 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:03.550175 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T01:08:03.550271 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:03.550629 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T01:08:03.550670 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:03.550941 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T01:08:03.550984 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:03.551231 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T01:08:03.551262 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:03.551561 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T01:08:03.551602 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:03.551943 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T01:08:03.551986 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:03.552549 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-07-25T01:08:03.552585 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:03.552909 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T01:08:03.552951 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:03.553514 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T01:08:03.553549 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:03.553756 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T01:08:03.553786 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:03.554073 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T01:08:03.554132 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:03.554438 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T01:08:03.554466 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:03.554659 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T01:08:03.554687 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:03.556431 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T01:08:03.556472 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:03.556739 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T01:08:03.557308 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:03.557750 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T01:08:03.557789 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:03.558062 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T01:08:03.558094 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:03.558309 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T01:08:03.558351 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:03.558579 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T01:08:03.558609 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:03.558948 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T01:08:03.558992 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:03.559293 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T01:08:03.559325 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:03.559601 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T01:08:03.559632 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:03.559873 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T01:08:03.559902 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:03.561356 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.28 ms +I, [2018-07-25T01:08:03.561444 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:03.561902 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T01:08:03.561953 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:03.562327 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T01:08:03.562393 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:03.564030 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.09 ms +I, [2018-07-25T01:08:03.564103 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:03.566034 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.53 ms +I, [2018-07-25T01:08:03.566078 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:03.567338 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.08 ms +I, [2018-07-25T01:08:03.567398 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:03.567764 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T01:08:03.567795 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:03.568142 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T01:08:03.568191 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:03.568608 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-25T01:08:03.569017 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:03.569734 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.47 ms +I, [2018-07-25T01:08:03.571629 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:03.572275 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-07-25T01:08:03.572342 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:03.572829 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-07-25T01:08:03.572871 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:03.573192 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T01:08:03.573223 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:03.573583 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-25T01:08:03.573623 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:03.577215 #5] INFO -- : Inline processing of topic section_change with 1 messages took 3.43 ms +I, [2018-07-25T01:08:03.577286 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:03.579687 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.46 ms +I, [2018-07-25T01:08:03.579742 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:03.582467 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T01:08:03.582526 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:03.583425 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-07-25T01:08:03.583504 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:03.583812 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T01:08:03.583873 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:03.584186 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T01:08:03.584221 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:03.584499 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T01:08:03.584560 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:03.584850 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T01:08:03.584909 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:03.587098 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.5 ms +I, [2018-07-25T01:08:03.587176 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:03.588246 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T01:08:03.588286 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:03.588645 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T01:08:03.588676 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:03.589489 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.68 ms +I, [2018-07-25T01:08:03.589539 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:03.591539 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-07-25T01:08:03.591599 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:03.592097 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-07-25T01:08:03.592138 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:03.594615 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-07-25T01:08:03.594677 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:03.597784 #5] INFO -- : Inline processing of topic section_change with 1 messages took 2.77 ms +I, [2018-07-25T01:08:03.597832 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:03.598510 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.5 ms +I, [2018-07-25T01:08:03.598571 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:03.599101 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-07-25T01:08:03.599638 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:03.601859 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.93 ms +I, [2018-07-25T01:08:03.601921 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:03.603608 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T01:08:03.603653 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:03.603994 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T01:08:03.604024 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:03.604329 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T01:08:03.604359 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:03.604691 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T01:08:03.604720 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:03.604985 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T01:08:03.605047 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:03.605807 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.64 ms +I, [2018-07-25T01:08:03.605861 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:03.608689 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.78 ms +I, [2018-07-25T01:08:03.608964 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:03.610996 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.79 ms +I, [2018-07-25T01:08:03.611131 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:03.611677 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-07-25T01:08:03.611715 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:03.612084 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-25T01:08:03.612116 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:03.612462 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T01:08:03.612490 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:03.612732 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T01:08:03.613237 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:03.614790 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.32 ms +I, [2018-07-25T01:08:03.614853 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:03.615429 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T01:08:03.615472 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:03.616545 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T01:08:03.616584 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:03.616810 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T01:08:03.616840 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:03.617063 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T01:08:03.617094 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:03.618895 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T01:08:03.619233 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:03.621971 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.43 ms +I, [2018-07-25T01:08:03.622053 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:03.622346 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T01:08:03.622379 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:03.622615 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T01:08:03.622646 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:03.622874 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T01:08:03.623516 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:03.623870 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T01:08:03.623904 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:03.624200 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T01:08:03.624233 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:03.624441 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T01:08:03.624471 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:03.624684 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T01:08:03.624728 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:03.624934 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T01:08:03.624963 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:03.625180 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T01:08:03.625209 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:03.625408 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T01:08:03.625437 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:03.625641 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T01:08:03.625670 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:03.626183 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-07-25T01:08:03.626274 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:03.626697 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-07-25T01:08:03.629332 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:03.631112 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.44 ms +I, [2018-07-25T01:08:03.631182 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:03.631606 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T01:08:03.631655 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:03.632026 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T01:08:03.632060 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:05.033903 #5] INFO -- : Committing offsets: course_change/0:1815 +I, [2018-07-25T01:08:05.632439 #5] INFO -- : Committing offsets: section_change/0:2427 +I, [2018-07-25T01:08:05.635305 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.92 ms +I, [2018-07-25T01:08:05.635371 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:05.635759 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T01:08:05.635793 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:05.636261 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-07-25T01:08:05.636318 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:05.637137 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.54 ms +I, [2018-07-25T01:08:05.637208 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:05.637757 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-07-25T01:08:05.637824 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:05.638522 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-07-25T01:08:05.638672 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:05.639348 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T01:08:05.639448 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:05.639993 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-07-25T01:08:05.640056 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:05.640409 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T01:08:05.640459 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:05.640861 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T01:08:05.640966 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:05.644628 #5] INFO -- : Inline processing of topic section_change with 1 messages took 3.4 ms +I, [2018-07-25T01:08:05.644711 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:05.645147 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T01:08:05.645207 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:05.645462 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T01:08:05.645493 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:05.645784 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T01:08:05.645814 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:05.646211 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-07-25T01:08:05.646241 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:05.652535 #5] INFO -- : Inline processing of topic section_change with 1 messages took 6.04 ms +I, [2018-07-25T01:08:05.652621 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:05.653521 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-25T01:08:05.653556 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:05.653901 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T01:08:05.653938 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:05.654186 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T01:08:05.654224 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:05.654488 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T01:08:05.654522 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:05.654761 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T01:08:05.654942 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:05.655433 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T01:08:05.655468 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:05.655763 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T01:08:05.655812 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:05.656041 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T01:08:05.656081 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:05.657990 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.69 ms +I, [2018-07-25T01:08:05.658067 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:05.665144 #5] INFO -- : Inline processing of topic section_change with 1 messages took 2.14 ms +I, [2018-07-25T01:08:05.665239 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:05.665655 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-25T01:08:05.665687 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:05.665929 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T01:08:05.665959 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:05.666262 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T01:08:05.666294 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:05.666698 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T01:08:05.666749 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:05.667012 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T01:08:05.667044 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:05.667301 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T01:08:05.667331 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:05.669158 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T01:08:05.669206 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:05.669484 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T01:08:05.669527 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:05.669789 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T01:08:05.669829 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:05.671921 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.93 ms +I, [2018-07-25T01:08:05.671988 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:05.672448 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T01:08:05.672540 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:05.672842 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T01:08:05.672874 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:05.673075 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T01:08:05.673104 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:05.673321 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T01:08:05.673377 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:05.673592 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T01:08:05.673621 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:05.673927 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T01:08:05.673957 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:05.674253 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T01:08:05.674284 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:05.674602 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T01:08:05.674629 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:05.675218 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T01:08:05.675250 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:05.675791 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-07-25T01:08:05.675849 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:05.676382 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-07-25T01:08:05.676435 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:05.676943 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-07-25T01:08:05.676981 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:05.677445 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-07-25T01:08:05.677533 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:05.678038 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-07-25T01:08:05.678106 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:05.678630 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-07-25T01:08:05.678728 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:05.679340 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.41 ms +I, [2018-07-25T01:08:05.679431 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:05.680395 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.41 ms +I, [2018-07-25T01:08:05.680702 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:05.681534 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.51 ms +I, [2018-07-25T01:08:05.681607 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:05.683550 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.28 ms +I, [2018-07-25T01:08:05.683654 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:05.684955 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.8 ms +I, [2018-07-25T01:08:05.685090 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:05.686331 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.76 ms +I, [2018-07-25T01:08:05.686460 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:05.686911 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-07-25T01:08:05.686995 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:05.687860 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.45 ms +I, [2018-07-25T01:08:05.688015 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:05.689059 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.61 ms +I, [2018-07-25T01:08:05.689132 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:05.689797 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.45 ms +I, [2018-07-25T01:08:05.689840 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:05.690306 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-07-25T01:08:05.690352 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:05.691027 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.5 ms +I, [2018-07-25T01:08:05.691187 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:05.692538 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.12 ms +I, [2018-07-25T01:08:05.692616 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:05.693308 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.45 ms +I, [2018-07-25T01:08:05.693391 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:05.695984 #5] INFO -- : Inline processing of topic section_change with 1 messages took 2.28 ms +I, [2018-07-25T01:08:05.696066 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:05.697373 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.98 ms +I, [2018-07-25T01:08:05.697420 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:05.697720 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T01:08:05.697749 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:05.698235 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-07-25T01:08:05.698803 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:05.700083 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-07-25T01:08:05.700208 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:05.701331 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.63 ms +I, [2018-07-25T01:08:05.701452 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:05.702070 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-07-25T01:08:05.702129 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:05.702764 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-07-25T01:08:05.702806 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:05.705569 #5] INFO -- : Inline processing of topic section_change with 1 messages took 2.48 ms +I, [2018-07-25T01:08:05.705663 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:05.706242 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-07-25T01:08:05.706300 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:05.706938 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-07-25T01:08:05.707016 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:05.707801 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.55 ms +I, [2018-07-25T01:08:05.707864 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:05.709277 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.1 ms +I, [2018-07-25T01:08:05.709346 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:05.709738 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T01:08:05.709771 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:05.710224 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-07-25T01:08:05.710276 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:05.710774 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-07-25T01:08:05.710814 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:05.711280 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-25T01:08:05.711316 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:05.711660 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T01:08:05.711723 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:05.712292 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T01:08:05.712357 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:05.713971 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.4 ms +I, [2018-07-25T01:08:05.714047 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:05.714670 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-07-25T01:08:05.714728 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:05.715117 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T01:08:05.715168 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:05.715566 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T01:08:05.715699 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:05.716312 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-07-25T01:08:05.716376 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:05.716935 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-07-25T01:08:05.717103 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:07.717922 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T01:08:07.717984 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:07.718337 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T01:08:07.718371 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:07.718711 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T01:08:07.718758 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:07.720055 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.11 ms +I, [2018-07-25T01:08:07.720601 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:07.721179 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T01:08:07.721252 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:07.731674 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T01:08:07.731725 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:07.731993 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T01:08:07.732023 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:07.732292 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T01:08:07.732321 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:07.732543 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T01:08:07.732580 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:07.732776 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T01:08:07.732805 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:07.733029 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T01:08:07.733058 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:07.733278 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T01:08:07.733308 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:07.733553 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T01:08:07.733585 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:07.736123 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.9 ms +I, [2018-07-25T01:08:07.736188 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:07.738004 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-07-25T01:08:07.738081 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:07.739826 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-07-25T01:08:07.739901 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:07.740336 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T01:08:07.740402 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:07.741434 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.5 ms +I, [2018-07-25T01:08:07.741539 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:07.742237 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T01:08:07.742290 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:07.743682 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T01:08:07.743778 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:07.744276 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-07-25T01:08:07.744334 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:07.744739 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T01:08:07.744775 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:07.745091 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T01:08:07.745127 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:07.745407 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T01:08:07.747920 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:07.748827 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-07-25T01:08:07.748891 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:07.749316 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T01:08:07.749440 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:07.750041 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.41 ms +I, [2018-07-25T01:08:07.750172 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:07.750597 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T01:08:07.750632 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:07.750928 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T01:08:07.750960 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:07.751499 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-07-25T01:08:07.751538 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:07.751871 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T01:08:07.751906 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:07.752417 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T01:08:07.752451 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:07.753237 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T01:08:07.753279 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:07.753604 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T01:08:07.753639 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:07.754333 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.4 ms +I, [2018-07-25T01:08:07.755003 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:07.758527 #5] INFO -- : Inline processing of topic section_change with 1 messages took 3.17 ms +I, [2018-07-25T01:08:07.758646 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:07.759856 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-07-25T01:08:07.759925 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:07.760695 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.55 ms +I, [2018-07-25T01:08:07.760758 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:07.761685 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T01:08:07.762056 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:07.762478 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T01:08:07.762562 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:07.762827 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T01:08:07.762858 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:07.763108 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T01:08:07.763182 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:07.763681 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-07-25T01:08:07.763737 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:07.764316 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T01:08:07.764367 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:07.764923 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-07-25T01:08:07.764966 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:07.765641 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-07-25T01:08:07.765685 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:07.767123 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.21 ms +I, [2018-07-25T01:08:07.767279 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:07.767756 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-07-25T01:08:07.767791 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:07.768256 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-07-25T01:08:07.768305 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:07.769296 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.69 ms +I, [2018-07-25T01:08:07.770053 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:07.770772 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-07-25T01:08:07.770837 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:07.771448 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-07-25T01:08:07.773134 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:07.775864 #5] INFO -- : Inline processing of topic section_change with 1 messages took 2.22 ms +I, [2018-07-25T01:08:07.776024 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:07.777035 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.57 ms +I, [2018-07-25T01:08:07.777103 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:07.779646 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.62 ms +I, [2018-07-25T01:08:07.779701 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:07.780275 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-07-25T01:08:07.781275 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:07.782933 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.37 ms +I, [2018-07-25T01:08:07.782993 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:07.785114 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.79 ms +I, [2018-07-25T01:08:07.785173 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:07.786372 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.85 ms +I, [2018-07-25T01:08:07.786622 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:07.787694 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.67 ms +I, [2018-07-25T01:08:07.787778 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:07.789857 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.75 ms +I, [2018-07-25T01:08:07.790143 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:07.791750 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.23 ms +I, [2018-07-25T01:08:07.791808 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:07.795036 #5] INFO -- : Inline processing of topic section_change with 1 messages took 2.96 ms +I, [2018-07-25T01:08:07.795284 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:07.796652 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.81 ms +I, [2018-07-25T01:08:07.796715 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:07.797613 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.68 ms +I, [2018-07-25T01:08:07.797648 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:07.799087 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.28 ms +I, [2018-07-25T01:08:07.799138 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:07.800235 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.92 ms +I, [2018-07-25T01:08:07.800280 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:07.804066 #5] INFO -- : Inline processing of topic section_change with 1 messages took 3.21 ms +I, [2018-07-25T01:08:07.804160 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:07.805964 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.43 ms +I, [2018-07-25T01:08:07.806683 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:07.807255 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-07-25T01:08:07.807363 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:07.809520 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.34 ms +I, [2018-07-25T01:08:07.809571 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:07.811670 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.84 ms +I, [2018-07-25T01:08:07.811731 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:07.814168 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.14 ms +I, [2018-07-25T01:08:07.814325 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:07.817267 #5] INFO -- : Inline processing of topic section_change with 1 messages took 2.53 ms +I, [2018-07-25T01:08:07.817370 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:07.819411 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.71 ms +I, [2018-07-25T01:08:07.819500 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:07.820090 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-07-25T01:08:07.820890 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:07.822930 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.72 ms +I, [2018-07-25T01:08:07.824037 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:07.825126 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.63 ms +I, [2018-07-25T01:08:07.825259 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:07.826948 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.72 ms +I, [2018-07-25T01:08:07.826996 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:07.829918 #5] INFO -- : Inline processing of topic section_change with 1 messages took 2.71 ms +I, [2018-07-25T01:08:07.830002 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:07.830784 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-07-25T01:08:07.830847 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:07.831901 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T01:08:07.831938 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:07.833231 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.8 ms +I, [2018-07-25T01:08:07.833278 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:07.835184 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T01:08:07.835255 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:07.838236 #5] INFO -- : Inline processing of topic section_change with 1 messages took 2.78 ms +I, [2018-07-25T01:08:07.838407 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:07.839590 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.41 ms +I, [2018-07-25T01:08:07.839669 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:07.842415 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.06 ms +I, [2018-07-25T01:08:07.842495 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:07.843747 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.58 ms +I, [2018-07-25T01:08:07.843910 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:07.845455 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T01:08:07.845498 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:07.845825 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T01:08:07.845858 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:07.846091 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T01:08:07.846122 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:07.846702 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-07-25T01:08:07.846742 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:07.846997 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T01:08:07.847028 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:07.847265 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T01:08:07.847296 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +W, [2018-07-25T01:08:09.840191 #5] WARN -- : Reached max fetcher queue size (100), sleeping 1s +I, [2018-07-25T01:08:09.849392 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T01:08:09.849436 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:09.849681 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T01:08:09.849711 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:09.849928 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T01:08:09.849957 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:09.851105 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.99 ms +I, [2018-07-25T01:08:09.851156 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:09.851429 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T01:08:09.851460 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:09.851686 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T01:08:09.851716 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:09.851940 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T01:08:09.851969 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:09.852202 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T01:08:09.852244 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:09.852458 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T01:08:09.852495 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:09.852701 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T01:08:09.852731 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:09.852941 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T01:08:09.852986 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:09.853253 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T01:08:09.853301 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:09.853620 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T01:08:09.853665 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:09.853974 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T01:08:09.854009 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:09.854207 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T01:08:09.854354 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:09.854937 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-07-25T01:08:09.854990 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:09.855384 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T01:08:09.855434 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:09.855691 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T01:08:09.855732 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:09.855935 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T01:08:09.855964 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:09.856215 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T01:08:09.856260 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:09.856592 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T01:08:09.856638 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:09.856946 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T01:08:09.856992 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:09.857286 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T01:08:09.857327 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:09.857567 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T01:08:09.857613 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:09.857810 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T01:08:09.857856 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:09.858061 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T01:08:09.858090 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:09.859611 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.36 ms +I, [2018-07-25T01:08:09.859686 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:09.860199 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T01:08:09.860276 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:09.860669 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T01:08:09.860721 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:09.861172 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T01:08:09.861236 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:09.863608 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-07-25T01:08:09.863652 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:09.863909 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T01:08:09.863941 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:09.864172 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T01:08:09.864211 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:09.864645 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T01:08:09.864681 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:09.865010 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T01:08:09.865110 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:09.865413 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T01:08:09.865455 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:09.867561 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T01:08:09.867851 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:09.869082 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.62 ms +I, [2018-07-25T01:08:09.869475 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:09.870202 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T01:08:09.870257 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:09.870601 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T01:08:09.870670 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:09.871206 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-07-25T01:08:09.871310 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:09.872180 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.49 ms +I, [2018-07-25T01:08:09.872242 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:09.873967 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.43 ms +I, [2018-07-25T01:08:09.874049 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:09.874940 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-07-25T01:08:09.875052 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:09.875733 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.44 ms +I, [2018-07-25T01:08:09.875796 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:09.876904 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.58 ms +I, [2018-07-25T01:08:09.876974 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:09.878343 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.06 ms +I, [2018-07-25T01:08:09.878420 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:09.879134 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.43 ms +I, [2018-07-25T01:08:09.879199 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:09.879764 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-07-25T01:08:09.879872 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:09.880366 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-07-25T01:08:09.880415 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:09.882161 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.48 ms +I, [2018-07-25T01:08:09.882243 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:09.883057 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.45 ms +I, [2018-07-25T01:08:09.883118 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:09.883602 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-25T01:08:09.883638 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:09.883938 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T01:08:09.883969 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:09.885119 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.8 ms +I, [2018-07-25T01:08:09.885258 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:09.885944 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.45 ms +I, [2018-07-25T01:08:09.886003 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:09.887452 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.23 ms +I, [2018-07-25T01:08:09.887498 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:09.888133 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-07-25T01:08:09.888169 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:09.889224 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.87 ms +I, [2018-07-25T01:08:09.889291 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:09.890082 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.52 ms +I, [2018-07-25T01:08:09.890139 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:09.890729 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-07-25T01:08:09.890781 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:09.891059 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T01:08:09.891091 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:09.891392 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T01:08:09.891441 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:09.892380 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T01:08:09.892416 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:09.893606 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T01:08:09.893741 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:09.894287 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T01:08:09.894400 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:09.895036 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.4 ms +I, [2018-07-25T01:08:09.895510 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:09.895862 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T01:08:09.895895 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:09.897069 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.99 ms +I, [2018-07-25T01:08:09.897121 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:09.897886 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.59 ms +I, [2018-07-25T01:08:09.897945 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:09.898599 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.46 ms +I, [2018-07-25T01:08:09.898636 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:09.899218 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.44 ms +I, [2018-07-25T01:08:09.899288 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:09.900200 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.47 ms +I, [2018-07-25T01:08:09.900307 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:09.900854 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-07-25T01:08:09.900909 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:09.901450 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-07-25T01:08:09.901559 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:09.902122 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T01:08:09.902179 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:09.902539 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T01:08:09.902572 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:09.902835 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T01:08:09.902900 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:09.903146 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T01:08:09.903175 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:09.904316 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.0 ms +I, [2018-07-25T01:08:09.904367 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:09.904985 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.41 ms +I, [2018-07-25T01:08:09.905047 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:09.905490 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-25T01:08:09.905544 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:09.905934 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T01:08:09.905985 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:09.906344 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T01:08:09.906393 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:09.907012 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T01:08:09.907051 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:09.907539 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-25T01:08:09.907576 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:09.907873 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T01:08:09.907933 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:09.909712 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.62 ms +I, [2018-07-25T01:08:09.909789 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:09.910585 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.49 ms +I, [2018-07-25T01:08:09.910647 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:09.911264 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-07-25T01:08:09.911315 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:09.911896 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-07-25T01:08:09.911932 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:09.912385 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T01:08:09.912420 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:09.912733 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T01:08:09.912763 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:09.913709 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.77 ms +I, [2018-07-25T01:08:09.913830 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:09.914881 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.88 ms +I, [2018-07-25T01:08:09.915099 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:09.915789 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-07-25T01:08:09.915866 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:09.916220 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T01:08:09.916274 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:09.916646 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T01:08:09.916691 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:09.917172 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-07-25T01:08:09.917314 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:09.917718 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T01:08:09.917766 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:11.918937 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-07-25T01:08:11.918992 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:11.919222 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T01:08:11.919253 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:11.919480 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T01:08:11.919510 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:11.920103 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T01:08:11.921142 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:11.921598 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T01:08:11.921650 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:11.922021 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T01:08:11.922061 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:11.922284 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T01:08:11.922315 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:11.922537 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T01:08:11.922659 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:11.922960 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T01:08:11.923012 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:11.923787 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.56 ms +I, [2018-07-25T01:08:11.923838 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:11.924337 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-07-25T01:08:11.924464 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:11.924680 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T01:08:11.924710 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:11.924881 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T01:08:11.924909 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:11.925089 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T01:08:11.925116 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:11.925288 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T01:08:11.925321 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:11.927525 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.91 ms +I, [2018-07-25T01:08:11.927615 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:11.928008 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T01:08:11.928320 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:11.929689 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.5 ms +I, [2018-07-25T01:08:11.929774 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:11.930619 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.53 ms +I, [2018-07-25T01:08:11.930678 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:11.931020 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T01:08:11.931057 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:11.931394 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T01:08:11.931426 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:11.932306 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.7 ms +I, [2018-07-25T01:08:11.932657 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:11.932888 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T01:08:11.932930 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:11.933971 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.93 ms +I, [2018-07-25T01:08:11.934035 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:11.934467 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-07-25T01:08:11.934554 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:11.935264 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-07-25T01:08:11.935324 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:11.936151 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-25T01:08:11.936204 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:11.936725 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-07-25T01:08:11.936765 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:11.938723 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.68 ms +I, [2018-07-25T01:08:11.938812 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:11.939316 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-07-25T01:08:11.939371 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:11.940476 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-07-25T01:08:11.940703 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:11.941249 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-07-25T01:08:11.941288 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:11.941553 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T01:08:11.941606 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:11.942714 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.96 ms +I, [2018-07-25T01:08:11.942789 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:11.943588 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.61 ms +I, [2018-07-25T01:08:11.943648 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:11.944042 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-25T01:08:11.944106 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:11.944363 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T01:08:11.944394 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:11.944901 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.41 ms +I, [2018-07-25T01:08:11.944943 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:11.945522 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.47 ms +I, [2018-07-25T01:08:11.945562 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:11.947249 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.49 ms +I, [2018-07-25T01:08:11.947652 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:11.948277 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-07-25T01:08:11.948371 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:11.948979 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-07-25T01:08:11.949034 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:11.949278 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T01:08:11.949309 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:11.949539 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T01:08:11.949569 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:11.950060 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-07-25T01:08:11.950096 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:11.951394 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.08 ms +I, [2018-07-25T01:08:11.951462 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:11.951937 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-07-25T01:08:11.951972 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:11.952532 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-07-25T01:08:11.952588 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:11.953025 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T01:08:11.953073 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:11.953724 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.47 ms +I, [2018-07-25T01:08:11.953784 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:11.954697 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T01:08:11.954742 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:11.955096 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T01:08:11.955133 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:11.956524 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T01:08:11.956769 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:11.957070 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T01:08:11.957103 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:11.958372 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T01:08:11.958605 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:11.959467 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T01:08:11.959522 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:11.959872 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T01:08:11.959932 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:11.960276 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T01:08:11.960322 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:11.960647 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T01:08:11.960693 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:11.960982 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T01:08:11.961014 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:11.963263 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.54 ms +I, [2018-07-25T01:08:11.963330 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:11.964581 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T01:08:11.964626 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:11.965088 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-07-25T01:08:11.965133 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:11.965789 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.45 ms +I, [2018-07-25T01:08:11.965835 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:11.966106 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T01:08:11.966138 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:11.968133 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.82 ms +I, [2018-07-25T01:08:11.968216 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:11.969328 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.61 ms +I, [2018-07-25T01:08:11.969394 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:11.969806 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T01:08:11.969958 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:11.970316 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T01:08:11.970377 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:11.970769 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T01:08:11.970934 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:11.971357 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T01:08:11.971426 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:11.971991 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T01:08:11.972042 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:11.972627 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.41 ms +I, [2018-07-25T01:08:11.972666 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:11.972948 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T01:08:11.972991 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:11.973393 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T01:08:11.973806 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:11.974118 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T01:08:11.974151 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:11.974836 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T01:08:11.975802 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:11.976723 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.42 ms +I, [2018-07-25T01:08:11.976797 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:11.977250 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T01:08:11.977316 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:11.980129 #5] INFO -- : Inline processing of topic section_change with 1 messages took 2.57 ms +I, [2018-07-25T01:08:11.980179 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:11.980472 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T01:08:11.980504 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:11.981672 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T01:08:11.981765 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:11.982232 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T01:08:11.982279 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:11.982517 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T01:08:11.982548 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:11.982767 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T01:08:11.982797 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:11.983595 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-07-25T01:08:11.983636 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:11.983899 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T01:08:11.983931 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:11.984173 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T01:08:11.985139 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:11.986755 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.27 ms +I, [2018-07-25T01:08:11.986953 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:11.987496 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-07-25T01:08:11.987551 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:11.988420 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.62 ms +I, [2018-07-25T01:08:11.988841 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:11.989281 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-07-25T01:08:11.989345 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:11.989666 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T01:08:11.989722 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:11.992186 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-07-25T01:08:11.992251 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:11.992673 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T01:08:11.992722 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:11.993171 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T01:08:11.993427 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:11.994045 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.47 ms +I, [2018-07-25T01:08:11.994085 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:11.994388 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T01:08:11.994419 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:11.994750 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T01:08:11.994823 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:11.996613 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.14 ms +I, [2018-07-25T01:08:11.996684 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:11.997537 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.51 ms +I, [2018-07-25T01:08:11.997600 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:11.998109 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-07-25T01:08:11.998164 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:11.998494 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T01:08:11.998556 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +W, [2018-07-25T01:08:13.987995 #5] WARN -- : Reached max fetcher queue size (100), sleeping 1s +I, [2018-07-25T01:08:14.001199 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-07-25T01:08:14.001294 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:14.001659 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T01:08:14.001696 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:14.002200 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-07-25T01:08:14.003211 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:14.003581 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T01:08:14.003614 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:14.003935 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T01:08:14.003978 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:14.004252 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T01:08:14.004287 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:14.005433 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.02 ms +I, [2018-07-25T01:08:14.005513 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:14.005873 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T01:08:14.005966 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:14.007276 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.94 ms +I, [2018-07-25T01:08:14.007340 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:14.008293 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-07-25T01:08:14.008511 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:14.008966 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T01:08:14.009021 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:14.009322 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T01:08:14.009354 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:14.009588 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T01:08:14.009618 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:14.009846 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T01:08:14.009876 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:14.010186 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T01:08:14.010254 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:14.010590 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T01:08:14.010627 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:14.010861 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T01:08:14.010892 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:14.011109 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T01:08:14.011154 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:14.011365 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T01:08:14.011406 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:14.011675 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T01:08:14.013813 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:14.014670 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-07-25T01:08:14.014737 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:14.015407 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-07-25T01:08:14.015467 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:14.016887 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.02 ms +I, [2018-07-25T01:08:14.019019 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:14.019732 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-07-25T01:08:14.019776 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:14.020043 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T01:08:14.020073 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:14.020290 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T01:08:14.020344 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:14.020640 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T01:08:14.020678 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:14.021015 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T01:08:14.021154 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:14.021503 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T01:08:14.021544 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:14.021927 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T01:08:14.021964 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:14.022384 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T01:08:14.022436 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:14.023808 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.14 ms +I, [2018-07-25T01:08:14.023886 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:14.024714 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T01:08:14.024761 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:14.025014 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T01:08:14.025217 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:14.025931 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-07-25T01:08:14.025988 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:14.026369 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T01:08:14.026420 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:14.026793 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T01:08:14.026840 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:14.027153 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T01:08:14.027291 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:14.028153 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-07-25T01:08:14.028224 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:14.028672 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T01:08:14.028729 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:14.029317 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-07-25T01:08:14.029388 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:14.032769 #5] INFO -- : Inline processing of topic section_change with 1 messages took 2.73 ms +I, [2018-07-25T01:08:14.032858 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:14.033699 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.58 ms +I, [2018-07-25T01:08:14.033807 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:14.034491 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-07-25T01:08:14.034548 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:14.035293 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.52 ms +I, [2018-07-25T01:08:14.035419 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:14.036068 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-07-25T01:08:14.036593 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:14.037001 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T01:08:14.037035 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:14.038254 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.06 ms +I, [2018-07-25T01:08:14.038383 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:14.039291 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.47 ms +I, [2018-07-25T01:08:14.039355 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:14.039953 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-07-25T01:08:14.040011 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:14.040429 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T01:08:14.040478 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:14.041301 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-25T01:08:14.041351 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:14.041783 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T01:08:14.041870 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:14.042204 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T01:08:14.042282 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:14.043502 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.08 ms +I, [2018-07-25T01:08:14.043542 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:14.044129 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.43 ms +I, [2018-07-25T01:08:14.044240 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:14.045697 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.19 ms +I, [2018-07-25T01:08:14.045770 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:14.046488 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-07-25T01:08:14.046561 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:14.047074 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-07-25T01:08:14.047172 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:14.047797 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-07-25T01:08:14.047861 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:14.049719 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.4 ms +I, [2018-07-25T01:08:14.050047 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:14.050554 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-25T01:08:14.050902 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:14.051871 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.5 ms +I, [2018-07-25T01:08:14.052035 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:14.052681 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-07-25T01:08:14.052723 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:14.054808 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.9 ms +I, [2018-07-25T01:08:14.054893 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:14.055707 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.49 ms +I, [2018-07-25T01:08:14.055928 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:14.056311 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T01:08:14.056387 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:14.056724 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T01:08:14.056771 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:14.057040 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T01:08:14.057072 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:14.057528 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T01:08:14.057565 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:14.058049 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T01:08:14.058086 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:14.058326 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T01:08:14.058356 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:14.058588 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T01:08:14.058619 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:14.058891 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T01:08:14.058924 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:14.059388 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T01:08:14.059421 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:14.061018 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-25T01:08:14.061080 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:14.061478 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T01:08:14.061567 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:14.061926 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T01:08:14.061986 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:14.063370 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-25T01:08:14.063543 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:14.065831 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.2 ms +I, [2018-07-25T01:08:14.065906 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:14.067148 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.4 ms +I, [2018-07-25T01:08:14.067221 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:14.067803 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T01:08:14.067846 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:14.068601 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T01:08:14.068682 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:14.069163 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T01:08:14.069197 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:14.070615 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.25 ms +I, [2018-07-25T01:08:14.070691 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:14.071726 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-07-25T01:08:14.071797 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:14.072362 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-07-25T01:08:14.072419 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:14.073350 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-07-25T01:08:14.073415 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:14.073969 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-07-25T01:08:14.074112 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:14.074387 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T01:08:14.074441 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:14.076355 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.74 ms +I, [2018-07-25T01:08:14.076432 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:14.077221 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.44 ms +I, [2018-07-25T01:08:14.077287 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:14.077841 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-07-25T01:08:14.077906 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:14.078253 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T01:08:14.078446 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:14.079240 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.5 ms +I, [2018-07-25T01:08:14.079282 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:14.079626 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T01:08:14.080268 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:14.080800 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-07-25T01:08:14.080866 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:14.083017 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-07-25T01:08:14.083198 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:14.084411 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.45 ms +I, [2018-07-25T01:08:14.084462 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:14.084809 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T01:08:14.084856 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:15.042389 #5] INFO -- : Committing offsets: course_change/0:1815 +I, [2018-07-25T01:08:16.085642 #5] INFO -- : Committing offsets: section_change/0:2914 +I, [2018-07-25T01:08:16.087754 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-25T01:08:16.087798 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:16.089090 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.16 ms +I, [2018-07-25T01:08:16.089152 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:16.089474 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T01:08:16.089505 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:16.089723 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T01:08:16.089756 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:16.090037 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T01:08:16.090067 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:16.090251 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T01:08:16.090280 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:16.090469 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T01:08:16.090523 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:16.090757 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T01:08:16.090789 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:16.090973 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T01:08:16.091002 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:16.091184 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T01:08:16.091213 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:16.092111 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.78 ms +I, [2018-07-25T01:08:16.092190 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:16.092435 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T01:08:16.092466 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:16.092639 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T01:08:16.092691 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:16.092852 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T01:08:16.092902 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:16.093230 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T01:08:16.093276 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:16.093657 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-25T01:08:16.093703 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:16.095060 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.25 ms +I, [2018-07-25T01:08:16.095108 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:16.095496 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-07-25T01:08:16.096104 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:16.096920 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.56 ms +I, [2018-07-25T01:08:16.097109 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:16.097537 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-07-25T01:08:16.097583 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:16.098607 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.9 ms +I, [2018-07-25T01:08:16.098711 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:16.099420 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.45 ms +I, [2018-07-25T01:08:16.099478 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:16.100025 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-07-25T01:08:16.100080 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:16.100476 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-07-25T01:08:16.100508 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:16.101308 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.67 ms +I, [2018-07-25T01:08:16.101396 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:16.102051 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-07-25T01:08:16.102250 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:16.102715 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-07-25T01:08:16.102782 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:16.103190 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-25T01:08:16.103241 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:16.103577 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T01:08:16.103605 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:16.105435 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.61 ms +I, [2018-07-25T01:08:16.105573 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:16.106079 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-07-25T01:08:16.106239 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:16.106757 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-07-25T01:08:16.106814 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:16.108571 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.6 ms +I, [2018-07-25T01:08:16.108791 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:16.109787 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.73 ms +I, [2018-07-25T01:08:16.109859 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:16.110368 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-07-25T01:08:16.110441 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:16.111096 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.46 ms +I, [2018-07-25T01:08:16.111216 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:16.111750 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-07-25T01:08:16.111795 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:16.113160 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.16 ms +I, [2018-07-25T01:08:16.113264 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:16.114201 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.69 ms +I, [2018-07-25T01:08:16.114272 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:16.117204 #5] INFO -- : Inline processing of topic section_change with 1 messages took 2.76 ms +I, [2018-07-25T01:08:16.117254 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:16.117852 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.46 ms +I, [2018-07-25T01:08:16.117902 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:16.120031 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.71 ms +I, [2018-07-25T01:08:16.120134 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:16.120919 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.55 ms +I, [2018-07-25T01:08:16.120985 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:16.122187 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.89 ms +I, [2018-07-25T01:08:16.122295 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:16.122951 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-07-25T01:08:16.122990 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:16.123372 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-25T01:08:16.123401 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:16.124722 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.13 ms +I, [2018-07-25T01:08:16.124798 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:16.125774 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.74 ms +I, [2018-07-25T01:08:16.125835 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:16.126824 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.57 ms +I, [2018-07-25T01:08:16.126870 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:16.127268 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-25T01:08:16.127300 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:16.128355 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.88 ms +I, [2018-07-25T01:08:16.128428 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:16.130310 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.63 ms +I, [2018-07-25T01:08:16.130385 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:16.130862 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-07-25T01:08:16.130898 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:16.131455 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.43 ms +I, [2018-07-25T01:08:16.131492 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:16.133069 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.87 ms +I, [2018-07-25T01:08:16.133148 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:16.134709 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.86 ms +I, [2018-07-25T01:08:16.134829 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:16.135242 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-25T01:08:16.135274 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:16.136682 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.25 ms +I, [2018-07-25T01:08:16.136734 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:16.138270 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.9 ms +I, [2018-07-25T01:08:16.138348 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:16.139076 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.44 ms +I, [2018-07-25T01:08:16.139131 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:16.139503 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T01:08:16.139551 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:16.140741 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.61 ms +I, [2018-07-25T01:08:16.140786 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:16.141233 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T01:08:16.141267 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:16.141585 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T01:08:16.141617 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:16.144968 #5] INFO -- : Inline processing of topic section_change with 1 messages took 3.21 ms +I, [2018-07-25T01:08:16.145043 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:16.147304 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.57 ms +I, [2018-07-25T01:08:16.147362 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:16.148017 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.42 ms +I, [2018-07-25T01:08:16.148068 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:16.148806 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.55 ms +I, [2018-07-25T01:08:16.148850 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:16.149714 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.45 ms +I, [2018-07-25T01:08:16.149758 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:16.150084 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T01:08:16.150835 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:16.151938 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.63 ms +I, [2018-07-25T01:08:16.152002 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:16.152460 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-25T01:08:16.152518 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:16.152917 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T01:08:16.152950 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:16.153399 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T01:08:16.153475 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:16.154534 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.51 ms +I, [2018-07-25T01:08:16.154605 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:16.155951 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.16 ms +I, [2018-07-25T01:08:16.156030 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:16.156735 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.42 ms +I, [2018-07-25T01:08:16.156820 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:16.157274 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-25T01:08:16.157321 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:16.157922 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.41 ms +I, [2018-07-25T01:08:16.157964 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:16.158473 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T01:08:16.158852 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:16.159145 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T01:08:16.159178 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:16.160180 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.75 ms +I, [2018-07-25T01:08:16.160706 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:16.162048 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.46 ms +I, [2018-07-25T01:08:16.162121 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:16.162558 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T01:08:16.162609 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:16.162938 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T01:08:16.162979 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:16.163253 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T01:08:16.163285 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:16.165003 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.44 ms +I, [2018-07-25T01:08:16.165052 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:16.166086 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.77 ms +I, [2018-07-25T01:08:16.166145 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:16.166520 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T01:08:16.166551 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:16.167335 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.52 ms +I, [2018-07-25T01:08:16.167589 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:16.168147 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-07-25T01:08:16.168626 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:16.169133 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-25T01:08:16.169243 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:16.172826 #5] INFO -- : Inline processing of topic section_change with 1 messages took 3.34 ms +I, [2018-07-25T01:08:16.172883 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:16.173628 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.58 ms +I, [2018-07-25T01:08:16.173672 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:16.173998 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T01:08:16.174046 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:16.174308 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T01:08:16.174565 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:16.175185 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-07-25T01:08:16.175236 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:16.175564 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T01:08:16.175596 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:16.176984 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.2 ms +I, [2018-07-25T01:08:16.177067 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:16.178445 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.44 ms +I, [2018-07-25T01:08:16.178513 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:16.179755 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.0 ms +I, [2018-07-25T01:08:16.179805 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:16.180485 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T01:08:16.180528 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:16.180834 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T01:08:16.180864 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:16.181122 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T01:08:16.181156 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +W, [2018-07-25T01:08:17.982556 #5] WARN -- : Reached max fetcher queue size (100), sleeping 1s +I, [2018-07-25T01:08:18.182478 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T01:08:18.182528 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:18.183980 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-07-25T01:08:18.184044 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:18.184374 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T01:08:18.184424 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:18.184757 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T01:08:18.184803 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:18.185161 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T01:08:18.185229 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:18.185553 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T01:08:18.185599 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:18.185872 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T01:08:18.185904 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:18.186317 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-07-25T01:08:18.186351 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:18.186896 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.4 ms +I, [2018-07-25T01:08:18.186931 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:18.187225 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T01:08:18.187266 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:18.187482 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T01:08:18.187510 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:18.188664 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T01:08:18.188780 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:18.189002 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T01:08:18.189032 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:18.189252 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T01:08:18.189286 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:18.189565 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T01:08:18.189611 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:18.189942 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T01:08:18.189986 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:18.190310 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T01:08:18.190352 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:18.190578 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T01:08:18.190607 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:18.190810 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T01:08:18.190839 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:18.191050 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T01:08:18.191079 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:18.191292 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T01:08:18.191321 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:18.191528 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T01:08:18.191556 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:18.192768 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.08 ms +I, [2018-07-25T01:08:18.194591 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:18.195038 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T01:08:18.195086 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:18.195431 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T01:08:18.195476 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:18.196036 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-07-25T01:08:18.196086 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:18.196359 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T01:08:18.196391 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:18.196903 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-07-25T01:08:18.196947 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:18.197334 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T01:08:18.197375 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:18.197731 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T01:08:18.197819 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:18.198252 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T01:08:18.198336 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:18.198691 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T01:08:18.198740 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:18.198981 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T01:08:18.199018 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:18.199311 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T01:08:18.200514 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:18.201306 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-07-25T01:08:18.201367 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:18.201772 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T01:08:18.201827 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:18.202216 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T01:08:18.202267 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:18.203507 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.41 ms +I, [2018-07-25T01:08:18.203589 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:18.203969 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T01:08:18.204015 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:18.205448 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.28 ms +I, [2018-07-25T01:08:18.205494 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:18.205770 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T01:08:18.205830 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:18.206543 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T01:08:18.206573 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:18.207000 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T01:08:18.207033 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:18.207536 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T01:08:18.207588 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:18.207976 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T01:08:18.208028 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:18.209765 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.53 ms +I, [2018-07-25T01:08:18.209825 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:18.210432 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.43 ms +I, [2018-07-25T01:08:18.210474 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:18.210751 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T01:08:18.210783 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:18.211086 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T01:08:18.211136 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:18.212575 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.26 ms +I, [2018-07-25T01:08:18.212652 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:18.213120 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-07-25T01:08:18.213183 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:18.213435 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T01:08:18.213465 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:18.213684 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T01:08:18.213715 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:18.213934 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T01:08:18.213964 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:18.214346 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T01:08:18.214388 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:18.214619 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T01:08:18.214648 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:18.214870 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T01:08:18.215944 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:18.216373 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T01:08:18.216427 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:18.216791 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T01:08:18.216843 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:18.217677 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T01:08:18.217773 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:18.218095 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T01:08:18.218168 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:18.218612 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-07-25T01:08:18.218664 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:18.219255 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-07-25T01:08:18.219310 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:18.219779 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T01:08:18.219815 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:18.220059 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T01:08:18.220090 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:18.220314 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T01:08:18.220344 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:18.221337 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.86 ms +I, [2018-07-25T01:08:18.221399 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:18.221778 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T01:08:18.221827 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:18.223842 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.79 ms +I, [2018-07-25T01:08:18.223921 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:18.224851 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.4 ms +I, [2018-07-25T01:08:18.224910 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:18.225447 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-07-25T01:08:18.225500 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:18.226180 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-07-25T01:08:18.226400 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:18.227375 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.45 ms +I, [2018-07-25T01:08:18.227419 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:18.227943 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-07-25T01:08:18.227981 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:18.228400 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T01:08:18.228515 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:18.229015 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-25T01:08:18.229051 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:18.229295 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T01:08:18.229325 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:18.229548 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T01:08:18.229578 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:18.229796 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T01:08:18.229849 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:18.230562 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-07-25T01:08:18.231547 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:18.232009 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T01:08:18.232062 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:18.232855 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-07-25T01:08:18.232999 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:18.233400 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T01:08:18.233451 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:18.234139 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.46 ms +I, [2018-07-25T01:08:18.234232 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:18.234794 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T01:08:18.234843 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:18.235234 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T01:08:18.235269 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:18.235549 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T01:08:18.235580 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:18.236773 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.04 ms +I, [2018-07-25T01:08:18.236848 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:18.237609 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.44 ms +I, [2018-07-25T01:08:18.237665 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:18.238136 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-07-25T01:08:18.238185 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:18.238530 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T01:08:18.238575 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:18.239406 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-07-25T01:08:18.239487 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:18.239933 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T01:08:18.239967 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:18.241890 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.75 ms +I, [2018-07-25T01:08:18.241969 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:18.242725 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-07-25T01:08:18.242767 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:18.243097 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T01:08:18.243603 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:18.243982 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T01:08:18.244064 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:18.244498 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T01:08:18.244533 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:18.245059 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-07-25T01:08:18.245093 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:18.246041 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.76 ms +I, [2018-07-25T01:08:18.246107 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:20.246794 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-25T01:08:20.246841 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:20.247094 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T01:08:20.247124 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:20.247384 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T01:08:20.247413 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:20.247681 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T01:08:20.247711 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:20.249089 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.25 ms +I, [2018-07-25T01:08:20.249170 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:20.249460 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T01:08:20.249491 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:20.249773 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T01:08:20.249805 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:20.250020 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T01:08:20.250050 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:20.250242 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T01:08:20.250272 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:20.250453 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T01:08:20.250482 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:20.250709 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T01:08:20.250755 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:20.251558 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.65 ms +I, [2018-07-25T01:08:20.251605 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:20.251980 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T01:08:20.252010 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:20.252335 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T01:08:20.252391 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:20.252707 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T01:08:20.252738 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:20.253971 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.13 ms +I, [2018-07-25T01:08:20.254020 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:20.254423 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-07-25T01:08:20.254469 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:20.254878 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-07-25T01:08:20.254927 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:20.255248 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T01:08:20.255288 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:20.255553 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T01:08:20.255583 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:20.256630 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.88 ms +I, [2018-07-25T01:08:20.258079 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:20.259914 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.71 ms +I, [2018-07-25T01:08:20.259954 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:20.260198 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T01:08:20.260228 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:20.260523 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T01:08:20.260552 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:20.260843 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T01:08:20.260873 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:20.262311 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.3 ms +I, [2018-07-25T01:08:20.263621 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:20.264028 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T01:08:20.264062 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:20.264277 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T01:08:20.264307 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:20.264479 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T01:08:20.264509 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:20.264691 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T01:08:20.264719 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:20.265017 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T01:08:20.265047 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:20.265304 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T01:08:20.265334 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:20.267580 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.07 ms +I, [2018-07-25T01:08:20.269094 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:20.269543 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T01:08:20.269580 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:20.269879 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T01:08:20.269909 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:20.270208 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T01:08:20.270250 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:20.270518 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T01:08:20.270548 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:20.270857 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T01:08:20.270889 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:20.271333 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-07-25T01:08:20.271380 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:20.272033 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-07-25T01:08:20.272097 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:20.272446 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T01:08:20.272523 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:20.273714 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.52 ms +I, [2018-07-25T01:08:20.273803 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:20.274194 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-25T01:08:20.274295 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:20.275134 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-25T01:08:20.275174 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:20.275475 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T01:08:20.275546 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:20.275966 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-07-25T01:08:20.276011 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:20.276805 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.64 ms +I, [2018-07-25T01:08:20.276847 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:20.277214 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T01:08:20.277252 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:20.277572 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T01:08:20.277604 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:20.278109 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-07-25T01:08:20.278160 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:20.278574 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-07-25T01:08:20.278618 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:20.280088 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.22 ms +I, [2018-07-25T01:08:20.280254 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:20.280795 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T01:08:20.280842 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:20.281225 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-25T01:08:20.281663 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:20.283330 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.4 ms +I, [2018-07-25T01:08:20.283402 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:20.283789 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T01:08:20.283821 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:20.284158 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T01:08:20.284208 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:20.285746 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.42 ms +I, [2018-07-25T01:08:20.285793 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:20.287292 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.28 ms +I, [2018-07-25T01:08:20.287360 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:20.287825 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-25T01:08:20.287876 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:20.288462 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-07-25T01:08:20.288534 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:20.289358 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-07-25T01:08:20.289446 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:20.289981 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-07-25T01:08:20.290038 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:20.290588 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.41 ms +I, [2018-07-25T01:08:20.290627 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:20.291044 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-07-25T01:08:20.291534 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:20.292107 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-07-25T01:08:20.292164 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:20.292869 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.5 ms +I, [2018-07-25T01:08:20.292929 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:20.293378 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T01:08:20.293428 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:20.293805 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T01:08:20.294575 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:20.294989 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-25T01:08:20.295031 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:20.296490 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.08 ms +I, [2018-07-25T01:08:20.296565 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:20.297164 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-07-25T01:08:20.297218 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:20.297700 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-07-25T01:08:20.297748 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:20.298183 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-25T01:08:20.298218 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:20.298538 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T01:08:20.298569 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:20.298811 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T01:08:20.298841 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:20.299164 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T01:08:20.299708 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:20.300116 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T01:08:20.300167 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:20.300480 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T01:08:20.300548 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:20.300980 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T01:08:20.301062 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:20.301492 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T01:08:20.301544 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:20.301909 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T01:08:20.301960 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:20.302228 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T01:08:20.302260 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:20.302483 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T01:08:20.302512 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:20.302948 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-07-25T01:08:20.302982 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:20.303234 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T01:08:20.303267 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:20.303496 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T01:08:20.303550 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:20.303745 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T01:08:20.305144 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:20.305553 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T01:08:20.305604 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:20.305957 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T01:08:20.306452 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:20.306874 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T01:08:20.306930 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:20.307303 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T01:08:20.307354 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:20.307695 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T01:08:20.307744 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:20.308052 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T01:08:20.308106 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:20.309222 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T01:08:20.309259 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:20.309634 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T01:08:20.309669 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:20.309885 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T01:08:20.309915 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:20.310142 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T01:08:20.310171 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:20.310380 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T01:08:20.310410 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:20.310670 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T01:08:20.311529 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:20.311967 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T01:08:20.312005 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:20.312220 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T01:08:20.312250 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:20.312471 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T01:08:20.312498 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:20.312700 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T01:08:20.312749 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:20.313014 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T01:08:20.313058 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:20.313920 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T01:08:20.313975 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:20.314339 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T01:08:20.314391 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:20.315247 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T01:08:20.315286 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:20.315661 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T01:08:20.315695 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:20.316033 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T01:08:20.316069 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:20.316296 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T01:08:20.317705 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:20.318128 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T01:08:20.318197 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:20.318578 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T01:08:20.318686 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:20.319424 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.52 ms +I, [2018-07-25T01:08:20.319486 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:20.319843 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T01:08:20.319888 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:20.320480 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.41 ms +I, [2018-07-25T01:08:20.320536 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:20.321121 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-07-25T01:08:20.321160 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:22.321806 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T01:08:22.321855 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:22.322108 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T01:08:22.322139 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:22.322355 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T01:08:22.322384 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:22.322619 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T01:08:22.322649 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:22.322862 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T01:08:22.322907 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:22.323161 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T01:08:22.323192 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:22.324142 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T01:08:22.324176 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:22.324402 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T01:08:22.324430 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:22.324661 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T01:08:22.324691 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:22.324897 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T01:08:22.324926 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:22.325126 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T01:08:22.325163 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:22.325517 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T01:08:22.325567 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:22.325905 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T01:08:22.325985 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:22.326330 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T01:08:22.326380 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:22.326697 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T01:08:22.326730 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:22.326943 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T01:08:22.326996 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:22.327207 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T01:08:22.327274 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:22.327670 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T01:08:22.327703 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:22.327919 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T01:08:22.327946 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:22.328135 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T01:08:22.328169 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:22.329230 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T01:08:22.329283 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:22.329905 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.48 ms +I, [2018-07-25T01:08:22.329958 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:22.330367 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T01:08:22.330414 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:22.330727 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T01:08:22.330798 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:22.331086 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T01:08:22.333487 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:22.337599 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.92 ms +I, [2018-07-25T01:08:22.337668 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:22.338002 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T01:08:22.338033 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:22.338271 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T01:08:22.338301 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:22.340509 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.98 ms +I, [2018-07-25T01:08:22.342904 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:22.343256 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T01:08:22.343300 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:22.343524 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T01:08:22.343568 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:22.343788 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T01:08:22.343818 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:22.344047 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T01:08:22.344077 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:22.344295 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T01:08:22.344332 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:22.344555 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T01:08:22.344584 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:22.344800 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T01:08:22.344829 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:22.345054 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T01:08:22.345083 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:22.345305 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T01:08:22.345334 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:22.345551 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T01:08:22.345580 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:22.345784 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T01:08:22.349693 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:22.353544 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T01:08:22.353589 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:22.353835 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T01:08:22.353878 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:22.354115 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T01:08:22.354146 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:22.354369 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T01:08:22.354407 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:22.354625 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T01:08:22.354657 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:22.354892 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T01:08:22.354929 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:22.355153 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T01:08:22.355187 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:22.355425 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T01:08:22.355454 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:22.355684 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T01:08:22.355713 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:22.356124 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-07-25T01:08:22.356163 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:22.356410 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T01:08:22.356446 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:22.359101 #5] INFO -- : Inline processing of topic section_change with 1 messages took 2.48 ms +I, [2018-07-25T01:08:22.359201 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:22.361245 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T01:08:22.361289 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:22.361561 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T01:08:22.361592 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:22.361815 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T01:08:22.361845 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:22.362070 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T01:08:22.362100 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:22.362308 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T01:08:22.362337 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:22.362621 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T01:08:22.362653 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:22.362871 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T01:08:22.362927 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:22.363194 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T01:08:22.363223 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:22.363475 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T01:08:22.363504 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:22.400616 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-07-25T01:08:22.400664 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:22.401018 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T01:08:22.401049 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:22.401419 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-25T01:08:22.401553 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:22.402042 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-07-25T01:08:22.402094 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:22.402651 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-07-25T01:08:22.403082 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:22.403619 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-07-25T01:08:22.403678 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:22.404125 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-25T01:08:22.404179 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:22.404651 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-07-25T01:08:22.404703 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:22.405208 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-07-25T01:08:22.405246 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:22.405566 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T01:08:22.405596 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:22.405896 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T01:08:22.405956 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:22.406193 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T01:08:22.406221 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:22.406482 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T01:08:22.406512 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:22.409377 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-07-25T01:08:22.409445 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:22.409862 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T01:08:22.409896 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:22.410361 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-07-25T01:08:22.410441 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:22.414046 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-07-25T01:08:22.414093 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:22.414394 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T01:08:22.414444 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:22.414722 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T01:08:22.414772 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:22.415078 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T01:08:22.415108 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:22.415558 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-07-25T01:08:22.415640 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:22.416751 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.64 ms +I, [2018-07-25T01:08:22.416877 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:22.421736 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-07-25T01:08:22.421782 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:22.422053 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T01:08:22.422084 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:22.422364 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T01:08:22.422395 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:22.422672 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T01:08:22.422703 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:22.422973 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T01:08:22.423004 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:22.423264 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T01:08:22.423295 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:22.423618 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T01:08:22.423649 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:22.425790 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.98 ms +I, [2018-07-25T01:08:22.425857 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:22.426216 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T01:08:22.426248 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:22.426515 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T01:08:22.426546 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:22.426940 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-07-25T01:08:22.426993 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:22.427544 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-07-25T01:08:22.431756 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:22.433180 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.04 ms +I, [2018-07-25T01:08:22.433274 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:22.433761 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-25T01:08:22.433796 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:22.434112 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T01:08:22.435403 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:22.435850 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-07-25T01:08:22.436206 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:24.528346 #5] INFO -- : Inline processing of topic section_change with 1 messages took 3.12 ms +I, [2018-07-25T01:08:24.528689 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:24.529673 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.67 ms +I, [2018-07-25T01:08:24.529741 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:24.532261 #5] INFO -- : Inline processing of topic section_change with 1 messages took 2.19 ms +I, [2018-07-25T01:08:24.532332 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:24.534190 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.24 ms +I, [2018-07-25T01:08:24.534294 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:24.535740 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.81 ms +I, [2018-07-25T01:08:24.535847 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:24.536484 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-07-25T01:08:24.536551 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:24.537565 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.75 ms +I, [2018-07-25T01:08:24.537649 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:24.538344 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-07-25T01:08:24.538413 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:24.543728 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.41 ms +I, [2018-07-25T01:08:24.543793 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:24.544488 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-07-25T01:08:24.544580 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:24.545200 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-07-25T01:08:24.545315 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:24.545894 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-07-25T01:08:24.545943 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:24.546469 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-25T01:08:24.546513 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:24.547072 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-07-25T01:08:24.547117 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:24.547663 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-07-25T01:08:24.547708 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:24.548279 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-07-25T01:08:24.548340 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:24.550037 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.74 ms +I, [2018-07-25T01:08:24.550103 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:24.551709 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.89 ms +I, [2018-07-25T01:08:24.551859 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:24.554639 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.63 ms +I, [2018-07-25T01:08:24.554876 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:24.556699 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.2 ms +I, [2018-07-25T01:08:24.556841 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:24.557858 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.48 ms +I, [2018-07-25T01:08:24.557913 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:24.559011 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.55 ms +I, [2018-07-25T01:08:24.559088 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:24.559803 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.47 ms +I, [2018-07-25T01:08:24.559860 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:24.560499 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.45 ms +I, [2018-07-25T01:08:24.560547 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:24.561267 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-07-25T01:08:24.561318 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:24.561940 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-07-25T01:08:24.561987 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:24.562593 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-07-25T01:08:24.562673 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:24.563087 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T01:08:24.563129 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:24.563703 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-07-25T01:08:24.563762 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:24.564240 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-07-25T01:08:24.564362 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:24.564837 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-07-25T01:08:24.564891 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:24.565609 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-07-25T01:08:24.565658 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:24.566238 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.4 ms +I, [2018-07-25T01:08:24.566285 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:24.566929 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.44 ms +I, [2018-07-25T01:08:24.566974 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:24.567550 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-07-25T01:08:24.567637 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:24.580078 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-07-25T01:08:24.580124 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:24.580511 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-07-25T01:08:24.580545 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:24.580922 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-07-25T01:08:24.580959 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:24.581378 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-25T01:08:24.581411 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:24.581781 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-25T01:08:24.581855 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:24.582220 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-25T01:08:24.582252 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:24.582722 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-07-25T01:08:24.582754 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:24.583110 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T01:08:24.583160 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:24.583631 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-07-25T01:08:24.583735 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:24.584212 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-07-25T01:08:24.584268 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:24.584709 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T01:08:24.584772 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:24.585320 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-07-25T01:08:24.585369 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:25.053344 #5] INFO -- : Committing offsets: course_change/0:1815 +I, [2018-07-25T01:08:26.585781 #5] INFO -- : Committing offsets: section_change/0:3381 +I, [2018-07-25T01:08:26.589187 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.46 ms +I, [2018-07-25T01:08:26.589291 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:26.589843 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-07-25T01:08:26.589969 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:26.590298 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T01:08:26.590330 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:26.590631 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T01:08:26.590680 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:26.590925 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T01:08:26.590973 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:26.591380 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-25T01:08:26.591430 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:26.591930 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-07-25T01:08:26.591988 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:26.592844 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-25T01:08:26.592977 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:26.593543 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T01:08:26.593582 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:26.593973 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T01:08:26.594008 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:26.594461 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-25T01:08:26.594498 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:26.594937 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-07-25T01:08:26.594991 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:26.595566 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-07-25T01:08:26.595627 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:26.597036 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.21 ms +I, [2018-07-25T01:08:26.597139 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:26.597796 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-07-25T01:08:26.597861 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:26.598507 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.4 ms +I, [2018-07-25T01:08:26.598576 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:26.599153 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-07-25T01:08:26.599191 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:26.599557 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T01:08:26.599594 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:26.600975 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.2 ms +I, [2018-07-25T01:08:26.601043 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:26.601877 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.41 ms +I, [2018-07-25T01:08:26.601940 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:26.602431 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-07-25T01:08:26.602506 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:26.603711 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.03 ms +I, [2018-07-25T01:08:26.603772 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:26.604393 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-07-25T01:08:26.604433 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:26.604737 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T01:08:26.606625 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:26.607143 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-25T01:08:26.607214 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:26.608738 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.23 ms +I, [2018-07-25T01:08:26.608817 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:26.609342 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-07-25T01:08:26.609397 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:26.611496 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.87 ms +I, [2018-07-25T01:08:26.613935 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:26.614567 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-07-25T01:08:26.614629 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:26.615051 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T01:08:26.615086 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:26.616577 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.15 ms +I, [2018-07-25T01:08:26.616658 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:26.617369 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.42 ms +I, [2018-07-25T01:08:26.617431 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:26.618013 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-07-25T01:08:26.618065 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:26.618842 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.58 ms +I, [2018-07-25T01:08:26.618886 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:26.619626 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-07-25T01:08:26.619689 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:26.620148 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T01:08:26.620217 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:26.621621 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-07-25T01:08:26.621679 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:26.621950 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T01:08:26.621994 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:26.622580 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T01:08:26.622673 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:26.623123 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T01:08:26.623196 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:26.623895 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T01:08:26.623949 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:26.624604 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-07-25T01:08:26.624669 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:26.624941 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T01:08:26.624974 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:26.625250 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T01:08:26.625282 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:26.625509 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T01:08:26.625537 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:26.626121 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.47 ms +I, [2018-07-25T01:08:26.626157 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:26.628623 #5] INFO -- : Inline processing of topic section_change with 1 messages took 2.12 ms +I, [2018-07-25T01:08:26.628806 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:26.629651 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-07-25T01:08:26.629714 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:26.630201 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-07-25T01:08:26.630273 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:26.630873 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.4 ms +I, [2018-07-25T01:08:26.631020 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:26.631780 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.47 ms +I, [2018-07-25T01:08:26.631852 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:26.632263 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T01:08:26.632332 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:26.632759 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T01:08:26.634098 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:26.634792 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.42 ms +I, [2018-07-25T01:08:26.634851 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:26.635609 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.55 ms +I, [2018-07-25T01:08:26.635673 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:26.636452 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-25T01:08:26.636494 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:26.636848 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T01:08:26.636880 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:26.637330 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-25T01:08:26.637464 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:26.640258 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-07-25T01:08:26.640340 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:26.640899 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T01:08:26.640953 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:26.642079 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.45 ms +I, [2018-07-25T01:08:26.642138 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:26.642809 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T01:08:26.642849 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:26.643229 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-25T01:08:26.643331 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:26.643738 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T01:08:26.643772 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:26.644002 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T01:08:26.644033 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:26.644281 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T01:08:26.644312 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:26.644522 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T01:08:26.645586 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:26.646097 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-25T01:08:26.646148 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:26.646423 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T01:08:26.646496 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:26.646849 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T01:08:26.646901 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:26.647249 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T01:08:26.647299 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:26.647643 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T01:08:26.647722 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:26.648839 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.48 ms +I, [2018-07-25T01:08:26.648903 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:26.649322 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T01:08:26.649372 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:26.649694 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T01:08:26.649741 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:26.650947 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T01:08:26.650986 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:26.651568 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-07-25T01:08:26.651610 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:26.651955 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T01:08:26.651999 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:26.653330 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.07 ms +I, [2018-07-25T01:08:26.653496 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:26.654018 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-07-25T01:08:26.654056 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:26.654300 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T01:08:26.654338 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:26.654560 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T01:08:26.654590 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:26.654843 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T01:08:26.654892 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:28.656868 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-25T01:08:28.656955 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:28.657336 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T01:08:28.657376 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:28.657680 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T01:08:28.657716 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:28.658390 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T01:08:28.660529 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:28.660875 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T01:08:28.660909 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:28.661229 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T01:08:28.661261 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:28.663551 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-07-25T01:08:28.663616 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:28.664107 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-07-25T01:08:28.664160 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:28.664625 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-07-25T01:08:28.664676 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:28.665135 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-07-25T01:08:28.665182 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:28.665935 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.56 ms +I, [2018-07-25T01:08:28.666010 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:28.667731 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.52 ms +I, [2018-07-25T01:08:28.667796 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:28.668383 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-07-25T01:08:28.668460 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:28.669895 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.15 ms +I, [2018-07-25T01:08:28.670759 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:28.671670 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.54 ms +I, [2018-07-25T01:08:28.671758 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:28.672113 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T01:08:28.672148 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:28.674024 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.69 ms +I, [2018-07-25T01:08:28.674106 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:28.675020 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.64 ms +I, [2018-07-25T01:08:28.675084 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:28.675713 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-07-25T01:08:28.675772 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:28.676161 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T01:08:28.676201 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:28.676491 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T01:08:28.676527 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:28.676834 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T01:08:28.676864 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:28.678040 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.85 ms +I, [2018-07-25T01:08:28.678135 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:28.678757 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-07-25T01:08:28.678969 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:28.679545 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-07-25T01:08:28.679598 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:28.680126 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-07-25T01:08:28.680174 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:28.681802 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T01:08:28.681841 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:28.686633 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.44 ms +I, [2018-07-25T01:08:28.686705 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:28.690140 #5] INFO -- : Inline processing of topic section_change with 1 messages took 3.24 ms +I, [2018-07-25T01:08:28.690486 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:28.691548 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-07-25T01:08:28.691605 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:28.692603 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.46 ms +I, [2018-07-25T01:08:28.692664 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:28.697065 #5] INFO -- : Inline processing of topic section_change with 1 messages took 2.58 ms +I, [2018-07-25T01:08:28.697306 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:28.697868 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-07-25T01:08:28.697925 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:28.699204 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-07-25T01:08:28.699288 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:28.700028 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.45 ms +I, [2018-07-25T01:08:28.700090 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:28.702406 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.15 ms +I, [2018-07-25T01:08:28.702539 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:28.703390 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-07-25T01:08:28.703638 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:28.704353 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-07-25T01:08:28.704492 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:28.705286 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.47 ms +I, [2018-07-25T01:08:28.706529 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:28.707619 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.41 ms +I, [2018-07-25T01:08:28.707754 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:28.710260 #5] INFO -- : Inline processing of topic section_change with 1 messages took 2.04 ms +I, [2018-07-25T01:08:28.710317 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:28.710711 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T01:08:28.710744 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:28.711003 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T01:08:28.711034 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:28.711376 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T01:08:28.711409 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:28.712124 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-07-25T01:08:28.712168 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:28.712443 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T01:08:28.712475 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:28.712802 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T01:08:28.713873 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:28.714446 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-07-25T01:08:28.714506 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:28.715440 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.63 ms +I, [2018-07-25T01:08:28.715495 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:28.715988 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-07-25T01:08:28.716024 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:28.716746 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T01:08:28.716784 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:28.717106 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T01:08:28.717151 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:28.718494 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.16 ms +I, [2018-07-25T01:08:28.718582 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:28.719134 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-07-25T01:08:28.719181 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:28.719747 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-07-25T01:08:28.719814 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:28.721104 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-07-25T01:08:28.721217 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:28.721554 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T01:08:28.721590 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:28.722646 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T01:08:28.722683 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:28.724589 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.83 ms +I, [2018-07-25T01:08:28.726111 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:28.726628 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-07-25T01:08:28.726686 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:28.727453 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.61 ms +I, [2018-07-25T01:08:28.727490 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:28.728652 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.63 ms +I, [2018-07-25T01:08:28.728707 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:28.729826 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T01:08:28.729884 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:28.730588 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.54 ms +I, [2018-07-25T01:08:28.730626 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:28.731780 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.52 ms +I, [2018-07-25T01:08:28.731829 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:28.734903 #5] INFO -- : Inline processing of topic section_change with 1 messages took 2.32 ms +I, [2018-07-25T01:08:28.734976 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:28.736650 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.44 ms +I, [2018-07-25T01:08:28.736706 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:28.738126 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.23 ms +I, [2018-07-25T01:08:28.738180 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:28.738963 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.43 ms +I, [2018-07-25T01:08:28.739017 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:28.740360 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T01:08:28.740424 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:28.740831 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T01:08:28.741662 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:28.742056 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T01:08:28.742145 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:28.742445 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T01:08:28.743363 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:28.744738 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.0 ms +I, [2018-07-25T01:08:28.744810 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:28.745738 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.7 ms +I, [2018-07-25T01:08:28.745800 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:28.746193 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T01:08:28.746247 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:28.747097 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T01:08:28.747149 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:28.748166 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.83 ms +I, [2018-07-25T01:08:28.748209 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:28.748476 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T01:08:28.748522 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:28.749528 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.83 ms +I, [2018-07-25T01:08:28.749584 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:28.749928 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T01:08:28.749969 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:28.752555 #5] INFO -- : Inline processing of topic section_change with 1 messages took 2.05 ms +I, [2018-07-25T01:08:28.752630 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:28.753032 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T01:08:28.753689 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:28.754147 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T01:08:28.754205 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:28.755075 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.6 ms +I, [2018-07-25T01:08:28.757205 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:28.757763 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-07-25T01:08:28.757823 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:28.758856 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T01:08:28.759347 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:28.759730 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T01:08:28.760844 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:28.761173 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T01:08:28.761207 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:28.761880 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.54 ms +I, [2018-07-25T01:08:28.762202 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:28.762488 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T01:08:28.762521 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:28.763130 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.48 ms +I, [2018-07-25T01:08:28.763166 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:28.765207 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T01:08:28.765251 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:28.765526 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T01:08:28.765557 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:28.765829 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T01:08:28.765860 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:28.767531 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-07-25T01:08:28.767574 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:28.767874 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T01:08:28.767905 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:28.768198 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T01:08:28.768245 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:28.768567 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T01:08:28.768642 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:28.769235 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-25T01:08:28.769361 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:28.769868 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-07-25T01:08:28.769922 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:28.771270 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.8 ms +I, [2018-07-25T01:08:28.771461 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +W, [2018-07-25T01:08:30.664362 #5] WARN -- : Reached max fetcher queue size (100), sleeping 1s +I, [2018-07-25T01:08:30.772535 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-25T01:08:30.772584 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:30.772881 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T01:08:30.772912 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:30.773201 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T01:08:30.773230 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:30.773525 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T01:08:30.773554 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:30.773773 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T01:08:30.773811 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:30.774309 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-07-25T01:08:30.774489 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:30.774960 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T01:08:30.774998 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:30.775279 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T01:08:30.775330 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:30.775636 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T01:08:30.775678 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:30.775946 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T01:08:30.775992 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:30.777054 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.82 ms +I, [2018-07-25T01:08:30.777104 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:30.777437 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T01:08:30.777474 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:30.777787 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T01:08:30.777819 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:30.778036 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T01:08:30.778066 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:30.778277 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T01:08:30.778306 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:30.778591 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T01:08:30.778632 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:30.779000 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-25T01:08:30.779033 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:30.781245 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-25T01:08:30.781290 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:30.781612 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T01:08:30.781643 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:30.781938 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T01:08:30.781968 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:30.782263 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T01:08:30.783000 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:30.785324 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.8 ms +I, [2018-07-25T01:08:30.785391 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:30.786622 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.05 ms +I, [2018-07-25T01:08:30.786664 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:30.786997 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T01:08:30.787028 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:30.787238 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T01:08:30.787268 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:30.787565 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T01:08:30.787616 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:30.788728 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.9 ms +I, [2018-07-25T01:08:30.789747 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:30.790377 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-07-25T01:08:30.790438 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:30.790843 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T01:08:30.791187 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:30.795496 #5] INFO -- : Inline processing of topic section_change with 1 messages took 2.72 ms +I, [2018-07-25T01:08:30.795545 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:30.795841 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T01:08:30.795872 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:30.796078 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T01:08:30.796107 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:30.796331 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T01:08:30.796360 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:30.796572 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T01:08:30.796601 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:30.796821 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T01:08:30.796850 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:30.798528 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.13 ms +I, [2018-07-25T01:08:30.798603 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:30.799193 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-07-25T01:08:30.799246 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:30.799737 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-07-25T01:08:30.799785 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:30.800181 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-25T01:08:30.800244 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:30.800477 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T01:08:30.800507 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:30.800749 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T01:08:30.800778 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:30.802025 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.11 ms +I, [2018-07-25T01:08:30.802077 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:30.805063 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.43 ms +I, [2018-07-25T01:08:30.805117 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:30.807462 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.78 ms +I, [2018-07-25T01:08:30.807508 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:30.807880 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T01:08:30.807911 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:30.808176 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T01:08:30.808206 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:30.808559 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-25T01:08:30.808589 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:30.813159 #5] INFO -- : Inline processing of topic section_change with 1 messages took 2.4 ms +I, [2018-07-25T01:08:30.813207 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:30.813614 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-25T01:08:30.813645 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:30.813986 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T01:08:30.814016 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:30.815077 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.89 ms +I, [2018-07-25T01:08:30.816441 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:30.816920 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-07-25T01:08:30.816954 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:30.817334 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-25T01:08:30.817366 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:30.817727 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-25T01:08:30.817758 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:30.818798 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.9 ms +I, [2018-07-25T01:08:30.818851 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:30.819290 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-07-25T01:08:30.819339 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:30.819807 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-07-25T01:08:30.819858 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:30.821232 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T01:08:30.821274 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:30.821578 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T01:08:30.821637 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:30.821908 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T01:08:30.821940 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:30.822248 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T01:08:30.822276 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:30.823427 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T01:08:30.823473 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:30.823894 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-25T01:08:30.823979 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:30.824359 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T01:08:30.824400 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:30.824827 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-25T01:08:30.824886 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:30.825257 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-25T01:08:30.825289 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:30.826660 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-07-25T01:08:30.826721 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:30.827291 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-07-25T01:08:30.827333 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:30.827812 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-25T01:08:30.827848 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:30.828181 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T01:08:30.828212 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:30.828695 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-07-25T01:08:30.829552 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:30.830038 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-07-25T01:08:30.830092 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:30.830593 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-07-25T01:08:30.830794 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:30.831260 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-07-25T01:08:30.831296 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:30.831603 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T01:08:30.831633 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:30.832745 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-07-25T01:08:30.832788 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:30.833457 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-07-25T01:08:30.833504 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:30.834045 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-07-25T01:08:30.834099 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:30.834610 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-07-25T01:08:30.834662 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:30.835138 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-07-25T01:08:30.835189 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:30.835607 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-25T01:08:30.836275 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:30.836707 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T01:08:30.836771 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:30.837371 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-07-25T01:08:30.837429 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:30.838092 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.47 ms +I, [2018-07-25T01:08:30.838131 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:30.838552 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-25T01:08:30.838588 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:30.838945 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T01:08:30.838977 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:30.839294 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T01:08:30.839326 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:30.840116 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-07-25T01:08:30.840175 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:30.840997 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-07-25T01:08:30.841070 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:30.841582 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-07-25T01:08:30.841634 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:30.842198 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T01:08:30.842257 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:30.842721 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-07-25T01:08:30.842773 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:30.843278 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-07-25T01:08:30.844154 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:30.844552 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T01:08:30.845049 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:30.845564 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-25T01:08:30.845619 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:30.846366 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-25T01:08:30.846411 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:30.846745 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T01:08:30.846788 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:30.847076 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T01:08:30.847107 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:30.848081 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.82 ms +I, [2018-07-25T01:08:30.848151 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:30.848635 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-07-25T01:08:30.848772 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:32.850386 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-07-25T01:08:32.850451 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:32.850794 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T01:08:32.850857 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:32.851249 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-07-25T01:08:32.851300 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:32.851551 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T01:08:32.851581 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:32.851820 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T01:08:32.851851 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:32.852787 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-07-25T01:08:32.852848 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:32.853257 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-07-25T01:08:32.853306 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:32.853663 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T01:08:32.853712 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:32.854106 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-07-25T01:08:32.854159 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:32.854549 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-25T01:08:32.854599 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:32.854986 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-25T01:08:32.855036 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:32.855858 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T01:08:32.855915 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:32.856339 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-07-25T01:08:32.856390 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:32.856711 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T01:08:32.856761 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:32.857176 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-07-25T01:08:32.857222 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:32.857508 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T01:08:32.857555 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:32.857811 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T01:08:32.857856 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:32.858208 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-25T01:08:32.859312 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:32.860046 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-07-25T01:08:32.860118 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:32.860751 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-25T01:08:32.860796 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:32.861182 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-07-25T01:08:32.861222 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:32.861549 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T01:08:32.861588 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:32.862076 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T01:08:32.862122 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:32.862506 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-25T01:08:32.862552 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:32.863547 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-07-25T01:08:32.863601 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:32.864022 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-07-25T01:08:32.864104 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:32.864441 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T01:08:32.864490 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:32.864797 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T01:08:32.864956 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:32.865494 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.4 ms +I, [2018-07-25T01:08:32.865532 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:32.865882 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-25T01:08:32.865941 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:32.867556 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-07-25T01:08:32.867632 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:32.868010 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T01:08:32.868061 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:32.868380 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T01:08:32.868429 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:32.868822 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-25T01:08:32.868945 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:32.869201 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T01:08:32.869246 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:32.869637 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-25T01:08:32.869762 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:32.870210 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-07-25T01:08:32.870750 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:32.871302 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-07-25T01:08:32.872009 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:32.872486 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T01:08:32.872543 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:32.872856 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T01:08:32.872901 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:32.873183 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T01:08:32.873233 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:32.873529 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T01:08:32.873574 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:32.873855 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T01:08:32.873897 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:32.874900 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.41 ms +I, [2018-07-25T01:08:32.874949 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:32.875262 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T01:08:32.875310 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:32.875589 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T01:08:32.875637 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:32.875937 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T01:08:32.875986 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:32.876262 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T01:08:32.876319 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:32.877610 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T01:08:32.877703 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:32.880840 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.33 ms +I, [2018-07-25T01:08:32.880919 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:32.881384 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-07-25T01:08:32.881435 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:32.881983 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T01:08:32.882331 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:32.883872 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T01:08:32.883953 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:32.884363 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T01:08:32.884463 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:32.884813 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T01:08:32.884874 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:32.885209 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T01:08:32.885250 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:32.885506 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T01:08:32.885547 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:32.886562 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T01:08:32.886607 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:32.886826 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T01:08:32.886854 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:32.887087 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T01:08:32.887118 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:32.887357 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T01:08:32.887389 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:32.888608 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T01:08:32.888706 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:32.889130 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T01:08:32.889184 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:32.889767 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-07-25T01:08:32.889825 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:32.890258 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T01:08:32.890312 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:32.890709 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T01:08:32.890760 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:32.891169 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T01:08:32.892337 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:32.892776 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T01:08:32.892829 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:32.893233 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T01:08:32.893283 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:32.893619 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T01:08:32.893671 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:32.894117 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T01:08:32.894159 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:32.894498 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T01:08:32.894578 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:32.895992 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T01:08:32.896055 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:32.896440 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T01:08:32.896529 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:32.897424 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.67 ms +I, [2018-07-25T01:08:32.897529 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:32.898247 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-07-25T01:08:32.898411 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:32.899154 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-07-25T01:08:32.899221 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:32.899687 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T01:08:32.899743 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:32.900107 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T01:08:32.900146 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:32.900415 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T01:08:32.900446 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:32.900682 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T01:08:32.900711 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:32.900927 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T01:08:32.900957 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:32.901182 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T01:08:32.901212 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:32.901726 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T01:08:32.902452 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:32.903125 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-07-25T01:08:32.903169 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:32.903613 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T01:08:32.903665 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:32.904034 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T01:08:32.904087 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:32.904467 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T01:08:32.904517 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:32.904888 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T01:08:32.904938 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:32.905286 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T01:08:32.905373 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:32.905739 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T01:08:32.905791 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:32.906331 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-07-25T01:08:32.906368 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:32.906700 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T01:08:32.906740 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:32.907018 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T01:08:32.907049 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:32.907286 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T01:08:32.907344 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:32.908774 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T01:08:32.908855 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:32.909196 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T01:08:32.909229 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:32.909462 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T01:08:32.909492 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:32.909721 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T01:08:32.909805 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:32.910114 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T01:08:32.910194 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:32.912078 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.6 ms +I, [2018-07-25T01:08:32.912141 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:32.912510 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T01:08:32.912596 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:32.912852 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T01:08:32.912883 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:32.913731 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T01:08:32.914008 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:32.915339 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.54 ms +I, [2018-07-25T01:08:32.915532 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:32.916706 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.77 ms +I, [2018-07-25T01:08:32.916824 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:32.918050 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.75 ms +I, [2018-07-25T01:08:32.918108 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:32.922020 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-07-25T01:08:32.922089 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:32.922478 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T01:08:32.922534 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:32.922988 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T01:08:32.923088 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:32.923717 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-07-25T01:08:32.923830 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:32.924505 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-07-25T01:08:32.924573 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:32.925674 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.88 ms +I, [2018-07-25T01:08:32.925733 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:34.928328 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-07-25T01:08:34.928391 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:34.928801 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T01:08:34.928847 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:34.930667 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T01:08:34.930724 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:34.932330 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.32 ms +I, [2018-07-25T01:08:34.932394 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:34.932758 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T01:08:34.932829 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:34.934325 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T01:08:34.934369 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:34.934634 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T01:08:34.934664 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:34.935003 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T01:08:34.936366 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:34.938317 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-07-25T01:08:34.938378 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:34.944759 #5] INFO -- : Inline processing of topic section_change with 1 messages took 6.16 ms +I, [2018-07-25T01:08:34.945788 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:34.946278 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T01:08:34.946319 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:34.946601 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T01:08:34.946632 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:34.946859 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T01:08:34.946889 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:34.947125 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T01:08:34.947155 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:34.949226 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.93 ms +I, [2018-07-25T01:08:34.949272 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:34.949572 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T01:08:34.949696 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:34.949979 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T01:08:34.950010 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:34.950233 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T01:08:34.950263 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:34.950553 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T01:08:34.950611 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:34.950790 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T01:08:34.950819 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:34.951037 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T01:08:34.951173 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:34.959565 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T01:08:34.959611 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:34.959855 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T01:08:34.959885 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:34.960105 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T01:08:34.960135 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:34.960348 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T01:08:34.960378 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:34.960592 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T01:08:34.960622 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:34.960827 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T01:08:34.966496 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:34.967002 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T01:08:34.967083 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:34.980568 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T01:08:34.980619 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:34.981147 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-07-25T01:08:34.981185 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:34.981454 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T01:08:34.981489 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:34.981734 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T01:08:34.981763 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:34.981979 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T01:08:34.982008 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:34.982234 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T01:08:34.982263 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:34.982461 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T01:08:34.982509 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:34.982921 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-07-25T01:08:34.982967 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:34.992291 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-07-25T01:08:34.992336 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:34.992687 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T01:08:34.992742 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:34.993052 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T01:08:34.993115 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:34.997263 #5] INFO -- : Inline processing of topic section_change with 1 messages took 3.94 ms +I, [2018-07-25T01:08:34.997334 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:34.999582 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.96 ms +I, [2018-07-25T01:08:34.999735 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:35.000460 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-07-25T01:08:35.000499 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:35.001543 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-07-25T01:08:35.001618 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:35.002162 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-07-25T01:08:35.002197 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:35.003841 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.44 ms +I, [2018-07-25T01:08:35.003907 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:35.004831 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.5 ms +I, [2018-07-25T01:08:35.004894 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:35.009092 #5] INFO -- : Inline processing of topic section_change with 1 messages took 3.95 ms +I, [2018-07-25T01:08:35.009180 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:35.010499 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.74 ms +I, [2018-07-25T01:08:35.010556 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:35.011114 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-07-25T01:08:35.011177 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:35.011833 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.49 ms +I, [2018-07-25T01:08:35.011877 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:35.012606 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.52 ms +I, [2018-07-25T01:08:35.012696 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:35.013253 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-07-25T01:08:35.013294 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:35.025110 #5] INFO -- : Inline processing of topic section_change with 1 messages took 11.57 ms +I, [2018-07-25T01:08:35.025198 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:35.026126 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.62 ms +I, [2018-07-25T01:08:35.026183 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:35.034238 #5] INFO -- : Inline processing of topic section_change with 1 messages took 7.7 ms +I, [2018-07-25T01:08:35.034315 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:35.034817 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-07-25T01:08:35.034854 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:35.035193 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T01:08:35.035225 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:35.036966 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.57 ms +I, [2018-07-25T01:08:35.037074 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:35.037608 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-07-25T01:08:35.037709 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:35.038206 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-07-25T01:08:35.038240 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:35.041267 #5] INFO -- : Inline processing of topic section_change with 1 messages took 2.87 ms +I, [2018-07-25T01:08:35.041324 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:35.043582 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.94 ms +I, [2018-07-25T01:08:35.043653 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:35.044043 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T01:08:35.044076 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:35.044825 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T01:08:35.044882 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:35.045207 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T01:08:35.045240 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:35.045899 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-07-25T01:08:35.045956 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:35.048053 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.91 ms +I, [2018-07-25T01:08:35.048406 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:35.049338 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.67 ms +I, [2018-07-25T01:08:35.049404 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:35.050466 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-07-25T01:08:35.050508 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:35.051079 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-07-25T01:08:35.051123 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:35.053841 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.68 ms +I, [2018-07-25T01:08:35.053961 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:35.054925 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.7 ms +I, [2018-07-25T01:08:35.054994 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:35.055432 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-25T01:08:35.055466 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:35.055817 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T01:08:35.055858 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:35.056214 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T01:08:35.056252 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:35.058782 #5] INFO -- : Inline processing of topic section_change with 1 messages took 2.24 ms +I, [2018-07-25T01:08:35.058864 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:35.059369 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T01:08:35.059405 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:35.065789 #5] INFO -- : Committing offsets: course_change/0:1815 +I, [2018-07-25T01:08:37.059874 #5] INFO -- : Committing offsets: section_change/0:3856 +I, [2018-07-25T01:08:37.074393 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.42 ms +I, [2018-07-25T01:08:37.075781 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:37.076753 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-07-25T01:08:37.076807 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:37.077668 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.65 ms +I, [2018-07-25T01:08:37.077731 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:37.079460 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.5 ms +I, [2018-07-25T01:08:37.079539 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:37.080320 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.57 ms +I, [2018-07-25T01:08:37.080704 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:37.081145 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-07-25T01:08:37.081178 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:37.082029 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.67 ms +I, [2018-07-25T01:08:37.082098 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:37.082586 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-07-25T01:08:37.082667 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:37.083245 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-07-25T01:08:37.083282 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:37.083642 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T01:08:37.083673 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:37.084556 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.71 ms +I, [2018-07-25T01:08:37.084648 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:37.085296 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.47 ms +I, [2018-07-25T01:08:37.085339 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:37.085772 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-07-25T01:08:37.085830 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:37.086173 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T01:08:37.086204 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:37.087061 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.7 ms +I, [2018-07-25T01:08:37.087146 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:37.088898 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.54 ms +I, [2018-07-25T01:08:37.089006 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:37.089979 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.67 ms +I, [2018-07-25T01:08:37.090248 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:37.091018 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.42 ms +I, [2018-07-25T01:08:37.091059 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:37.093421 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.93 ms +I, [2018-07-25T01:08:37.093603 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:37.094292 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-07-25T01:08:37.094387 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:37.095185 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.44 ms +I, [2018-07-25T01:08:37.095363 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:37.095891 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-07-25T01:08:37.098421 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:37.099812 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.87 ms +I, [2018-07-25T01:08:37.099894 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:37.105690 #5] INFO -- : Inline processing of topic section_change with 1 messages took 5.49 ms +I, [2018-07-25T01:08:37.105738 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:37.106065 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T01:08:37.106109 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:37.106409 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T01:08:37.106440 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:37.106722 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T01:08:37.106753 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:37.107036 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T01:08:37.107076 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:37.107306 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T01:08:37.107336 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:37.107599 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T01:08:37.107644 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:37.107930 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T01:08:37.107961 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:37.108256 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T01:08:37.108288 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:37.108566 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T01:08:37.108596 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:37.122155 #5] INFO -- : Inline processing of topic section_change with 1 messages took 13.42 ms +I, [2018-07-25T01:08:37.122213 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:37.122660 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T01:08:37.122759 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:37.123164 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T01:08:37.123201 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:37.123530 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T01:08:37.123568 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:37.123928 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T01:08:37.132987 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:37.134699 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-07-25T01:08:37.134763 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:37.150280 #5] INFO -- : Inline processing of topic section_change with 1 messages took 15.1 ms +I, [2018-07-25T01:08:37.150362 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:37.157374 #5] INFO -- : Inline processing of topic section_change with 1 messages took 6.73 ms +I, [2018-07-25T01:08:37.157424 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:37.157827 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T01:08:37.157859 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:37.158099 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T01:08:37.158129 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:37.158413 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T01:08:37.158443 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:37.158770 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T01:08:37.158800 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:37.167621 #5] INFO -- : Inline processing of topic section_change with 1 messages took 8.64 ms +I, [2018-07-25T01:08:37.167704 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:37.168341 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-07-25T01:08:37.172582 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:37.173055 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-25T01:08:37.173092 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:37.173421 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T01:08:37.173453 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:37.173683 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T01:08:37.173714 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:37.174547 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T01:08:37.174623 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:37.174880 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T01:08:37.174912 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:39.178909 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.89 ms +I, [2018-07-25T01:08:39.179020 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:39.179628 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-25T01:08:39.179701 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:39.180263 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-07-25T01:08:39.180341 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:39.181009 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-07-25T01:08:39.181068 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:39.181426 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T01:08:39.181494 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:39.182099 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-07-25T01:08:39.182178 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:39.185777 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-07-25T01:08:39.185834 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:39.186155 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T01:08:39.186197 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:39.186503 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T01:08:39.186543 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:39.186858 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T01:08:39.186907 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:39.187149 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T01:08:39.187181 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:39.187403 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T01:08:39.187474 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:39.187731 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T01:08:39.187761 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:39.187968 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T01:08:39.188000 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:39.188375 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T01:08:39.188414 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:39.188653 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T01:08:39.188684 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:39.188919 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T01:08:39.188949 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:39.189160 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T01:08:39.189209 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:39.189552 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T01:08:39.189596 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:39.190158 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-07-25T01:08:39.190198 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:39.190578 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T01:08:39.190612 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:39.190866 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T01:08:39.190899 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:39.191132 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T01:08:39.191162 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:39.191382 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T01:08:39.191411 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:39.191628 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T01:08:39.191658 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:39.191874 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T01:08:39.191903 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:39.192106 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T01:08:39.192135 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:39.192351 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T01:08:39.192382 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:39.192707 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T01:08:39.192739 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:39.193113 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-25T01:08:39.193162 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:39.193535 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T01:08:39.193567 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:39.193910 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T01:08:39.193943 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:39.194245 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T01:08:39.194275 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:39.194571 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T01:08:39.194601 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:39.194840 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T01:08:39.194870 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:39.195186 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T01:08:39.195340 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:39.196190 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.45 ms +I, [2018-07-25T01:08:39.196326 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:39.197932 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.38 ms +I, [2018-07-25T01:08:39.197996 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:39.198333 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T01:08:39.198370 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:39.198752 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-25T01:08:39.198802 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:39.199178 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-25T01:08:39.199213 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:39.199501 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T01:08:39.199533 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:39.199849 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T01:08:39.213755 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:39.214401 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-07-25T01:08:39.214444 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:39.214972 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-07-25T01:08:39.215021 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:39.216150 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T01:08:39.216190 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:39.216545 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T01:08:39.216580 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:39.216886 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T01:08:39.216921 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:39.220758 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-25T01:08:39.220802 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:41.221886 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-07-25T01:08:41.221934 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:41.222190 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T01:08:41.222229 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:41.222550 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T01:08:41.222580 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:41.222878 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T01:08:41.222952 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:41.223594 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.45 ms +I, [2018-07-25T01:08:41.224058 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:41.224581 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-25T01:08:41.224633 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:41.225132 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T01:08:41.225164 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:41.225453 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T01:08:41.225483 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:41.225764 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T01:08:41.225794 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:41.226065 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T01:08:41.226100 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:41.226916 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.67 ms +I, [2018-07-25T01:08:41.226960 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:41.227484 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-07-25T01:08:41.227525 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:41.227851 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T01:08:41.227883 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:41.228154 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T01:08:41.228185 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:41.228539 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T01:08:41.228576 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:41.229005 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T01:08:41.229057 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:41.229638 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-25T01:08:41.229676 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:41.230036 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T01:08:41.230075 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:41.230378 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T01:08:41.230411 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:41.230764 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T01:08:41.230814 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:41.231281 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-25T01:08:41.231327 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:41.231878 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-07-25T01:08:41.231917 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:41.233013 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.84 ms +I, [2018-07-25T01:08:41.233068 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:41.233581 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-07-25T01:08:41.233643 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:41.233989 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T01:08:41.234023 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:41.235396 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.19 ms +I, [2018-07-25T01:08:41.235442 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:41.235780 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T01:08:41.235812 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:41.236088 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T01:08:41.236117 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:41.237103 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.78 ms +I, [2018-07-25T01:08:41.237162 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:41.237572 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T01:08:41.237607 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:41.241091 #5] INFO -- : Inline processing of topic section_change with 1 messages took 2.29 ms +I, [2018-07-25T01:08:41.241246 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:41.242077 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-07-25T01:08:41.242186 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:41.243228 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.5 ms +I, [2018-07-25T01:08:41.243335 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:41.244367 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.52 ms +I, [2018-07-25T01:08:41.244471 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:41.245314 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.43 ms +I, [2018-07-25T01:08:41.245348 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:41.246234 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.73 ms +I, [2018-07-25T01:08:41.246307 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:41.247062 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.47 ms +I, [2018-07-25T01:08:41.247127 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:41.247776 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.42 ms +I, [2018-07-25T01:08:41.247882 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:41.248307 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T01:08:41.248391 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:41.249111 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.48 ms +I, [2018-07-25T01:08:41.249265 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:41.249682 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T01:08:41.249718 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:41.250079 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T01:08:41.250227 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:41.250480 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T01:08:41.250537 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:41.250887 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T01:08:41.250938 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:41.251354 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T01:08:41.251409 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:41.251796 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T01:08:41.251831 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:41.252178 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T01:08:41.252220 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:41.252752 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T01:08:41.252825 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:41.253836 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.85 ms +I, [2018-07-25T01:08:41.253895 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:41.254532 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-07-25T01:08:41.254591 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:41.254999 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T01:08:41.255050 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:41.255641 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T01:08:41.255706 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:41.256136 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-25T01:08:41.256175 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:41.256541 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T01:08:41.256574 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:41.256873 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T01:08:41.256903 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:41.257600 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-07-25T01:08:41.257662 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:41.257967 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T01:08:41.258003 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:41.258367 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T01:08:41.258417 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:41.258930 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-07-25T01:08:41.258980 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:41.259334 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T01:08:41.259367 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:41.259783 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-07-25T01:08:41.259885 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:41.261453 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.37 ms +I, [2018-07-25T01:08:41.261715 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:41.262180 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T01:08:41.262238 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:41.262841 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-07-25T01:08:41.262899 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:41.263641 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.45 ms +I, [2018-07-25T01:08:41.263727 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:41.264180 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T01:08:41.264218 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:41.264466 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T01:08:41.264927 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:41.266004 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.86 ms +I, [2018-07-25T01:08:41.266077 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:41.266596 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-07-25T01:08:41.266633 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:41.267115 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-07-25T01:08:41.267150 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:41.267430 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T01:08:41.267461 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:41.267883 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-25T01:08:41.267937 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:41.268207 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T01:08:41.268237 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:41.268573 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T01:08:41.268605 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:41.269283 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.42 ms +I, [2018-07-25T01:08:41.269345 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:41.269838 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T01:08:41.269873 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:41.270295 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T01:08:41.270329 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:41.270668 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T01:08:41.270698 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:41.270981 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T01:08:41.271011 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:41.272365 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.13 ms +I, [2018-07-25T01:08:41.272445 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:41.272896 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T01:08:41.272956 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:41.273473 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-07-25T01:08:41.273513 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:41.273775 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T01:08:41.273806 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:41.274014 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T01:08:41.274044 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:41.274261 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T01:08:41.274297 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:41.274512 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T01:08:41.274549 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:41.274746 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T01:08:41.274796 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:41.275381 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T01:08:41.275422 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:41.275668 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T01:08:41.275699 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:41.275911 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T01:08:41.275938 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +W, [2018-07-25T01:08:43.168948 #5] WARN -- : Reached max fetcher queue size (100), sleeping 1s +I, [2018-07-25T01:08:43.276654 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T01:08:43.277548 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:43.277931 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T01:08:43.277963 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:43.278178 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T01:08:43.278207 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:43.278423 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T01:08:43.278460 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:43.278722 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T01:08:43.278751 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:43.279180 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-07-25T01:08:43.279238 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:43.279579 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T01:08:43.279610 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:43.280061 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-07-25T01:08:43.280317 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:43.280693 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-25T01:08:43.280768 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:43.281197 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T01:08:43.281255 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:43.281661 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T01:08:43.281693 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:43.281969 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T01:08:43.281998 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:43.282867 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T01:08:43.283425 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:43.283832 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T01:08:43.283865 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:43.284172 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T01:08:43.284202 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:43.284471 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T01:08:43.284501 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:43.284719 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T01:08:43.284748 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:43.286600 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.68 ms +I, [2018-07-25T01:08:43.286680 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:43.287186 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-25T01:08:43.287219 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:43.287510 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T01:08:43.287547 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:43.287824 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T01:08:43.287863 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:43.288173 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T01:08:43.288206 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:43.289308 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.97 ms +I, [2018-07-25T01:08:43.289409 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:43.290537 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.52 ms +I, [2018-07-25T01:08:43.290609 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:43.291204 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T01:08:43.291482 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:43.292849 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.17 ms +I, [2018-07-25T01:08:43.292893 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:43.293278 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T01:08:43.293310 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:43.293557 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T01:08:43.293587 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:43.293808 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T01:08:43.293846 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:43.294071 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T01:08:43.294100 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:43.294877 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.64 ms +I, [2018-07-25T01:08:43.294921 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:43.295330 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T01:08:43.295388 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:43.297186 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-07-25T01:08:43.297251 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:43.298137 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T01:08:43.298178 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:43.298433 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T01:08:43.298464 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:43.298694 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T01:08:43.298729 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:43.299003 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T01:08:43.299034 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:43.299261 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T01:08:43.299295 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:43.299534 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T01:08:43.299574 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:43.299834 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T01:08:43.300627 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:43.300853 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T01:08:43.300883 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:43.301100 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T01:08:43.301594 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:43.303893 #5] INFO -- : Inline processing of topic section_change with 1 messages took 2.01 ms +I, [2018-07-25T01:08:43.303943 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:43.305646 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.28 ms +I, [2018-07-25T01:08:43.305694 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:43.306293 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T01:08:43.306337 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:43.307406 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T01:08:43.307445 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:43.307710 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T01:08:43.307740 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:43.307968 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T01:08:43.307997 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:43.308491 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T01:08:43.308566 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:43.310854 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-07-25T01:08:43.310904 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:43.312914 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.8 ms +I, [2018-07-25T01:08:43.313215 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:43.313533 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T01:08:43.313596 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:43.313813 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T01:08:43.313843 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:43.314609 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.64 ms +I, [2018-07-25T01:08:43.314662 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:43.315084 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T01:08:43.315136 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:43.315628 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T01:08:43.315702 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:43.316460 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.45 ms +I, [2018-07-25T01:08:43.316522 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:43.318105 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T01:08:43.318454 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:43.319132 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.46 ms +I, [2018-07-25T01:08:43.319203 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:43.319810 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T01:08:43.319854 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:43.320594 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-07-25T01:08:43.320668 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:43.322203 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.41 ms +I, [2018-07-25T01:08:43.322296 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:43.323682 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T01:08:43.323937 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:43.324962 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.81 ms +I, [2018-07-25T01:08:43.325014 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:43.326877 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.66 ms +I, [2018-07-25T01:08:43.329019 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:43.329490 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T01:08:43.329529 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:43.329846 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T01:08:43.329879 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:43.330106 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T01:08:43.330136 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:43.330357 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T01:08:43.330387 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:43.330606 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T01:08:43.330637 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:43.330856 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T01:08:43.330885 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:43.331120 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T01:08:43.331150 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:43.331361 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T01:08:43.331390 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:43.331600 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T01:08:43.331629 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:43.331856 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T01:08:43.331885 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:43.332092 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T01:08:43.332121 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:43.332358 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T01:08:43.332388 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:43.334544 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-07-25T01:08:43.334628 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:43.334918 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T01:08:43.334950 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:43.335173 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T01:08:43.335203 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:43.335449 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T01:08:43.335480 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:43.335782 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T01:08:43.335813 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:43.336102 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T01:08:43.336132 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:43.336417 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T01:08:43.336447 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:43.336874 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-07-25T01:08:43.336916 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T01:08:43.339597 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.49 ms +I, [2018-07-25T14:21:37.701343 #5] INFO -- : New topics added to target list: section_change +I, [2018-07-25T14:21:37.701589 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-07-25T14:21:37.706061 #5] INFO -- : New topics added to target list: course_change +I, [2018-07-25T14:21:37.708651 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-07-25T14:21:37.738835 #5] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.19.0.12:9094 +E, [2018-07-25T14:21:37.755246 #5] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.19.0.12:9094 +E, [2018-07-25T14:21:37.755418 #5] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.19.0.12:9094 +E, [2018-07-25T14:21:37.755504 #5] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.19.0.12:9094 +E, [2018-07-25T14:21:42.756084 #5] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: +- kafka://kafka:9094: Connection refused - connect(2) for 172.19.0.12:9094 +I, [2018-07-25T14:21:42.757494 #5] INFO -- : New topics added to target list: section_change +I, [2018-07-25T14:21:42.757560 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-07-25T14:21:42.758324 #5] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: +- kafka://kafka:9094: Connection refused - connect(2) for 172.19.0.12:9094 +I, [2018-07-25T14:21:42.759258 #5] INFO -- : New topics added to target list: course_change +I, [2018-07-25T14:21:42.759309 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-07-25T14:21:42.760366 #5] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.19.0.12:9094 +E, [2018-07-25T14:21:42.760488 #5] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.19.0.12:9094 +E, [2018-07-25T14:21:42.761026 #5] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.19.0.12:9094 +E, [2018-07-25T14:21:42.761112 #5] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.19.0.12:9094 +E, [2018-07-25T14:21:47.761161 #5] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: +- kafka://kafka:9094: Connection refused - connect(2) for 172.19.0.12:9094 +E, [2018-07-25T14:21:47.761809 #5] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: +- kafka://kafka:9094: Connection refused - connect(2) for 172.19.0.12:9094 +I, [2018-07-25T14:21:47.764492 #5] INFO -- : New topics added to target list: section_change +I, [2018-07-25T14:21:47.764545 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-07-25T14:21:47.766394 #5] INFO -- : New topics added to target list: course_change +I, [2018-07-25T14:21:47.767194 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-07-25T14:21:47.768632 #5] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.19.0.12:9094 +E, [2018-07-25T14:21:47.768935 #5] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.19.0.12:9094 +E, [2018-07-25T14:21:47.769271 #5] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.19.0.12:9094 +E, [2018-07-25T14:21:47.769385 #5] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.19.0.12:9094 +E, [2018-07-25T14:21:52.769986 #5] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: +- kafka://kafka:9094: Connection refused - connect(2) for 172.19.0.12:9094 +I, [2018-07-25T14:21:52.770761 #5] INFO -- : New topics added to target list: section_change +I, [2018-07-25T14:21:52.770802 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-07-25T14:21:52.771472 #5] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: +- kafka://kafka:9094: Connection refused - connect(2) for 172.19.0.12:9094 +I, [2018-07-25T14:21:52.774923 #5] INFO -- : New topics added to target list: course_change +I, [2018-07-25T14:21:52.775003 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-07-25T14:21:52.921470 #5] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-07-25T14:21:52.921674 #5] INFO -- : Joining group `notifications_notifications` +I, [2018-07-25T14:21:52.921970 #5] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-07-25T14:21:52.922071 #5] INFO -- : Joining group `notifications_course_change` +I, [2018-07-25T14:21:52.976541 #5] INFO -- : Will fetch at most 1048576 bytes at a time per partition from section_change +I, [2018-07-25T14:21:52.976769 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-07-25T14:21:52.977110 #5] INFO -- : Will fetch at most 1048576 bytes at a time per partition from course_change +I, [2018-07-25T14:21:52.977230 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-07-25T14:21:52.981623 #5] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-07-25T14:21:52.981758 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T14:21:52.987839 #5] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-07-25T14:21:52.987974 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T14:21:53.982485 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T14:21:53.988741 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T14:21:54.983220 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T14:21:54.990054 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T14:21:55.983606 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T14:21:55.991083 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T14:21:56.987075 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T14:21:56.991886 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T14:21:57.987864 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T14:21:57.992298 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T14:21:58.988325 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T14:21:58.992972 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T14:21:59.988753 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T14:21:59.993780 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T14:22:00.137340 #5] INFO -- : Joined group `notifications_notifications` with member id `notifications-fb6ba13a-bb0c-44b9-b6a1-abab917265b8` +I, [2018-07-25T14:22:00.137399 #5] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-07-25T14:22:00.166806 #5] INFO -- : Joined group `notifications_course_change` with member id `notifications-3f34a598-fa7c-495c-90a4-8b7702c1d1c5` +I, [2018-07-25T14:22:00.166875 #5] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-07-25T14:22:00.989373 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T14:22:00.994390 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T14:22:01.137817 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-07-25T14:22:01.153481 #5] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-07-25T14:22:01.171799 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-07-25T14:22:01.276502 #5] INFO -- : Partitions assigned for `section_change`: 0 +I, [2018-07-25T14:22:01.279624 #5] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-07-25T14:22:01.332164 #5] INFO -- : Partitions assigned for `course_change`: 0 +I, [2018-07-25T14:22:01.991361 #5] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-07-25T14:22:01.991509 #5] INFO -- : New topics added to target list: section_change +I, [2018-07-25T14:22:01.991560 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-07-25T14:22:01.995403 #5] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-07-25T14:22:01.995534 #5] INFO -- : New topics added to target list: course_change +I, [2018-07-25T14:22:01.995581 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-07-25T14:22:02.009336 #5] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-07-25T14:22:02.108541 #5] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-07-25T14:22:03.416924 #5] INFO -- : Inline processing of topic course_change with 1 messages took 5.33 ms +I, [2018-07-25T14:22:03.417473 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:03.419294 #5] INFO -- : Committing offsets with recommit: course_change/0:1 +I, [2018-07-25T14:22:03.438155 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-07-25T14:22:03.438216 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:03.438259 #5] INFO -- : Committing offsets with recommit: section_change/0:1 +I, [2018-07-25T14:22:03.487184 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.27 ms +I, [2018-07-25T14:22:03.487253 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:03.488954 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T14:22:03.489089 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:05.488448 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-07-25T14:22:05.488500 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:05.488776 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T14:22:05.488808 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:05.489039 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T14:22:05.489070 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:05.489316 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T14:22:05.489344 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:05.489571 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T14:22:05.489601 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:05.489873 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-07-25T14:22:05.489905 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:05.491684 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T14:22:05.491741 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:05.492069 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T14:22:05.492112 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:05.492535 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T14:22:05.492582 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:05.492918 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T14:22:05.492963 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:05.496660 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T14:22:05.496718 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:05.497066 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T14:22:05.497110 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:05.497438 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T14:22:05.497481 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:05.498037 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T14:22:05.498077 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:05.498364 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T14:22:05.498409 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:05.498694 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T14:22:05.498727 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:05.498964 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T14:22:05.498995 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:05.504012 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-25T14:22:05.504070 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:05.504420 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T14:22:05.504467 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:05.504789 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T14:22:05.504845 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:05.505170 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T14:22:05.505215 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:05.505548 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T14:22:05.505615 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:05.530507 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-07-25T14:22:05.530593 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:05.530947 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T14:22:05.530991 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:05.531329 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T14:22:05.531371 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:05.531692 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T14:22:05.531735 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:05.532053 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T14:22:05.532095 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:05.532430 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T14:22:05.532472 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:05.558855 #5] INFO -- : Inline processing of topic section_change with 1 messages took 6.18 ms +I, [2018-07-25T14:22:05.558935 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:05.559375 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T14:22:05.559417 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:05.559730 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T14:22:05.559771 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:05.560085 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T14:22:05.560125 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:05.560425 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T14:22:05.560470 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:05.564600 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T14:22:05.564717 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:05.565621 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-07-25T14:22:05.565690 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:05.566084 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T14:22:05.566133 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:05.566993 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T14:22:05.567064 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:07.491024 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.25 ms +I, [2018-07-25T14:22:07.491089 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:07.491471 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-07-25T14:22:07.491515 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:07.491855 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-07-25T14:22:07.491944 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:07.493906 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-07-25T14:22:07.493965 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:07.494352 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-07-25T14:22:07.494397 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:07.494744 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-07-25T14:22:07.494786 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:07.495173 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-07-25T14:22:07.495376 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:07.499255 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-07-25T14:22:07.507847 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:07.510752 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.24 ms +I, [2018-07-25T14:22:07.510818 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:07.511219 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-07-25T14:22:07.511270 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:07.511660 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-07-25T14:22:07.511710 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:07.569237 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T14:22:07.569304 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:07.569707 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T14:22:07.569753 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:07.570112 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T14:22:07.570153 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:07.571948 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.48 ms +I, [2018-07-25T14:22:07.572022 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:07.572435 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T14:22:07.572481 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:07.572825 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T14:22:07.572871 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:07.575530 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T14:22:07.575613 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:07.576002 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T14:22:07.576099 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:07.576408 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T14:22:07.576454 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:07.576818 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T14:22:07.576862 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:07.577191 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T14:22:07.577236 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:07.577577 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T14:22:07.577621 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:07.577952 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T14:22:07.577996 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:07.578324 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T14:22:07.578368 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:07.591993 #5] INFO -- : Inline processing of topic section_change with 1 messages took 13.42 ms +I, [2018-07-25T14:22:07.592149 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:07.592625 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T14:22:07.592723 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:07.593580 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.46 ms +I, [2018-07-25T14:22:07.613078 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:07.613590 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T14:22:07.613636 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:07.613943 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T14:22:07.613984 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:07.614294 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T14:22:07.614334 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:09.512657 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-07-25T14:22:09.512762 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:09.513229 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.24 ms +I, [2018-07-25T14:22:09.513292 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:09.513737 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.26 ms +I, [2018-07-25T14:22:09.513784 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:09.514628 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.66 ms +I, [2018-07-25T14:22:09.514687 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:09.515095 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-07-25T14:22:09.515141 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:09.515549 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.24 ms +I, [2018-07-25T14:22:09.517038 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:09.517466 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-07-25T14:22:09.517512 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:09.517834 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-07-25T14:22:09.517875 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:09.615486 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-07-25T14:22:09.615554 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:09.615914 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T14:22:09.615958 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:09.616284 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T14:22:09.616327 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:09.616644 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T14:22:09.616685 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:09.616993 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T14:22:09.617071 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:09.617652 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T14:22:09.617714 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:09.618087 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T14:22:09.618171 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:09.618512 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T14:22:09.618564 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:09.618921 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T14:22:09.620624 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:09.621108 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T14:22:09.621163 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:09.621543 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T14:22:09.621595 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:09.621961 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T14:22:09.622070 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:11.519638 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.26 ms +I, [2018-07-25T14:22:11.519700 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:11.520076 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-07-25T14:22:11.520124 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:11.520460 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-07-25T14:22:11.520530 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:11.521311 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.55 ms +I, [2018-07-25T14:22:11.521366 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:11.521731 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-07-25T14:22:11.521776 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:11.522090 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-07-25T14:22:11.522133 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:11.522442 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-07-25T14:22:11.522485 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:11.522805 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-07-25T14:22:11.529344 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:11.529804 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-07-25T14:22:11.529849 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:11.530159 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-07-25T14:22:11.530201 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:11.629848 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-07-25T14:22:11.629952 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:11.630391 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T14:22:11.630439 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:11.630777 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T14:22:11.630821 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:11.631873 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T14:22:11.631956 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:11.632384 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T14:22:11.632437 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:11.632800 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T14:22:11.632850 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:11.633263 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T14:22:11.633819 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:11.634262 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T14:22:11.634312 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:11.634956 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-07-25T14:22:11.635097 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:11.640317 #5] INFO -- : Inline processing of topic section_change with 1 messages took 4.68 ms +I, [2018-07-25T14:22:11.640445 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:11.641110 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-07-25T14:22:11.641180 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:11.641634 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T14:22:11.641695 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:11.642139 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T14:22:11.642195 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:11.642566 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T14:22:11.642603 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:11.642869 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T14:22:11.643629 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:11.644145 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T14:22:11.644195 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:11.644559 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T14:22:11.644616 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:11.645004 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T14:22:11.645066 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:11.650307 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.47 ms +I, [2018-07-25T14:22:11.650379 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:13.530560 #5] INFO -- : Committing offsets: course_change/0:37 +I, [2018-07-25T14:22:13.552876 #5] INFO -- : Inline processing of topic course_change with 1 messages took 1.16 ms +I, [2018-07-25T14:22:13.553613 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:13.554093 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-07-25T14:22:13.554141 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:13.554464 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-07-25T14:22:13.554504 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:13.554807 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-07-25T14:22:13.554850 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:13.557468 #5] INFO -- : Inline processing of topic course_change with 1 messages took 2.31 ms +I, [2018-07-25T14:22:13.557541 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:13.558064 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.23 ms +I, [2018-07-25T14:22:13.558138 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:13.558598 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-07-25T14:22:13.558665 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:13.559105 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-07-25T14:22:13.559171 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:13.559639 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-07-25T14:22:13.559686 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:13.560152 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-07-25T14:22:13.560219 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:13.560685 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-07-25T14:22:13.560750 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:13.561130 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-07-25T14:22:13.569995 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:13.571898 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-07-25T14:22:13.571935 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:13.572169 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T14:22:13.572196 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:13.572418 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T14:22:13.572448 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:13.572672 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T14:22:13.572702 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:13.572899 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-07-25T14:22:13.572929 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:13.573151 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-07-25T14:22:13.573182 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:13.573430 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-07-25T14:22:13.576027 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:13.650736 #5] INFO -- : Committing offsets: section_change/0:84 +I, [2018-07-25T14:22:13.677092 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-25T14:22:13.677158 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:13.678316 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-07-25T14:22:13.678360 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:13.678626 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T14:22:13.678657 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:13.678875 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T14:22:13.679160 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:13.679581 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T14:22:13.679673 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:13.680429 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T14:22:13.680486 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:13.680899 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T14:22:13.680947 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:13.681278 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T14:22:13.681324 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:13.681636 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T14:22:13.681704 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:13.684404 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T14:22:13.684446 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:13.684710 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T14:22:13.684740 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:13.684957 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T14:22:13.684987 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:13.685207 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T14:22:13.685238 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:13.685463 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T14:22:13.685490 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:13.685715 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T14:22:13.685759 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:13.701556 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T14:22:13.701606 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:13.701930 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T14:22:13.702018 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:13.702329 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T14:22:13.702403 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:13.702700 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T14:22:13.702742 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:13.703699 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.66 ms +I, [2018-07-25T14:22:13.705843 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:15.576886 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.23 ms +I, [2018-07-25T14:22:15.576953 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:15.577295 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-07-25T14:22:15.577339 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:15.577646 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-07-25T14:22:15.577688 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:15.578004 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-07-25T14:22:15.578046 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:15.578338 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-07-25T14:22:15.578379 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:15.578699 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-07-25T14:22:15.578740 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:15.579228 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-07-25T14:22:15.579266 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:15.579643 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-07-25T14:22:15.579684 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:15.580159 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-07-25T14:22:15.580204 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:15.580486 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-07-25T14:22:15.580552 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:15.580861 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-07-25T14:22:15.580903 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:15.581225 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-07-25T14:22:15.581268 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:15.581574 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-07-25T14:22:15.581622 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:15.581912 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-07-25T14:22:15.581954 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:15.708012 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.41 ms +I, [2018-07-25T14:22:15.708106 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:15.708529 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T14:22:15.708577 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:15.708911 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T14:22:15.708956 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:15.709586 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-07-25T14:22:15.711405 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:15.714182 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T14:22:15.714550 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:15.716064 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.16 ms +I, [2018-07-25T14:22:15.716316 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:15.717170 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T14:22:15.718084 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:15.718722 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T14:22:15.718759 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:15.719013 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T14:22:15.719048 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:15.719280 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T14:22:15.719313 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:15.719541 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T14:22:15.719570 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:15.719806 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T14:22:15.719851 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:15.720724 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.63 ms +I, [2018-07-25T14:22:15.720759 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:15.721041 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T14:22:15.721079 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:15.723007 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.67 ms +I, [2018-07-25T14:22:15.730655 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:15.736918 #5] INFO -- : Inline processing of topic section_change with 1 messages took 2.08 ms +I, [2018-07-25T14:22:15.736981 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:17.586285 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.32 ms +I, [2018-07-25T14:22:17.586351 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:17.586728 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-07-25T14:22:17.586773 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:17.587152 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-07-25T14:22:17.587196 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:17.589464 #5] INFO -- : Inline processing of topic course_change with 1 messages took 1.89 ms +I, [2018-07-25T14:22:17.589770 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:17.590323 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.25 ms +I, [2018-07-25T14:22:17.590390 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:17.590864 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-07-25T14:22:17.590926 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:17.593053 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-07-25T14:22:17.593149 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:17.628735 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.28 ms +I, [2018-07-25T14:22:17.628812 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:17.738870 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-25T14:22:17.738942 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:17.741211 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.89 ms +I, [2018-07-25T14:22:17.741414 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:17.742192 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T14:22:17.742245 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:17.742631 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T14:22:17.742710 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:17.743072 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T14:22:17.743120 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:17.743500 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T14:22:17.743555 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:17.743936 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T14:22:17.744025 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:17.744434 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T14:22:17.744479 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:17.744805 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T14:22:17.744885 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:17.745175 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T14:22:17.745255 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:17.745550 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T14:22:17.745594 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:17.745915 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T14:22:17.745960 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:17.746286 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T14:22:17.762175 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:17.771007 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-07-25T14:22:17.771077 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:17.776127 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.76 ms +I, [2018-07-25T14:22:17.778452 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:17.779015 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T14:22:17.779072 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:17.780101 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-07-25T14:22:17.780161 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:17.781200 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T14:22:17.781258 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:19.630851 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.26 ms +I, [2018-07-25T14:22:19.630920 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:19.631271 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-07-25T14:22:19.631320 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:19.631653 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-07-25T14:22:19.631700 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:19.632026 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-07-25T14:22:19.632074 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:19.632397 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-07-25T14:22:19.632444 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:19.632773 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-07-25T14:22:19.632864 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:19.634126 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T14:22:19.634165 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:19.634413 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-07-25T14:22:19.634473 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:19.634691 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-07-25T14:22:19.634729 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:19.635151 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-07-25T14:22:19.635203 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:19.782157 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T14:22:19.782212 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:19.782759 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T14:22:19.782806 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:19.787014 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T14:22:19.787092 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:19.787339 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T14:22:19.787415 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:19.787634 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T14:22:19.787666 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:19.787912 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T14:22:19.787943 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:19.788166 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T14:22:19.793348 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:19.794125 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T14:22:19.794180 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:19.794553 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T14:22:19.794598 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:19.794929 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T14:22:19.794974 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:19.795329 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T14:22:19.795381 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:19.795710 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T14:22:19.795753 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:19.796087 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T14:22:19.796150 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:19.796483 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T14:22:19.796526 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:19.796871 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T14:22:19.796915 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:21.642094 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.26 ms +I, [2018-07-25T14:22:21.642159 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:21.643361 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.31 ms +I, [2018-07-25T14:22:21.643438 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:21.646399 #5] INFO -- : Inline processing of topic course_change with 1 messages took 2.63 ms +I, [2018-07-25T14:22:21.646497 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:21.647025 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.26 ms +I, [2018-07-25T14:22:21.647084 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:21.647497 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-07-25T14:22:21.647551 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:21.647939 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-07-25T14:22:21.647992 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:21.648817 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.24 ms +I, [2018-07-25T14:22:21.648900 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:21.649445 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.27 ms +I, [2018-07-25T14:22:21.649687 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:21.653818 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.37 ms +I, [2018-07-25T14:22:21.653870 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:21.655623 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.35 ms +I, [2018-07-25T14:22:21.662759 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:21.799956 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.22 ms +I, [2018-07-25T14:22:21.800022 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:21.800432 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T14:22:21.800478 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:21.800827 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T14:22:21.800871 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:21.803435 #5] INFO -- : Inline processing of topic section_change with 1 messages took 2.34 ms +I, [2018-07-25T14:22:21.803509 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:21.803942 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T14:22:21.804020 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:21.804347 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T14:22:21.804390 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:21.804734 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T14:22:21.804776 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:21.805097 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T14:22:21.805141 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:21.806893 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.57 ms +I, [2018-07-25T14:22:21.806999 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:21.808233 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T14:22:21.818605 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:21.819321 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-25T14:22:21.819377 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:21.819861 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-07-25T14:22:21.819935 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:21.820168 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T14:22:21.820201 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:21.820471 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T14:22:21.820504 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:21.844560 #5] INFO -- : Inline processing of topic section_change with 1 messages took 23.8 ms +I, [2018-07-25T14:22:21.844699 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:21.845118 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T14:22:21.845159 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:21.845471 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T14:22:21.845510 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:21.845841 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T14:22:21.845880 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:23.665536 #5] INFO -- : Committing offsets: course_change/0:98 +I, [2018-07-25T14:22:23.675851 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.4 ms +I, [2018-07-25T14:22:23.675922 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:23.676335 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-07-25T14:22:23.676383 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:23.676715 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-07-25T14:22:23.676765 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:23.677544 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.59 ms +I, [2018-07-25T14:22:23.677604 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:23.677987 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-07-25T14:22:23.678038 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:23.678385 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-07-25T14:22:23.678435 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:23.679579 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.9 ms +I, [2018-07-25T14:22:23.679643 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:23.690583 #5] INFO -- : Inline processing of topic course_change with 1 messages took 10.64 ms +I, [2018-07-25T14:22:23.690658 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:23.691067 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-07-25T14:22:23.691150 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:23.691471 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-07-25T14:22:23.691515 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:23.694359 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-07-25T14:22:23.694454 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:23.713064 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.28 ms +I, [2018-07-25T14:22:23.713131 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:23.714250 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.85 ms +I, [2018-07-25T14:22:23.714314 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:23.727961 #5] INFO -- : Inline processing of topic course_change with 1 messages took 13.41 ms +I, [2018-07-25T14:22:23.728038 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:23.728509 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-07-25T14:22:23.728561 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:23.728933 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-07-25T14:22:23.728986 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:23.729350 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-07-25T14:22:23.729403 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:23.729767 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-07-25T14:22:23.743139 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:23.743630 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-07-25T14:22:23.753023 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:23.846492 #5] INFO -- : Committing offsets: section_change/0:171 +I, [2018-07-25T14:22:23.872518 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T14:22:23.872585 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:23.872972 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T14:22:23.873019 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:23.879188 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.52 ms +I, [2018-07-25T14:22:23.879260 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:23.880018 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.43 ms +I, [2018-07-25T14:22:23.880160 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:23.888408 #5] INFO -- : Inline processing of topic section_change with 1 messages took 3.06 ms +I, [2018-07-25T14:22:23.888483 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:23.888935 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T14:22:23.889004 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:23.889320 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T14:22:23.889362 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:23.889676 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T14:22:23.889717 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:23.900903 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.53 ms +I, [2018-07-25T14:22:23.913362 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:23.913933 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-25T14:22:23.913980 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:23.914332 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T14:22:23.928365 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:23.928894 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-25T14:22:23.928946 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:23.929377 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T14:22:23.929426 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:23.929768 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T14:22:23.929811 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:25.755075 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.27 ms +I, [2018-07-25T14:22:25.755145 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:25.755550 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-07-25T14:22:25.755597 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:25.755971 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-07-25T14:22:25.756020 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:25.756374 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-07-25T14:22:25.756423 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:25.756762 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-07-25T14:22:25.756808 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:25.757169 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-07-25T14:22:25.757217 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:25.758400 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.27 ms +I, [2018-07-25T14:22:25.758473 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:25.759820 #5] INFO -- : Inline processing of topic course_change with 1 messages took 1.06 ms +I, [2018-07-25T14:22:25.759920 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:25.762503 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-07-25T14:22:25.762560 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:25.931225 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.4 ms +I, [2018-07-25T14:22:25.931388 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:25.932818 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.79 ms +I, [2018-07-25T14:22:25.932978 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:25.934158 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.53 ms +I, [2018-07-25T14:22:25.934290 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:25.934739 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T14:22:25.934796 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:25.935242 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T14:22:25.935299 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:25.935703 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T14:22:25.935758 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:25.936416 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.4 ms +I, [2018-07-25T14:22:25.936474 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:25.936846 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T14:22:25.936901 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:25.937327 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T14:22:25.937386 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:25.945768 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.83 ms +I, [2018-07-25T14:22:25.952469 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:25.959509 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-07-25T14:22:25.959706 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:27.767151 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-07-25T14:22:27.771246 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:27.771708 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-07-25T14:22:27.771756 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:27.772103 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-07-25T14:22:27.772147 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:27.772457 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-07-25T14:22:27.772498 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:27.772810 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-07-25T14:22:27.772851 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:27.773170 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-07-25T14:22:27.773212 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:27.773499 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T14:22:27.773542 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:27.773841 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-07-25T14:22:27.773884 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:27.780221 #5] INFO -- : Inline processing of topic course_change with 1 messages took 6.15 ms +I, [2018-07-25T14:22:27.780303 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:27.973228 #5] INFO -- : Inline processing of topic section_change with 1 messages took 12.37 ms +I, [2018-07-25T14:22:27.973425 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:27.973888 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T14:22:27.973932 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:27.974673 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.56 ms +I, [2018-07-25T14:22:27.974726 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:27.975280 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-25T14:22:27.975366 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:27.975904 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-07-25T14:22:27.975955 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:27.976420 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T14:22:27.976469 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:27.976910 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-25T14:22:27.976967 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:27.977423 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-07-25T14:22:27.977472 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:27.977840 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T14:22:27.977886 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:29.782326 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.52 ms +I, [2018-07-25T14:22:29.782553 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:29.784636 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-07-25T14:22:29.784754 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:29.787533 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.24 ms +I, [2018-07-25T14:22:29.787590 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:29.787952 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-07-25T14:22:29.787998 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:29.788351 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-07-25T14:22:29.788513 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:29.979251 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T14:22:29.979319 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:29.979710 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T14:22:29.979756 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:29.980103 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T14:22:29.980147 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:29.980559 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T14:22:29.980627 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:29.981119 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-07-25T14:22:29.981168 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:31.790018 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.59 ms +I, [2018-07-25T14:22:31.790101 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:31.790662 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-07-25T14:22:31.790730 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:31.791343 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.24 ms +I, [2018-07-25T14:22:31.793087 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:31.793575 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-07-25T14:22:31.793630 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:31.794051 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-07-25T14:22:31.794103 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:31.796527 #5] INFO -- : Inline processing of topic course_change with 1 messages took 1.7 ms +I, [2018-07-25T14:22:31.796833 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:31.797335 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-07-25T14:22:31.797374 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:31.983587 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-07-25T14:22:31.983660 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:31.984889 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.0 ms +I, [2018-07-25T14:22:31.984955 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:31.986628 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.48 ms +I, [2018-07-25T14:22:31.986684 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:31.987116 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T14:22:31.987172 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:31.987979 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.59 ms +I, [2018-07-25T14:22:31.988047 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:31.988486 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T14:22:31.988539 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:31.990252 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.3 ms +I, [2018-07-25T14:22:31.990355 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:33.798049 #5] INFO -- : Committing offsets: course_change/0:147 +I, [2018-07-25T14:22:33.846027 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.31 ms +I, [2018-07-25T14:22:33.846127 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:33.846576 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-07-25T14:22:33.846622 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:33.847000 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-07-25T14:22:33.847050 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:33.847427 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-07-25T14:22:33.847486 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:33.848008 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-07-25T14:22:33.848118 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:33.992333 #5] INFO -- : Committing offsets: section_change/0:217 +I, [2018-07-25T14:22:34.019793 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-07-25T14:22:34.019862 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:34.020638 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.52 ms +I, [2018-07-25T14:22:34.020707 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:34.021487 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T14:22:34.021549 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:34.021977 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T14:22:34.022032 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:34.022499 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T14:22:34.022589 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:34.036959 #5] INFO -- : Inline processing of topic section_change with 1 messages took 2.96 ms +I, [2018-07-25T14:22:34.037236 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:34.037869 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-07-25T14:22:34.037922 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:34.038552 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-07-25T14:22:34.038679 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:34.039268 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T14:22:34.039408 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:34.040133 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T14:22:34.040194 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:34.041046 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.43 ms +I, [2018-07-25T14:22:34.041123 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:34.041926 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.52 ms +I, [2018-07-25T14:22:34.042001 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:34.042662 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-07-25T14:22:34.042901 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:34.064902 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.63 ms +I, [2018-07-25T14:22:34.064980 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:34.065420 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T14:22:34.065466 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:34.065841 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T14:22:34.065883 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:34.066208 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T14:22:34.067591 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:34.068038 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T14:22:34.068084 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:34.073133 #5] INFO -- : Inline processing of topic section_change with 1 messages took 4.86 ms +I, [2018-07-25T14:22:34.073287 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:34.074650 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.16 ms +I, [2018-07-25T14:22:34.074703 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:34.075093 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T14:22:34.075135 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:34.075453 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T14:22:34.075493 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:34.075829 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T14:22:34.087143 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:34.087703 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T14:22:34.087751 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:34.088131 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T14:22:34.088175 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:35.849772 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-07-25T14:22:35.850457 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:35.850746 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T14:22:35.850779 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:35.851937 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.9 ms +I, [2018-07-25T14:22:35.851995 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:35.852291 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T14:22:35.852322 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:35.852546 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T14:22:35.852575 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:35.853317 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T14:22:35.854014 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:35.856759 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-07-25T14:22:35.856803 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:35.857035 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T14:22:35.857065 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:35.857281 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-07-25T14:22:35.857317 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:35.857525 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-07-25T14:22:35.857554 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:35.857764 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-07-25T14:22:35.857793 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:35.858008 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-07-25T14:22:35.858036 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:35.858248 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T14:22:35.858278 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:35.858508 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T14:22:35.863648 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:35.864163 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.25 ms +I, [2018-07-25T14:22:35.864211 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:35.864560 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-07-25T14:22:35.864607 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:36.090185 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-07-25T14:22:36.090257 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:36.090678 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T14:22:36.090734 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:36.091167 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T14:22:36.091226 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:36.091593 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T14:22:36.091626 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:36.091869 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T14:22:36.091899 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:36.092161 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T14:22:36.092192 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:36.092429 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T14:22:36.092459 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:36.092678 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T14:22:36.092709 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:36.092937 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T14:22:36.097534 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:36.098068 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-25T14:22:36.098125 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:36.098523 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T14:22:36.098599 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:36.099059 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-07-25T14:22:36.099102 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:36.099447 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T14:22:36.099488 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:36.099792 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T14:22:36.099831 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:37.865498 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.24 ms +I, [2018-07-25T14:22:37.865570 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:37.866588 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.81 ms +I, [2018-07-25T14:22:37.866633 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:37.866968 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T14:22:37.867035 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:37.867242 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-07-25T14:22:37.867299 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:37.867622 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-07-25T14:22:37.867737 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:37.868029 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T14:22:37.876677 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:37.877048 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-07-25T14:22:37.877115 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:38.103446 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.58 ms +I, [2018-07-25T14:22:38.103512 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:38.104056 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-07-25T14:22:38.104104 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:38.104470 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T14:22:38.104512 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:38.105157 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T14:22:38.105216 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:38.105571 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T14:22:38.105616 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:38.105965 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T14:22:38.106007 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:38.106346 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T14:22:38.106390 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:38.107643 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T14:22:38.107707 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:38.109927 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T14:22:38.110036 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:38.116497 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.91 ms +I, [2018-07-25T14:22:38.116581 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:38.117071 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T14:22:38.117125 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:38.123522 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-25T14:22:38.126555 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:38.127109 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-25T14:22:38.127164 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:38.127716 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-07-25T14:22:38.127786 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:38.128144 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T14:22:38.128185 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:38.128546 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T14:22:38.128587 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:39.887444 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.6 ms +I, [2018-07-25T14:22:39.887555 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:39.888219 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.33 ms +I, [2018-07-25T14:22:39.888285 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:39.888928 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.33 ms +I, [2018-07-25T14:22:39.889024 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:40.134902 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.04 ms +I, [2018-07-25T14:22:40.135790 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:40.145240 #5] INFO -- : Inline processing of topic section_change with 1 messages took 9.06 ms +I, [2018-07-25T14:22:40.145368 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:40.145985 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-07-25T14:22:40.146050 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:40.146970 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.42 ms +I, [2018-07-25T14:22:40.147130 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:40.148888 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.02 ms +I, [2018-07-25T14:22:40.149005 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:40.152177 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-07-25T14:22:40.152253 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:40.152821 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-07-25T14:22:40.152968 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:40.168302 #5] INFO -- : Inline processing of topic section_change with 1 messages took 4.49 ms +I, [2018-07-25T14:22:40.168361 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:40.168782 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T14:22:40.168827 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:40.169185 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T14:22:40.169263 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:40.169572 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T14:22:40.169612 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:40.169987 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T14:22:40.170029 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:40.180816 #5] INFO -- : Inline processing of topic section_change with 1 messages took 10.57 ms +I, [2018-07-25T14:22:40.180903 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:41.892118 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.26 ms +I, [2018-07-25T14:22:41.892847 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:42.182718 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.55 ms +I, [2018-07-25T14:22:42.182836 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:42.184206 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.57 ms +I, [2018-07-25T14:22:42.184328 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:42.187046 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.77 ms +I, [2018-07-25T14:22:42.187115 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:42.189063 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.69 ms +I, [2018-07-25T14:22:42.191155 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:42.191629 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T14:22:42.191736 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:42.192125 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T14:22:42.192251 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:42.192530 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T14:22:42.192609 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:43.894779 #5] INFO -- : Committing offsets: course_change/0:179 +I, [2018-07-25T14:22:43.905142 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-07-25T14:22:43.905307 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:44.193234 #5] INFO -- : Committing offsets: section_change/0:292 +I, [2018-07-25T14:22:44.225041 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-07-25T14:22:44.225143 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:44.225429 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T14:22:44.225460 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:44.226056 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.43 ms +I, [2018-07-25T14:22:44.226175 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:44.226930 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.48 ms +I, [2018-07-25T14:22:44.226986 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:44.227671 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.49 ms +I, [2018-07-25T14:22:44.228167 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:44.228654 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-07-25T14:22:44.228700 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:44.229098 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T14:22:44.229148 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:44.229514 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T14:22:44.229548 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:44.229827 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T14:22:44.229858 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:44.230591 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.56 ms +I, [2018-07-25T14:22:44.230740 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:45.906391 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-07-25T14:22:45.906440 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:45.906740 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-07-25T14:22:45.906772 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:45.906997 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T14:22:45.907026 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:45.907347 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-07-25T14:22:45.907382 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:45.907692 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-07-25T14:22:45.907723 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:45.907957 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T14:22:45.907986 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:45.908198 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-07-25T14:22:45.908228 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:45.908535 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T14:22:45.908571 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:45.908808 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-07-25T14:22:45.908849 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:45.909124 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-07-25T14:22:45.909169 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:46.232541 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-07-25T14:22:46.232631 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:46.233013 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T14:22:46.233045 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:46.233794 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T14:22:46.233850 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:46.234240 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T14:22:46.234291 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:46.234688 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T14:22:46.234739 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:46.235239 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T14:22:46.235286 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:46.235687 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T14:22:46.235780 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:46.236275 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-07-25T14:22:46.236326 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:46.236644 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T14:22:46.236783 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:46.237301 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-07-25T14:22:46.237401 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:46.237794 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T14:22:46.237852 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:46.242448 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.79 ms +I, [2018-07-25T14:22:46.242509 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:46.242893 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T14:22:46.242935 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:46.243232 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T14:22:46.243272 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:46.243578 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T14:22:46.243617 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:46.243920 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T14:22:46.243959 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:46.246484 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-25T14:22:46.246541 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:47.911579 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.43 ms +I, [2018-07-25T14:22:47.911693 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:47.912389 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.34 ms +I, [2018-07-25T14:22:47.912451 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:47.913209 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.34 ms +I, [2018-07-25T14:22:47.913335 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:47.913750 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-07-25T14:22:47.913808 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:47.914240 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-07-25T14:22:47.914288 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:47.918237 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.55 ms +I, [2018-07-25T14:22:47.918287 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:47.918611 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-07-25T14:22:47.918643 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:47.918916 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-07-25T14:22:47.918947 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:47.919195 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-07-25T14:22:47.919225 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:47.919452 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T14:22:47.919482 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:47.919862 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-07-25T14:22:47.919913 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:47.920335 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.26 ms +I, [2018-07-25T14:22:47.920375 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:47.920644 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-07-25T14:22:47.920680 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:47.920924 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T14:22:47.920954 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:47.923254 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-07-25T14:22:47.923344 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:47.923823 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-07-25T14:22:47.923874 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:48.247402 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T14:22:48.247451 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:48.247742 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T14:22:48.247778 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:48.248022 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T14:22:48.248053 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:48.248381 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T14:22:48.248460 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:48.248730 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T14:22:48.248760 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:48.248988 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T14:22:48.249036 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:48.249335 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T14:22:48.249369 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:48.249703 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T14:22:48.249739 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:48.252737 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-07-25T14:22:48.252809 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:48.253646 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.4 ms +I, [2018-07-25T14:22:48.253718 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:48.254850 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.46 ms +I, [2018-07-25T14:22:48.254917 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:48.256371 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.86 ms +I, [2018-07-25T14:22:48.256440 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:48.258496 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.56 ms +I, [2018-07-25T14:22:48.258611 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:48.265655 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.66 ms +I, [2018-07-25T14:22:48.265732 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:48.266253 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T14:22:48.267763 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:48.268232 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T14:22:48.268284 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:48.268698 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T14:22:48.268770 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:48.269108 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T14:22:48.269155 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:48.269478 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T14:22:48.269512 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:48.270379 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-07-25T14:22:48.270573 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:48.271009 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T14:22:48.271076 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:48.271376 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T14:22:48.271408 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:49.924778 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-07-25T14:22:49.924828 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:49.925070 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T14:22:49.925106 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:49.925327 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T14:22:49.925357 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:49.925563 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-07-25T14:22:49.925615 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:49.925810 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-07-25T14:22:49.925860 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:49.926061 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-07-25T14:22:49.926089 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:49.926298 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-07-25T14:22:49.926327 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:49.927446 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.93 ms +I, [2018-07-25T14:22:49.927612 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:49.928147 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.24 ms +I, [2018-07-25T14:22:49.928197 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:49.928552 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-07-25T14:22:49.928598 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:50.272441 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-25T14:22:50.272537 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:50.273429 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.46 ms +I, [2018-07-25T14:22:50.273483 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:50.273815 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T14:22:50.273846 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:50.274104 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T14:22:50.274137 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:50.274450 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T14:22:50.274488 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:50.274737 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T14:22:50.274774 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:50.275044 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T14:22:50.275101 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:50.275334 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T14:22:50.275365 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:50.275611 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T14:22:50.275709 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:50.277062 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T14:22:50.277287 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:50.277853 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-07-25T14:22:50.277911 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:50.278353 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T14:22:50.278423 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:50.279540 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.82 ms +I, [2018-07-25T14:22:50.279616 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:50.282902 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-07-25T14:22:50.282955 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:50.283622 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.5 ms +I, [2018-07-25T14:22:50.283668 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:50.284143 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-25T14:22:50.284188 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:50.291478 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T14:22:50.291722 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:50.292221 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T14:22:50.292264 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:50.292514 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T14:22:50.292554 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:50.294522 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.33 ms +I, [2018-07-25T14:22:50.294569 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:50.294916 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T14:22:50.294948 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:50.298939 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-07-25T14:22:50.299007 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:50.300018 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-07-25T14:22:50.300089 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:50.301482 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T14:22:50.301596 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:50.302153 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-07-25T14:22:50.302215 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:50.303131 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.59 ms +I, [2018-07-25T14:22:50.303194 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:50.303701 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-07-25T14:22:50.303838 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:50.308939 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T14:22:50.308987 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:50.309391 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T14:22:50.309432 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:50.309853 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T14:22:50.309904 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:50.310235 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T14:22:50.310281 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:50.310634 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T14:22:50.310801 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:50.314190 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.93 ms +I, [2018-07-25T14:22:50.314270 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:50.314950 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T14:22:50.315005 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:50.315658 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-25T14:22:50.315715 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:50.316127 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T14:22:50.316180 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:50.316524 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T14:22:50.316571 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:50.316979 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T14:22:50.317031 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:50.317308 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T14:22:50.317363 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:50.317581 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T14:22:50.317644 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:50.317875 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T14:22:50.317905 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:50.318122 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T14:22:50.318151 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:50.318592 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-25T14:22:50.320150 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:50.329189 #5] INFO -- : Inline processing of topic section_change with 1 messages took 3.28 ms +I, [2018-07-25T14:22:50.329263 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:50.329723 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T14:22:50.329757 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:51.929292 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-07-25T14:22:51.929342 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:51.929589 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T14:22:51.929620 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:51.929842 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T14:22:51.929872 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:51.930354 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.33 ms +I, [2018-07-25T14:22:51.930401 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:51.930662 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T14:22:51.930693 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:51.930912 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T14:22:51.930942 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:51.931166 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-07-25T14:22:51.931196 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:51.931420 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T14:22:51.931450 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:51.933364 #5] INFO -- : Inline processing of topic course_change with 1 messages took 1.56 ms +I, [2018-07-25T14:22:51.933499 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:51.933925 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-07-25T14:22:51.933973 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:51.934315 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-07-25T14:22:51.936776 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:51.937116 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-07-25T14:22:51.937149 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:52.330990 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T14:22:52.331039 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:52.331303 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T14:22:52.331334 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:52.331608 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T14:22:52.331638 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:52.331854 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T14:22:52.331883 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:52.332144 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T14:22:52.332175 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:52.332404 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T14:22:52.332434 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:52.332712 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T14:22:52.333647 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:52.334239 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T14:22:52.334294 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:52.336597 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T14:22:52.336677 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:52.336985 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T14:22:52.337018 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:52.337285 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T14:22:52.337316 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:52.337561 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T14:22:52.337616 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:52.337843 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T14:22:52.337872 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:52.338106 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T14:22:52.338136 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:52.338358 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T14:22:52.338388 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:53.937495 #5] INFO -- : Committing offsets: course_change/0:228 +I, [2018-07-25T14:22:53.953245 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-07-25T14:22:53.953305 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:53.955290 #5] INFO -- : Inline processing of topic course_change with 1 messages took 1.76 ms +I, [2018-07-25T14:22:53.955413 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:53.956056 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.32 ms +I, [2018-07-25T14:22:53.956170 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:53.956738 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.29 ms +I, [2018-07-25T14:22:53.956802 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:53.957139 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-07-25T14:22:53.957183 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:53.957517 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-07-25T14:22:53.957565 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:53.958064 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-07-25T14:22:53.958133 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:53.958554 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-07-25T14:22:53.958610 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:53.959101 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-07-25T14:22:53.959214 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:53.959593 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-07-25T14:22:53.959641 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:53.960040 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-07-25T14:22:53.960095 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:53.960432 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-07-25T14:22:53.960485 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:53.960923 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-07-25T14:22:53.962954 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:53.963801 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.33 ms +I, [2018-07-25T14:22:53.963880 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:53.965959 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.86 ms +I, [2018-07-25T14:22:53.966047 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:53.971966 #5] INFO -- : Inline processing of topic course_change with 1 messages took 5.63 ms +I, [2018-07-25T14:22:53.972028 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:53.972350 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-07-25T14:22:53.972390 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:54.338981 #5] INFO -- : Committing offsets: section_change/0:401 +I, [2018-07-25T14:22:54.343919 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-25T14:22:54.343967 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:54.344285 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T14:22:54.344324 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:54.344581 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T14:22:54.345872 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:54.346333 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T14:22:54.346375 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:54.346714 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T14:22:54.346752 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:54.347051 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T14:22:54.347083 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:54.347349 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T14:22:54.347380 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:54.348676 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-25T14:22:54.348740 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:54.349131 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T14:22:54.349182 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:54.349779 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-25T14:22:54.349918 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:54.350948 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-07-25T14:22:54.351027 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:54.352451 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.09 ms +I, [2018-07-25T14:22:54.352517 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:54.352930 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T14:22:54.352988 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:54.353340 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T14:22:54.353374 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:54.353626 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T14:22:54.353656 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:54.353922 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T14:22:54.353952 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:54.354227 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T14:22:54.354269 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:54.357295 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.79 ms +I, [2018-07-25T14:22:54.357366 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:54.359516 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.47 ms +I, [2018-07-25T14:22:54.359579 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:55.973468 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.23 ms +I, [2018-07-25T14:22:55.973519 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:55.973795 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-07-25T14:22:55.973828 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:55.974065 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T14:22:55.974097 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:55.974332 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-07-25T14:22:55.974360 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:55.974767 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.29 ms +I, [2018-07-25T14:22:55.974849 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:56.360401 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-07-25T14:22:56.360463 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:56.360776 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T14:22:56.360818 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:56.361119 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T14:22:56.361160 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:56.361450 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T14:22:56.361491 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:56.363125 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T14:22:56.363178 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:56.363503 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T14:22:56.363545 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:56.363868 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T14:22:56.363909 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:56.364221 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T14:22:56.364271 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:56.366999 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T14:22:56.367052 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:56.367367 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T14:22:56.367400 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:56.367624 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T14:22:56.367653 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:56.367870 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T14:22:56.367899 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:56.368128 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T14:22:56.368156 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:56.368389 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T14:22:56.368419 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:56.368604 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T14:22:56.368661 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:56.369342 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T14:22:56.375141 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:56.375571 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T14:22:56.375610 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:56.375855 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T14:22:56.375886 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:56.376110 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T14:22:56.376152 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:56.376376 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T14:22:56.376405 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:56.376621 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T14:22:56.376662 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:56.376879 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T14:22:56.376908 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:56.377131 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T14:22:56.377159 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:56.377377 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T14:22:56.377406 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:56.377621 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T14:22:56.377650 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:56.377880 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T14:22:56.377909 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:56.378127 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T14:22:56.378156 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:56.379248 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T14:22:56.379292 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:56.379533 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T14:22:56.379563 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:56.379808 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T14:22:56.379838 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:56.380043 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T14:22:56.380073 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:56.380281 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T14:22:56.380330 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:56.380533 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T14:22:56.380568 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:56.388650 #5] INFO -- : Inline processing of topic section_change with 1 messages took 6.32 ms +I, [2018-07-25T14:22:56.388709 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:56.389047 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T14:22:56.389079 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:56.389299 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T14:22:56.389329 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:56.389554 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T14:22:56.389583 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:56.389805 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T14:22:56.389835 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:56.390080 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T14:22:56.390111 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:56.395128 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T14:22:56.395164 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:56.395386 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T14:22:56.395421 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:56.395652 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T14:22:56.395682 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:56.395904 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T14:22:56.395938 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:56.396163 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T14:22:56.396201 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:56.396418 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T14:22:56.396448 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:56.396678 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T14:22:56.396707 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:56.396954 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T14:22:56.396989 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:56.397269 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T14:22:56.397307 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:57.975726 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.25 ms +I, [2018-07-25T14:22:57.975844 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:57.977325 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-07-25T14:22:57.977385 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:58.398838 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-07-25T14:22:58.398908 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:58.399281 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T14:22:58.400038 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:58.400662 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-07-25T14:22:58.400785 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:58.401257 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T14:22:58.401569 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:58.401902 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T14:22:58.401933 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:58.402206 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T14:22:58.402237 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:58.402490 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T14:22:58.402520 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:58.402784 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T14:22:58.402815 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:58.404242 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-07-25T14:22:58.404378 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:58.411355 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-25T14:22:58.411411 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:58.411743 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T14:22:58.411776 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:58.412040 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T14:22:58.412118 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:22:59.978364 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-07-25T14:22:59.978416 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:59.978674 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-07-25T14:22:59.978708 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:59.979008 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-07-25T14:22:59.979061 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:59.979366 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-07-25T14:22:59.979399 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:22:59.979639 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T14:22:59.979669 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:00.413873 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-07-25T14:23:00.413927 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:00.414373 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-25T14:23:00.414412 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:00.414672 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T14:23:00.414707 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:00.414999 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T14:23:00.415032 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:00.415532 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-07-25T14:23:00.415606 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:00.416054 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-25T14:23:00.416104 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:00.416510 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T14:23:00.416552 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:00.416907 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T14:23:00.417025 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:00.419601 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-07-25T14:23:00.419647 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:00.424513 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T14:23:00.424590 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:00.425264 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T14:23:00.425306 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:00.425575 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T14:23:00.425617 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:01.980540 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-07-25T14:23:01.980590 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:01.980959 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-07-25T14:23:01.981035 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:01.981281 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T14:23:01.981313 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:01.981532 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T14:23:01.981562 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:01.981782 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T14:23:01.981812 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:01.982002 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-07-25T14:23:01.982029 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:01.982409 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-07-25T14:23:01.982445 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:01.982678 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T14:23:01.982708 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:01.984002 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-07-25T14:23:01.984040 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:01.986135 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-07-25T14:23:01.986203 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:01.986596 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-07-25T14:23:01.986736 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:02.426679 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T14:23:02.426733 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:02.427002 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T14:23:02.427033 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:02.427293 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T14:23:02.427322 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:02.427589 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T14:23:02.427619 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:02.427917 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T14:23:02.427959 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:02.428227 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T14:23:02.428267 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:02.428853 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-07-25T14:23:02.428923 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:02.429618 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.48 ms +I, [2018-07-25T14:23:02.429680 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:02.430064 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T14:23:02.430116 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:02.430487 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T14:23:02.430533 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:02.431185 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-07-25T14:23:02.431279 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:02.431760 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T14:23:02.431827 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:03.987510 #5] INFO -- : Committing offsets: course_change/0:268 +I, [2018-07-25T14:23:03.992291 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.27 ms +I, [2018-07-25T14:23:03.992359 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:03.992695 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-07-25T14:23:03.992767 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:03.993108 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-07-25T14:23:03.993156 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:03.993484 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-07-25T14:23:03.993939 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:03.994584 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.39 ms +I, [2018-07-25T14:23:03.994631 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:03.995011 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-07-25T14:23:03.995063 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:03.995395 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-07-25T14:23:03.995440 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:03.995912 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.3 ms +I, [2018-07-25T14:23:03.995965 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:03.996313 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-07-25T14:23:03.996362 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:03.996717 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-07-25T14:23:03.996766 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:03.997104 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-07-25T14:23:03.997152 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:03.997659 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.33 ms +I, [2018-07-25T14:23:03.997714 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:03.998065 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-07-25T14:23:03.998115 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:03.998428 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-07-25T14:23:03.998509 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:03.998841 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-07-25T14:23:03.998890 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:04.000000 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-07-25T14:23:04.000048 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:04.000388 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-07-25T14:23:04.000430 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:04.432136 #5] INFO -- : Committing offsets: section_change/0:504 +I, [2018-07-25T14:23:04.435448 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T14:23:04.435493 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:04.435766 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T14:23:04.435797 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:04.436039 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T14:23:04.436069 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:04.436329 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T14:23:04.436360 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:04.436591 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T14:23:04.436649 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:04.437440 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T14:23:04.437475 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:04.437700 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T14:23:04.437730 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:04.437947 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T14:23:04.437977 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:04.438228 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T14:23:04.438299 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:04.439953 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-25T14:23:04.440021 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:04.440350 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T14:23:04.440382 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:04.440618 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T14:23:04.440648 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:04.440913 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T14:23:04.440950 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:04.441346 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T14:23:04.441395 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:04.441722 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T14:23:04.441800 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:04.442146 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T14:23:04.442191 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:06.001623 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-07-25T14:23:06.001671 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:06.001913 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T14:23:06.001943 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:06.002285 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-07-25T14:23:06.002385 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:06.002619 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T14:23:06.002647 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:06.003095 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.32 ms +I, [2018-07-25T14:23:06.003133 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:06.003387 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T14:23:06.003437 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:06.003702 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-07-25T14:23:06.003751 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:06.004118 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-07-25T14:23:06.004156 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:06.004583 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-07-25T14:23:06.004649 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:06.005004 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-07-25T14:23:06.005063 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:06.005397 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-07-25T14:23:06.005455 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:06.005939 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.3 ms +I, [2018-07-25T14:23:06.005992 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:06.006356 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-07-25T14:23:06.006408 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:06.006635 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-07-25T14:23:06.006782 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:06.443806 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.48 ms +I, [2018-07-25T14:23:06.443900 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:06.444218 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T14:23:06.444250 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:06.444487 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T14:23:06.444518 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:06.444736 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T14:23:06.444767 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:06.444977 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T14:23:06.445006 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:06.445230 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T14:23:06.445264 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:06.445497 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T14:23:06.445526 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:06.445761 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T14:23:06.445796 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:06.446086 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T14:23:06.446118 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:06.446360 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T14:23:06.446389 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:06.446620 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T14:23:06.446685 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:06.447822 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-07-25T14:23:06.448381 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:06.448738 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T14:23:06.448777 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:06.450657 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.71 ms +I, [2018-07-25T14:23:06.450733 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:06.451415 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T14:23:06.451453 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:06.451707 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T14:23:06.451737 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:06.451962 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T14:23:06.451991 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:06.452240 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T14:23:06.452270 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:06.452485 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T14:23:06.452514 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:06.452759 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T14:23:06.452789 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:06.452975 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T14:23:06.453003 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:06.453227 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T14:23:06.453256 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:06.453513 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T14:23:06.453543 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:06.456755 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-07-25T14:23:06.456821 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:06.461758 #5] INFO -- : Inline processing of topic section_change with 1 messages took 2.35 ms +I, [2018-07-25T14:23:06.461815 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:06.462134 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T14:23:06.462165 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:06.462414 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T14:23:06.462445 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:06.462679 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T14:23:06.462708 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:06.462925 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T14:23:06.462954 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:06.463187 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T14:23:06.463216 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:06.463444 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T14:23:06.463611 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:06.464316 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.47 ms +I, [2018-07-25T14:23:06.464444 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:06.465021 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T14:23:06.465611 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:06.466175 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T14:23:06.466293 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:06.467146 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-07-25T14:23:06.467216 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:06.467615 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T14:23:06.467659 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:08.009226 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.37 ms +I, [2018-07-25T14:23:08.009278 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:08.009519 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T14:23:08.009548 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:08.009819 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T14:23:08.009855 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:08.010093 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T14:23:08.010124 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:08.010338 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-07-25T14:23:08.010370 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:08.010598 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-07-25T14:23:08.010630 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:08.010865 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-07-25T14:23:08.010895 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:08.011384 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T14:23:08.011445 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:08.011660 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T14:23:08.011692 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:08.012392 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.3 ms +I, [2018-07-25T14:23:08.012481 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:08.013153 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.39 ms +I, [2018-07-25T14:23:08.013237 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:08.013998 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.26 ms +I, [2018-07-25T14:23:08.014056 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:08.015804 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.37 ms +I, [2018-07-25T14:23:08.015873 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:08.016373 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-07-25T14:23:08.016485 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:08.017807 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.27 ms +I, [2018-07-25T14:23:08.017887 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:08.468567 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T14:23:08.468616 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:08.468916 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T14:23:08.468947 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:08.469216 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T14:23:08.469245 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:08.470346 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T14:23:08.470384 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:08.470664 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T14:23:08.470695 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:08.470921 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T14:23:08.470951 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:08.471245 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T14:23:08.471413 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:08.472188 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T14:23:08.472240 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:08.472624 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T14:23:08.472675 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:08.473159 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-07-25T14:23:08.473198 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:08.473459 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T14:23:08.473490 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:08.473769 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T14:23:08.473823 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:08.474969 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T14:23:08.475008 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:08.475267 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T14:23:08.475297 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:08.475661 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T14:23:08.475715 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:08.476257 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T14:23:08.476310 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:08.476698 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T14:23:08.476747 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:10.018918 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-07-25T14:23:10.018968 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:10.019215 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-07-25T14:23:10.019245 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:10.019472 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T14:23:10.019501 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:10.019721 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T14:23:10.019750 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:10.019973 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-07-25T14:23:10.020004 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:10.020503 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.27 ms +I, [2018-07-25T14:23:10.020581 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:10.020828 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-07-25T14:23:10.020855 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:10.021181 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-07-25T14:23:10.021275 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:10.021554 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-07-25T14:23:10.021585 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:10.021806 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-07-25T14:23:10.021836 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:10.022022 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-07-25T14:23:10.022075 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:10.022276 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-07-25T14:23:10.022305 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:10.022524 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T14:23:10.022574 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:10.477734 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T14:23:10.477784 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:10.478246 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-07-25T14:23:10.478294 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:10.478751 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T14:23:10.478794 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:10.479179 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T14:23:10.480988 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:10.481616 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-07-25T14:23:10.481670 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:10.482055 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T14:23:10.482106 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:10.482679 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T14:23:10.482748 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:10.483165 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T14:23:10.483218 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:10.483684 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T14:23:10.483774 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:10.484175 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T14:23:10.484224 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:10.485825 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T14:23:10.485868 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:10.486186 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T14:23:10.486231 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:10.486650 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-07-25T14:23:10.486684 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:10.486926 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T14:23:10.486956 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:10.487183 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T14:23:10.487248 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:10.488487 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T14:23:10.488528 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:10.488791 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T14:23:10.488822 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:10.489051 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T14:23:10.489080 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:10.489327 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T14:23:10.489373 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:10.489785 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T14:23:10.489875 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:10.490212 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T14:23:10.490298 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:10.490622 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T14:23:10.490672 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:10.491048 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T14:23:10.491097 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:10.491452 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T14:23:10.491501 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:10.491833 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T14:23:10.491868 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:10.492085 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T14:23:10.492115 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:10.492367 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T14:23:10.492424 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:10.493584 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T14:23:10.493670 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:10.494083 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T14:23:10.494119 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:10.495025 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T14:23:10.495127 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:10.496822 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-25T14:23:10.496891 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:10.497316 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T14:23:10.497374 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:10.498388 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-07-25T14:23:10.498537 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:10.499925 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-07-25T14:23:10.500528 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:10.502985 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.49 ms +I, [2018-07-25T14:23:10.503092 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:10.504445 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.63 ms +I, [2018-07-25T14:23:10.504510 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:10.505131 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-07-25T14:23:10.505172 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:10.505447 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T14:23:10.507594 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:10.509109 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.93 ms +I, [2018-07-25T14:23:10.509254 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:10.509739 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T14:23:10.509791 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:10.512732 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.45 ms +I, [2018-07-25T14:23:10.512799 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:10.513835 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-25T14:23:10.513910 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:10.514442 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-25T14:23:10.514639 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:10.515496 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.58 ms +I, [2018-07-25T14:23:10.515554 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:10.516187 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-07-25T14:23:10.516250 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:10.516528 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T14:23:10.516560 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:10.516781 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T14:23:10.516811 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:12.024268 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.74 ms +I, [2018-07-25T14:23:12.024320 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:12.024890 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-07-25T14:23:12.024927 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:12.025176 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-07-25T14:23:12.025207 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:12.025467 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T14:23:12.025523 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:12.026041 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.25 ms +I, [2018-07-25T14:23:12.026101 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:12.026486 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-07-25T14:23:12.026539 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:12.027122 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-07-25T14:23:12.027196 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:12.027576 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-07-25T14:23:12.027610 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:12.027859 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T14:23:12.027890 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:12.028123 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T14:23:12.028153 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:12.028909 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-07-25T14:23:12.028956 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:12.029490 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.3 ms +I, [2018-07-25T14:23:12.029652 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:12.029949 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T14:23:12.029988 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:12.030212 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T14:23:12.030258 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:12.030701 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-07-25T14:23:12.030769 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:12.517571 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T14:23:12.517622 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:12.517931 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T14:23:12.517983 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:12.518349 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-25T14:23:12.518381 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:12.518625 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T14:23:12.518655 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:12.518915 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T14:23:12.518946 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:12.519181 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T14:23:12.519211 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:12.519434 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T14:23:12.519506 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:12.520616 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T14:23:12.520674 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:12.521290 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T14:23:12.521339 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:12.521747 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T14:23:12.521803 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:12.522210 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T14:23:12.522259 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:12.522652 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T14:23:12.522729 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:12.523068 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T14:23:12.523114 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:12.523480 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T14:23:12.523529 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:12.525710 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.87 ms +I, [2018-07-25T14:23:12.526329 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:12.526775 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T14:23:12.526949 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:12.528143 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-25T14:23:12.528199 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:14.031457 #5] INFO -- : Committing offsets: course_change/0:342 +I, [2018-07-25T14:23:14.034823 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-07-25T14:23:14.034898 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:14.035282 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-07-25T14:23:14.035317 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:14.035611 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-07-25T14:23:14.035646 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:14.035888 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T14:23:14.035919 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:14.036329 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-07-25T14:23:14.036363 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:14.036589 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T14:23:14.036619 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:14.036831 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-07-25T14:23:14.036861 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:14.037072 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T14:23:14.037101 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:14.037448 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-07-25T14:23:14.037494 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:14.038064 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.37 ms +I, [2018-07-25T14:23:14.038109 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:14.038351 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T14:23:14.038379 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:14.038572 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-07-25T14:23:14.038667 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:14.039013 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-07-25T14:23:14.039064 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:14.039408 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-07-25T14:23:14.039458 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:14.528659 #5] INFO -- : Committing offsets: section_change/0:637 +I, [2018-07-25T14:23:14.532952 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T14:23:14.532996 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:14.533282 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T14:23:14.533312 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:14.533539 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T14:23:14.533568 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:14.533790 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T14:23:14.533820 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:14.534271 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-07-25T14:23:14.534306 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:14.534662 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T14:23:14.534746 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:14.535076 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T14:23:14.535913 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:14.536431 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T14:23:14.536490 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:14.536908 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T14:23:14.536961 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:14.537336 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T14:23:14.537389 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:14.537774 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T14:23:14.537902 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:14.538707 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-07-25T14:23:14.538762 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:14.539654 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.44 ms +I, [2018-07-25T14:23:14.539719 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:14.540905 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-07-25T14:23:14.541043 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:14.544236 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T14:23:14.544302 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:14.544551 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T14:23:14.544593 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:14.544820 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T14:23:14.544862 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:14.545075 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T14:23:14.545122 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:14.548654 #5] INFO -- : Inline processing of topic section_change with 1 messages took 2.14 ms +I, [2018-07-25T14:23:14.548726 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:14.549342 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-07-25T14:23:14.551940 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:14.552274 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T14:23:14.552306 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:14.552559 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T14:23:14.552607 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:14.552829 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T14:23:14.552860 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:14.553085 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T14:23:14.553116 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:14.553341 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T14:23:14.553371 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:14.553597 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T14:23:14.553627 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:14.553848 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T14:23:14.553885 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:14.554121 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T14:23:14.554151 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:14.554371 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T14:23:14.554400 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:14.554714 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T14:23:14.555960 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:14.558583 #5] INFO -- : Inline processing of topic section_change with 1 messages took 2.29 ms +I, [2018-07-25T14:23:14.558826 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:14.562699 #5] INFO -- : Inline processing of topic section_change with 1 messages took 3.55 ms +I, [2018-07-25T14:23:14.562758 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:14.564003 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.0 ms +I, [2018-07-25T14:23:14.564068 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:14.564378 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T14:23:14.564410 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:14.564638 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T14:23:14.564684 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:14.564936 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T14:23:14.564967 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:14.565183 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T14:23:14.565213 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:14.565463 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T14:23:14.565493 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:14.565726 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T14:23:14.565755 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:14.571199 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-07-25T14:23:14.572732 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:14.574234 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T14:23:14.574279 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:16.042327 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.89 ms +I, [2018-07-25T14:23:16.042593 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:16.043921 #5] INFO -- : Inline processing of topic course_change with 1 messages took 1.05 ms +I, [2018-07-25T14:23:16.044046 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:16.045611 #5] INFO -- : Inline processing of topic course_change with 1 messages took 1.01 ms +I, [2018-07-25T14:23:16.045676 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:16.046307 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.37 ms +I, [2018-07-25T14:23:16.046380 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:16.047837 #5] INFO -- : Inline processing of topic course_change with 1 messages took 1.24 ms +I, [2018-07-25T14:23:16.047888 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:16.048426 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.35 ms +I, [2018-07-25T14:23:16.048482 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:16.048993 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-07-25T14:23:16.050055 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:16.050664 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.34 ms +I, [2018-07-25T14:23:16.050714 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:16.053774 #5] INFO -- : Inline processing of topic course_change with 1 messages took 1.64 ms +I, [2018-07-25T14:23:16.053861 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:16.575637 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-07-25T14:23:16.575683 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:16.575959 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T14:23:16.575992 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:16.576208 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T14:23:16.576238 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:16.576540 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T14:23:16.576582 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:16.576922 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T14:23:16.576952 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:16.577195 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T14:23:16.577223 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:16.578277 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T14:23:16.578313 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:16.578562 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T14:23:16.578588 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:16.578848 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T14:23:16.578954 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:16.579263 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T14:23:16.579331 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:16.579826 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T14:23:16.579873 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:16.582410 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-07-25T14:23:16.582507 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:16.583575 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T14:23:16.583635 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:16.584108 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-25T14:23:16.584160 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:16.584674 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T14:23:16.584727 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:16.588650 #5] INFO -- : Inline processing of topic section_change with 1 messages took 3.69 ms +I, [2018-07-25T14:23:16.588721 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:16.589305 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-25T14:23:16.589360 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:16.590302 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.74 ms +I, [2018-07-25T14:23:16.590361 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:16.590816 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-25T14:23:16.590862 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:16.594959 #5] INFO -- : Inline processing of topic section_change with 1 messages took 3.87 ms +I, [2018-07-25T14:23:16.595036 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:16.596098 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-07-25T14:23:16.596158 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:16.599932 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.8 ms +I, [2018-07-25T14:23:16.602884 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:16.603238 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T14:23:16.603313 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:16.603590 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T14:23:16.603621 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:16.603841 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T14:23:16.603926 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:16.604169 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T14:23:16.604201 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:16.604416 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T14:23:16.604445 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:16.604650 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T14:23:16.604679 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:16.604926 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T14:23:16.604950 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:16.605200 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T14:23:16.605223 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:18.055044 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.34 ms +I, [2018-07-25T14:23:18.055106 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:18.055711 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.25 ms +I, [2018-07-25T14:23:18.055916 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:18.056466 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.33 ms +I, [2018-07-25T14:23:18.056561 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:18.056938 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-07-25T14:23:18.057021 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:18.057298 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-07-25T14:23:18.057329 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:18.057693 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-07-25T14:23:18.057787 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:18.657356 #5] INFO -- : Inline processing of topic section_change with 1 messages took 46.64 ms +I, [2018-07-25T14:23:18.657639 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:18.666890 #5] INFO -- : Inline processing of topic section_change with 1 messages took 6.6 ms +I, [2018-07-25T14:23:18.667012 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:18.670337 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.88 ms +I, [2018-07-25T14:23:18.670406 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:18.709195 #5] INFO -- : Inline processing of topic section_change with 1 messages took 37.13 ms +I, [2018-07-25T14:23:18.709287 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:18.722892 #5] INFO -- : Inline processing of topic section_change with 1 messages took 11.45 ms +I, [2018-07-25T14:23:18.734051 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:18.750968 #5] INFO -- : Inline processing of topic section_change with 1 messages took 16.57 ms +I, [2018-07-25T14:23:18.751154 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:18.752249 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.56 ms +I, [2018-07-25T14:23:18.764405 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:18.765972 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.05 ms +I, [2018-07-25T14:23:18.766117 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:18.766906 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.47 ms +I, [2018-07-25T14:23:18.770144 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:18.771385 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.55 ms +I, [2018-07-25T14:23:18.771514 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:18.787359 #5] INFO -- : Inline processing of topic section_change with 1 messages took 14.8 ms +I, [2018-07-25T14:23:18.787446 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:18.788148 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-07-25T14:23:18.788205 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:20.060216 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.23 ms +I, [2018-07-25T14:23:20.060294 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:20.060786 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.29 ms +I, [2018-07-25T14:23:20.060826 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:20.061135 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-07-25T14:23:20.061177 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:20.061482 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-07-25T14:23:20.061515 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:20.063452 #5] INFO -- : Inline processing of topic course_change with 1 messages took 1.75 ms +I, [2018-07-25T14:23:20.063534 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:20.789510 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-07-25T14:23:20.789564 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:20.789903 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T14:23:20.789935 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:20.790252 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T14:23:20.790283 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:20.790639 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T14:23:20.790669 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:20.791111 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T14:23:20.791203 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:20.791482 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T14:23:20.791514 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:22.064807 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-07-25T14:23:22.064857 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:22.065115 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-07-25T14:23:22.065146 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:22.065362 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T14:23:22.065517 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:22.065932 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-07-25T14:23:22.065973 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:22.066410 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-07-25T14:23:22.066501 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:22.066888 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-07-25T14:23:22.066940 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:22.067290 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-07-25T14:23:22.067340 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:22.067676 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-07-25T14:23:22.067726 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:22.068087 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-07-25T14:23:22.068127 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:22.068457 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-07-25T14:23:22.068503 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:22.068832 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-07-25T14:23:22.068879 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:22.069189 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-07-25T14:23:22.069235 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:22.070040 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.34 ms +I, [2018-07-25T14:23:22.070117 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:22.792887 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T14:23:22.793012 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:22.794191 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T14:23:22.794231 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:22.794485 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T14:23:22.794515 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:22.794763 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T14:23:22.794794 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:22.795164 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T14:23:22.795219 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:22.795596 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T14:23:22.795646 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:22.796031 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T14:23:22.796084 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:22.797431 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-07-25T14:23:22.797498 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:22.797906 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T14:23:22.797941 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:22.798167 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T14:23:22.798224 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:22.798451 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T14:23:22.799335 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:22.799645 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T14:23:22.799678 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:22.799893 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T14:23:22.800016 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:22.800413 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T14:23:22.800463 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:22.800826 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T14:23:22.800882 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:22.801257 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T14:23:22.801303 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:22.801792 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T14:23:22.801844 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:22.802513 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T14:23:22.802575 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:22.803251 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T14:23:22.803295 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:22.803662 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T14:23:22.803700 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:22.804052 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T14:23:22.805716 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:24.071263 #5] INFO -- : Committing offsets: course_change/0:389 +I, [2018-07-25T14:23:24.806576 #5] INFO -- : Committing offsets: section_change/0:747 +I, [2018-07-25T14:23:24.809657 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-07-25T14:23:24.809710 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:24.810054 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T14:23:24.810087 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:24.810521 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-07-25T14:23:24.810563 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:24.811143 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.43 ms +I, [2018-07-25T14:23:24.811178 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:24.811466 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T14:23:24.811497 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:24.811782 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T14:23:24.811813 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:24.812169 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T14:23:24.812210 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:24.813272 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T14:23:24.813315 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:24.813571 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T14:23:24.813609 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:24.813859 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T14:23:24.813911 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:26.077072 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.26 ms +I, [2018-07-25T14:23:26.077126 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:26.077405 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-07-25T14:23:26.077436 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:26.814607 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T14:23:26.814656 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:26.814931 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T14:23:26.814961 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:26.815242 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T14:23:26.815271 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:26.815592 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T14:23:26.815623 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:26.816455 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.41 ms +I, [2018-07-25T14:23:26.816494 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:26.816779 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T14:23:26.816810 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:26.817084 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T14:23:26.817114 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:28.818510 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-25T14:23:28.818558 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:28.818849 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T14:23:28.818879 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:28.819179 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T14:23:28.821188 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:28.821603 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T14:23:28.821636 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:28.822847 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T14:23:28.822884 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:28.823342 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-07-25T14:23:28.823396 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:28.824583 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-07-25T14:23:28.824643 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:28.824995 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T14:23:28.825026 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:30.080439 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-07-25T14:23:30.080488 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:30.080725 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T14:23:30.080755 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:30.825802 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T14:23:30.825851 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:30.826518 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.51 ms +I, [2018-07-25T14:23:30.827407 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:30.827739 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T14:23:30.827793 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:30.828046 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T14:23:30.828076 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:30.828389 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T14:23:30.828422 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:30.829100 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.41 ms +I, [2018-07-25T14:23:30.829426 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:30.829849 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T14:23:30.829882 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:30.830147 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T14:23:30.830202 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:30.830495 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T14:23:30.831208 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:30.831538 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T14:23:30.831594 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:32.081522 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.23 ms +I, [2018-07-25T14:23:32.081570 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:32.833269 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T14:23:32.833318 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:32.833604 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T14:23:32.833635 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:32.833874 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T14:23:32.833904 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:32.834261 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T14:23:32.834308 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:32.834583 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T14:23:32.834630 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:32.834956 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T14:23:32.835759 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:32.836113 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T14:23:32.836144 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:32.836383 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T14:23:32.836447 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:32.836823 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T14:23:32.836875 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:32.837324 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T14:23:32.837377 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:34.082237 #5] INFO -- : Committing offsets: course_change/0:394 +I, [2018-07-25T14:23:34.086124 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-07-25T14:23:34.086170 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:34.086444 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T14:23:34.086483 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:34.086709 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T14:23:34.086739 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:34.086963 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T14:23:34.086994 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:34.087217 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T14:23:34.087250 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:34.088579 #5] INFO -- : Inline processing of topic course_change with 1 messages took 1.18 ms +I, [2018-07-25T14:23:34.088729 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:34.089010 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-07-25T14:23:34.089111 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:34.089628 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.37 ms +I, [2018-07-25T14:23:34.090142 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:34.090503 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-07-25T14:23:34.090564 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:34.090792 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T14:23:34.090822 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:34.091042 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T14:23:34.091072 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:34.091389 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-07-25T14:23:34.091433 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:34.091743 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-07-25T14:23:34.091796 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:34.837827 #5] INFO -- : Committing offsets: section_change/0:792 +I, [2018-07-25T14:23:34.841392 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-07-25T14:23:34.841437 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:34.841719 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T14:23:34.841750 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:34.841999 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T14:23:34.842876 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:34.843321 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T14:23:34.843399 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:34.843660 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T14:23:34.843690 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:34.844002 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T14:23:34.844039 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:34.844442 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-25T14:23:34.844493 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:34.844889 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T14:23:34.844937 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:34.845303 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T14:23:34.845351 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:34.845726 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T14:23:34.845827 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:34.846098 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T14:23:34.846172 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:34.846448 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T14:23:34.846478 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:34.847577 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T14:23:34.847612 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:36.093210 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.27 ms +I, [2018-07-25T14:23:36.093261 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:36.093532 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-07-25T14:23:36.093564 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:36.093761 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-07-25T14:23:36.093814 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:36.094032 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T14:23:36.094063 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:36.094293 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T14:23:36.094322 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:36.094537 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T14:23:36.094566 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:36.094765 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-07-25T14:23:36.094794 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:36.095019 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-07-25T14:23:36.095049 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:36.095243 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-07-25T14:23:36.095272 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:36.095592 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-07-25T14:23:36.095670 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:36.095968 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T14:23:36.096012 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:36.096288 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T14:23:36.096328 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:36.849187 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T14:23:36.849244 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:36.849519 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T14:23:36.849550 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:36.849809 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T14:23:36.849840 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:36.850119 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T14:23:36.850149 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:36.850367 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T14:23:36.850396 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:36.850653 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T14:23:36.851239 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:36.851689 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-07-25T14:23:36.852460 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:36.852975 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-25T14:23:36.853088 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:36.853540 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-25T14:23:36.853600 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:36.853875 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T14:23:36.853959 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:36.854321 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T14:23:36.854372 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:36.854757 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T14:23:36.855084 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:36.855548 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-25T14:23:36.855604 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:36.856017 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T14:23:36.856060 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:38.097718 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.3 ms +I, [2018-07-25T14:23:38.097807 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:38.098358 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.34 ms +I, [2018-07-25T14:23:38.098462 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:38.098947 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.23 ms +I, [2018-07-25T14:23:38.099382 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:38.099889 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.27 ms +I, [2018-07-25T14:23:38.099941 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:38.100364 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.24 ms +I, [2018-07-25T14:23:38.100409 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:38.100692 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T14:23:38.100734 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:38.101426 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-07-25T14:23:38.101484 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:38.101879 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-07-25T14:23:38.101964 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:38.102576 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T14:23:38.102616 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:38.102854 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T14:23:38.102889 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:38.103122 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T14:23:38.103163 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:38.103400 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-07-25T14:23:38.103430 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:38.103658 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-07-25T14:23:38.104652 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:38.857789 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-25T14:23:38.857857 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:38.858257 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T14:23:38.858300 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:38.858636 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T14:23:38.858676 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:38.859015 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T14:23:38.859108 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:38.859420 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T14:23:38.859460 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:38.859780 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T14:23:38.859820 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:38.860121 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T14:23:38.860160 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:38.860476 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T14:23:38.860544 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:38.868948 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T14:23:38.869006 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:38.869338 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T14:23:38.869381 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:38.869706 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T14:23:38.869746 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:38.870081 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T14:23:38.870132 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:38.871115 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.68 ms +I, [2018-07-25T14:23:38.871235 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:38.871978 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-07-25T14:23:38.872051 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:38.872467 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T14:23:38.872517 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:40.105349 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-07-25T14:23:40.105399 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:40.105807 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-07-25T14:23:40.105842 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:40.107638 #5] INFO -- : Inline processing of topic course_change with 1 messages took 1.53 ms +I, [2018-07-25T14:23:40.107885 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:40.109117 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.76 ms +I, [2018-07-25T14:23:40.109244 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:40.109972 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-07-25T14:23:40.110030 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:40.110580 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.29 ms +I, [2018-07-25T14:23:40.110639 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:40.111259 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.24 ms +I, [2018-07-25T14:23:40.111315 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:40.111832 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-07-25T14:23:40.111871 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:40.112122 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T14:23:40.112153 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:40.112379 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T14:23:40.112409 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:40.873903 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-25T14:23:40.873953 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:40.874208 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T14:23:40.874244 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:40.874475 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T14:23:40.874505 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:40.874775 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T14:23:40.874808 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:40.875103 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T14:23:40.875966 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:40.876627 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T14:23:40.876682 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:40.879996 #5] INFO -- : Inline processing of topic section_change with 1 messages took 3.11 ms +I, [2018-07-25T14:23:40.880087 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:40.880409 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T14:23:40.880478 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:40.880740 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T14:23:40.880783 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:40.881033 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T14:23:40.881063 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:40.881303 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T14:23:40.881333 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:40.881558 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T14:23:40.881589 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:40.881773 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T14:23:40.881846 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:40.882071 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T14:23:40.882100 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:40.882328 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T14:23:40.882393 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:40.884192 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T14:23:40.884235 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:40.885719 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.27 ms +I, [2018-07-25T14:23:40.885856 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:40.888390 #5] INFO -- : Inline processing of topic section_change with 1 messages took 2.28 ms +I, [2018-07-25T14:23:40.888694 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:40.889706 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.75 ms +I, [2018-07-25T14:23:40.889750 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:40.890273 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-07-25T14:23:40.890313 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:40.890619 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T14:23:40.890653 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:40.890854 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T14:23:40.890944 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:40.891193 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T14:23:40.891220 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:40.891807 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T14:23:40.891969 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:40.892472 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T14:23:40.892508 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:40.892951 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-25T14:23:40.893068 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:40.894450 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-07-25T14:23:40.895127 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:40.895650 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T14:23:40.895701 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:40.898187 #5] INFO -- : Inline processing of topic section_change with 1 messages took 2.21 ms +I, [2018-07-25T14:23:40.898236 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:40.898822 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T14:23:40.898859 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:40.899147 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T14:23:40.899178 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:40.899430 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T14:23:40.899460 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:40.899758 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T14:23:40.899788 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:40.900374 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T14:23:40.900412 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:40.900882 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T14:23:40.900976 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:40.901369 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-25T14:23:40.901412 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:40.901715 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T14:23:40.901747 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:40.902325 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.46 ms +I, [2018-07-25T14:23:40.902389 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:40.904232 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T14:23:40.904324 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:40.907419 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-07-25T14:23:40.907478 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:40.907787 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T14:23:40.907819 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:40.908066 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T14:23:40.908139 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:40.908384 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T14:23:40.908415 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:40.909466 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-07-25T14:23:40.909534 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:40.909976 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T14:23:40.910022 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:40.910410 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T14:23:40.910456 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:40.911267 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T14:23:40.911333 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:40.911820 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T14:23:40.911894 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:40.912162 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T14:23:40.912210 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:40.912521 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T14:23:40.912800 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:40.913562 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.41 ms +I, [2018-07-25T14:23:40.913623 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:40.914445 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-25T14:23:40.914494 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:40.914947 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T14:23:40.915002 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:40.915465 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T14:23:40.915520 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:40.915941 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T14:23:40.915994 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:40.916508 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-07-25T14:23:40.916592 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:40.917110 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-25T14:23:40.917188 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:40.917500 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T14:23:40.917538 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:40.918130 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T14:23:40.918197 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:40.919721 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T14:23:40.919771 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:40.921010 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.07 ms +I, [2018-07-25T14:23:40.923176 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:40.923507 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T14:23:40.923552 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:40.925367 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-07-25T14:23:40.925598 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:40.928718 #5] INFO -- : Inline processing of topic section_change with 1 messages took 2.03 ms +I, [2018-07-25T14:23:40.928772 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:40.929077 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T14:23:40.930234 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:40.930522 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T14:23:40.930555 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:40.932396 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.68 ms +I, [2018-07-25T14:23:40.932464 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:40.932865 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T14:23:40.932912 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:40.934481 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T14:23:40.934543 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:40.936093 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.33 ms +I, [2018-07-25T14:23:40.936160 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:40.936546 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T14:23:40.936583 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:40.937289 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.58 ms +I, [2018-07-25T14:23:40.937326 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:40.938099 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.56 ms +I, [2018-07-25T14:23:40.938154 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:40.942222 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.77 ms +I, [2018-07-25T14:23:40.942305 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:40.942620 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T14:23:40.942653 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:40.943125 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-07-25T14:23:40.943160 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:40.943426 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T14:23:40.943460 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:40.944166 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T14:23:40.944204 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:40.945630 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.23 ms +I, [2018-07-25T14:23:40.945701 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:40.946194 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-07-25T14:23:40.946244 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:40.947173 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.75 ms +I, [2018-07-25T14:23:40.947212 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:40.947802 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T14:23:40.947840 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:40.948748 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T14:23:40.948787 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:42.114534 #5] INFO -- : Inline processing of topic course_change with 1 messages took 1.06 ms +I, [2018-07-25T14:23:42.114604 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:42.114919 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-07-25T14:23:42.114953 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:42.115929 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.71 ms +I, [2018-07-25T14:23:42.115986 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:42.116307 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-07-25T14:23:42.116352 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:42.118111 #5] INFO -- : Inline processing of topic course_change with 1 messages took 1.6 ms +I, [2018-07-25T14:23:42.118185 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:42.118780 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.31 ms +I, [2018-07-25T14:23:42.118824 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:42.119799 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-07-25T14:23:42.119843 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:42.950160 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T14:23:42.950211 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:42.950959 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.61 ms +I, [2018-07-25T14:23:42.950998 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:42.953407 #5] INFO -- : Inline processing of topic section_change with 1 messages took 2.26 ms +I, [2018-07-25T14:23:42.953447 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:42.953715 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T14:23:42.954002 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:42.954795 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.48 ms +I, [2018-07-25T14:23:42.954834 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:42.955089 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T14:23:42.955120 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:42.955359 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T14:23:42.955388 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:42.955626 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T14:23:42.955663 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:42.956001 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T14:23:42.956055 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:42.956438 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T14:23:42.957802 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:42.958455 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.4 ms +I, [2018-07-25T14:23:42.958495 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:42.958780 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T14:23:42.958811 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:42.959078 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T14:23:42.959840 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:42.960694 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.64 ms +I, [2018-07-25T14:23:42.960762 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:44.120337 #5] INFO -- : Committing offsets: course_change/0:449 +I, [2018-07-25T14:23:44.134067 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.39 ms +I, [2018-07-25T14:23:44.134124 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:44.134709 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-07-25T14:23:44.134761 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:44.135253 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-07-25T14:23:44.135293 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:44.135555 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-07-25T14:23:44.135587 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:44.136134 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.39 ms +I, [2018-07-25T14:23:44.136208 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:44.137036 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.49 ms +I, [2018-07-25T14:23:44.137134 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:44.137673 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.28 ms +I, [2018-07-25T14:23:44.137886 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:44.138557 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.33 ms +I, [2018-07-25T14:23:44.138680 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:44.139177 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.25 ms +I, [2018-07-25T14:23:44.139233 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:44.139567 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-07-25T14:23:44.140460 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:44.961256 #5] INFO -- : Committing offsets: section_change/0:931 +I, [2018-07-25T14:23:44.966173 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-07-25T14:23:44.966225 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:44.966529 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T14:23:44.966572 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:44.967110 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-25T14:23:44.967150 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:44.967454 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T14:23:44.967485 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:44.967737 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T14:23:44.967767 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:44.968056 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T14:23:44.968109 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:44.968371 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T14:23:44.968400 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:44.968689 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T14:23:44.969208 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:44.969691 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T14:23:44.969726 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:44.970147 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T14:23:44.970231 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:44.970608 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T14:23:44.970718 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:44.971235 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T14:23:44.971331 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:44.971744 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T14:23:44.971795 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:46.141605 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.33 ms +I, [2018-07-25T14:23:46.141671 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:46.142201 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.29 ms +I, [2018-07-25T14:23:46.142269 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:46.142714 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-07-25T14:23:46.142774 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:46.143182 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-07-25T14:23:46.143221 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:46.143477 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T14:23:46.143512 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:46.973497 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-07-25T14:23:46.973547 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:46.973924 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T14:23:46.973982 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:46.974439 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T14:23:46.974762 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:46.975207 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T14:23:46.977230 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:46.977834 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-07-25T14:23:46.977883 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:48.144285 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-07-25T14:23:48.144340 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:48.144617 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T14:23:48.144648 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:48.144892 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-07-25T14:23:48.144933 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:48.145154 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T14:23:48.146002 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:48.146281 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-07-25T14:23:48.146319 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:48.978957 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-07-25T14:23:48.979017 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:48.979368 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T14:23:48.979401 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:48.979680 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T14:23:48.979711 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:48.979989 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T14:23:48.980020 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:48.980272 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T14:23:48.980301 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:48.980834 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.41 ms +I, [2018-07-25T14:23:48.980878 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:48.986300 #5] INFO -- : Inline processing of topic section_change with 1 messages took 4.97 ms +I, [2018-07-25T14:23:48.986386 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:48.986929 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-07-25T14:23:48.986976 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:50.147055 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-07-25T14:23:50.147104 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:50.147394 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T14:23:50.147425 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:50.147663 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T14:23:50.147694 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:50.147934 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T14:23:50.147981 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:50.148194 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T14:23:50.148223 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:50.148452 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T14:23:50.148485 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:50.989215 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.31 ms +I, [2018-07-25T14:23:50.989262 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:50.989564 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T14:23:50.989596 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:50.989858 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T14:23:50.989887 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:50.990099 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T14:23:50.990128 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:50.990338 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T14:23:50.990367 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:50.990598 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T14:23:50.990627 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:50.990869 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T14:23:50.990898 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:50.991138 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T14:23:50.991167 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:50.991393 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T14:23:50.991422 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:52.149330 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-07-25T14:23:52.149377 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:52.149713 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-07-25T14:23:52.150815 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:52.151260 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-07-25T14:23:52.151297 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:52.151552 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-07-25T14:23:52.151581 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:52.151792 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-07-25T14:23:52.151821 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:52.152108 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-07-25T14:23:52.152158 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:52.152508 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-07-25T14:23:52.152556 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:52.153960 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.29 ms +I, [2018-07-25T14:23:52.154006 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:52.995209 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.5 ms +I, [2018-07-25T14:23:52.995700 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:52.998398 #5] INFO -- : Inline processing of topic section_change with 1 messages took 2.32 ms +I, [2018-07-25T14:23:52.998451 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:52.999918 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.16 ms +I, [2018-07-25T14:23:53.000286 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:53.003488 #5] INFO -- : Inline processing of topic section_change with 1 messages took 2.75 ms +I, [2018-07-25T14:23:53.003558 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:53.004452 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.57 ms +I, [2018-07-25T14:23:53.004568 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:53.005987 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.17 ms +I, [2018-07-25T14:23:53.006532 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:53.007286 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.48 ms +I, [2018-07-25T14:23:53.007350 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:53.008641 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.55 ms +I, [2018-07-25T14:23:53.008707 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:53.009868 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.94 ms +I, [2018-07-25T14:23:53.009942 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:54.154566 #5] INFO -- : Committing offsets: course_change/0:483 +I, [2018-07-25T14:23:54.160127 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.37 ms +I, [2018-07-25T14:23:54.160409 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:54.160741 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T14:23:54.160898 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:54.161098 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-07-25T14:23:54.161220 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:54.161524 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-07-25T14:23:54.162085 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:54.162638 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-07-25T14:23:54.162673 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:54.162971 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-07-25T14:23:54.163005 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:54.163570 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.26 ms +I, [2018-07-25T14:23:54.163625 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:55.011469 #5] INFO -- : Committing offsets: section_change/0:975 +I, [2018-07-25T14:23:55.015002 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-07-25T14:23:55.015047 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:55.015384 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T14:23:55.015467 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:55.015728 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T14:23:55.015759 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:55.016343 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T14:23:55.016381 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:55.016677 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T14:23:55.016706 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:55.017100 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T14:23:55.017155 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:55.017498 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T14:23:55.017524 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:55.017811 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T14:23:55.017890 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:55.018208 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T14:23:55.018240 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:55.018588 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T14:23:55.018619 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:55.018924 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T14:23:55.018963 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:56.164430 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-07-25T14:23:56.164491 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:56.164748 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-07-25T14:23:56.164792 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:56.165032 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-07-25T14:23:56.165061 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:56.165339 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-07-25T14:23:56.166213 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:56.166546 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-07-25T14:23:56.166578 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:56.166820 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-07-25T14:23:56.166876 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:56.167091 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-07-25T14:23:56.167149 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:56.167438 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-07-25T14:23:56.167486 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:57.020851 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-25T14:23:57.020901 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:57.021255 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T14:23:57.021290 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:57.021586 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T14:23:57.021617 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:57.021936 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T14:23:57.021968 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:57.022389 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-07-25T14:23:57.022541 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:57.022891 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T14:23:57.022953 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:57.023553 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.41 ms +I, [2018-07-25T14:23:57.023612 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:57.024120 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-07-25T14:23:57.024186 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:57.024707 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-07-25T14:23:57.024747 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:57.025385 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.42 ms +I, [2018-07-25T14:23:57.025440 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:58.170204 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-07-25T14:23:58.170276 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:58.170592 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-07-25T14:23:58.170624 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:58.170890 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-07-25T14:23:58.170920 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:58.171153 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T14:23:58.171182 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:58.171755 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.42 ms +I, [2018-07-25T14:23:58.171802 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:58.172102 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-07-25T14:23:58.172424 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:58.172879 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-07-25T14:23:58.172934 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:58.173343 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-07-25T14:23:58.173393 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:58.173902 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-07-25T14:23:58.173986 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:58.174441 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-07-25T14:23:58.174494 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:58.174892 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-07-25T14:23:58.174946 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:58.175295 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T14:23:58.175371 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:23:59.026568 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-07-25T14:23:59.026618 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:59.026925 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T14:23:59.026957 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:59.027628 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.43 ms +I, [2018-07-25T14:23:59.027671 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:59.028024 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T14:23:59.028064 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:59.028437 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T14:23:59.028472 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:59.028740 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T14:23:59.028770 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:59.029047 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T14:23:59.029077 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:59.029564 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-07-25T14:23:59.029623 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:59.030242 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T14:23:59.030295 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:59.030742 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-07-25T14:23:59.030792 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:23:59.031832 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.85 ms +I, [2018-07-25T14:23:59.031910 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:00.176586 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.24 ms +I, [2018-07-25T14:24:00.176648 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:24:00.176966 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-07-25T14:24:00.177930 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:24:00.178395 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-07-25T14:24:00.178451 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:24:00.179424 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-07-25T14:24:00.184249 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:24:00.184844 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.3 ms +I, [2018-07-25T14:24:00.184894 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:24:00.185275 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-07-25T14:24:00.185321 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:24:00.185661 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-07-25T14:24:00.185707 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:24:00.186064 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-07-25T14:24:00.186110 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:24:00.186444 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-07-25T14:24:00.186489 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:24:01.033454 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-07-25T14:24:01.033507 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:01.033843 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T14:24:01.034920 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:01.035345 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T14:24:01.035382 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:01.035656 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T14:24:01.035687 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:01.035936 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T14:24:01.035972 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:01.036251 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T14:24:01.036311 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:01.037660 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T14:24:01.037714 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:01.038061 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T14:24:01.038110 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:01.038522 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T14:24:01.038560 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:01.038793 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T14:24:01.038843 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:01.039057 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T14:24:01.039087 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:01.039295 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T14:24:01.039324 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:01.039542 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T14:24:01.039616 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:01.040796 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T14:24:01.040833 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:01.042437 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-25T14:24:01.042505 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:01.042938 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T14:24:01.042990 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:01.043391 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T14:24:01.043945 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:01.044288 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T14:24:01.044338 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:01.045737 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.19 ms +I, [2018-07-25T14:24:01.045779 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:01.046061 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T14:24:01.046091 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:01.046312 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T14:24:01.046341 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:01.046559 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T14:24:01.046588 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:01.046808 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T14:24:01.046837 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:01.047047 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T14:24:01.047076 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:01.047329 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T14:24:01.048437 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:01.051252 #5] INFO -- : Inline processing of topic section_change with 1 messages took 2.55 ms +I, [2018-07-25T14:24:01.051348 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:01.051804 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T14:24:01.051850 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:01.053780 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T14:24:01.053814 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:01.054066 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T14:24:01.054096 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:01.054315 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T14:24:01.054345 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:01.054547 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T14:24:01.054576 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:01.056111 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T14:24:01.056165 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:01.056511 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T14:24:01.056544 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:01.056772 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T14:24:01.056802 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:01.057022 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T14:24:01.057052 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:01.057263 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T14:24:01.057330 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:01.059988 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.35 ms +I, [2018-07-25T14:24:01.060057 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:01.061342 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T14:24:01.061424 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:01.061865 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T14:24:01.061918 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:01.062671 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T14:24:01.066033 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:01.066454 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T14:24:01.066492 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:01.066729 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T14:24:01.066760 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:01.067149 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T14:24:01.067183 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:01.067427 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T14:24:01.067494 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:01.067686 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T14:24:01.067749 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:01.067938 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T14:24:01.067967 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:01.068182 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T14:24:01.068211 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:01.073991 #5] INFO -- : Inline processing of topic section_change with 1 messages took 4.41 ms +I, [2018-07-25T14:24:01.074087 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:01.077584 #5] INFO -- : Inline processing of topic section_change with 1 messages took 2.93 ms +I, [2018-07-25T14:24:01.077648 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:01.079491 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.27 ms +I, [2018-07-25T14:24:01.079556 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:01.079908 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T14:24:01.079941 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:01.080170 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T14:24:01.080199 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:01.080428 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T14:24:01.080457 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:01.080688 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T14:24:01.080717 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:01.080946 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T14:24:01.080976 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:01.081186 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T14:24:01.081215 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:01.081426 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T14:24:01.081455 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:01.081739 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T14:24:01.081779 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:01.082197 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-25T14:24:01.082361 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:01.084504 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.73 ms +I, [2018-07-25T14:24:01.084580 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:01.085053 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T14:24:01.085107 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:01.085525 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T14:24:01.085581 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:01.086027 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T14:24:01.086291 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:01.086666 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T14:24:01.086712 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:01.087270 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-25T14:24:01.087327 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:01.087776 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-25T14:24:01.087829 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:01.088248 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T14:24:01.088302 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:01.088706 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T14:24:01.089437 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:01.089994 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-07-25T14:24:01.090058 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:01.090626 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-25T14:24:01.090700 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:01.091299 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-07-25T14:24:01.092290 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:01.092844 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T14:24:01.092901 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:01.093275 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T14:24:01.093310 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:01.093568 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T14:24:01.093734 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:01.094273 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T14:24:01.094327 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:01.094799 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T14:24:01.094849 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:01.095234 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T14:24:01.095289 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:01.095891 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.4 ms +I, [2018-07-25T14:24:01.095948 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:01.096411 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T14:24:01.096466 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:01.096843 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T14:24:01.096899 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:01.099144 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-07-25T14:24:01.099223 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:01.099726 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T14:24:01.101068 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:01.102841 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.29 ms +I, [2018-07-25T14:24:01.102910 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:01.103771 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.4 ms +I, [2018-07-25T14:24:01.103947 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:01.104500 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T14:24:01.104546 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:01.104877 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T14:24:01.104918 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:01.105304 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T14:24:01.105348 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:01.105660 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T14:24:01.105700 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:02.187207 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-07-25T14:24:02.187258 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:24:02.187508 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T14:24:02.187561 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:24:02.187778 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-07-25T14:24:02.187809 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:24:02.188068 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-07-25T14:24:02.188111 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:24:02.188338 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T14:24:02.188367 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:24:03.106600 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T14:24:03.107843 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:03.108303 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T14:24:03.108344 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:03.108603 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T14:24:03.108644 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:03.108884 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T14:24:03.108936 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:03.109268 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T14:24:03.109319 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:03.109672 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T14:24:03.109732 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:03.110085 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T14:24:03.110150 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:03.110485 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T14:24:03.110542 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:03.110896 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T14:24:03.110954 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:03.111234 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T14:24:03.111271 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:03.112239 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.83 ms +I, [2018-07-25T14:24:03.112294 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:03.113443 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-07-25T14:24:03.113518 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:03.114759 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T14:24:03.114802 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:03.115060 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T14:24:03.115092 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:03.115329 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T14:24:03.115383 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:03.115662 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T14:24:03.115708 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:03.116185 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T14:24:03.116241 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:03.116661 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T14:24:03.116752 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:03.117140 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T14:24:03.117190 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:03.117570 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T14:24:03.117617 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:03.118035 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-25T14:24:03.118115 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:03.120116 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-07-25T14:24:03.120175 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:03.120670 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T14:24:03.120759 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:04.188999 #5] INFO -- : Committing offsets: course_change/0:524 +I, [2018-07-25T14:24:04.192503 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-07-25T14:24:04.192550 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:24:04.192886 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-07-25T14:24:04.192919 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:24:05.121436 #5] INFO -- : Committing offsets: section_change/0:1118 +I, [2018-07-25T14:24:05.125335 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-25T14:24:05.125381 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:05.125742 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T14:24:05.125811 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:05.126199 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T14:24:05.126266 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:05.126574 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T14:24:05.126613 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:05.127474 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-07-25T14:24:05.127512 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:05.129062 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-07-25T14:24:05.129143 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:05.129594 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T14:24:05.129644 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:05.130405 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.45 ms +I, [2018-07-25T14:24:05.130474 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:05.130963 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-07-25T14:24:05.131021 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:05.132088 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.85 ms +I, [2018-07-25T14:24:05.132152 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:07.135188 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-07-25T14:24:07.135255 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:07.135654 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T14:24:07.135733 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:07.136651 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-07-25T14:24:07.136738 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:07.137189 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-07-25T14:24:07.137235 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:07.137606 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T14:24:07.137650 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:07.138047 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-25T14:24:07.138091 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:07.138426 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T14:24:07.138469 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:07.138850 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T14:24:07.138894 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:07.139321 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-25T14:24:07.139372 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:07.140782 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.2 ms +I, [2018-07-25T14:24:07.140852 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:08.194138 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-07-25T14:24:08.194187 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:24:08.194429 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-07-25T14:24:08.195298 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:24:09.141603 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T14:24:09.141651 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:09.141949 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T14:24:09.141984 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:09.142305 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T14:24:09.142373 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:09.142772 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T14:24:09.142853 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:09.143168 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T14:24:09.143200 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:09.143522 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T14:24:09.143553 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:09.143941 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-07-25T14:24:09.144057 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:09.144615 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-07-25T14:24:09.144702 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:09.145195 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-07-25T14:24:09.145249 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:09.145686 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T14:24:09.145737 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:10.196431 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.25 ms +I, [2018-07-25T14:24:10.196573 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:24:10.196990 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-07-25T14:24:10.197039 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:24:10.197467 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-07-25T14:24:10.197575 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:24:11.146836 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-25T14:24:11.146886 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:11.147490 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-07-25T14:24:11.147626 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:11.148311 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T14:24:11.148349 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:11.148724 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T14:24:11.148772 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:11.149180 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-07-25T14:24:11.149433 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:11.150373 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.63 ms +I, [2018-07-25T14:24:11.150516 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:11.150976 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T14:24:11.151011 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:11.151302 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T14:24:11.151333 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:11.151591 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T14:24:11.151627 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:13.154476 #5] INFO -- : Inline processing of topic section_change with 1 messages took 2.22 ms +I, [2018-07-25T14:24:13.154584 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:13.155397 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-07-25T14:24:13.155452 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:13.155885 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T14:24:13.155935 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:13.156248 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T14:24:13.156310 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:13.156555 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T14:24:13.156586 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:13.156822 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T14:24:13.156852 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:13.157085 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T14:24:13.157115 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:13.157409 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T14:24:13.157439 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:13.158100 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-07-25T14:24:13.158146 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:14.199606 #5] INFO -- : Committing offsets: course_change/0:531 +I, [2018-07-25T14:24:14.212601 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-07-25T14:24:14.212649 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:24:14.212913 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-07-25T14:24:14.212944 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:24:14.213193 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-07-25T14:24:14.213223 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:24:15.160061 #5] INFO -- : Committing offsets: section_change/0:1166 +I, [2018-07-25T14:24:15.165206 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T14:24:15.165250 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:15.166526 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T14:24:15.166578 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:15.166968 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T14:24:15.167022 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:15.167497 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T14:24:15.167574 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:15.168038 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T14:24:15.168133 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:15.168594 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-07-25T14:24:15.168798 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:15.169216 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-07-25T14:24:15.169296 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:16.214250 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.24 ms +I, [2018-07-25T14:24:16.214329 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:24:17.170252 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-25T14:24:17.170303 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:17.170798 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T14:24:17.170843 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:17.171221 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T14:24:17.171264 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:17.171731 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-07-25T14:24:17.171774 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:17.172185 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-25T14:24:17.172246 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:17.173067 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.61 ms +I, [2018-07-25T14:24:17.173280 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:17.174304 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-07-25T14:24:17.174420 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:17.176242 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.56 ms +I, [2018-07-25T14:24:17.177983 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:17.178403 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T14:24:17.178462 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:18.377246 #5] INFO -- : Inline processing of topic course_change with 1 messages took 113.11 ms +I, [2018-07-25T14:24:18.377368 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:24:18.377926 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.29 ms +I, [2018-07-25T14:24:18.377977 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:24:18.378377 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-07-25T14:24:18.378424 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:24:19.181744 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.75 ms +I, [2018-07-25T14:24:19.182076 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:19.184228 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.64 ms +I, [2018-07-25T14:24:19.184600 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:20.380306 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.49 ms +I, [2018-07-25T14:24:20.380380 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:24:21.185759 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-07-25T14:24:21.185819 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:21.186153 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T14:24:21.186197 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:21.186562 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T14:24:21.186617 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:21.187331 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-07-25T14:24:21.187372 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:22.381240 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-07-25T14:24:22.381335 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:24:23.228911 #5] INFO -- : Inline processing of topic section_change with 1 messages took 25.15 ms +I, [2018-07-25T14:24:23.230552 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:23.268781 #5] INFO -- : Inline processing of topic section_change with 1 messages took 8.2 ms +I, [2018-07-25T14:24:23.268887 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:23.269773 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.42 ms +I, [2018-07-25T14:24:23.269905 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:23.270553 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-07-25T14:24:23.270628 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:23.272710 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.7 ms +I, [2018-07-25T14:24:23.272781 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:23.273985 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-07-25T14:24:23.274047 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:23.274797 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.45 ms +I, [2018-07-25T14:24:23.275067 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:24.381865 #5] INFO -- : Committing offsets: course_change/0:540 +I, [2018-07-25T14:24:25.276563 #5] INFO -- : Committing offsets: section_change/0:1195 +I, [2018-07-25T14:24:25.284548 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.65 ms +I, [2018-07-25T14:24:25.284785 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:25.285866 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-25T14:24:25.287006 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:25.287910 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.49 ms +I, [2018-07-25T14:24:25.287973 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:25.288516 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T14:24:25.288569 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:25.289917 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.98 ms +I, [2018-07-25T14:24:25.290146 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:25.290701 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-07-25T14:24:25.290777 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:26.390597 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-07-25T14:24:26.390646 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:24:26.390880 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-07-25T14:24:26.390929 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:24:26.391163 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-07-25T14:24:26.391194 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:24:26.391376 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.07 ms +I, [2018-07-25T14:24:26.391406 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:24:26.391654 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-07-25T14:24:26.391683 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:24:26.392158 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.32 ms +I, [2018-07-25T14:24:26.392259 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:24:26.393698 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-07-25T14:24:26.393743 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:24:27.292284 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-25T14:24:27.292333 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:27.292621 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T14:24:27.292651 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:27.292940 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T14:24:27.292970 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:27.293797 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.69 ms +I, [2018-07-25T14:24:27.293846 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:27.294178 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T14:24:27.294209 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:27.294488 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T14:24:27.294517 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:27.294779 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T14:24:27.294808 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:28.488851 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.53 ms +I, [2018-07-25T14:24:28.488929 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:24:29.296129 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.49 ms +I, [2018-07-25T14:24:29.296225 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:29.296594 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T14:24:29.296637 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:29.296997 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-25T14:24:29.297029 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:29.297404 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T14:24:29.297514 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:30.489978 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-07-25T14:24:30.490040 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:24:30.490474 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-07-25T14:24:30.490506 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:24:31.298823 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-07-25T14:24:31.298900 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:31.299529 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-07-25T14:24:31.299584 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:31.300849 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-07-25T14:24:31.300904 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:31.301284 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T14:24:31.301327 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:32.491381 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.32 ms +I, [2018-07-25T14:24:32.491468 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:24:32.491884 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.27 ms +I, [2018-07-25T14:24:32.491923 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:24:32.492508 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-07-25T14:24:32.492556 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:24:32.492814 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-07-25T14:24:32.492844 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:24:32.493053 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-07-25T14:24:32.493082 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:24:32.493320 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-07-25T14:24:32.493350 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:24:32.493841 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-07-25T14:24:32.493873 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:24:33.303212 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.14 ms +I, [2018-07-25T14:24:33.303273 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:33.303584 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T14:24:33.303616 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:33.304156 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-07-25T14:24:33.304389 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:33.305354 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T14:24:33.305391 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:33.305716 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T14:24:33.305752 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:33.306119 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T14:24:33.306153 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:33.306501 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T14:24:33.306545 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:33.306931 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T14:24:33.306963 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:34.495133 #5] INFO -- : Committing offsets: course_change/0:557 +I, [2018-07-25T14:24:34.501467 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.27 ms +I, [2018-07-25T14:24:34.501513 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:24:35.307643 #5] INFO -- : Committing offsets: section_change/0:1224 +I, [2018-07-25T14:24:35.311808 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-25T14:24:35.311904 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:35.312315 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T14:24:35.312350 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:35.312610 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T14:24:35.312648 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:35.312982 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T14:24:35.313013 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:36.502954 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-07-25T14:24:36.503058 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:24:36.503324 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T14:24:36.503355 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:24:36.503574 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-07-25T14:24:36.503625 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:24:36.504574 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-07-25T14:24:36.504619 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:24:36.504892 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-07-25T14:24:36.504922 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:24:36.505190 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-07-25T14:24:36.505219 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:24:36.505706 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.34 ms +I, [2018-07-25T14:24:36.505766 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:24:36.506127 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-07-25T14:24:36.506294 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:24:36.506651 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-07-25T14:24:36.506700 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:24:36.507073 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-07-25T14:24:36.507152 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:24:37.314547 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.45 ms +I, [2018-07-25T14:24:37.314595 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:37.314880 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T14:24:37.314911 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:37.315357 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-07-25T14:24:37.315486 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:37.315892 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T14:24:37.316048 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:37.316410 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T14:24:37.316442 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:37.316640 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T14:24:37.316685 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:37.316912 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T14:24:37.316950 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:37.317241 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T14:24:37.317288 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:37.317641 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T14:24:37.317689 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:37.318027 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T14:24:37.318075 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:37.318379 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T14:24:37.318461 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:37.318818 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T14:24:37.318868 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:37.319137 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T14:24:37.319855 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:37.320507 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-25T14:24:37.320619 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:37.322859 #5] INFO -- : Inline processing of topic section_change with 1 messages took 2.01 ms +I, [2018-07-25T14:24:37.322937 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:37.323522 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-07-25T14:24:37.323579 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:37.324057 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-25T14:24:37.324106 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:37.324531 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-25T14:24:37.324583 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:38.507985 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.23 ms +I, [2018-07-25T14:24:38.508034 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:24:38.508372 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-07-25T14:24:38.508417 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:24:38.508875 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.26 ms +I, [2018-07-25T14:24:38.508928 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:24:38.509289 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-07-25T14:24:38.509326 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:24:38.509588 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T14:24:38.509619 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:24:38.509870 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T14:24:38.509900 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:24:39.327092 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.71 ms +I, [2018-07-25T14:24:39.327263 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:39.327857 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-07-25T14:24:39.327918 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:39.328405 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-07-25T14:24:39.328514 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:39.329078 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-07-25T14:24:39.329149 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:39.329672 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T14:24:39.329731 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:39.330255 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-25T14:24:39.330315 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:39.331031 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.44 ms +I, [2018-07-25T14:24:39.331127 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:39.331790 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-07-25T14:24:39.331853 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:39.336180 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.54 ms +I, [2018-07-25T14:24:39.336256 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:40.511487 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.23 ms +I, [2018-07-25T14:24:40.511552 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:24:40.511917 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-07-25T14:24:40.511964 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:24:40.512244 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-07-25T14:24:40.512276 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:24:40.512490 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-07-25T14:24:40.512519 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:24:40.512738 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-07-25T14:24:40.512767 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:24:40.512978 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-07-25T14:24:40.513013 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:24:40.513217 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-07-25T14:24:40.513246 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:24:40.513501 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-07-25T14:24:40.513675 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:24:40.513957 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-07-25T14:24:40.514002 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:24:40.515203 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-07-25T14:24:40.515242 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:24:40.515483 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T14:24:40.515514 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:24:40.515744 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-07-25T14:24:40.515790 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:24:41.338152 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.47 ms +I, [2018-07-25T14:24:41.338237 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:41.338838 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-07-25T14:24:41.338896 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:41.339411 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-07-25T14:24:41.339793 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:41.343073 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-07-25T14:24:41.345954 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:41.350427 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-07-25T14:24:41.350476 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:41.350779 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T14:24:41.350812 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:41.354326 #5] INFO -- : Inline processing of topic section_change with 1 messages took 3.33 ms +I, [2018-07-25T14:24:41.354411 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:41.354962 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T14:24:41.355018 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:41.358100 #5] INFO -- : Inline processing of topic section_change with 1 messages took 2.71 ms +I, [2018-07-25T14:24:41.358220 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:41.358525 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T14:24:41.358595 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:41.358870 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T14:24:41.358923 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:41.359672 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-07-25T14:24:41.359976 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:41.360397 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T14:24:41.360442 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:41.360748 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T14:24:41.360787 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:41.361032 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T14:24:41.361570 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:41.364300 #5] INFO -- : Inline processing of topic section_change with 1 messages took 2.26 ms +I, [2018-07-25T14:24:41.364394 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:41.365349 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.52 ms +I, [2018-07-25T14:24:41.368603 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:41.369381 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.5 ms +I, [2018-07-25T14:24:41.373273 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:41.376527 #5] INFO -- : Inline processing of topic section_change with 1 messages took 2.21 ms +I, [2018-07-25T14:24:41.376592 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:41.376914 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T14:24:41.376946 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:41.377255 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T14:24:41.377286 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:41.377507 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T14:24:41.377621 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:41.377870 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T14:24:41.377901 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:41.378214 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T14:24:41.378251 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:41.378483 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T14:24:41.378514 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:41.378978 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T14:24:41.379024 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:41.379516 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T14:24:41.379568 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:41.380369 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T14:24:41.380443 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:41.380914 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T14:24:41.380967 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:41.381467 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-07-25T14:24:41.381511 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:42.516713 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-07-25T14:24:42.516762 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:24:42.517169 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T14:24:42.517228 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:24:42.517464 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T14:24:42.517493 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:24:42.517704 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-07-25T14:24:42.517733 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:24:42.517935 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-07-25T14:24:42.517963 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:24:43.385543 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-07-25T14:24:43.385615 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:43.386058 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T14:24:43.386404 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:43.386975 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-07-25T14:24:43.387029 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:43.387838 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.4 ms +I, [2018-07-25T14:24:43.387894 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:43.389457 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-07-25T14:24:43.389511 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:43.389968 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T14:24:43.391262 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:44.518468 #5] INFO -- : Committing offsets: course_change/0:591 +I, [2018-07-25T14:24:44.522480 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.24 ms +I, [2018-07-25T14:24:44.522539 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:24:44.522907 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-07-25T14:24:44.522958 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:24:44.523387 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.3 ms +I, [2018-07-25T14:24:44.523425 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:24:44.523688 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-07-25T14:24:44.523719 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:24:44.524034 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-07-25T14:24:44.524066 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:24:45.392132 #5] INFO -- : Committing offsets: section_change/0:1291 +I, [2018-07-25T14:24:45.404208 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-25T14:24:45.404272 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:45.404983 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-07-25T14:24:45.406322 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:45.411800 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-07-25T14:24:45.411889 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:45.412288 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T14:24:45.412335 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:45.414636 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.54 ms +I, [2018-07-25T14:24:45.414688 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:46.524972 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-07-25T14:24:46.525036 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:24:46.525326 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-07-25T14:24:46.525358 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:24:46.525619 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T14:24:46.525680 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:24:47.415857 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-07-25T14:24:47.415937 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:47.416473 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-07-25T14:24:47.417494 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:47.418047 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-07-25T14:24:47.418100 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:47.418488 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T14:24:47.418536 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:47.420258 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.02 ms +I, [2018-07-25T14:24:47.420350 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:47.420998 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T14:24:47.421037 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:47.421344 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T14:24:47.421376 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:48.526715 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.27 ms +I, [2018-07-25T14:24:48.526806 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:24:48.527096 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-07-25T14:24:48.527126 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:24:48.527441 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-07-25T14:24:48.527489 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:24:48.527829 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-07-25T14:24:48.527909 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:24:48.528604 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-07-25T14:24:48.528651 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:24:48.529181 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-07-25T14:24:48.529219 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:24:49.422601 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-07-25T14:24:49.422676 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:49.423366 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.43 ms +I, [2018-07-25T14:24:49.423437 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:49.423849 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T14:24:49.423884 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:49.424164 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T14:24:49.424198 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:49.424484 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T14:24:49.424521 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:49.425772 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.06 ms +I, [2018-07-25T14:24:49.427472 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:50.530222 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-07-25T14:24:50.530271 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:24:50.530509 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T14:24:50.530540 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:24:51.428965 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-07-25T14:24:51.429042 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:51.429604 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-07-25T14:24:51.431165 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:51.431704 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-07-25T14:24:51.431763 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:51.432216 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T14:24:51.432253 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:53.435510 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.16 ms +I, [2018-07-25T14:24:53.436339 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:53.437080 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.49 ms +I, [2018-07-25T14:24:53.437159 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:53.438016 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.63 ms +I, [2018-07-25T14:24:53.438073 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:53.438976 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.54 ms +I, [2018-07-25T14:24:53.439056 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:53.439837 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-07-25T14:24:53.439878 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:53.440214 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T14:24:53.440257 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:53.440578 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T14:24:53.440699 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:53.440989 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T14:24:53.441020 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:53.441348 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T14:24:53.441378 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:53.441781 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T14:24:53.441812 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:54.533120 #5] INFO -- : Committing offsets: course_change/0:607 +I, [2018-07-25T14:24:54.539992 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.3 ms +I, [2018-07-25T14:24:54.540807 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:24:54.541375 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.31 ms +I, [2018-07-25T14:24:54.541432 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:24:54.541916 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.28 ms +I, [2018-07-25T14:24:54.541972 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:24:54.542450 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.27 ms +I, [2018-07-25T14:24:54.542739 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:24:54.544538 #5] INFO -- : Inline processing of topic course_change with 1 messages took 1.51 ms +I, [2018-07-25T14:24:54.544614 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:24:55.443072 #5] INFO -- : Committing offsets: section_change/0:1323 +I, [2018-07-25T14:24:55.454937 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.73 ms +I, [2018-07-25T14:24:55.455036 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:55.455454 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T14:24:55.455499 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:55.456297 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.46 ms +I, [2018-07-25T14:24:55.456408 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:55.457100 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.47 ms +I, [2018-07-25T14:24:55.457164 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:56.545791 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.26 ms +I, [2018-07-25T14:24:56.545874 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:24:56.546785 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.57 ms +I, [2018-07-25T14:24:56.546855 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:24:56.547347 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.27 ms +I, [2018-07-25T14:24:56.547410 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:24:56.550827 #5] INFO -- : Inline processing of topic course_change with 1 messages took 3.17 ms +I, [2018-07-25T14:24:56.550923 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:24:57.459040 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.59 ms +I, [2018-07-25T14:24:57.459161 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:57.460193 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.44 ms +I, [2018-07-25T14:24:57.460258 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:57.460830 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-07-25T14:24:57.460881 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:57.461628 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-07-25T14:24:57.461698 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:57.462372 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.45 ms +I, [2018-07-25T14:24:57.462427 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:58.553173 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.44 ms +I, [2018-07-25T14:24:58.553249 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:24:58.554804 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.97 ms +I, [2018-07-25T14:24:58.554881 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:24:59.466174 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.77 ms +I, [2018-07-25T14:24:59.466318 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:59.467387 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.47 ms +I, [2018-07-25T14:24:59.467831 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:59.469142 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.0 ms +I, [2018-07-25T14:24:59.469243 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:24:59.475663 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.4 ms +I, [2018-07-25T14:24:59.475930 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:00.556748 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.43 ms +I, [2018-07-25T14:25:00.556967 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:25:00.557409 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-07-25T14:25:00.557472 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:25:00.557935 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.24 ms +I, [2018-07-25T14:25:00.557989 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:25:00.558492 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-07-25T14:25:00.558623 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:25:00.560828 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.3 ms +I, [2018-07-25T14:25:00.560923 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:25:00.561403 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.23 ms +I, [2018-07-25T14:25:00.561489 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:25:01.477734 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-07-25T14:25:01.477795 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:01.478173 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T14:25:01.478205 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:01.478537 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T14:25:01.478592 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:01.478900 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T14:25:01.478943 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:01.479290 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T14:25:01.479322 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:01.479763 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-07-25T14:25:01.479805 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:01.481858 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.88 ms +I, [2018-07-25T14:25:01.482816 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:02.562721 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.26 ms +I, [2018-07-25T14:25:02.562818 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:25:02.563403 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-07-25T14:25:02.563454 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:25:02.563768 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-07-25T14:25:02.563866 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:25:02.564166 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-07-25T14:25:02.564210 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:25:02.564522 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T14:25:02.564565 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:25:02.564985 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T14:25:02.565027 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:25:02.565446 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.25 ms +I, [2018-07-25T14:25:02.565492 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:25:03.484829 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.48 ms +I, [2018-07-25T14:25:03.484914 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:03.485467 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-07-25T14:25:03.485559 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:03.486139 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-07-25T14:25:03.486179 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:03.486542 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T14:25:03.486661 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:03.487152 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-25T14:25:03.487189 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:03.487443 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T14:25:03.487474 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:03.487718 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T14:25:03.487753 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:03.488006 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T14:25:03.488037 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:03.488292 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T14:25:03.488326 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:03.488574 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T14:25:03.488600 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:03.488841 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T14:25:03.488871 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:03.489093 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T14:25:03.489122 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:03.489454 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T14:25:03.489494 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:03.489769 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T14:25:03.489803 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:03.490039 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T14:25:03.490070 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:03.490311 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T14:25:03.496391 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:03.497215 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T14:25:03.497261 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:03.497528 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T14:25:03.497560 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:03.497886 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T14:25:03.497942 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:03.498325 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T14:25:03.498614 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:03.499143 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T14:25:03.499274 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:03.499890 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-07-25T14:25:03.499948 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:03.500376 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T14:25:03.500426 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:03.500819 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T14:25:03.501416 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:03.501883 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T14:25:03.501977 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:03.502368 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T14:25:03.503909 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:03.504691 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.56 ms +I, [2018-07-25T14:25:03.504758 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:03.507013 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-25T14:25:03.507175 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:03.508478 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.04 ms +I, [2018-07-25T14:25:03.508545 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:03.509712 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.91 ms +I, [2018-07-25T14:25:03.509798 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:04.573006 #5] INFO -- : Committing offsets: course_change/0:631 +I, [2018-07-25T14:25:04.580209 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.28 ms +I, [2018-07-25T14:25:04.580384 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:25:04.581640 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.81 ms +I, [2018-07-25T14:25:04.581770 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:25:04.582418 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.4 ms +I, [2018-07-25T14:25:04.582481 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:25:04.583233 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.29 ms +I, [2018-07-25T14:25:04.583296 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:25:04.583719 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-07-25T14:25:04.583773 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:25:04.584213 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-07-25T14:25:04.584333 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:25:04.585524 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.78 ms +I, [2018-07-25T14:25:04.585582 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:25:05.510968 #5] INFO -- : Committing offsets: section_change/0:1373 +I, [2018-07-25T14:25:05.515418 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T14:25:05.515499 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:05.515916 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T14:25:05.515970 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:05.516353 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T14:25:05.516406 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:05.516807 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T14:25:05.516855 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:05.517250 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T14:25:05.517337 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:05.517984 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-25T14:25:05.518028 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:06.587098 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.24 ms +I, [2018-07-25T14:25:06.587164 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:25:06.587530 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-07-25T14:25:06.587576 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:25:06.588102 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.3 ms +I, [2018-07-25T14:25:06.588154 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:25:06.588585 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.23 ms +I, [2018-07-25T14:25:06.588636 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:25:06.588962 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-07-25T14:25:06.589002 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:25:07.519010 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T14:25:07.519059 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:07.519372 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T14:25:07.519404 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:07.519700 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T14:25:07.519735 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:07.520845 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.91 ms +I, [2018-07-25T14:25:07.521773 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:07.522201 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T14:25:07.522237 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:08.590287 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-07-25T14:25:08.590337 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:25:08.590571 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T14:25:08.590602 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:25:08.590821 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T14:25:08.590850 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:25:08.591078 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T14:25:08.591107 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:25:08.591326 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T14:25:08.591354 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:25:08.591565 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T14:25:08.591594 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:25:08.591833 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-07-25T14:25:08.591863 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:25:08.592081 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-07-25T14:25:08.592111 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:25:09.525082 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.45 ms +I, [2018-07-25T14:25:09.525198 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:09.525691 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-25T14:25:09.525750 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:09.526718 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.61 ms +I, [2018-07-25T14:25:09.540205 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:09.540866 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-07-25T14:25:09.540930 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:09.541398 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-07-25T14:25:09.541443 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:09.541905 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-25T14:25:09.541952 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:09.542404 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-25T14:25:09.542450 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:09.542906 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-07-25T14:25:09.542959 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:09.543360 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T14:25:09.543457 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:10.593129 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.26 ms +I, [2018-07-25T14:25:10.593207 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:25:10.593419 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-07-25T14:25:10.593479 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:25:10.593865 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-07-25T14:25:10.593946 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:25:10.594187 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-07-25T14:25:10.594219 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:25:10.594433 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-07-25T14:25:10.594462 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:25:10.594673 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-07-25T14:25:10.594716 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:25:11.545822 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-07-25T14:25:11.545875 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:11.546128 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T14:25:11.546160 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:11.546398 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T14:25:11.546461 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:11.547409 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.76 ms +I, [2018-07-25T14:25:11.551904 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:11.552898 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-07-25T14:25:11.553209 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:11.553560 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T14:25:11.553594 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:11.553910 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T14:25:11.553943 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:12.595521 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-07-25T14:25:12.595569 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:25:12.595798 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T14:25:12.595828 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:25:12.596043 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-07-25T14:25:12.596072 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:25:12.596311 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-07-25T14:25:12.596341 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:25:13.555018 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-07-25T14:25:13.555069 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:13.557462 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-07-25T14:25:13.557728 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:13.558726 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.42 ms +I, [2018-07-25T14:25:13.558789 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:13.559357 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-07-25T14:25:13.559411 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:13.559866 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-07-25T14:25:13.559902 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:13.560151 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T14:25:13.560182 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:14.596768 #5] INFO -- : Committing offsets: course_change/0:661 +I, [2018-07-25T14:25:14.600169 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-07-25T14:25:14.600213 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:25:14.600463 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T14:25:14.600497 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:25:14.600742 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T14:25:14.601394 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:25:14.601751 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-07-25T14:25:14.601784 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:25:14.602042 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-07-25T14:25:14.602073 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:25:14.602331 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-07-25T14:25:14.602409 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:25:14.602831 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-07-25T14:25:14.602882 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:25:14.603253 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-07-25T14:25:14.603436 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:25:15.560622 #5] INFO -- : Committing offsets: section_change/0:1406 +I, [2018-07-25T14:25:15.564315 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-25T14:25:15.564364 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:15.564665 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T14:25:15.564700 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:15.565013 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T14:25:15.565763 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:15.566095 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T14:25:15.566149 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:15.566672 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T14:25:15.566707 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:15.566987 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T14:25:15.567018 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:15.567240 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T14:25:15.567270 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:15.567534 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T14:25:15.567581 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:15.568173 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T14:25:15.568225 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:15.568724 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T14:25:15.568790 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:15.569140 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T14:25:15.569258 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:15.569580 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T14:25:15.569612 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:15.569883 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T14:25:15.570622 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:16.604442 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-07-25T14:25:16.604513 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:25:16.604780 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-07-25T14:25:16.604811 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:25:16.605054 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-07-25T14:25:16.605084 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:25:16.605293 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-07-25T14:25:16.605323 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:25:16.605534 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-07-25T14:25:16.605563 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:25:16.606057 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.3 ms +I, [2018-07-25T14:25:16.606138 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:25:16.606572 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-07-25T14:25:16.606611 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:25:16.606865 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-07-25T14:25:16.606897 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:25:16.607130 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T14:25:16.607160 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:25:17.571904 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-07-25T14:25:17.571973 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:17.574004 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-07-25T14:25:17.574073 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:17.574568 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T14:25:17.574663 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:17.575482 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.51 ms +I, [2018-07-25T14:25:17.575552 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:17.576478 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.53 ms +I, [2018-07-25T14:25:17.576554 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:17.577036 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T14:25:17.577093 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:17.578105 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.8 ms +I, [2018-07-25T14:25:17.578160 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:17.578661 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T14:25:17.578757 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:17.580033 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.0 ms +I, [2018-07-25T14:25:17.580155 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:18.608226 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-07-25T14:25:18.608292 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:25:19.581225 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.48 ms +I, [2018-07-25T14:25:19.581357 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:19.582143 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.45 ms +I, [2018-07-25T14:25:19.582255 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:19.582577 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T14:25:19.582609 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:19.582897 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T14:25:19.582926 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:21.583884 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-07-25T14:25:21.584105 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:21.585231 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.77 ms +I, [2018-07-25T14:25:21.585276 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:21.585840 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-07-25T14:25:21.585894 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:21.586700 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.55 ms +I, [2018-07-25T14:25:21.586757 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:22.611551 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-07-25T14:25:22.611600 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:25:22.611826 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T14:25:22.611857 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:25:23.587509 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T14:25:23.587557 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:23.588403 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.71 ms +I, [2018-07-25T14:25:23.588601 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:23.588950 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T14:25:23.588983 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:23.589292 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T14:25:23.589331 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:23.589722 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T14:25:23.589777 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:23.590164 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T14:25:23.590209 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:23.591253 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.75 ms +I, [2018-07-25T14:25:23.593781 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:23.595056 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-07-25T14:25:23.595138 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:24.613056 #5] INFO -- : Committing offsets: course_change/0:681 +I, [2018-07-25T14:25:24.616027 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-07-25T14:25:24.616071 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:25:25.595520 #5] INFO -- : Committing offsets: section_change/0:1444 +I, [2018-07-25T14:25:25.603549 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.27 ms +I, [2018-07-25T14:25:25.603631 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:25.604063 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T14:25:25.604097 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:25.604508 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-07-25T14:25:25.604547 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:25.605379 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.59 ms +I, [2018-07-25T14:25:25.605605 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:27.606964 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-07-25T14:25:27.607046 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:27.607567 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-07-25T14:25:27.607622 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:27.609171 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.17 ms +I, [2018-07-25T14:25:27.609227 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:27.609957 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.5 ms +I, [2018-07-25T14:25:27.622964 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:27.623672 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-07-25T14:25:27.623747 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:28.617352 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-07-25T14:25:28.617398 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:25:28.617643 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-07-25T14:25:28.617674 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:25:28.617882 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T14:25:28.617911 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:25:29.624544 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-07-25T14:25:29.624627 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:29.625190 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.42 ms +I, [2018-07-25T14:25:29.625227 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:29.625724 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-07-25T14:25:29.626008 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:29.626614 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-25T14:25:29.626660 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:29.627101 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T14:25:29.627155 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:29.628423 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.41 ms +I, [2018-07-25T14:25:29.628486 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:30.618546 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-07-25T14:25:30.618595 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:25:30.618859 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T14:25:30.618892 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:25:30.619117 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-07-25T14:25:30.619146 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:25:30.620261 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.93 ms +I, [2018-07-25T14:25:30.620314 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:25:30.620607 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-07-25T14:25:30.620637 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:25:31.630150 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-07-25T14:25:31.630200 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:31.630516 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T14:25:31.630548 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:31.630843 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T14:25:31.630874 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:31.631110 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T14:25:31.631139 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:31.631432 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T14:25:31.631462 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:31.631733 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T14:25:31.631796 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:31.632166 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-25T14:25:31.632266 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:32.621289 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.27 ms +I, [2018-07-25T14:25:32.621342 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:25:32.621656 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-07-25T14:25:32.621689 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:25:32.621988 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-07-25T14:25:32.622023 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:25:32.622267 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-07-25T14:25:32.622296 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:25:33.635701 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.45 ms +I, [2018-07-25T14:25:33.635777 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:33.636319 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-07-25T14:25:33.636367 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:33.636887 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-07-25T14:25:33.636941 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:33.638291 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-07-25T14:25:33.638374 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:33.638877 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T14:25:33.638979 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:33.639926 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-25T14:25:33.639980 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:33.640403 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T14:25:33.640453 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:34.623075 #5] INFO -- : Committing offsets: course_change/0:694 +I, [2018-07-25T14:25:34.627764 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-07-25T14:25:34.627809 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:25:34.628090 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-07-25T14:25:34.628142 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:25:34.628534 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-07-25T14:25:34.630272 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:25:34.630634 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-07-25T14:25:34.630679 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:25:34.630943 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T14:25:34.630974 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:25:35.641067 #5] INFO -- : Committing offsets: section_change/0:1473 +I, [2018-07-25T14:25:35.645939 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-07-25T14:25:35.645987 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:35.646353 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T14:25:35.646386 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:35.646661 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T14:25:35.646692 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:35.647306 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-07-25T14:25:35.647377 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:35.647870 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-07-25T14:25:35.647921 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:36.632022 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-07-25T14:25:36.632082 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:25:36.632320 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-07-25T14:25:36.632352 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:25:36.632596 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-07-25T14:25:36.632626 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:25:36.632872 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T14:25:36.632953 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:25:36.634176 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.41 ms +I, [2018-07-25T14:25:36.634217 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:25:37.648825 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-25T14:25:37.648875 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:37.649203 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T14:25:37.649263 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:37.649543 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T14:25:37.649588 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:37.649993 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-07-25T14:25:37.650028 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:37.650325 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T14:25:37.650356 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:37.650678 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T14:25:37.650711 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:37.651128 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-07-25T14:25:37.651170 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:38.635142 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-07-25T14:25:38.635192 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:25:38.635451 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-07-25T14:25:38.635482 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:25:38.635715 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-07-25T14:25:38.635745 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:25:39.652679 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T14:25:39.652727 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:39.652996 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T14:25:39.653025 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:39.653370 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T14:25:39.653401 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:39.653704 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T14:25:39.653734 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:39.654059 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T14:25:39.654119 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:39.654539 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-07-25T14:25:39.654571 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:39.654886 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T14:25:39.654916 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:39.655141 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T14:25:39.655170 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:39.655622 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-07-25T14:25:39.655678 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:40.636665 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-07-25T14:25:40.636714 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:25:40.636934 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-07-25T14:25:40.636963 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:25:40.637172 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-07-25T14:25:40.637201 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:25:40.637419 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-07-25T14:25:40.637448 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:25:40.637648 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-07-25T14:25:40.639012 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:25:40.639345 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-07-25T14:25:40.639377 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:25:40.639722 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-07-25T14:25:40.639773 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:25:40.640950 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-07-25T14:25:40.641140 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:25:41.656694 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T14:25:41.656778 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:41.657071 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T14:25:41.657101 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:41.657322 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T14:25:41.657376 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:41.657566 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T14:25:41.657626 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:41.657914 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T14:25:41.657944 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:41.658293 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T14:25:41.658322 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:41.658562 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T14:25:41.658592 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:42.642046 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-07-25T14:25:42.642095 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:25:42.642334 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T14:25:42.642364 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:25:42.642572 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-07-25T14:25:42.642601 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:25:42.642834 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-07-25T14:25:42.642864 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:25:42.643084 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T14:25:42.643113 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:25:42.643425 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-07-25T14:25:42.643455 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:25:42.643670 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T14:25:42.643700 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:25:43.659821 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-07-25T14:25:43.660757 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:43.661131 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T14:25:43.661164 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:43.661404 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T14:25:43.661445 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:43.661849 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-25T14:25:43.661902 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:43.662391 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-07-25T14:25:43.662444 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:43.662906 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-07-25T14:25:43.662955 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:43.663437 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T14:25:43.663501 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:44.644066 #5] INFO -- : Committing offsets: course_change/0:722 +I, [2018-07-25T14:25:44.647655 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-07-25T14:25:44.647733 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:25:44.648685 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.27 ms +I, [2018-07-25T14:25:44.648740 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:25:44.649039 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T14:25:44.649085 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:25:44.649322 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T14:25:44.649368 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:25:44.649744 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-07-25T14:25:44.649808 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:25:44.650557 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.36 ms +I, [2018-07-25T14:25:44.650770 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:25:45.663872 #5] INFO -- : Committing offsets: section_change/0:1508 +I, [2018-07-25T14:25:45.667790 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-07-25T14:25:45.667928 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:45.668559 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-07-25T14:25:45.668623 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:45.669112 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-07-25T14:25:45.669165 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:45.669655 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-07-25T14:25:45.669707 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:45.670948 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-07-25T14:25:45.671005 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:45.675239 #5] INFO -- : Inline processing of topic section_change with 1 messages took 4.0 ms +I, [2018-07-25T14:25:45.676013 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:45.676558 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-07-25T14:25:45.676605 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:45.676957 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T14:25:45.676998 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:45.677333 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T14:25:45.677376 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:45.677697 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T14:25:45.677738 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:45.678076 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T14:25:45.678120 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:45.678450 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T14:25:45.678480 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:45.679039 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-07-25T14:25:45.679098 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:45.679430 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T14:25:45.680386 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:45.684716 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T14:25:45.684760 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:45.685139 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T14:25:45.685196 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:45.685489 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T14:25:45.685522 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:45.685750 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T14:25:45.685779 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:45.686006 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T14:25:45.686036 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:45.686713 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.55 ms +I, [2018-07-25T14:25:45.686795 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:46.652631 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-07-25T14:25:46.652679 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:25:46.652922 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T14:25:46.652953 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:25:46.653236 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T14:25:46.653297 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:25:46.653534 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T14:25:46.653565 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:25:46.653782 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T14:25:46.653843 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:25:46.654153 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-07-25T14:25:46.654194 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:25:47.690923 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T14:25:47.690972 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:47.691237 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T14:25:47.691268 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:47.691576 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T14:25:47.691629 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:47.691904 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T14:25:47.691937 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:47.692177 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T14:25:47.692206 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:47.692418 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T14:25:47.692447 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:47.692717 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T14:25:47.692762 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:47.693059 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T14:25:47.693102 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:47.693526 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T14:25:47.693577 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:47.693898 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T14:25:47.693937 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:47.694213 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T14:25:47.695096 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:47.695386 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T14:25:47.695448 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:47.695653 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T14:25:47.695705 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:47.695912 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T14:25:47.695942 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:47.699038 #5] INFO -- : Inline processing of topic section_change with 1 messages took 2.96 ms +I, [2018-07-25T14:25:47.699086 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:47.699831 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.5 ms +I, [2018-07-25T14:25:47.700727 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:47.703268 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T14:25:47.703311 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:47.703568 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T14:25:47.703627 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:47.703841 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T14:25:47.703903 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:47.704104 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T14:25:47.704134 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:47.704373 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T14:25:47.704405 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:47.704643 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T14:25:47.704711 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:47.715813 #5] INFO -- : Inline processing of topic section_change with 1 messages took 9.7 ms +I, [2018-07-25T14:25:47.715881 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:47.716221 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T14:25:47.716254 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:47.716484 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T14:25:47.716514 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:47.716727 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T14:25:47.716777 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:47.716991 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T14:25:47.717021 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:47.717231 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T14:25:47.717260 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:47.717488 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T14:25:47.717517 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:47.717760 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T14:25:47.717789 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:47.718008 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T14:25:47.718038 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:47.718257 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T14:25:47.718286 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:47.718503 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T14:25:47.718531 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:47.718783 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T14:25:47.718813 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:47.726713 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-07-25T14:25:47.726776 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:47.727167 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T14:25:47.727220 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:47.727595 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T14:25:47.727640 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:47.727985 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T14:25:47.728036 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:47.728371 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T14:25:47.728405 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:47.728643 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T14:25:47.728696 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:47.728959 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T14:25:47.728990 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:47.729221 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T14:25:47.729251 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:47.729516 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T14:25:47.729547 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:47.729773 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T14:25:47.729803 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:47.730017 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T14:25:47.730101 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:47.733702 #5] INFO -- : Inline processing of topic section_change with 1 messages took 3.41 ms +I, [2018-07-25T14:25:47.733767 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:47.737679 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-25T14:25:47.737736 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:47.738088 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T14:25:47.738130 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:47.738443 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T14:25:47.738485 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:47.738822 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T14:25:47.738866 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:47.739168 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T14:25:47.739209 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:47.739507 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T14:25:47.739548 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:47.739897 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T14:25:47.740696 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:47.743183 #5] INFO -- : Inline processing of topic section_change with 1 messages took 2.22 ms +I, [2018-07-25T14:25:47.745819 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:47.749191 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T14:25:47.749231 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:47.749475 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T14:25:47.749506 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:47.749772 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T14:25:47.749804 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:47.753820 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T14:25:47.753924 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:47.754255 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T14:25:47.754297 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:47.754602 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T14:25:47.754644 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:47.754952 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T14:25:47.754992 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:47.755289 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T14:25:47.755612 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:47.755985 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T14:25:47.756027 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:47.756308 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T14:25:47.756374 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:47.756694 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T14:25:47.756746 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:47.757135 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T14:25:47.757193 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:47.762427 #5] INFO -- : Inline processing of topic section_change with 1 messages took 5.03 ms +I, [2018-07-25T14:25:47.762494 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:47.763063 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-07-25T14:25:47.763170 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:47.765768 #5] INFO -- : Inline processing of topic section_change with 1 messages took 2.35 ms +I, [2018-07-25T14:25:47.765830 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:47.771011 #5] INFO -- : Inline processing of topic section_change with 1 messages took 4.78 ms +I, [2018-07-25T14:25:47.771100 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:47.771557 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T14:25:47.771604 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:47.772004 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T14:25:47.772049 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:47.772397 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T14:25:47.772440 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:47.773654 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.02 ms +I, [2018-07-25T14:25:47.773715 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:47.776415 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-25T14:25:47.778692 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:47.779141 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T14:25:47.779186 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:47.779518 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T14:25:47.779591 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:47.779908 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T14:25:47.779963 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:47.780280 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T14:25:47.780320 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:47.780700 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T14:25:47.780760 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:47.792056 #5] INFO -- : Inline processing of topic section_change with 1 messages took 4.72 ms +I, [2018-07-25T14:25:47.792173 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:47.792709 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-25T14:25:47.792758 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:47.793139 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T14:25:47.793197 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:47.793547 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T14:25:47.793592 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:47.794688 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.89 ms +I, [2018-07-25T14:25:47.794778 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:47.795193 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T14:25:47.795240 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:47.795584 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T14:25:47.795655 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:47.803809 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-07-25T14:25:47.803870 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:47.804282 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T14:25:47.804314 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:47.805736 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-25T14:25:47.805814 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:47.806188 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T14:25:47.806269 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:47.806688 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-07-25T14:25:47.806756 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:47.807119 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T14:25:47.807178 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:47.807536 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T14:25:47.808977 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:47.811083 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.63 ms +I, [2018-07-25T14:25:47.811344 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:47.812623 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T14:25:47.812668 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:47.813063 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T14:25:47.813126 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:47.813484 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T14:25:47.813538 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:48.654987 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-07-25T14:25:48.655035 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:25:48.655281 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T14:25:48.655312 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:25:48.655535 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-07-25T14:25:48.655585 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:25:49.814667 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-07-25T14:25:49.814736 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:49.815264 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-25T14:25:49.816121 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:49.816458 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T14:25:49.816491 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:49.816864 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-25T14:25:49.816897 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:49.817483 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.42 ms +I, [2018-07-25T14:25:49.817584 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:50.656301 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-07-25T14:25:50.656351 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:25:51.818922 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.46 ms +I, [2018-07-25T14:25:51.819732 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:51.820497 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.44 ms +I, [2018-07-25T14:25:51.820567 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:51.821537 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.59 ms +I, [2018-07-25T14:25:51.821612 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:53.822855 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-07-25T14:25:53.823111 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:53.824204 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.71 ms +I, [2018-07-25T14:25:53.824285 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:53.826319 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-07-25T14:25:53.826380 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:53.826803 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-07-25T14:25:53.826835 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:54.657888 #5] INFO -- : Committing offsets: course_change/0:738 +I, [2018-07-25T14:25:55.827243 #5] INFO -- : Committing offsets: section_change/0:1638 +I, [2018-07-25T14:25:55.831461 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-07-25T14:25:55.831505 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:55.831857 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T14:25:55.831888 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:57.834178 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.95 ms +I, [2018-07-25T14:25:57.834259 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:57.834709 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-07-25T14:25:57.834756 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:57.835221 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-07-25T14:25:57.835276 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:59.836538 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.42 ms +I, [2018-07-25T14:25:59.836594 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:59.837603 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.84 ms +I, [2018-07-25T14:25:59.837724 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:25:59.838156 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-07-25T14:25:59.838190 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:26:01.839278 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.44 ms +I, [2018-07-25T14:26:01.839362 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:26:01.839687 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T14:26:01.839718 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:26:01.840007 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T14:26:01.840717 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:26:01.842160 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.05 ms +I, [2018-07-25T14:26:01.842254 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:26:01.843132 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.55 ms +I, [2018-07-25T14:26:01.843197 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:26:03.844029 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-07-25T14:26:03.844077 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:26:03.844453 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T14:26:03.844485 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:26:04.670470 #5] INFO -- : Committing offsets: course_change/0:738 +I, [2018-07-25T14:26:05.844914 #5] INFO -- : Committing offsets: section_change/0:1653 +I, [2018-07-25T14:26:05.849084 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-07-25T14:26:05.849139 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:26:05.850405 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.04 ms +I, [2018-07-25T14:26:05.850534 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:26:05.852707 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.97 ms +I, [2018-07-25T14:26:05.852764 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:26:05.853175 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-25T14:26:05.853208 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:26:05.853517 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T14:26:05.853548 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:26:06.676159 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-07-25T14:26:06.676221 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:26:06.676812 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-07-25T14:26:06.676852 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:26:07.854552 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-25T14:26:07.854601 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:26:07.855028 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-07-25T14:26:07.855179 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:26:07.855489 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T14:26:07.855518 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:26:07.856144 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-07-25T14:26:07.856203 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:26:09.857233 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-07-25T14:26:09.857285 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:26:09.857617 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T14:26:09.857649 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:26:09.858978 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.16 ms +I, [2018-07-25T14:26:09.859030 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:26:09.859416 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T14:26:09.859449 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:26:09.859921 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T14:26:09.859978 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:26:11.860862 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-07-25T14:26:11.860910 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:26:11.861248 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T14:26:11.861279 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:26:11.861569 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T14:26:11.861598 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:26:11.862555 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.82 ms +I, [2018-07-25T14:26:11.862668 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:26:11.863135 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-07-25T14:26:11.863169 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:26:11.863461 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T14:26:11.863492 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:26:13.864389 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-07-25T14:26:13.864437 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:26:13.864800 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T14:26:13.864845 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:26:13.865778 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.77 ms +I, [2018-07-25T14:26:13.865898 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:26:14.679769 #5] INFO -- : Committing offsets: course_change/0:740 +I, [2018-07-25T14:26:15.866217 #5] INFO -- : Committing offsets: section_change/0:1676 +I, [2018-07-25T14:26:15.868965 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-07-25T14:26:15.869010 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:26:15.869444 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-07-25T14:26:15.869491 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:26:15.869967 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-25T14:26:15.870048 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:26:16.683875 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-07-25T14:26:16.683924 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:26:16.684196 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-07-25T14:26:16.684222 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:26:17.870831 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-07-25T14:26:17.871767 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:26:17.872193 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-25T14:26:17.872226 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:26:17.872551 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T14:26:17.872582 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:26:19.874388 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-07-25T14:26:19.874437 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:26:19.875342 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.75 ms +I, [2018-07-25T14:26:19.875397 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:26:19.875858 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-25T14:26:19.875891 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:26:19.876322 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-07-25T14:26:19.876371 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:26:21.877401 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-07-25T14:26:21.877455 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:26:21.877769 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T14:26:21.877805 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:26:21.879951 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.92 ms +I, [2018-07-25T14:26:21.880024 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:26:21.880587 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-07-25T14:26:21.880642 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:26:23.881448 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-07-25T14:26:23.881497 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:26:23.881875 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-25T14:26:23.881906 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:26:23.882196 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T14:26:23.882225 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:26:24.686956 #5] INFO -- : Committing offsets: course_change/0:742 +I, [2018-07-25T14:26:25.884041 #5] INFO -- : Committing offsets: section_change/0:1693 +I, [2018-07-25T14:26:25.888605 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.87 ms +I, [2018-07-25T14:26:25.888758 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:26:25.889195 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-25T14:26:25.889232 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:26:25.889544 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T14:26:25.889582 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:26:25.890444 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.63 ms +I, [2018-07-25T14:26:25.890496 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:26:25.891031 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-07-25T14:26:25.891082 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:26:26.693269 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-07-25T14:26:26.693354 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:26:26.693603 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-07-25T14:26:26.693634 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:26:26.693906 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-07-25T14:26:26.693937 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:26:27.892506 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-25T14:26:27.892556 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:26:27.892797 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T14:26:27.892828 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:26:27.893106 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T14:26:27.893137 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:26:27.893496 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T14:26:27.893527 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:26:27.893819 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T14:26:27.893849 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:26:27.894678 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.71 ms +I, [2018-07-25T14:26:27.894974 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:26:28.694632 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-07-25T14:26:28.694681 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:26:28.694916 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T14:26:28.694946 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:26:28.695161 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-07-25T14:26:28.695191 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:26:28.695397 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-07-25T14:26:28.695427 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:26:29.896308 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-07-25T14:26:29.896357 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:26:29.896656 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T14:26:29.896687 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:26:29.896932 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T14:26:29.896987 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:26:29.897210 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T14:26:29.898324 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:26:29.900864 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-07-25T14:26:29.900925 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:26:29.901393 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-07-25T14:26:29.901438 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:26:30.696687 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-07-25T14:26:30.696735 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:26:30.697003 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-07-25T14:26:30.697033 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:26:30.697269 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-07-25T14:26:30.697299 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:26:30.697514 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T14:26:30.697543 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:26:30.697742 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-07-25T14:26:30.697771 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:26:31.902473 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-25T14:26:31.902521 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:26:31.903207 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-07-25T14:26:31.903300 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:26:31.903838 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T14:26:31.903872 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:26:31.904110 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T14:26:31.904141 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:26:31.904402 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T14:26:31.904434 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:26:31.904823 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T14:26:31.904875 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:26:32.698577 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-07-25T14:26:32.698626 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:26:32.698896 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T14:26:32.698927 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:26:32.699174 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T14:26:32.699210 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:26:32.699445 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T14:26:32.699481 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:26:32.699738 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-07-25T14:26:32.699775 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:26:32.700718 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-07-25T14:26:32.700757 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:26:33.905773 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-07-25T14:26:33.905838 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:26:33.906318 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-07-25T14:26:33.906367 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:26:33.906871 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-07-25T14:26:33.906924 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:26:33.907352 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-07-25T14:26:33.907393 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:26:33.907695 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T14:26:33.907737 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:26:33.909090 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.09 ms +I, [2018-07-25T14:26:33.909157 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:26:33.909578 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T14:26:33.909619 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:26:33.909896 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T14:26:33.909938 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:26:33.911456 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T14:26:33.911518 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:26:33.911871 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T14:26:33.911916 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:26:33.912248 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T14:26:33.912288 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:26:33.912617 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T14:26:33.912660 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:26:33.912934 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T14:26:33.913027 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:26:33.913439 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T14:26:33.913585 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:26:33.914021 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T14:26:33.914060 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:26:33.914395 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T14:26:33.914441 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:26:33.914748 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T14:26:33.917078 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:26:34.702205 #5] INFO -- : Committing offsets: course_change/0:760 +I, [2018-07-25T14:26:34.705412 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-07-25T14:26:34.705457 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:26:34.705709 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T14:26:34.705761 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:26:34.705995 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T14:26:34.706026 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:26:34.706239 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T14:26:34.706269 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:26:34.706475 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-07-25T14:26:34.706503 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:26:34.706713 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-07-25T14:26:34.706742 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:26:34.706947 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-07-25T14:26:34.706998 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:26:34.707208 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-07-25T14:26:34.707237 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:26:35.917758 #5] INFO -- : Committing offsets: section_change/0:1733 +I, [2018-07-25T14:26:35.921163 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T14:26:35.921209 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:26:35.921461 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T14:26:35.921492 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:26:35.921704 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T14:26:35.921753 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:26:35.921993 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T14:26:35.922023 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:26:35.922252 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T14:26:35.922281 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:26:35.922491 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T14:26:35.922520 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:26:35.922741 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T14:26:35.922771 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:26:35.924365 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.46 ms +I, [2018-07-25T14:26:35.924409 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:26:35.924687 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T14:26:35.924718 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:26:35.924994 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T14:26:35.925072 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:26:35.925396 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T14:26:35.925448 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:26:35.927027 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.67 ms +I, [2018-07-25T14:26:35.927085 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:26:35.927351 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T14:26:35.927382 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:26:35.927607 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T14:26:35.927637 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:26:35.928885 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.99 ms +I, [2018-07-25T14:26:35.928942 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:26:35.929240 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T14:26:35.929278 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:26:35.929589 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T14:26:35.929640 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:26:35.930160 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-07-25T14:26:35.930237 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:26:35.930755 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-07-25T14:26:35.930811 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:26:35.931448 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.41 ms +I, [2018-07-25T14:26:35.931505 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:26:36.708024 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.25 ms +I, [2018-07-25T14:26:36.708100 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:26:36.708437 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-07-25T14:26:36.708490 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:26:36.708745 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-07-25T14:26:36.708808 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:26:37.932463 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.42 ms +I, [2018-07-25T14:26:37.932516 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:26:37.932840 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T14:26:37.932872 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:26:37.933163 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T14:26:37.933200 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:26:37.933590 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T14:26:37.933631 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:26:37.933876 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T14:26:37.933907 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:26:37.935294 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-07-25T14:26:37.935343 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:26:38.709584 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-07-25T14:26:38.709651 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:26:38.710236 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-07-25T14:26:38.710284 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:26:38.710744 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-07-25T14:26:38.710802 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:26:39.936442 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-07-25T14:26:39.936514 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:26:39.937059 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-07-25T14:26:39.937548 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:26:39.938142 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-07-25T14:26:39.938201 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:26:39.938716 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-07-25T14:26:39.938909 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:26:39.939389 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-25T14:26:39.939443 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:26:40.711768 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.27 ms +I, [2018-07-25T14:26:40.711820 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:26:40.712835 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-07-25T14:26:40.712896 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:26:40.713361 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-07-25T14:26:40.713483 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:26:41.940664 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-07-25T14:26:41.940735 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:26:41.941200 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-25T14:26:41.941278 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:26:41.941762 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-07-25T14:26:41.941825 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:26:41.942435 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-07-25T14:26:41.942482 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:26:41.942831 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T14:26:41.942937 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:26:42.714800 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.43 ms +I, [2018-07-25T14:26:42.714934 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:26:42.715848 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.25 ms +I, [2018-07-25T14:26:42.716118 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:26:42.717165 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.72 ms +I, [2018-07-25T14:26:42.717223 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:26:43.945232 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-07-25T14:26:43.945281 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:26:43.945595 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T14:26:43.945626 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:26:43.945917 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T14:26:43.945947 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:26:43.946236 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T14:26:43.946266 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:26:43.947378 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.98 ms +I, [2018-07-25T14:26:43.947437 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:26:44.717860 #5] INFO -- : Committing offsets: course_change/0:780 +I, [2018-07-25T14:26:44.723342 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.32 ms +I, [2018-07-25T14:26:44.723446 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:26:44.723764 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-07-25T14:26:44.723813 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:26:45.947766 #5] INFO -- : Committing offsets: section_change/0:1774 +I, [2018-07-25T14:26:45.951510 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T14:26:45.951555 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:26:45.951871 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T14:26:45.951903 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:26:45.952219 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T14:26:45.952250 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:26:45.952549 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T14:26:45.952579 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:26:45.952798 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T14:26:45.953614 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:26:45.954330 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-07-25T14:26:45.954373 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:26:46.725843 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-07-25T14:26:46.725933 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:26:46.726189 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-07-25T14:26:46.726220 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:26:46.726471 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-07-25T14:26:46.727222 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:26:47.955267 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-07-25T14:26:47.955419 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:26:47.956072 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-07-25T14:26:47.956114 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:26:47.956471 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T14:26:47.956502 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:26:47.957678 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.99 ms +I, [2018-07-25T14:26:47.957754 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:26:48.728528 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.23 ms +I, [2018-07-25T14:26:48.728604 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:26:48.728979 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-07-25T14:26:48.729011 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:26:48.729243 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T14:26:48.729288 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:26:48.729762 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-07-25T14:26:48.729818 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:26:49.959491 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-07-25T14:26:49.959550 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:26:49.960041 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-07-25T14:26:49.960126 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:26:49.960511 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T14:26:49.960549 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:26:49.961472 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-07-25T14:26:49.961628 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:26:49.963608 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.59 ms +I, [2018-07-25T14:26:49.963682 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:26:50.730722 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.28 ms +I, [2018-07-25T14:26:50.730786 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:26:50.731150 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-07-25T14:26:50.731194 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:26:50.731477 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T14:26:50.731585 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:26:50.731859 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T14:26:50.731900 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:26:50.732210 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T14:26:50.732252 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:26:50.732550 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-07-25T14:26:50.732591 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:26:51.964620 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-07-25T14:26:51.964669 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:26:51.965976 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.11 ms +I, [2018-07-25T14:26:51.966144 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:26:51.966490 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T14:26:51.966524 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:26:51.966817 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T14:26:51.966925 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:26:51.967853 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.46 ms +I, [2018-07-25T14:26:51.967918 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:26:51.968617 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.45 ms +I, [2018-07-25T14:26:51.968679 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:26:52.734572 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.83 ms +I, [2018-07-25T14:26:52.734645 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:26:52.735402 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.35 ms +I, [2018-07-25T14:26:52.735564 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:26:52.736375 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.58 ms +I, [2018-07-25T14:26:52.736434 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:26:52.737175 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.39 ms +I, [2018-07-25T14:26:52.738073 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:26:52.738753 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.45 ms +I, [2018-07-25T14:26:52.739242 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:26:53.969503 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-25T14:26:53.969551 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:26:53.969910 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T14:26:53.969942 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:26:53.970264 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T14:26:53.970295 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:26:53.970626 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T14:26:53.970656 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:26:53.970945 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T14:26:53.970975 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:26:54.740869 #5] INFO -- : Committing offsets: course_change/0:800 +I, [2018-07-25T14:26:54.745279 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-07-25T14:26:54.747540 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:26:54.748066 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.25 ms +I, [2018-07-25T14:26:54.748120 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:26:54.748533 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-07-25T14:26:54.748625 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:26:55.972263 #5] INFO -- : Committing offsets: section_change/0:1800 +I, [2018-07-25T14:26:55.977486 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-07-25T14:26:55.977554 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:26:55.978606 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-07-25T14:26:55.978658 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:26:55.979060 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T14:26:55.979137 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:26:55.979906 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.45 ms +I, [2018-07-25T14:26:55.979958 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:26:55.980398 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T14:26:55.980431 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:26:55.981753 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.17 ms +I, [2018-07-25T14:26:55.981817 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:26:55.982305 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-07-25T14:26:55.982339 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:26:55.982625 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T14:26:55.982673 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:26:56.749979 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.37 ms +I, [2018-07-25T14:26:56.750054 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:26:56.750703 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.36 ms +I, [2018-07-25T14:26:56.750760 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:26:56.751714 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.73 ms +I, [2018-07-25T14:26:56.751781 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:26:56.752258 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-07-25T14:26:56.752342 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:26:56.752682 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-07-25T14:26:56.752811 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:26:56.753962 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-07-25T14:26:56.754051 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:26:56.754381 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-07-25T14:26:56.754416 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:26:57.984617 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.01 ms +I, [2018-07-25T14:26:57.984696 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:26:57.985144 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-25T14:26:57.985176 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:26:57.985460 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T14:26:57.985491 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:26:58.755664 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.49 ms +I, [2018-07-25T14:26:58.755954 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:26:58.756421 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.25 ms +I, [2018-07-25T14:26:58.756551 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:26:58.757067 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.28 ms +I, [2018-07-25T14:26:58.757146 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:26:58.757844 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.41 ms +I, [2018-07-25T14:26:58.757900 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:26:58.758624 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.48 ms +I, [2018-07-25T14:26:58.758682 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:26:59.988496 #5] INFO -- : Inline processing of topic section_change with 1 messages took 2.03 ms +I, [2018-07-25T14:26:59.988655 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:26:59.989723 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.47 ms +I, [2018-07-25T14:26:59.989833 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:26:59.992492 #5] INFO -- : Inline processing of topic section_change with 1 messages took 2.41 ms +I, [2018-07-25T14:26:59.992664 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:26:59.993111 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T14:26:59.993144 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:26:59.993442 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T14:26:59.993529 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:26:59.993811 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T14:26:59.993852 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:26:59.994508 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.42 ms +I, [2018-07-25T14:26:59.994557 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:26:59.995169 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-07-25T14:26:59.995213 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:27:00.760976 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.91 ms +I, [2018-07-25T14:27:00.761067 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:27:00.761514 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T14:27:00.761549 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:27:00.761879 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T14:27:00.763122 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:27:00.763632 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.26 ms +I, [2018-07-25T14:27:00.763669 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:27:00.764038 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-07-25T14:27:00.764113 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:27:00.764404 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T14:27:00.764436 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:27:00.764671 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T14:27:00.764701 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:27:00.764939 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-07-25T14:27:00.764968 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:27:01.996098 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-07-25T14:27:01.996151 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:27:01.996641 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-07-25T14:27:01.996691 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:27:01.998733 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.44 ms +I, [2018-07-25T14:27:01.998814 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:27:02.004245 #5] INFO -- : Inline processing of topic section_change with 1 messages took 4.81 ms +I, [2018-07-25T14:27:02.004336 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:27:02.004882 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-07-25T14:27:02.004935 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:27:02.005449 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-07-25T14:27:02.005497 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:27:02.765678 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-07-25T14:27:02.765728 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:27:02.765974 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T14:27:02.766004 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:27:02.766223 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T14:27:02.766253 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:27:02.766480 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T14:27:02.766509 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:27:04.009555 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.49 ms +I, [2018-07-25T14:27:04.009612 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:27:04.010067 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-07-25T14:27:04.010149 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:27:04.010518 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T14:27:04.010559 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:27:04.011383 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-07-25T14:27:04.011448 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:27:04.013282 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.64 ms +I, [2018-07-25T14:27:04.013397 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:27:04.014877 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.45 ms +I, [2018-07-25T14:27:04.014926 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:27:04.766858 #5] INFO -- : Committing offsets: course_change/0:827 +I, [2018-07-25T14:27:04.771108 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-07-25T14:27:04.771170 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:27:04.771546 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-07-25T14:27:04.771593 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:27:04.772099 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.28 ms +I, [2018-07-25T14:27:04.772157 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:27:04.772609 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-07-25T14:27:04.772656 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:27:04.773066 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-07-25T14:27:04.773113 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:27:06.015674 #5] INFO -- : Committing offsets: section_change/0:1831 +I, [2018-07-25T14:27:06.031317 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T14:27:06.031431 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:27:06.032214 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.4 ms +I, [2018-07-25T14:27:06.032285 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:27:06.033597 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.93 ms +I, [2018-07-25T14:27:06.033732 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:27:06.774826 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-07-25T14:27:06.774876 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:27:06.775122 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T14:27:06.775151 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:27:06.775438 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-07-25T14:27:06.775471 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:27:08.035495 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T14:27:08.035549 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:27:08.036755 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-25T14:27:08.036794 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:27:08.037146 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T14:27:08.037183 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:27:08.779344 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.93 ms +I, [2018-07-25T14:27:08.780498 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:27:08.781635 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.31 ms +I, [2018-07-25T14:27:08.781708 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:27:08.782213 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-07-25T14:27:08.782267 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:27:08.782846 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-07-25T14:27:08.782896 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:27:10.038911 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.98 ms +I, [2018-07-25T14:27:10.038974 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:27:10.039300 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T14:27:10.039331 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:27:10.039585 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T14:27:10.039620 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:27:10.040112 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-07-25T14:27:10.040160 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:27:10.040568 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T14:27:10.040619 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:27:10.040989 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T14:27:10.041021 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:27:10.041299 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T14:27:10.041329 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:27:10.041550 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T14:27:10.041621 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:27:10.783981 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-07-25T14:27:10.784066 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:27:10.784390 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-07-25T14:27:10.784422 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:27:10.785324 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-07-25T14:27:10.785362 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:27:10.785609 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T14:27:10.785639 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:27:10.785857 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T14:27:10.785886 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:27:10.786270 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T14:27:10.786320 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:27:12.042596 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-07-25T14:27:12.042643 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:27:12.042953 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T14:27:12.042983 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:27:12.043382 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-25T14:27:12.043413 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:27:12.044411 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.87 ms +I, [2018-07-25T14:27:12.044521 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:27:12.787506 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-07-25T14:27:12.787555 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:27:12.787779 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T14:27:12.787808 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:27:12.788046 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-07-25T14:27:12.788076 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:27:14.045296 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-07-25T14:27:14.045344 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:27:14.045640 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T14:27:14.045671 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:27:14.045968 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T14:27:14.045997 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:27:14.046332 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T14:27:14.046461 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:27:14.047169 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-07-25T14:27:14.047226 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:27:14.047688 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T14:27:14.047757 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:27:14.047994 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T14:27:14.048024 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:27:14.048291 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T14:27:14.048461 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:27:14.049400 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-07-25T14:27:14.049476 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:27:14.050042 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-07-25T14:27:14.050103 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:27:14.050630 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-25T14:27:14.050673 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:27:14.051133 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T14:27:14.051169 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:27:14.051831 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T14:27:14.051867 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:27:14.052244 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T14:27:14.052283 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:27:14.052844 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-07-25T14:27:14.052881 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:27:14.053386 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T14:27:14.053599 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:27:14.054278 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-25T14:27:14.054348 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:27:14.788419 #5] INFO -- : Committing offsets: course_change/0:848 +I, [2018-07-25T14:27:14.795545 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.34 ms +I, [2018-07-25T14:27:14.795592 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:27:14.795857 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T14:27:14.795888 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:27:14.796102 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-07-25T14:27:14.796131 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:27:14.796472 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-07-25T14:27:14.796531 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:27:14.796973 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-07-25T14:27:14.797037 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:27:14.797343 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-07-25T14:27:14.797390 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:27:14.798004 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.37 ms +I, [2018-07-25T14:27:14.798043 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:27:16.055145 #5] INFO -- : Committing offsets: section_change/0:1866 +I, [2018-07-25T14:27:16.059131 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T14:27:16.059290 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:27:16.060335 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-07-25T14:27:16.060383 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:27:16.060712 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T14:27:16.060750 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:27:16.061201 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-07-25T14:27:16.061253 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:27:16.798904 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-07-25T14:27:16.798953 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:27:18.063950 #5] INFO -- : Inline processing of topic section_change with 1 messages took 2.01 ms +I, [2018-07-25T14:27:18.064099 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:27:18.066041 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.53 ms +I, [2018-07-25T14:27:18.066158 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:27:18.066529 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T14:27:18.066560 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:27:18.066933 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T14:27:18.066985 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:27:18.800285 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-07-25T14:27:18.800334 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:27:18.800577 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T14:27:18.800608 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:27:18.800834 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T14:27:18.800864 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:27:20.068001 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-07-25T14:27:20.068051 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:27:20.069022 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.81 ms +I, [2018-07-25T14:27:20.069126 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:27:20.069540 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T14:27:20.069575 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:27:20.070182 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-07-25T14:27:20.070249 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:27:20.070903 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-25T14:27:20.070967 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:27:20.802157 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-07-25T14:27:20.802205 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:27:20.802425 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-07-25T14:27:20.802456 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:27:20.802645 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-07-25T14:27:20.802702 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:27:20.802899 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-07-25T14:27:20.802928 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:27:22.071940 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-25T14:27:22.071989 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:27:22.073803 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.45 ms +I, [2018-07-25T14:27:22.073873 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:27:22.074367 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-07-25T14:27:22.074424 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:27:22.076662 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-07-25T14:27:22.076706 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:27:22.819034 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.57 ms +I, [2018-07-25T14:27:22.819136 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:27:22.819853 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.26 ms +I, [2018-07-25T14:27:22.819940 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:27:22.820428 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.23 ms +I, [2018-07-25T14:27:22.820482 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:27:24.082303 #5] INFO -- : Inline processing of topic section_change with 1 messages took 4.02 ms +I, [2018-07-25T14:27:24.084175 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:27:24.084963 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-07-25T14:27:24.085022 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:27:24.085740 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-07-25T14:27:24.085925 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:27:24.086590 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-07-25T14:27:24.086717 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:27:24.820821 #5] INFO -- : Committing offsets: course_change/0:866 +I, [2018-07-25T14:27:24.824271 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-07-25T14:27:24.824315 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:27:24.824566 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-07-25T14:27:24.824625 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:27:24.824842 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T14:27:24.824872 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:27:24.825081 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-07-25T14:27:24.825110 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:27:26.087091 #5] INFO -- : Committing offsets: section_change/0:1887 +I, [2018-07-25T14:27:26.096668 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.23 ms +I, [2018-07-25T14:27:26.096771 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:27:26.097244 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-07-25T14:27:26.097287 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:27:26.097618 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T14:27:26.097658 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:27:26.097960 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T14:27:26.098000 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:27:26.098295 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T14:27:26.098334 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:27:26.098622 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T14:27:26.098662 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:27:26.098963 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T14:27:26.099002 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:27:26.099309 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T14:27:26.099348 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:27:26.099643 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T14:27:26.099682 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:27:26.099953 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T14:27:26.099992 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:27:26.100270 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T14:27:26.100308 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:27:26.101804 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T14:27:26.101857 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:27:26.102172 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T14:27:26.102249 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:27:26.102533 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T14:27:26.102576 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:27:26.102893 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T14:27:26.102936 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:27:26.103421 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T14:27:26.103466 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:27:26.103781 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T14:27:26.103820 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:27:26.104120 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T14:27:26.104159 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:27:26.105419 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.11 ms +I, [2018-07-25T14:27:26.105492 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:27:26.105999 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T14:27:26.106062 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:27:26.106265 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T14:27:26.106295 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:27:26.106517 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T14:27:26.106547 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:27:26.107834 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.06 ms +I, [2018-07-25T14:27:26.107944 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:27:26.108391 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T14:27:26.108932 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:27:26.109349 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T14:27:26.109402 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:27:26.109798 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T14:27:26.109846 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:27:26.110184 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T14:27:26.110234 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:27:26.110570 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T14:27:26.110623 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:27:26.110966 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T14:27:26.111013 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:27:26.111341 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T14:27:26.111388 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:27:26.111702 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T14:27:26.111748 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:27:26.112096 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T14:27:26.112139 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:27:26.112544 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T14:27:26.112596 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:27:26.113381 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T14:27:26.114374 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:27:26.114875 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T14:27:26.114929 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:27:26.115283 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T14:27:26.115330 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:27:26.115669 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T14:27:26.115717 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:27:26.116076 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T14:27:26.116121 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:27:26.116488 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T14:27:26.116539 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:27:26.116937 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T14:27:26.116991 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:27:26.117403 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T14:27:26.117455 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:27:26.117838 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T14:27:26.117889 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:27:26.118280 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T14:27:26.118331 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:27:26.118674 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T14:27:26.118725 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:27:26.119067 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T14:27:26.119534 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:27:26.121565 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.3 ms +I, [2018-07-25T14:27:26.121631 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:27:26.121995 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T14:27:26.122035 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:27:26.122320 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T14:27:26.122358 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:27:26.122674 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T14:27:26.122712 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:27:26.123065 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T14:27:26.123117 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:27:26.123618 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T14:27:26.123703 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:27:26.124036 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T14:27:26.124081 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:27:26.124393 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T14:27:26.124435 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:27:26.124746 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T14:27:26.124795 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:27:26.125139 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T14:27:26.125187 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:27:26.125563 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T14:27:26.125612 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:27:26.826881 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.34 ms +I, [2018-07-25T14:27:26.826993 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:27:26.828016 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-07-25T14:27:26.828054 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:27:26.828284 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T14:27:26.828315 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:27:26.828594 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-07-25T14:27:26.828641 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:27:26.830394 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-07-25T14:27:26.830458 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:27:28.127098 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-07-25T14:27:28.127148 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:27:28.127482 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T14:27:28.127521 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:27:28.127822 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T14:27:28.127852 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:27:28.128266 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-07-25T14:27:28.128414 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:27:28.831249 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.23 ms +I, [2018-07-25T14:27:28.831325 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:27:28.831584 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T14:27:28.831632 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:27:28.831853 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T14:27:28.831904 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:27:28.832122 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T14:27:28.832153 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:27:28.832385 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T14:27:28.832415 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:27:30.129410 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-07-25T14:27:30.129466 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:27:30.129756 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T14:27:30.129800 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:27:30.130136 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T14:27:30.130179 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:27:30.132738 #5] INFO -- : Inline processing of topic section_change with 1 messages took 2.39 ms +I, [2018-07-25T14:27:30.132806 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:27:30.133469 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T14:27:30.133505 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:27:30.833989 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-07-25T14:27:30.834039 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:27:30.834307 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T14:27:30.834338 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:27:30.834561 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-07-25T14:27:30.834592 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:27:30.834780 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-07-25T14:27:30.834809 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:27:32.134427 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T14:27:32.134475 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:27:32.134811 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T14:27:32.134843 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:27:32.135070 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T14:27:32.135099 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:27:32.135564 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T14:27:32.135603 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:27:32.135876 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T14:27:32.135916 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:27:32.136285 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T14:27:32.136317 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:27:32.835871 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-07-25T14:27:32.835920 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:27:34.137604 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.4 ms +I, [2018-07-25T14:27:34.137664 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:27:34.138167 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-07-25T14:27:34.138278 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:27:34.138655 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-25T14:27:34.138729 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:27:34.139258 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-07-25T14:27:34.139310 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:27:34.836415 #5] INFO -- : Committing offsets: course_change/0:885 +I, [2018-07-25T14:27:36.139652 #5] INFO -- : Committing offsets: section_change/0:1962 +I, [2018-07-25T14:27:36.142610 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-25T14:27:36.142675 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:27:36.143142 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-07-25T14:27:36.143189 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:27:36.143703 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-07-25T14:27:36.143884 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:27:36.144447 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-07-25T14:27:36.144499 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:27:36.841097 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-07-25T14:27:36.841145 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:27:38.145561 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-07-25T14:27:38.146387 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:27:38.147000 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-25T14:27:38.147035 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:27:38.147376 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T14:27:38.147407 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:27:38.147883 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-07-25T14:27:38.148021 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:27:40.148950 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-07-25T14:27:40.149001 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:27:40.149379 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T14:27:40.149410 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:27:42.150621 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-07-25T14:27:42.150673 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:27:42.151188 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-07-25T14:27:42.151326 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:27:42.151891 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-07-25T14:27:42.151936 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:27:44.153838 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.46 ms +I, [2018-07-25T14:27:44.153894 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:27:44.155632 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.33 ms +I, [2018-07-25T14:27:44.155829 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:27:44.157364 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.86 ms +I, [2018-07-25T14:27:44.157444 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:27:44.158928 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.13 ms +I, [2018-07-25T14:27:44.159016 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:27:44.844059 #5] INFO -- : Committing offsets: course_change/0:886 +I, [2018-07-25T14:27:44.848996 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-07-25T14:27:44.849041 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:27:44.850190 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.98 ms +I, [2018-07-25T14:27:44.850225 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:27:46.159586 #5] INFO -- : Committing offsets: section_change/0:1979 +I, [2018-07-25T14:27:46.162896 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-07-25T14:27:46.162940 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:27:46.163299 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T14:27:46.163330 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:27:46.163634 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T14:27:46.163664 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:27:48.164906 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.57 ms +I, [2018-07-25T14:27:48.165008 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:27:48.165612 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-07-25T14:27:48.165696 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:27:48.166184 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-07-25T14:27:48.166236 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:27:50.167257 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-07-25T14:27:50.167306 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:27:50.167686 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T14:27:50.167717 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:27:50.168517 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.68 ms +I, [2018-07-25T14:27:50.168600 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:27:50.168940 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T14:27:50.168975 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:27:50.854849 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-07-25T14:27:50.854897 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:27:50.855147 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-07-25T14:27:50.855178 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:27:50.855439 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-07-25T14:27:50.855468 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:27:50.855704 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-07-25T14:27:50.855733 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:27:50.855956 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-07-25T14:27:50.855986 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:27:52.169759 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-25T14:27:52.169808 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:27:52.170215 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-25T14:27:52.170318 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:27:52.170739 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-25T14:27:52.170789 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:27:52.171331 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-07-25T14:27:52.171385 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:27:52.171907 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-07-25T14:27:52.171959 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:27:52.856648 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-07-25T14:27:52.856698 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:27:52.857805 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-07-25T14:27:52.857843 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:27:52.858070 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T14:27:52.858100 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:27:52.858302 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-07-25T14:27:52.858331 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:27:54.173211 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.45 ms +I, [2018-07-25T14:27:54.173330 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:27:54.173977 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-07-25T14:27:54.174035 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:27:54.174500 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-07-25T14:27:54.174553 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:27:54.174972 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T14:27:54.175016 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:27:54.175455 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T14:27:54.175510 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:27:54.175895 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T14:27:54.175948 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:27:54.176291 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T14:27:54.176338 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:27:54.176708 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T14:27:54.176756 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:27:54.177145 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-25T14:27:54.177275 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:27:54.860291 #5] INFO -- : Committing offsets: course_change/0:897 +I, [2018-07-25T14:27:54.864163 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.26 ms +I, [2018-07-25T14:27:54.864217 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:27:54.864591 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-07-25T14:27:54.864628 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:27:54.864868 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-07-25T14:27:54.864898 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:27:54.865121 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-07-25T14:27:54.865158 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:27:54.865626 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.32 ms +I, [2018-07-25T14:27:54.865671 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:27:54.865930 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T14:27:54.865960 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:27:54.866202 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-07-25T14:27:54.866240 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:27:54.866485 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T14:27:54.866520 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:27:54.866770 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T14:27:54.866808 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:27:56.177644 #5] INFO -- : Committing offsets: section_change/0:2003 +I, [2018-07-25T14:27:56.181189 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T14:27:56.181235 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:27:56.182631 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.69 ms +I, [2018-07-25T14:27:56.182845 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:27:56.183906 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.64 ms +I, [2018-07-25T14:27:56.183984 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:27:56.184452 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-25T14:27:56.184518 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:27:56.185334 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.52 ms +I, [2018-07-25T14:27:56.185737 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:27:56.186878 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T14:27:56.186958 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:27:56.187436 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T14:27:56.187490 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:27:56.187980 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T14:27:56.188146 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:27:56.188490 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T14:27:56.188546 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:27:56.188930 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T14:27:56.188967 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:27:56.189473 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-07-25T14:27:56.189510 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:27:56.189897 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T14:27:56.189984 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:27:56.190348 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T14:27:56.190401 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:27:56.190741 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T14:27:56.190828 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:27:56.191190 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T14:27:56.191691 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:27:56.192626 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.65 ms +I, [2018-07-25T14:27:56.192780 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:27:56.193373 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-25T14:27:56.193433 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:27:56.193905 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T14:27:56.193954 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:27:56.194334 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T14:27:56.194366 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:27:56.194596 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T14:27:56.194627 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:27:56.194845 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T14:27:56.194897 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:27:56.195118 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T14:27:56.195318 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:27:56.195787 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T14:27:56.195821 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:27:56.196223 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T14:27:56.196277 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:27:56.196666 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T14:27:56.196771 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:27:56.197461 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.48 ms +I, [2018-07-25T14:27:56.197521 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:27:56.198145 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-07-25T14:27:56.198202 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:27:56.198819 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T14:27:56.198874 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:27:56.199355 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T14:27:56.199416 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:27:56.199790 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T14:27:56.199836 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:27:56.200222 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T14:27:56.200276 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:27:56.200758 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T14:27:56.200828 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:27:56.202013 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-07-25T14:27:56.202123 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:27:56.203380 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.46 ms +I, [2018-07-25T14:27:56.203454 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:27:56.204332 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.57 ms +I, [2018-07-25T14:27:56.204457 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:27:56.205987 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T14:27:56.206056 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:27:56.206539 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-07-25T14:27:56.206586 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:27:56.206913 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T14:27:56.206977 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:27:56.207292 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T14:27:56.207340 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:27:56.207885 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T14:27:56.207952 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:27:56.208306 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T14:27:56.208351 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:27:56.208690 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T14:27:56.208736 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:27:56.209074 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T14:27:56.209115 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:27:56.209465 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T14:27:56.209514 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:27:56.209928 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T14:27:56.210122 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:27:56.868374 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.29 ms +I, [2018-07-25T14:27:56.868450 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:27:56.869035 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.25 ms +I, [2018-07-25T14:27:56.869137 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:27:56.869585 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-07-25T14:27:56.869620 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:27:56.869875 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T14:27:56.869923 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:27:56.870157 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T14:27:56.870203 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:27:56.870431 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T14:27:56.870475 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:27:56.871352 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-07-25T14:27:56.871393 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:27:56.871650 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T14:27:56.871694 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:27:56.871929 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T14:27:56.871967 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:27:58.211205 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-07-25T14:27:58.211255 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:27:58.212016 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-07-25T14:27:58.212063 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:27:58.212559 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-07-25T14:27:58.212614 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:27:58.213060 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-25T14:27:58.213173 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:27:58.879279 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-07-25T14:27:58.879327 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:27:58.879576 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-07-25T14:27:58.879606 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:27:58.879862 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T14:27:58.879892 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:27:58.880114 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T14:27:58.880143 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:28:00.213998 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-07-25T14:28:00.214225 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:00.214642 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T14:28:00.214720 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:00.215153 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-07-25T14:28:00.215205 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:00.215615 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T14:28:00.215653 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:00.216158 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-07-25T14:28:00.216206 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:00.881342 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-07-25T14:28:00.881391 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:28:00.881648 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-07-25T14:28:00.881679 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:28:00.881900 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-07-25T14:28:00.881930 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:28:02.218816 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.55 ms +I, [2018-07-25T14:28:02.218916 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:02.219509 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-07-25T14:28:02.219555 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:02.221074 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.1 ms +I, [2018-07-25T14:28:02.221230 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:02.221908 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-07-25T14:28:02.221972 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:02.222769 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.43 ms +I, [2018-07-25T14:28:02.222858 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:02.884050 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-07-25T14:28:02.884098 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:28:02.884356 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T14:28:02.884386 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:28:04.225198 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.66 ms +I, [2018-07-25T14:28:04.225474 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:04.226343 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-07-25T14:28:04.226417 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:04.227081 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-07-25T14:28:04.227164 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:04.228109 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.5 ms +I, [2018-07-25T14:28:04.228199 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:04.228787 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-07-25T14:28:04.228844 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:04.884942 #5] INFO -- : Committing offsets: course_change/0:924 +I, [2018-07-25T14:28:04.887778 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-07-25T14:28:04.887822 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:28:04.888068 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T14:28:04.888100 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:28:04.888332 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T14:28:04.888357 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:28:04.888604 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-07-25T14:28:04.888676 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:28:04.889866 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T14:28:04.889906 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:28:06.229607 #5] INFO -- : Committing offsets: section_change/0:2067 +I, [2018-07-25T14:28:06.233536 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T14:28:06.233580 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:06.233900 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T14:28:06.233931 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:06.234227 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T14:28:06.234257 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:06.234564 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T14:28:06.234594 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:06.234882 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T14:28:06.234912 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:06.891667 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-07-25T14:28:06.891729 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:28:06.892744 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-07-25T14:28:06.892790 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:28:06.893125 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-07-25T14:28:06.893173 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:28:08.236174 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-07-25T14:28:08.236222 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:08.236573 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T14:28:08.236616 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:08.236958 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T14:28:08.236988 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:08.238265 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.14 ms +I, [2018-07-25T14:28:08.238321 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:08.239017 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.51 ms +I, [2018-07-25T14:28:08.239054 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:08.893947 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-07-25T14:28:08.893996 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:28:08.894251 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T14:28:08.894282 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:28:08.894484 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-07-25T14:28:08.894513 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:28:10.240087 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.42 ms +I, [2018-07-25T14:28:10.240145 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:10.240539 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T14:28:10.240569 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:10.240878 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T14:28:10.240909 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:10.241183 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T14:28:10.241214 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:10.242360 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T14:28:10.242399 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:10.242633 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T14:28:10.242664 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:10.243069 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T14:28:10.243120 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:10.895509 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-07-25T14:28:10.895557 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:28:10.895818 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-07-25T14:28:10.895848 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:28:10.896070 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T14:28:10.896100 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:28:10.896349 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T14:28:10.896378 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:28:10.896594 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T14:28:10.896624 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:28:12.244463 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-07-25T14:28:12.244550 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:12.245993 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T14:28:12.246033 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:12.246327 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T14:28:12.246422 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:12.246909 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T14:28:12.247281 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:12.248430 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-07-25T14:28:12.248470 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:12.248723 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T14:28:12.248753 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:12.897862 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.23 ms +I, [2018-07-25T14:28:12.897913 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:28:12.898166 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T14:28:12.898198 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:28:12.901748 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-07-25T14:28:12.901854 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:28:12.902189 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-07-25T14:28:12.902221 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:28:12.902470 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-07-25T14:28:12.902501 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:28:14.250275 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-25T14:28:14.250325 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:14.250630 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T14:28:14.250687 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:14.250971 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T14:28:14.251001 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:14.251571 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-07-25T14:28:14.251607 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:14.251843 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T14:28:14.251892 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:14.902996 #5] INFO -- : Committing offsets: course_change/0:945 +I, [2018-07-25T14:28:14.907111 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-07-25T14:28:14.907157 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:28:14.907429 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-07-25T14:28:14.907460 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:28:14.907693 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-07-25T14:28:14.907774 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:28:14.908268 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.31 ms +I, [2018-07-25T14:28:14.908299 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:28:14.908514 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-07-25T14:28:14.908544 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:28:16.252221 #5] INFO -- : Committing offsets: section_change/0:2095 +I, [2018-07-25T14:28:16.255546 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.41 ms +I, [2018-07-25T14:28:16.255672 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:16.256467 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-07-25T14:28:16.256509 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:16.256956 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-25T14:28:16.257004 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:16.258303 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-07-25T14:28:16.258353 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:16.258695 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T14:28:16.258739 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:16.259354 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-07-25T14:28:16.259455 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:16.910518 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-07-25T14:28:16.910577 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:28:16.910850 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T14:28:16.910882 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:28:16.911118 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T14:28:16.911151 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:28:16.911421 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T14:28:16.911450 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:28:18.260516 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-25T14:28:18.260592 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:18.261577 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.55 ms +I, [2018-07-25T14:28:18.261640 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:18.262164 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-07-25T14:28:18.262218 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:18.914743 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.49 ms +I, [2018-07-25T14:28:18.914794 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:28:18.915058 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T14:28:18.915090 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:28:18.915322 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-07-25T14:28:18.915352 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:28:18.915560 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-07-25T14:28:18.915607 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:28:20.263587 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-07-25T14:28:20.263655 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:20.264272 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-07-25T14:28:20.264347 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:20.265943 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.57 ms +I, [2018-07-25T14:28:20.266143 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:20.266728 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-07-25T14:28:20.266786 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:20.267287 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-07-25T14:28:20.267378 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:20.916556 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-07-25T14:28:20.916606 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:28:20.917892 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-07-25T14:28:20.917931 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:28:20.918198 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-07-25T14:28:20.918230 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:28:20.918479 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-07-25T14:28:20.918509 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:28:22.269049 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-07-25T14:28:22.269101 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:22.269894 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.42 ms +I, [2018-07-25T14:28:22.269940 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:22.270274 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T14:28:22.270306 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:22.270571 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T14:28:22.270631 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:22.919105 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-07-25T14:28:22.919216 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:28:22.919482 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-07-25T14:28:22.919512 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:28:22.919730 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T14:28:22.919760 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:28:22.919973 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-07-25T14:28:22.920017 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:28:24.272396 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-07-25T14:28:24.272447 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:24.273332 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.53 ms +I, [2018-07-25T14:28:24.273373 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:24.273700 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T14:28:24.273732 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:24.273954 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T14:28:24.273984 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:24.274269 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T14:28:24.274300 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:24.920301 #5] INFO -- : Committing offsets: course_change/0:966 +I, [2018-07-25T14:28:24.923667 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-07-25T14:28:24.923712 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:28:24.923955 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T14:28:24.923985 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:28:24.924206 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T14:28:24.924236 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:28:24.924480 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-07-25T14:28:24.924507 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:28:24.924712 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-07-25T14:28:24.924760 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:28:26.274566 #5] INFO -- : Committing offsets: section_change/0:2118 +I, [2018-07-25T14:28:26.278563 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T14:28:26.278623 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:26.279030 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-25T14:28:26.279062 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:26.279362 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T14:28:26.279393 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:26.279682 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T14:28:26.279713 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:26.925727 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-07-25T14:28:26.925776 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:28:28.280808 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-07-25T14:28:28.280875 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:28.281315 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T14:28:28.281353 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:28.281672 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T14:28:28.281707 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:28.282035 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T14:28:28.282077 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:28.282407 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T14:28:28.283208 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:30.284402 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-07-25T14:28:30.284468 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:30.285752 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-07-25T14:28:30.285818 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:30.286366 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-07-25T14:28:30.286429 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:30.287549 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.65 ms +I, [2018-07-25T14:28:30.287621 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:30.288294 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-07-25T14:28:30.290116 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:30.290714 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-25T14:28:30.290767 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:30.928164 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-07-25T14:28:30.928243 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:28:30.929170 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.68 ms +I, [2018-07-25T14:28:30.929230 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:28:30.929588 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-07-25T14:28:30.929621 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:28:30.929903 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-07-25T14:28:30.929948 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:28:30.930408 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-07-25T14:28:30.930646 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:28:32.291662 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-25T14:28:32.291712 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:32.292022 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T14:28:32.292054 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:32.292288 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T14:28:32.292324 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:32.292705 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T14:28:32.293742 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:32.931558 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-07-25T14:28:32.931645 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:28:32.931946 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-07-25T14:28:32.931982 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:28:32.932246 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-07-25T14:28:32.932281 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:28:32.932533 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-07-25T14:28:32.932566 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:28:32.932818 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-07-25T14:28:32.932898 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:28:32.933181 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-07-25T14:28:32.933385 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:28:32.934008 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.34 ms +I, [2018-07-25T14:28:32.934122 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:28:32.934944 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.24 ms +I, [2018-07-25T14:28:32.935071 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:28:34.294745 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-07-25T14:28:34.294840 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:34.295135 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T14:28:34.295168 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:34.296653 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.07 ms +I, [2018-07-25T14:28:34.296727 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:34.297110 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T14:28:34.297147 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:34.297425 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T14:28:34.297471 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:34.297778 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T14:28:34.297840 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:34.298463 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T14:28:34.298525 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:34.298919 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T14:28:34.298965 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:34.299523 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-07-25T14:28:34.299583 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:34.300025 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-25T14:28:34.300072 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:34.300454 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T14:28:34.300510 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:34.300848 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T14:28:34.300880 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:34.301217 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T14:28:34.301254 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:34.302651 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.2 ms +I, [2018-07-25T14:28:34.302767 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:34.306869 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.66 ms +I, [2018-07-25T14:28:34.306955 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:34.307306 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T14:28:34.307351 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:34.307784 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T14:28:34.307820 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:34.935484 #5] INFO -- : Committing offsets: course_change/0:985 +I, [2018-07-25T14:28:34.939932 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-07-25T14:28:34.940482 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:28:34.940983 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-07-25T14:28:34.941031 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:28:34.941409 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-07-25T14:28:34.941449 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:28:34.941793 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-07-25T14:28:34.941838 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:28:34.942184 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-07-25T14:28:34.942215 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:28:34.942474 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T14:28:34.942505 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:28:36.309368 #5] INFO -- : Committing offsets: section_change/0:2154 +I, [2018-07-25T14:28:36.314795 #5] INFO -- : Inline processing of topic section_change with 1 messages took 2.29 ms +I, [2018-07-25T14:28:36.314855 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:36.315164 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T14:28:36.315196 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:36.315556 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-25T14:28:36.315587 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:36.315962 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-07-25T14:28:36.316036 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:36.944225 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-07-25T14:28:36.944274 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:28:36.944503 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-07-25T14:28:36.944533 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:28:36.944755 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T14:28:36.944785 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:28:38.318234 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.94 ms +I, [2018-07-25T14:28:38.318305 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:38.318702 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T14:28:38.318756 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:38.319111 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T14:28:38.319163 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:38.319556 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T14:28:38.319676 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:38.320634 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-07-25T14:28:38.320971 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:38.945480 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-07-25T14:28:38.945528 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:28:38.945770 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T14:28:38.945801 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:28:38.946002 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-07-25T14:28:38.946032 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:28:38.947097 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.9 ms +I, [2018-07-25T14:28:38.947218 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:28:38.947501 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-07-25T14:28:38.947533 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:28:38.947846 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-07-25T14:28:38.947896 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:28:40.322932 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.61 ms +I, [2018-07-25T14:28:40.323059 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:40.323526 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-25T14:28:40.323582 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:40.323912 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T14:28:40.323974 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:40.324268 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T14:28:40.324298 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:40.325382 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.83 ms +I, [2018-07-25T14:28:40.325479 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:40.325832 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T14:28:40.325864 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:40.948743 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-07-25T14:28:40.948792 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:28:40.949046 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T14:28:40.949077 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:28:42.327260 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-07-25T14:28:42.327310 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:42.327621 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T14:28:42.327686 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:42.327964 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T14:28:42.327995 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:42.328390 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-25T14:28:42.328420 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:42.329145 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-07-25T14:28:42.329514 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:42.949845 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-07-25T14:28:42.949894 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:28:42.950133 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T14:28:42.950164 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:28:42.950380 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-07-25T14:28:42.950410 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:28:42.950650 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-07-25T14:28:42.950680 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:28:44.330832 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-07-25T14:28:44.330887 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:44.331219 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T14:28:44.331249 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:44.332665 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.17 ms +I, [2018-07-25T14:28:44.332739 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:44.336248 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.76 ms +I, [2018-07-25T14:28:44.336438 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:44.951399 #5] INFO -- : Committing offsets: course_change/0:1006 +I, [2018-07-25T14:28:44.972132 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.26 ms +I, [2018-07-25T14:28:44.972219 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:28:46.336936 #5] INFO -- : Committing offsets: section_change/0:2178 +I, [2018-07-25T14:28:46.341558 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-07-25T14:28:46.341628 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:46.342033 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T14:28:46.342075 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:46.342709 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.45 ms +I, [2018-07-25T14:28:46.342771 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:46.973087 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.26 ms +I, [2018-07-25T14:28:46.973143 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:28:46.977273 #5] INFO -- : Inline processing of topic course_change with 1 messages took 3.09 ms +I, [2018-07-25T14:28:46.977323 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:28:46.977668 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-07-25T14:28:46.977707 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:28:48.344106 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-25T14:28:48.344156 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:48.344640 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-07-25T14:28:48.344692 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:48.345714 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.52 ms +I, [2018-07-25T14:28:48.345849 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:48.346220 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T14:28:48.346252 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:48.347509 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.08 ms +I, [2018-07-25T14:28:48.347576 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:48.348110 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-07-25T14:28:48.348155 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:48.348499 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T14:28:48.348539 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:48.348844 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T14:28:48.348886 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:48.349189 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T14:28:48.349258 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:48.349527 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T14:28:48.349557 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:48.349822 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T14:28:48.349852 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:48.350707 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-07-25T14:28:48.350785 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:48.351581 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T14:28:48.351621 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:48.979475 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.4 ms +I, [2018-07-25T14:28:48.979563 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:28:50.352566 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-25T14:28:50.352614 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:50.352893 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T14:28:50.352929 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:50.353260 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T14:28:50.353293 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:50.353781 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-07-25T14:28:50.353824 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:50.354132 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T14:28:50.354165 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:50.356177 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.37 ms +I, [2018-07-25T14:28:50.356365 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:50.360132 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.89 ms +I, [2018-07-25T14:28:50.360180 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:50.361272 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.9 ms +I, [2018-07-25T14:28:50.361323 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:50.361664 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T14:28:50.361695 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:50.361932 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T14:28:50.362053 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:50.362512 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T14:28:50.362589 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:50.363784 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T14:28:50.363827 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:50.364178 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T14:28:50.364211 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:50.364732 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-07-25T14:28:50.364767 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:50.365351 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-07-25T14:28:50.365794 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:50.366386 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T14:28:50.366442 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:50.366844 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T14:28:50.366896 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:50.369917 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.42 ms +I, [2018-07-25T14:28:50.369964 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:50.370450 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T14:28:50.370503 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:50.370933 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-07-25T14:28:50.370968 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:50.371246 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T14:28:50.371489 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:50.372012 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-07-25T14:28:50.372047 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:50.372288 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T14:28:50.372319 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:50.374048 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.58 ms +I, [2018-07-25T14:28:50.374135 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:50.374611 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T14:28:50.374665 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:50.375057 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T14:28:50.376827 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:50.378191 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-07-25T14:28:50.378234 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:50.378639 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-07-25T14:28:50.378672 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:50.379518 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.65 ms +I, [2018-07-25T14:28:50.379569 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:50.380797 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.66 ms +I, [2018-07-25T14:28:50.380857 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:50.383356 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.35 ms +I, [2018-07-25T14:28:50.383575 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:50.384113 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-07-25T14:28:50.384865 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:50.386841 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.71 ms +I, [2018-07-25T14:28:50.386896 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:50.387358 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-07-25T14:28:50.387432 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:50.387848 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-07-25T14:28:50.387880 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:50.390583 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.95 ms +I, [2018-07-25T14:28:50.390642 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:50.392498 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.64 ms +I, [2018-07-25T14:28:50.392587 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:50.393210 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-25T14:28:50.393247 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:50.393562 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T14:28:50.393594 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:50.394574 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.81 ms +I, [2018-07-25T14:28:50.394634 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:50.396324 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.33 ms +I, [2018-07-25T14:28:50.396378 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:50.396776 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T14:28:50.396846 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:50.397552 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.57 ms +I, [2018-07-25T14:28:50.398097 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:50.398665 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T14:28:50.398703 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:50.399028 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T14:28:50.399059 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:50.400461 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.98 ms +I, [2018-07-25T14:28:50.400525 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:50.400855 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T14:28:50.400920 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:50.402466 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.31 ms +I, [2018-07-25T14:28:50.402712 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:50.403098 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T14:28:50.403131 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:50.403479 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T14:28:50.403512 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:50.404937 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.22 ms +I, [2018-07-25T14:28:50.404989 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:50.407070 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.74 ms +I, [2018-07-25T14:28:50.407119 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:50.407436 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T14:28:50.407468 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:50.407713 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T14:28:50.407745 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:50.409385 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.46 ms +I, [2018-07-25T14:28:50.409489 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:50.410645 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.68 ms +I, [2018-07-25T14:28:50.411306 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:50.413377 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.77 ms +I, [2018-07-25T14:28:50.413446 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:50.415215 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.55 ms +I, [2018-07-25T14:28:50.415265 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:50.415565 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T14:28:50.415597 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:50.415892 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T14:28:50.415937 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:50.417782 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.69 ms +I, [2018-07-25T14:28:50.418619 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:50.424761 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.07 ms +I, [2018-07-25T14:28:50.424824 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:50.427706 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.03 ms +I, [2018-07-25T14:28:50.427783 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:50.428139 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T14:28:50.428176 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:50.429364 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.05 ms +I, [2018-07-25T14:28:50.429402 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:50.430430 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.85 ms +I, [2018-07-25T14:28:50.430554 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:50.432381 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.31 ms +I, [2018-07-25T14:28:50.432445 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:50.433020 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-07-25T14:28:50.433064 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:50.433670 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-07-25T14:28:50.433733 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:50.435645 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.53 ms +I, [2018-07-25T14:28:50.435829 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:50.436446 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T14:28:50.436497 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:50.437848 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-07-25T14:28:50.438254 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:50.438767 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-07-25T14:28:50.438856 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:50.439270 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T14:28:50.439317 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:50.439829 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-07-25T14:28:50.440035 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:50.440554 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T14:28:50.440590 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:50.442526 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T14:28:50.442637 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:52.443712 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.43 ms +I, [2018-07-25T14:28:52.443859 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:52.444254 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T14:28:52.444295 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:52.446329 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.43 ms +I, [2018-07-25T14:28:52.446375 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:52.446637 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T14:28:52.446696 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:52.446957 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T14:28:52.446986 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:52.447203 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T14:28:52.447233 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:52.447489 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T14:28:52.447518 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:52.447788 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T14:28:52.447819 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:52.448353 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-07-25T14:28:52.448430 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:52.449036 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-07-25T14:28:52.449074 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:52.449464 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-07-25T14:28:52.449494 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:52.449751 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T14:28:52.449782 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:52.450328 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.43 ms +I, [2018-07-25T14:28:52.450442 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:52.450676 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T14:28:52.450706 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:52.451564 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-07-25T14:28:52.451745 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:52.452206 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-07-25T14:28:52.452239 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:52.452534 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T14:28:52.452621 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:52.453041 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-07-25T14:28:52.453284 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:52.453967 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-07-25T14:28:52.454031 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:52.454735 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-07-25T14:28:52.454796 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:52.455265 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T14:28:52.455391 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:52.456240 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.63 ms +I, [2018-07-25T14:28:52.456304 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:52.457202 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.49 ms +I, [2018-07-25T14:28:52.457263 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:52.458071 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.57 ms +I, [2018-07-25T14:28:52.458139 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:52.459124 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.45 ms +I, [2018-07-25T14:28:52.459210 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:52.459750 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-07-25T14:28:52.459852 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:52.460330 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-07-25T14:28:52.460390 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:52.461238 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.47 ms +I, [2018-07-25T14:28:52.461294 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:52.462481 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.66 ms +I, [2018-07-25T14:28:52.462581 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:52.463428 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-07-25T14:28:52.463506 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:52.464131 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-07-25T14:28:52.464187 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:52.464874 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T14:28:52.464943 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:52.465755 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T14:28:52.465820 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:52.466478 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-07-25T14:28:52.466693 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:52.471621 #5] INFO -- : Inline processing of topic section_change with 1 messages took 4.56 ms +I, [2018-07-25T14:28:52.471682 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:52.479216 #5] INFO -- : Inline processing of topic section_change with 1 messages took 5.57 ms +I, [2018-07-25T14:28:52.479306 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:52.482840 #5] INFO -- : Inline processing of topic section_change with 1 messages took 3.23 ms +I, [2018-07-25T14:28:52.482917 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:52.490352 #5] INFO -- : Inline processing of topic section_change with 1 messages took 7.06 ms +I, [2018-07-25T14:28:52.490467 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:52.492539 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.82 ms +I, [2018-07-25T14:28:52.494996 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:52.497646 #5] INFO -- : Inline processing of topic section_change with 1 messages took 2.27 ms +I, [2018-07-25T14:28:52.497703 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:52.497999 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T14:28:52.498033 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:52.500592 #5] INFO -- : Inline processing of topic section_change with 1 messages took 2.41 ms +I, [2018-07-25T14:28:52.500642 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:52.501083 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T14:28:52.501239 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:52.507412 #5] INFO -- : Inline processing of topic section_change with 1 messages took 5.95 ms +I, [2018-07-25T14:28:52.507465 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:52.508809 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T14:28:52.508850 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:52.510573 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.46 ms +I, [2018-07-25T14:28:52.510705 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:52.511177 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T14:28:52.514417 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:52.514982 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-07-25T14:28:52.515042 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:52.516647 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.34 ms +I, [2018-07-25T14:28:52.516725 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:52.518392 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.41 ms +I, [2018-07-25T14:28:52.518465 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:52.520469 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.68 ms +I, [2018-07-25T14:28:52.520550 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:52.523242 #5] INFO -- : Inline processing of topic section_change with 1 messages took 2.03 ms +I, [2018-07-25T14:28:52.523349 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:52.523886 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-07-25T14:28:52.524538 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:52.524996 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T14:28:52.525049 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:52.527271 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.99 ms +I, [2018-07-25T14:28:52.527342 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:52.528718 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.09 ms +I, [2018-07-25T14:28:52.528772 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:52.530453 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.49 ms +I, [2018-07-25T14:28:52.530505 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:52.530867 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T14:28:52.530989 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:52.532503 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-07-25T14:28:52.532632 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:52.535041 #5] INFO -- : Inline processing of topic section_change with 1 messages took 2.17 ms +I, [2018-07-25T14:28:52.535090 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:52.537244 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.95 ms +I, [2018-07-25T14:28:52.537300 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:52.538103 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.59 ms +I, [2018-07-25T14:28:52.538160 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:52.538593 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T14:28:52.538658 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:52.547322 #5] INFO -- : Inline processing of topic section_change with 1 messages took 8.02 ms +I, [2018-07-25T14:28:52.547448 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:52.552822 #5] INFO -- : Inline processing of topic section_change with 1 messages took 4.85 ms +I, [2018-07-25T14:28:52.552900 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:52.553828 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-07-25T14:28:52.553872 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:52.554304 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T14:28:52.554400 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:52.554923 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T14:28:52.554976 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:52.555384 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T14:28:52.555429 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:52.555946 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-25T14:28:52.555999 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:52.556518 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T14:28:52.556575 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:52.557102 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-25T14:28:52.557144 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:52.557757 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.44 ms +I, [2018-07-25T14:28:52.557823 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:52.558965 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.5 ms +I, [2018-07-25T14:28:52.559390 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:52.561336 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.64 ms +I, [2018-07-25T14:28:52.561391 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:52.562271 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-07-25T14:28:52.562361 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:52.563189 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.45 ms +I, [2018-07-25T14:28:52.563247 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:52.563887 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T14:28:52.563933 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:52.564294 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T14:28:52.564336 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:52.564647 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T14:28:52.564687 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:52.564984 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T14:28:52.565024 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:52.565312 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T14:28:52.565352 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:52.565656 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T14:28:52.565696 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:52.566950 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.08 ms +I, [2018-07-25T14:28:52.567232 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:52.567743 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T14:28:52.567795 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:52.568200 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T14:28:52.568311 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:52.568697 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T14:28:52.568740 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:52.569099 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T14:28:52.569266 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:52.569597 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T14:28:52.569636 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:52.569943 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T14:28:52.569982 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:52.570262 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T14:28:52.570301 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:52.570563 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T14:28:52.570632 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:52.571183 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-07-25T14:28:52.571238 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:54.572538 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-07-25T14:28:54.572610 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:54.573054 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T14:28:54.573168 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:54.573762 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-07-25T14:28:54.573900 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:54.574415 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-07-25T14:28:54.574482 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:54.574967 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-07-25T14:28:54.575017 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:54.575477 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-07-25T14:28:54.575525 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:54.576005 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-25T14:28:54.576053 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:54.576461 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-25T14:28:54.576508 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:54.577146 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.43 ms +I, [2018-07-25T14:28:54.577199 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:54.577825 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.42 ms +I, [2018-07-25T14:28:54.577901 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:54.578552 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-07-25T14:28:54.578610 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:54.581937 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-25T14:28:54.582006 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:54.582502 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-07-25T14:28:54.582563 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:54.583031 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-07-25T14:28:54.583071 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:54.584017 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.71 ms +I, [2018-07-25T14:28:54.584086 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:54.584718 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.4 ms +I, [2018-07-25T14:28:54.584777 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:54.588030 #5] INFO -- : Inline processing of topic section_change with 1 messages took 2.92 ms +I, [2018-07-25T14:28:54.588105 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:54.588612 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-25T14:28:54.588664 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:54.589177 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T14:28:54.589825 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:54.590431 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-07-25T14:28:54.590549 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:54.592593 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.7 ms +I, [2018-07-25T14:28:54.592680 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:54.593518 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.58 ms +I, [2018-07-25T14:28:54.593588 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:54.594532 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.63 ms +I, [2018-07-25T14:28:54.594612 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:54.595509 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-25T14:28:54.595581 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:54.596073 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-07-25T14:28:54.596184 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:54.596751 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-07-25T14:28:54.596899 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:54.597943 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-07-25T14:28:54.598041 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:54.599642 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.74 ms +I, [2018-07-25T14:28:54.599973 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:54.600782 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T14:28:54.600845 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:54.601514 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.44 ms +I, [2018-07-25T14:28:54.601572 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:54.602340 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.52 ms +I, [2018-07-25T14:28:54.602418 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:54.603201 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.47 ms +I, [2018-07-25T14:28:54.603327 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:54.603995 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-07-25T14:28:54.604071 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:54.604356 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T14:28:54.604409 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:54.604929 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-07-25T14:28:54.605027 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:54.605370 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T14:28:54.605422 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:54.605959 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-07-25T14:28:54.606011 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:54.606579 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-07-25T14:28:54.606702 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:54.607363 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-07-25T14:28:54.607418 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:54.607799 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T14:28:54.607851 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:54.608347 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-07-25T14:28:54.608401 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:54.608919 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-07-25T14:28:54.608971 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:54.609413 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-25T14:28:54.609463 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:54.610196 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T14:28:54.610253 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:54.610942 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T14:28:54.611130 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:54.611615 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-07-25T14:28:54.611665 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:54.612041 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T14:28:54.612125 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:54.612565 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T14:28:54.612612 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:54.614397 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-25T14:28:54.614455 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:54.614758 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T14:28:54.614942 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:54.615293 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T14:28:54.615335 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:54.615637 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T14:28:54.615681 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:54.615969 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T14:28:54.616008 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:54.616308 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T14:28:54.616346 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:54.616641 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T14:28:54.616708 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:54.617860 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T14:28:54.617965 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:54.618634 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-25T14:28:54.618696 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:54.619435 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-07-25T14:28:54.619544 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:54.621610 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.79 ms +I, [2018-07-25T14:28:54.621675 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:54.622248 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-07-25T14:28:54.622293 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:54.622859 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-07-25T14:28:54.622909 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:54.623267 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T14:28:54.623855 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:54.624396 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-07-25T14:28:54.626185 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:54.626907 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-07-25T14:28:54.627258 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:54.628561 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.06 ms +I, [2018-07-25T14:28:54.628623 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:54.629023 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T14:28:54.629067 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:54.630341 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T14:28:54.630404 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:54.630955 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-07-25T14:28:54.631060 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:54.631973 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.43 ms +I, [2018-07-25T14:28:54.632015 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:54.632348 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T14:28:54.632425 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:54.632878 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-07-25T14:28:54.632925 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:54.633327 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T14:28:54.633369 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:54.633689 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T14:28:54.633729 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:54.634175 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-07-25T14:28:54.634231 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:54.635045 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-07-25T14:28:54.635094 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:54.635702 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-07-25T14:28:54.635759 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:54.636462 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-07-25T14:28:54.636516 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:54.637440 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.72 ms +I, [2018-07-25T14:28:54.637549 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:54.638239 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.49 ms +I, [2018-07-25T14:28:54.638296 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:54.639333 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.83 ms +I, [2018-07-25T14:28:54.639385 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:54.639907 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T14:28:54.639996 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:54.640447 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T14:28:54.640504 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:54.643679 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.6 ms +I, [2018-07-25T14:28:54.643747 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:54.644517 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.5 ms +I, [2018-07-25T14:28:54.644576 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:54.645422 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-07-25T14:28:54.647032 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:54.647797 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.5 ms +I, [2018-07-25T14:28:54.648009 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:54.648407 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T14:28:54.648441 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:54.981682 #5] INFO -- : Committing offsets: course_change/0:1011 +I, [2018-07-25T14:28:56.650383 #5] INFO -- : Committing offsets: section_change/0:2451 +I, [2018-07-25T14:28:56.664738 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.47 ms +I, [2018-07-25T14:28:56.664806 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:56.665742 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.43 ms +I, [2018-07-25T14:28:56.665851 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:56.666438 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-07-25T14:28:56.666492 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:56.666908 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T14:28:56.669190 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:56.669783 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-07-25T14:28:56.669840 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:56.673764 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.88 ms +I, [2018-07-25T14:28:56.673821 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:56.674242 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T14:28:56.674285 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:56.674902 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.42 ms +I, [2018-07-25T14:28:56.674954 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:56.675371 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T14:28:56.675418 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:56.675773 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T14:28:56.675859 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:56.676219 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T14:28:56.676265 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:56.676585 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T14:28:56.676648 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:56.676949 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T14:28:56.676998 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:56.677347 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T14:28:56.677393 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:56.677710 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T14:28:56.677751 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:56.678305 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T14:28:56.678354 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:56.678918 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-07-25T14:28:56.678976 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:56.679634 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.4 ms +I, [2018-07-25T14:28:56.679698 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:56.680114 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T14:28:56.680202 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:56.681103 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.59 ms +I, [2018-07-25T14:28:56.681188 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:56.682122 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.62 ms +I, [2018-07-25T14:28:56.682326 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:56.684561 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.71 ms +I, [2018-07-25T14:28:56.685219 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:56.686036 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.51 ms +I, [2018-07-25T14:28:56.686156 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:56.690820 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.64 ms +I, [2018-07-25T14:28:56.690951 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:56.691630 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-07-25T14:28:56.691708 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:56.692393 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.45 ms +I, [2018-07-25T14:28:56.692470 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:56.694178 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.68 ms +I, [2018-07-25T14:28:56.694260 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:56.695007 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.42 ms +I, [2018-07-25T14:28:56.695148 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:56.695931 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.43 ms +I, [2018-07-25T14:28:56.696111 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:56.696711 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-07-25T14:28:56.696919 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:56.701494 #5] INFO -- : Inline processing of topic section_change with 1 messages took 3.59 ms +I, [2018-07-25T14:28:56.701591 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:56.702413 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.47 ms +I, [2018-07-25T14:28:56.702491 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:56.703675 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.94 ms +I, [2018-07-25T14:28:56.703759 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:56.704452 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.43 ms +I, [2018-07-25T14:28:56.704500 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:56.705367 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.62 ms +I, [2018-07-25T14:28:56.705440 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:56.706304 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.46 ms +I, [2018-07-25T14:28:56.706368 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:56.707502 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.87 ms +I, [2018-07-25T14:28:56.707730 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:56.709110 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.85 ms +I, [2018-07-25T14:28:56.709407 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:56.710007 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.4 ms +I, [2018-07-25T14:28:56.710083 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:56.710901 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.46 ms +I, [2018-07-25T14:28:56.710960 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:56.718122 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-07-25T14:28:56.718207 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:56.719507 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.04 ms +I, [2018-07-25T14:28:56.719579 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:56.720246 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.45 ms +I, [2018-07-25T14:28:56.720379 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:56.720995 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T14:28:56.721045 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:56.721628 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-07-25T14:28:56.721679 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:56.722044 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T14:28:56.722102 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:56.723445 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.92 ms +I, [2018-07-25T14:28:56.723509 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:56.724056 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-07-25T14:28:56.724110 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:56.724593 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-07-25T14:28:56.724645 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:56.725171 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-07-25T14:28:56.725284 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:56.725835 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-07-25T14:28:56.725891 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:56.726517 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-07-25T14:28:56.726567 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:56.731178 #5] INFO -- : Inline processing of topic section_change with 1 messages took 2.09 ms +I, [2018-07-25T14:28:56.731246 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:58.733331 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.67 ms +I, [2018-07-25T14:28:58.733584 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:58.734499 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-07-25T14:28:58.734614 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:58.736389 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-07-25T14:28:58.736449 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:58.736951 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-07-25T14:28:58.737024 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:58.737346 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T14:28:58.737438 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:58.737822 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T14:28:58.737875 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:58.738230 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T14:28:58.738281 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:58.738921 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.4 ms +I, [2018-07-25T14:28:58.738972 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:58.740187 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-07-25T14:28:58.740262 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:58.740679 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T14:28:58.740784 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:58.742835 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.92 ms +I, [2018-07-25T14:28:58.742920 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:58.743505 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-25T14:28:58.743569 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:58.744138 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-25T14:28:58.744221 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:58.744688 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-25T14:28:58.744748 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:58.745260 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-07-25T14:28:58.745311 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:58.745828 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-07-25T14:28:58.746090 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:58.747004 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.46 ms +I, [2018-07-25T14:28:58.747855 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:58.748563 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T14:28:58.748777 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:58.750155 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-07-25T14:28:58.750233 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:58.750872 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.4 ms +I, [2018-07-25T14:28:58.750931 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:58.751390 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T14:28:58.751480 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:58.752071 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T14:28:58.752124 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:58.752473 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T14:28:58.752520 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:58.752837 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T14:28:58.753429 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:58.753858 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T14:28:58.753918 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:58.754297 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T14:28:58.754562 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:58.755228 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-07-25T14:28:58.755274 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:58.755780 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T14:28:58.755828 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:58.756148 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T14:28:58.756187 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:58.756700 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T14:28:58.756768 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:58.757320 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T14:28:58.757372 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:58.757704 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T14:28:58.757751 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:58.758059 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T14:28:58.758106 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:58.758432 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T14:28:58.758478 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:58.758809 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T14:28:58.758857 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:58.759156 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T14:28:58.759212 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:58.759537 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T14:28:58.759612 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:58.760491 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.44 ms +I, [2018-07-25T14:28:58.760544 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:58.761330 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-07-25T14:28:58.761391 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:58.762097 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-07-25T14:28:58.762158 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:58.762529 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T14:28:58.762579 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:58.766050 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-07-25T14:28:58.766226 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:58.766647 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T14:28:58.766689 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:58.767024 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T14:28:58.767064 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:58.767362 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T14:28:58.767403 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:58.767881 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-25T14:28:58.767935 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:58.768382 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T14:28:58.768493 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:58.768923 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T14:28:58.768973 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:58.769784 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.61 ms +I, [2018-07-25T14:28:58.769852 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:58.770243 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T14:28:58.770293 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:58.770628 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T14:28:58.770676 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:58.771095 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T14:28:58.771143 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:58.771848 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-07-25T14:28:58.771960 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:58.772850 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.56 ms +I, [2018-07-25T14:28:58.773053 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:58.777075 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.49 ms +I, [2018-07-25T14:28:58.777143 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:58.777651 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-25T14:28:58.777712 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:58.778103 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T14:28:58.778153 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:58.778493 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T14:28:58.778564 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:58.778918 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T14:28:58.778982 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:58.779550 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-07-25T14:28:58.779603 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:58.785132 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.87 ms +I, [2018-07-25T14:28:58.785224 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:58.785898 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-07-25T14:28:58.785963 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:58.786648 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-07-25T14:28:58.786710 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:58.787265 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-07-25T14:28:58.787322 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:58.787870 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-07-25T14:28:58.787926 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:58.788367 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T14:28:58.788439 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:58.789168 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-07-25T14:28:58.789224 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:28:58.790031 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.58 ms +I, [2018-07-25T14:28:58.790094 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:00.791979 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-07-25T14:29:00.792067 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:00.793888 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.53 ms +I, [2018-07-25T14:29:00.793993 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:00.794790 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.49 ms +I, [2018-07-25T14:29:00.794966 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:00.795612 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-07-25T14:29:00.795679 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:00.795982 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T14:29:00.796014 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:00.796312 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T14:29:00.796344 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:00.796817 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T14:29:00.796852 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:00.797196 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T14:29:00.797853 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:00.798278 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T14:29:00.798331 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:00.798991 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-07-25T14:29:00.799122 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:00.800091 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.54 ms +I, [2018-07-25T14:29:00.800169 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:00.800587 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-07-25T14:29:00.800667 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:00.801252 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-07-25T14:29:00.801527 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:00.802203 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-07-25T14:29:00.802243 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:00.802615 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T14:29:00.802648 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:00.802951 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T14:29:00.804533 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:00.808711 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.43 ms +I, [2018-07-25T14:29:00.808795 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:00.809322 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-07-25T14:29:00.809383 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:00.811783 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.4 ms +I, [2018-07-25T14:29:00.811964 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:00.812610 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-07-25T14:29:00.812666 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:00.813104 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-25T14:29:00.813307 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:00.814191 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-07-25T14:29:00.814946 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:00.815458 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-07-25T14:29:00.815521 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:00.816114 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-07-25T14:29:00.816160 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:00.819293 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.29 ms +I, [2018-07-25T14:29:00.819457 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:00.820905 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.16 ms +I, [2018-07-25T14:29:00.820969 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:00.821421 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T14:29:00.821465 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:00.822078 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-07-25T14:29:00.822134 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:00.822667 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-07-25T14:29:00.823046 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:00.823612 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-07-25T14:29:00.823666 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:00.824108 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-25T14:29:00.824156 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:00.824889 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T14:29:00.825008 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:00.825465 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T14:29:00.825513 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:00.825831 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T14:29:00.825876 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:00.827770 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.63 ms +I, [2018-07-25T14:29:00.827831 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:00.828359 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T14:29:00.828422 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:00.828890 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-25T14:29:00.828942 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:00.830115 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-07-25T14:29:00.830191 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:00.830650 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T14:29:00.830707 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:00.831221 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-07-25T14:29:00.831278 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:00.833216 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.52 ms +I, [2018-07-25T14:29:00.833285 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:00.833748 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T14:29:00.833797 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:00.834174 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T14:29:00.835321 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:00.835815 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-25T14:29:00.835869 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:00.836346 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-07-25T14:29:00.836791 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:00.837773 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.49 ms +I, [2018-07-25T14:29:00.837870 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:00.838338 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T14:29:00.838387 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:00.838660 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T14:29:00.838705 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:00.838911 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T14:29:00.838942 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:00.839181 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T14:29:00.839212 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:00.839559 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T14:29:00.839609 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:00.839976 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T14:29:00.840024 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:00.840424 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T14:29:00.840480 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:00.840947 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-07-25T14:29:00.841065 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:00.841891 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-07-25T14:29:00.841931 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:00.842425 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T14:29:00.842467 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:00.842788 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T14:29:00.842827 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:00.843180 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T14:29:00.843220 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:00.843516 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T14:29:00.843556 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:00.845199 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-25T14:29:00.845317 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:00.845676 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T14:29:00.845725 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:00.846078 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T14:29:00.846162 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:00.846493 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T14:29:00.846538 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:00.846881 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T14:29:00.846929 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:00.847288 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T14:29:00.847337 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:00.849493 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-25T14:29:00.849595 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:00.850204 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-07-25T14:29:00.850322 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:00.850842 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T14:29:00.850895 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:00.851286 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T14:29:00.851336 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:00.851698 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T14:29:00.851747 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:00.852498 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T14:29:00.852550 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:00.852916 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T14:29:00.852965 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:00.853470 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T14:29:00.853557 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:00.854170 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-07-25T14:29:00.854211 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:00.854492 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T14:29:00.854526 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:00.854944 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T14:29:00.854980 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:00.855487 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T14:29:00.855576 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:00.856468 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-07-25T14:29:00.856708 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:00.857122 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T14:29:00.857175 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:00.857783 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.41 ms +I, [2018-07-25T14:29:00.857836 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:00.858587 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.55 ms +I, [2018-07-25T14:29:00.858646 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:00.859385 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.53 ms +I, [2018-07-25T14:29:00.859439 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:00.860026 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-07-25T14:29:00.860156 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:00.861829 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.47 ms +I, [2018-07-25T14:29:00.861896 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:00.862402 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-07-25T14:29:00.862450 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:00.863566 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.67 ms +I, [2018-07-25T14:29:00.863833 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:02.865590 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.84 ms +I, [2018-07-25T14:29:02.865695 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:02.866338 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-07-25T14:29:02.866387 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:02.866814 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-07-25T14:29:02.866912 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:02.867343 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-07-25T14:29:02.867834 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:02.868290 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T14:29:02.868342 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:02.868881 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-07-25T14:29:02.868961 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:02.869886 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-07-25T14:29:02.869960 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:02.871127 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.51 ms +I, [2018-07-25T14:29:02.871390 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:02.872018 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-07-25T14:29:02.872055 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:02.872847 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-07-25T14:29:02.873199 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:02.874424 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.91 ms +I, [2018-07-25T14:29:02.874487 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:02.876666 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.89 ms +I, [2018-07-25T14:29:02.876891 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:02.878283 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.99 ms +I, [2018-07-25T14:29:02.878503 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:02.879188 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.42 ms +I, [2018-07-25T14:29:02.879249 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:02.879714 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T14:29:02.879751 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:02.880071 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T14:29:02.880741 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:02.881124 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T14:29:02.881176 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:02.882020 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-07-25T14:29:02.882121 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:02.882543 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T14:29:02.882597 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:02.883308 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.5 ms +I, [2018-07-25T14:29:02.883364 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:02.883781 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T14:29:02.883830 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:02.884516 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.5 ms +I, [2018-07-25T14:29:02.885081 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:02.886453 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.93 ms +I, [2018-07-25T14:29:02.886521 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:02.887339 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.55 ms +I, [2018-07-25T14:29:02.887393 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:02.888292 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-07-25T14:29:02.888353 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:02.889639 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.97 ms +I, [2018-07-25T14:29:02.889924 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:02.890607 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-07-25T14:29:02.890668 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:02.891080 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T14:29:02.891132 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:02.891508 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T14:29:02.891557 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:02.892042 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-07-25T14:29:02.892093 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:02.892601 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-07-25T14:29:02.892653 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:02.893254 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-07-25T14:29:02.893307 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:02.894829 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.44 ms +I, [2018-07-25T14:29:02.894947 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:02.895478 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-07-25T14:29:02.895521 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:02.896203 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-07-25T14:29:02.896251 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:02.896673 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T14:29:02.896715 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:02.897950 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.68 ms +I, [2018-07-25T14:29:02.898003 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:02.898338 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T14:29:02.898379 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:02.898690 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T14:29:02.898729 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:02.899133 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-07-25T14:29:02.899173 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:02.900935 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.34 ms +I, [2018-07-25T14:29:02.901063 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:02.902012 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.61 ms +I, [2018-07-25T14:29:02.902096 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:02.902596 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-25T14:29:02.902675 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:02.903467 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-07-25T14:29:02.903520 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:02.903869 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T14:29:02.903925 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:02.904684 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.55 ms +I, [2018-07-25T14:29:02.904755 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:02.907228 #5] INFO -- : Inline processing of topic section_change with 1 messages took 2.24 ms +I, [2018-07-25T14:29:02.907391 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:02.908131 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-07-25T14:29:02.908226 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:02.908657 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-25T14:29:02.908692 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:02.908945 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T14:29:02.908989 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:02.909278 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T14:29:02.909323 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:02.910006 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.47 ms +I, [2018-07-25T14:29:02.910147 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:02.911986 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T14:29:02.912048 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:02.912431 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T14:29:02.912475 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:02.912831 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T14:29:02.912875 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:02.913207 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T14:29:02.913257 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:02.913878 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-07-25T14:29:02.913963 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:02.914715 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-25T14:29:02.914808 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:02.915396 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-25T14:29:02.915459 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:02.915903 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T14:29:02.915961 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:02.916353 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T14:29:02.916404 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:02.916935 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T14:29:02.916994 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:02.918950 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.7 ms +I, [2018-07-25T14:29:02.919026 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:02.919657 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T14:29:02.919726 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:02.920103 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T14:29:02.920156 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:02.920721 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-07-25T14:29:02.920793 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:02.922473 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.4 ms +I, [2018-07-25T14:29:02.922574 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:02.922974 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T14:29:02.923008 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:02.923276 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T14:29:02.924510 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:02.925528 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.64 ms +I, [2018-07-25T14:29:02.926858 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:02.927882 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.77 ms +I, [2018-07-25T14:29:02.927940 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:02.928359 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T14:29:02.928463 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:02.928785 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T14:29:02.928818 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:02.929377 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T14:29:02.929413 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:02.930020 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.41 ms +I, [2018-07-25T14:29:02.930076 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:02.930465 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T14:29:02.930515 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:02.931085 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-07-25T14:29:02.931366 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:02.932090 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.47 ms +I, [2018-07-25T14:29:02.932151 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:02.932640 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-07-25T14:29:02.932688 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:02.933186 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-07-25T14:29:02.933235 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:02.933692 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-07-25T14:29:02.933742 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:02.935375 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.41 ms +I, [2018-07-25T14:29:02.935452 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:02.936991 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-07-25T14:29:02.937059 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:02.938373 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-07-25T14:29:02.938459 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:02.939388 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.69 ms +I, [2018-07-25T14:29:02.939567 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:02.940129 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-07-25T14:29:02.940182 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:02.940558 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T14:29:02.940810 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:02.941446 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-07-25T14:29:02.941504 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:02.942073 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T14:29:02.942869 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:02.943489 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-07-25T14:29:02.943545 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:02.944104 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-07-25T14:29:02.944153 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:02.944539 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T14:29:02.944583 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:02.944990 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T14:29:02.947194 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:02.948305 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.83 ms +I, [2018-07-25T14:29:02.948350 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:02.948715 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T14:29:02.948747 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:02.948962 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T14:29:02.948990 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:02.949251 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T14:29:02.949282 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:02.949960 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-07-25T14:29:02.950001 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:02.950902 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.7 ms +I, [2018-07-25T14:29:02.951169 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:02.952048 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.55 ms +I, [2018-07-25T14:29:02.952280 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:02.953232 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.55 ms +I, [2018-07-25T14:29:02.953303 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:04.954183 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-07-25T14:29:04.954232 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:04.954480 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T14:29:04.954510 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:04.954721 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T14:29:04.954750 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:04.954962 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T14:29:04.955005 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:04.955219 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T14:29:04.955248 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:04.955433 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T14:29:04.955469 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:04.956299 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-07-25T14:29:04.956422 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:04.956821 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T14:29:04.956971 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:04.957508 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-07-25T14:29:04.957566 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:04.958010 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T14:29:04.958244 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:04.958855 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T14:29:04.959210 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:04.959719 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-25T14:29:04.959814 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:04.960325 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-25T14:29:04.960447 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:04.960823 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T14:29:04.961353 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:04.961776 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T14:29:04.961832 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:04.962591 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.43 ms +I, [2018-07-25T14:29:04.962649 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:04.963179 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T14:29:04.963254 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:04.963635 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T14:29:04.964391 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:04.964798 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T14:29:04.964834 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:04.965049 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T14:29:04.965089 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:04.965304 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T14:29:04.965391 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:04.965869 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-07-25T14:29:04.965921 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:04.966288 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T14:29:04.966340 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:04.966704 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T14:29:04.966752 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:04.967945 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T14:29:04.968003 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:04.968454 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-25T14:29:04.968555 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:04.969103 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T14:29:04.969143 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:04.969415 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T14:29:04.969446 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:04.969664 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T14:29:04.969727 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:04.970271 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T14:29:04.970359 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:04.970753 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T14:29:04.970786 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:04.971008 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T14:29:04.971063 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:04.971283 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T14:29:04.971313 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:04.971832 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T14:29:04.971910 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:04.972234 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T14:29:04.972352 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:04.972758 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T14:29:04.972810 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:04.973379 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T14:29:04.973563 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:04.974613 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-07-25T14:29:04.974734 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:04.975355 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-07-25T14:29:04.975446 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:04.975953 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T14:29:04.977140 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:04.977678 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T14:29:04.977775 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:04.978264 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-07-25T14:29:04.978310 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:04.978810 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-07-25T14:29:04.978864 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:04.979541 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-07-25T14:29:04.979600 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:04.980361 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.4 ms +I, [2018-07-25T14:29:04.980424 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:04.981341 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.4 ms +I, [2018-07-25T14:29:04.981408 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:04.981939 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-07-25T14:29:04.981982 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:04.982604 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-07-25T14:29:04.982661 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:04.983361 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.43 ms +I, [2018-07-25T14:29:04.983515 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:04.983973 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T14:29:04.984034 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:04.984823 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.54 ms +I, [2018-07-25T14:29:04.984943 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:04.985506 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-07-25T14:29:04.986184 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:04.987319 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.77 ms +I, [2018-07-25T14:29:04.987389 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:04.987899 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-07-25T14:29:04.987999 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:04.988374 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T14:29:04.988459 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:04.988951 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-07-25T14:29:04.989002 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:04.989553 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-07-25T14:29:04.989623 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:04.990211 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-07-25T14:29:04.990285 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:04.992229 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.6 ms +I, [2018-07-25T14:29:04.992295 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:04.993702 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.41 ms +I, [2018-07-25T14:29:04.994004 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:04.994499 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-25T14:29:04.995611 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:04.996224 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-07-25T14:29:04.996301 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:04.996699 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T14:29:04.996735 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:04.997745 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-07-25T14:29:04.997887 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:04.998350 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T14:29:04.998423 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:04.998800 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T14:29:04.998850 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:04.999253 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T14:29:04.999310 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:04.999700 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T14:29:04.999769 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:05.000170 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T14:29:05.000286 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:05.000815 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-07-25T14:29:05.000864 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:05.001201 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T14:29:05.001235 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:05.001566 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T14:29:05.001678 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:05.002116 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T14:29:05.002150 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:05.002406 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T14:29:05.002442 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:05.002679 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T14:29:05.003752 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:05.004229 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T14:29:05.004293 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:05.004703 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T14:29:05.004765 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:05.005537 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-07-25T14:29:05.005601 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:05.006061 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T14:29:05.006119 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:05.006618 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T14:29:05.006696 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:05.007513 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.53 ms +I, [2018-07-25T14:29:05.007627 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:05.009657 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T14:29:05.009701 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:05.009949 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T14:29:05.009981 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:05.010209 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T14:29:05.010260 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:05.010482 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T14:29:05.010522 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:05.010752 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T14:29:05.010813 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:05.011166 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T14:29:05.012346 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:05.012780 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T14:29:05.012834 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:05.013289 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-07-25T14:29:05.013344 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:05.013746 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T14:29:05.013801 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:05.014179 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T14:29:05.014265 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:05.014655 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T14:29:05.014784 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:05.015201 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T14:29:05.015262 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:05.015782 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-07-25T14:29:05.015833 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:05.016296 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T14:29:05.016411 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:05.003611 #5] INFO -- : Committing offsets: course_change/0:1011 +I, [2018-07-25T14:29:07.017299 #5] INFO -- : Committing offsets: section_change/0:2854 +I, [2018-07-25T14:29:07.023289 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-25T14:29:07.023336 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:07.024309 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-07-25T14:29:07.025128 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:07.025799 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-07-25T14:29:07.025870 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:07.026461 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-07-25T14:29:07.026511 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:07.026971 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-07-25T14:29:07.027081 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:07.027711 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-07-25T14:29:07.027800 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:07.029103 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.88 ms +I, [2018-07-25T14:29:07.029340 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:07.029998 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.41 ms +I, [2018-07-25T14:29:07.030048 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:07.030491 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-25T14:29:07.030547 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:07.031001 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-07-25T14:29:07.031048 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:07.032159 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-25T14:29:07.032281 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:07.034335 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T14:29:07.034381 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:07.034644 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T14:29:07.034676 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:07.034899 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T14:29:07.034930 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:07.035207 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T14:29:07.035240 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:07.035455 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T14:29:07.035485 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:07.035803 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T14:29:07.035848 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:07.037423 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T14:29:07.037478 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:07.037809 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T14:29:07.037848 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:07.038225 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T14:29:07.038266 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:07.038642 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T14:29:07.038687 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:07.039212 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-07-25T14:29:07.039268 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:07.039916 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.44 ms +I, [2018-07-25T14:29:07.040011 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:07.040508 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-07-25T14:29:07.040561 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:07.042147 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.31 ms +I, [2018-07-25T14:29:07.042231 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:07.042877 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-07-25T14:29:07.042934 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:07.044050 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.83 ms +I, [2018-07-25T14:29:07.044121 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:07.045153 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-07-25T14:29:07.045215 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:07.045607 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T14:29:07.045651 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:07.046104 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-07-25T14:29:07.046175 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:07.046614 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T14:29:07.046648 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:07.046882 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T14:29:07.046912 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:07.047140 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T14:29:07.047170 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:07.047395 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T14:29:07.047426 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:07.047654 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T14:29:07.047695 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:07.048926 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-25T14:29:07.048977 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:07.049315 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T14:29:07.049353 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:07.049684 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T14:29:07.050141 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:07.050606 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T14:29:07.050656 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:07.051022 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T14:29:07.051069 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:07.051443 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T14:29:07.051491 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:07.052096 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T14:29:07.052157 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:07.052849 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.42 ms +I, [2018-07-25T14:29:07.052917 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:07.053544 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-07-25T14:29:07.053600 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:07.054869 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.41 ms +I, [2018-07-25T14:29:07.054976 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:07.055486 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-25T14:29:07.055536 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:07.056127 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.41 ms +I, [2018-07-25T14:29:07.056185 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:07.056896 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.45 ms +I, [2018-07-25T14:29:07.056952 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:07.057519 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-07-25T14:29:07.057569 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:07.057913 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T14:29:07.057962 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:07.058967 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-07-25T14:29:07.059033 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:07.059688 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-07-25T14:29:07.059747 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:07.060550 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.51 ms +I, [2018-07-25T14:29:07.060613 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:07.061935 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.94 ms +I, [2018-07-25T14:29:07.062000 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:07.062506 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-07-25T14:29:07.062589 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:07.063052 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-07-25T14:29:07.063144 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:07.064988 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-07-25T14:29:07.065067 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:07.065880 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.44 ms +I, [2018-07-25T14:29:07.065955 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:07.066595 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-07-25T14:29:07.066682 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:07.067086 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T14:29:07.067120 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:07.067426 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T14:29:07.067458 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:07.069184 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.99 ms +I, [2018-07-25T14:29:07.069349 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:07.069866 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-07-25T14:29:07.069921 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:07.071097 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T14:29:07.071182 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:07.071783 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-07-25T14:29:07.071844 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:07.072278 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T14:29:07.072329 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:07.072634 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T14:29:07.072666 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:07.073122 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-07-25T14:29:07.073164 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:07.073540 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T14:29:07.073638 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:07.073982 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T14:29:07.074026 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:07.074372 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T14:29:07.075044 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:07.075656 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-07-25T14:29:07.075718 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:07.077734 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-07-25T14:29:07.077849 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:07.079216 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.67 ms +I, [2018-07-25T14:29:07.079622 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:07.082522 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T14:29:07.082582 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:07.082997 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-07-25T14:29:07.083030 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:07.083503 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-07-25T14:29:07.084144 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:07.084910 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.52 ms +I, [2018-07-25T14:29:07.084983 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:07.085676 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.41 ms +I, [2018-07-25T14:29:07.085736 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:07.086311 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-07-25T14:29:07.086356 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:07.087048 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.49 ms +I, [2018-07-25T14:29:07.087624 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:07.088323 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-07-25T14:29:07.088376 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:07.088970 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-07-25T14:29:07.089027 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:07.089633 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-07-25T14:29:07.089685 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:07.090103 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T14:29:07.090586 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:07.091095 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-07-25T14:29:07.091157 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:07.091618 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-25T14:29:07.091671 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:07.093798 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.86 ms +I, [2018-07-25T14:29:07.094029 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:07.094909 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.47 ms +I, [2018-07-25T14:29:07.094967 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:07.095548 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-07-25T14:29:07.096275 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:07.097057 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-07-25T14:29:07.097108 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:07.097642 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-07-25T14:29:07.097685 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:07.098199 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-07-25T14:29:07.098241 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:07.098748 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-07-25T14:29:07.099427 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:09.101166 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.53 ms +I, [2018-07-25T14:29:09.101240 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:09.102137 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.65 ms +I, [2018-07-25T14:29:09.102198 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:09.102726 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-07-25T14:29:09.102823 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:09.103478 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.48 ms +I, [2018-07-25T14:29:09.104777 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:09.106606 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.54 ms +I, [2018-07-25T14:29:09.106662 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:09.107069 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T14:29:09.107102 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:09.107401 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T14:29:09.107431 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:09.107790 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T14:29:09.108126 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:09.108855 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.55 ms +I, [2018-07-25T14:29:09.108924 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:09.110693 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.01 ms +I, [2018-07-25T14:29:09.110753 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:09.111641 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.63 ms +I, [2018-07-25T14:29:09.111695 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:09.112767 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.74 ms +I, [2018-07-25T14:29:09.112989 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:09.113783 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.43 ms +I, [2018-07-25T14:29:09.115179 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:09.116906 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-07-25T14:29:09.116958 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:09.119900 #5] INFO -- : Inline processing of topic section_change with 1 messages took 2.63 ms +I, [2018-07-25T14:29:09.119996 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:09.121845 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.53 ms +I, [2018-07-25T14:29:09.121890 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:09.122439 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-07-25T14:29:09.124147 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:09.125546 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-07-25T14:29:09.125607 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:09.126176 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-07-25T14:29:09.126234 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:09.126788 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-07-25T14:29:09.126846 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:09.129679 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.54 ms +I, [2018-07-25T14:29:09.129873 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:09.131243 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-07-25T14:29:09.131287 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:09.132082 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.61 ms +I, [2018-07-25T14:29:09.132164 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:09.133101 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.56 ms +I, [2018-07-25T14:29:09.133303 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:09.135535 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.24 ms +I, [2018-07-25T14:29:09.138201 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:09.139384 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.46 ms +I, [2018-07-25T14:29:09.139657 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:09.140078 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T14:29:09.140190 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:09.140761 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-07-25T14:29:09.140801 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:09.141161 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T14:29:09.141194 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:09.141537 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T14:29:09.141567 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:09.141892 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T14:29:09.142114 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:09.142489 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T14:29:09.142584 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:09.147185 #5] INFO -- : Inline processing of topic section_change with 1 messages took 4.12 ms +I, [2018-07-25T14:29:09.147787 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:09.149585 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.1 ms +I, [2018-07-25T14:29:09.149813 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:09.150737 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.41 ms +I, [2018-07-25T14:29:09.150799 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:09.151388 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-07-25T14:29:09.153885 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:09.156007 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.81 ms +I, [2018-07-25T14:29:09.156075 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:09.156678 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-07-25T14:29:09.156726 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:09.157154 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T14:29:09.157187 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:09.157458 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T14:29:09.157524 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:09.157927 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T14:29:09.157962 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:09.158567 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.48 ms +I, [2018-07-25T14:29:09.158651 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:09.159152 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-07-25T14:29:09.159185 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:09.159862 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-07-25T14:29:09.159950 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:09.162126 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.94 ms +I, [2018-07-25T14:29:09.162201 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:09.162890 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-07-25T14:29:09.162945 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:09.163362 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-07-25T14:29:09.163400 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:09.163767 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T14:29:09.164451 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:09.165027 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-07-25T14:29:09.165165 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:09.165614 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T14:29:09.165668 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:09.166174 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-07-25T14:29:09.166225 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:09.166711 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-25T14:29:09.166766 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:09.167270 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-07-25T14:29:09.167323 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:09.168500 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.49 ms +I, [2018-07-25T14:29:09.168666 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:09.169613 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.5 ms +I, [2018-07-25T14:29:09.169680 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:09.170326 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-07-25T14:29:09.170382 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:09.170938 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-07-25T14:29:09.170987 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:09.171447 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-07-25T14:29:09.171490 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:09.172012 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-07-25T14:29:09.172589 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:09.173096 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-07-25T14:29:09.173152 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:09.173570 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-25T14:29:09.173611 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:09.174010 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T14:29:09.174049 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:09.174428 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T14:29:09.174470 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:09.174851 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T14:29:09.174901 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:09.175223 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T14:29:09.175443 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:09.175862 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-25T14:29:09.175920 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:09.177213 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.07 ms +I, [2018-07-25T14:29:09.177800 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:09.179837 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.48 ms +I, [2018-07-25T14:29:09.179960 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:09.180589 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-07-25T14:29:09.180662 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:09.181063 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T14:29:09.181112 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:09.181432 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T14:29:09.181471 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:09.183569 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-07-25T14:29:09.183622 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:09.184135 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-07-25T14:29:09.184191 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:09.184662 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-25T14:29:09.184724 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:09.185181 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T14:29:09.185235 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:09.185619 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T14:29:09.185674 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:09.186074 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T14:29:09.186126 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:09.186508 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T14:29:09.186559 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:09.186907 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T14:29:09.187047 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:11.188375 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-25T14:29:11.188425 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:11.188661 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T14:29:11.188707 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:11.189949 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T14:29:11.189990 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:11.190241 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T14:29:11.190273 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:11.190520 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T14:29:11.190551 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:11.190785 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T14:29:11.190816 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:11.191116 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T14:29:11.191163 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:11.191496 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T14:29:11.191549 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:11.191895 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T14:29:11.191944 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:11.192304 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T14:29:11.192358 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:11.192890 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T14:29:11.193705 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:11.194117 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T14:29:11.194162 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:11.194412 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T14:29:11.194463 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:11.194728 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T14:29:11.194837 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:11.195253 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T14:29:11.195305 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:11.195672 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T14:29:11.195742 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:11.196107 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T14:29:11.196170 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:11.196516 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T14:29:11.196578 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:11.197232 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-07-25T14:29:11.197294 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:11.197738 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T14:29:11.197788 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:11.198167 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T14:29:11.198217 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:11.198572 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T14:29:11.198625 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:11.199093 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-25T14:29:11.199164 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:11.200879 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.45 ms +I, [2018-07-25T14:29:11.200966 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:11.201487 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-07-25T14:29:11.201569 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:11.203523 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T14:29:11.203580 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:11.204015 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T14:29:11.204105 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:11.204451 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T14:29:11.204529 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:11.204960 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T14:29:11.205010 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:11.205387 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T14:29:11.205438 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:11.205749 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T14:29:11.205846 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:11.206064 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T14:29:11.206095 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:11.206319 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T14:29:11.206348 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:11.206570 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T14:29:11.206600 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:11.206838 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T14:29:11.206869 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:11.207121 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T14:29:11.207152 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:11.210562 #5] INFO -- : Inline processing of topic section_change with 1 messages took 3.27 ms +I, [2018-07-25T14:29:11.210634 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:11.211035 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T14:29:11.211090 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:11.211463 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T14:29:11.211514 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:11.211875 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T14:29:11.211924 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:11.212278 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T14:29:11.212326 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:11.212675 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T14:29:11.212723 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:11.213090 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T14:29:11.213140 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:11.213497 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T14:29:11.213546 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:11.214121 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T14:29:11.214171 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:11.214570 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T14:29:11.214662 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:11.215036 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T14:29:11.215085 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:11.226788 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T14:29:11.227910 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:11.228289 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T14:29:11.228322 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:11.228680 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T14:29:11.228767 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:11.230047 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.65 ms +I, [2018-07-25T14:29:11.230699 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:11.231427 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T14:29:11.231483 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:11.232242 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.43 ms +I, [2018-07-25T14:29:11.232284 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:11.232595 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T14:29:11.232630 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:11.232906 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T14:29:11.232953 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:11.233411 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T14:29:11.233514 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:11.241684 #5] INFO -- : Inline processing of topic section_change with 1 messages took 7.34 ms +I, [2018-07-25T14:29:11.243845 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:11.244201 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T14:29:11.244234 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:11.244474 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T14:29:11.244505 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:11.248101 #5] INFO -- : Inline processing of topic section_change with 1 messages took 3.41 ms +I, [2018-07-25T14:29:11.248173 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:11.249493 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T14:29:11.249591 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:11.249877 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T14:29:11.249908 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:11.250125 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T14:29:11.250171 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:11.250395 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T14:29:11.250425 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:11.250667 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T14:29:11.250695 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:11.250922 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T14:29:11.250952 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:11.251178 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T14:29:11.251208 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:11.251415 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T14:29:11.251460 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:11.251670 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T14:29:11.251699 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:11.251932 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T14:29:11.251961 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:11.252182 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T14:29:11.254171 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:11.262915 #5] INFO -- : Inline processing of topic section_change with 1 messages took 6.82 ms +I, [2018-07-25T14:29:11.262998 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:11.263324 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T14:29:11.263356 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:11.263603 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T14:29:11.263658 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:11.265228 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.51 ms +I, [2018-07-25T14:29:11.265297 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:11.266171 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.62 ms +I, [2018-07-25T14:29:11.266275 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:11.266759 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-25T14:29:11.266852 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:11.268459 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.43 ms +I, [2018-07-25T14:29:11.268619 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:11.269142 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-07-25T14:29:11.269287 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:11.272245 #5] INFO -- : Inline processing of topic section_change with 1 messages took 2.06 ms +I, [2018-07-25T14:29:11.272485 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:11.272886 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T14:29:11.272946 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:11.273278 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T14:29:11.273311 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:11.273625 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T14:29:11.273657 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:11.274680 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.56 ms +I, [2018-07-25T14:29:11.275133 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:11.275830 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-07-25T14:29:11.275895 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:11.279644 #5] INFO -- : Inline processing of topic section_change with 1 messages took 3.04 ms +I, [2018-07-25T14:29:11.279722 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:11.280278 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-07-25T14:29:11.280344 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:11.281184 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.4 ms +I, [2018-07-25T14:29:11.281250 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:11.281702 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T14:29:11.281757 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:11.282914 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.48 ms +I, [2018-07-25T14:29:11.282998 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:11.283959 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.59 ms +I, [2018-07-25T14:29:11.284087 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:11.286196 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.61 ms +I, [2018-07-25T14:29:11.287199 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:11.288819 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.59 ms +I, [2018-07-25T14:29:11.288947 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:11.290062 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.52 ms +I, [2018-07-25T14:29:11.290391 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:11.292378 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.47 ms +I, [2018-07-25T14:29:11.293310 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:11.295182 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.42 ms +I, [2018-07-25T14:29:11.296609 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:11.297717 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.86 ms +I, [2018-07-25T14:29:11.297836 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:11.298426 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-07-25T14:29:11.298482 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:11.298900 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T14:29:11.298954 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:13.300118 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T14:29:13.300171 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:13.300433 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T14:29:13.300464 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:13.300782 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T14:29:13.300833 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:13.302424 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.32 ms +I, [2018-07-25T14:29:13.302494 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:13.303124 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-07-25T14:29:13.303182 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:13.303687 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-07-25T14:29:13.303741 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:13.304237 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-07-25T14:29:13.304277 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:13.305399 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.84 ms +I, [2018-07-25T14:29:13.305918 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:13.307908 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.66 ms +I, [2018-07-25T14:29:13.308893 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:13.309631 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.41 ms +I, [2018-07-25T14:29:13.309671 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:13.310028 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T14:29:13.310071 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:13.310417 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T14:29:13.310577 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:13.312041 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.1 ms +I, [2018-07-25T14:29:13.312130 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:13.314700 #5] INFO -- : Inline processing of topic section_change with 1 messages took 2.22 ms +I, [2018-07-25T14:29:13.314749 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:13.315139 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-25T14:29:13.315169 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:13.315636 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-07-25T14:29:13.315670 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:13.316737 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.73 ms +I, [2018-07-25T14:29:13.316800 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:13.317538 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.43 ms +I, [2018-07-25T14:29:13.317659 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:13.319200 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.86 ms +I, [2018-07-25T14:29:13.319266 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:13.320959 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T14:29:13.321003 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:13.321314 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T14:29:13.321347 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:13.322695 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.42 ms +I, [2018-07-25T14:29:13.322743 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:13.323258 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-07-25T14:29:13.323347 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:13.323751 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-07-25T14:29:13.323786 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:13.325757 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.81 ms +I, [2018-07-25T14:29:13.325891 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:13.328382 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-07-25T14:29:13.328428 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:13.328839 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-25T14:29:13.328874 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:13.329344 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-07-25T14:29:13.329379 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:13.329743 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-25T14:29:13.329778 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:13.330574 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.61 ms +I, [2018-07-25T14:29:13.330793 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:13.331885 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.82 ms +I, [2018-07-25T14:29:13.331940 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:13.334727 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.31 ms +I, [2018-07-25T14:29:13.334815 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:13.335355 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-07-25T14:29:13.335442 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:13.337010 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-07-25T14:29:13.337053 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:13.337439 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T14:29:13.337937 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:13.339518 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.77 ms +I, [2018-07-25T14:29:13.340419 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:13.341151 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.43 ms +I, [2018-07-25T14:29:13.341192 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:13.341565 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T14:29:13.341599 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:13.341923 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T14:29:13.341955 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:13.342204 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T14:29:13.342235 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:13.343373 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.98 ms +I, [2018-07-25T14:29:13.343587 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:13.346623 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.61 ms +I, [2018-07-25T14:29:13.346688 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:13.347812 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.83 ms +I, [2018-07-25T14:29:13.347939 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:13.348806 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.6 ms +I, [2018-07-25T14:29:13.348847 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:13.350428 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.41 ms +I, [2018-07-25T14:29:13.350484 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:13.354660 #5] INFO -- : Inline processing of topic section_change with 1 messages took 3.7 ms +I, [2018-07-25T14:29:13.354747 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:13.356111 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.1 ms +I, [2018-07-25T14:29:13.356185 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:13.357814 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.33 ms +I, [2018-07-25T14:29:13.357905 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:13.359238 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.01 ms +I, [2018-07-25T14:29:13.359319 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:13.360489 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.93 ms +I, [2018-07-25T14:29:13.360548 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:13.362468 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.7 ms +I, [2018-07-25T14:29:13.362524 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:13.363808 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.73 ms +I, [2018-07-25T14:29:13.363888 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:13.364603 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-07-25T14:29:13.365088 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:13.366447 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.17 ms +I, [2018-07-25T14:29:13.366598 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:13.367771 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.8 ms +I, [2018-07-25T14:29:13.367836 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:13.370045 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.74 ms +I, [2018-07-25T14:29:13.370168 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:13.372474 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.41 ms +I, [2018-07-25T14:29:13.372807 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:13.374243 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.99 ms +I, [2018-07-25T14:29:13.375978 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:13.377271 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.05 ms +I, [2018-07-25T14:29:13.377323 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:13.377596 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T14:29:13.377629 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:13.378325 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.58 ms +I, [2018-07-25T14:29:13.378358 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:13.379537 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.9 ms +I, [2018-07-25T14:29:13.379578 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:13.383793 #5] INFO -- : Inline processing of topic section_change with 1 messages took 3.1 ms +I, [2018-07-25T14:29:13.383866 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:13.386502 #5] INFO -- : Inline processing of topic section_change with 1 messages took 2.39 ms +I, [2018-07-25T14:29:13.386710 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:13.387562 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.67 ms +I, [2018-07-25T14:29:13.387645 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:13.388770 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.95 ms +I, [2018-07-25T14:29:13.388839 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:13.390291 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.21 ms +I, [2018-07-25T14:29:13.390356 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:13.390718 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T14:29:13.390760 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:13.392875 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.88 ms +I, [2018-07-25T14:29:13.392995 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:13.395334 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T14:29:13.395399 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:13.395736 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T14:29:13.396155 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:13.398525 #5] INFO -- : Inline processing of topic section_change with 1 messages took 2.14 ms +I, [2018-07-25T14:29:13.398589 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:13.399289 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-07-25T14:29:13.399348 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:13.399915 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T14:29:13.399956 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:13.400241 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T14:29:13.400272 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:13.402386 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T14:29:13.402444 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:13.403113 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T14:29:13.403182 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:13.403578 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T14:29:13.403624 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:13.404009 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T14:29:13.404062 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:13.404527 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-07-25T14:29:13.405199 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:13.406855 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.91 ms +I, [2018-07-25T14:29:13.406935 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:13.407405 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T14:29:13.407463 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:13.410773 #5] INFO -- : Inline processing of topic section_change with 1 messages took 3.11 ms +I, [2018-07-25T14:29:13.410819 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:13.411110 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T14:29:13.411142 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:13.411363 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T14:29:13.411395 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:13.411616 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T14:29:13.411646 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:13.411855 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T14:29:13.411884 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:13.412079 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T14:29:13.412109 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:13.412315 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T14:29:13.412346 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:13.412547 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T14:29:13.412594 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:13.413050 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-07-25T14:29:13.413258 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:13.415687 #5] INFO -- : Inline processing of topic section_change with 1 messages took 2.02 ms +I, [2018-07-25T14:29:13.415764 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:13.418286 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T14:29:13.418349 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:13.419067 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T14:29:13.419124 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:13.420299 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-25T14:29:13.420362 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:13.420745 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T14:29:13.420799 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:13.421184 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T14:29:13.421236 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:13.422037 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.6 ms +I, [2018-07-25T14:29:13.422444 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:13.423183 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T14:29:13.423240 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:13.423924 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-07-25T14:29:13.423970 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:15.026506 #5] INFO -- : Committing offsets: course_change/0:1011 +W, [2018-07-25T14:29:15.416150 #5] WARN -- : Reached max fetcher queue size (100), sleeping 1s +I, [2018-07-25T14:29:15.424590 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T14:29:15.424643 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:15.424876 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T14:29:15.424905 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:15.425206 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T14:29:15.425244 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:15.425815 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T14:29:15.425849 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:15.426234 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T14:29:15.426276 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:15.426488 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T14:29:15.426517 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:15.426737 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T14:29:15.426766 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:15.427190 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-07-25T14:29:15.427246 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:15.427834 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-07-25T14:29:15.427897 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:15.428674 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T14:29:15.428747 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:15.429838 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-07-25T14:29:15.429877 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:15.430123 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T14:29:15.430153 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:15.430371 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T14:29:15.430410 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:15.430633 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T14:29:15.431902 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:15.434950 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T14:29:15.434994 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:15.435514 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-25T14:29:15.435584 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:15.437511 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.51 ms +I, [2018-07-25T14:29:15.437567 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:15.437881 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T14:29:15.437944 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:15.438164 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T14:29:15.438219 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:15.438463 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T14:29:15.438503 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:15.438722 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T14:29:15.438751 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:15.438959 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T14:29:15.438988 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:15.439221 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T14:29:15.439250 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:15.439476 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T14:29:15.439506 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:15.439692 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T14:29:15.439720 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:15.440898 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.88 ms +I, [2018-07-25T14:29:15.440978 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:15.443214 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.56 ms +I, [2018-07-25T14:29:15.443279 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:15.443894 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-07-25T14:29:15.444074 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:15.445360 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.85 ms +I, [2018-07-25T14:29:15.445437 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:15.448289 #5] INFO -- : Inline processing of topic section_change with 1 messages took 2.58 ms +I, [2018-07-25T14:29:15.449329 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:15.450448 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.83 ms +I, [2018-07-25T14:29:15.450556 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:15.455000 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.7 ms +I, [2018-07-25T14:29:15.455067 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:15.455702 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-07-25T14:29:15.455755 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:15.459595 #5] INFO -- : Inline processing of topic section_change with 1 messages took 3.61 ms +I, [2018-07-25T14:29:15.459669 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:15.460314 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T14:29:15.460375 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:15.460856 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T14:29:15.460912 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:15.461328 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T14:29:15.463187 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:15.463617 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T14:29:15.463667 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:15.464008 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T14:29:15.464050 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:15.464373 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T14:29:15.464413 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:15.464705 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T14:29:15.464744 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:15.465030 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T14:29:15.465069 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:15.465355 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T14:29:15.465393 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:15.465677 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T14:29:15.465715 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:15.465948 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T14:29:15.465978 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:15.466207 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T14:29:15.466237 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:15.466460 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T14:29:15.466490 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:15.466726 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T14:29:15.466755 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:15.467016 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T14:29:15.467139 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:15.467568 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T14:29:15.467609 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:15.468166 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-07-25T14:29:15.468223 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:15.468641 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T14:29:15.468722 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:15.470486 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.38 ms +I, [2018-07-25T14:29:15.470551 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:15.471004 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T14:29:15.471052 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:15.471414 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T14:29:15.471456 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:15.471792 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T14:29:15.471834 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:15.472257 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-07-25T14:29:15.472300 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:15.473104 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.53 ms +I, [2018-07-25T14:29:15.473342 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:15.474123 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T14:29:15.474206 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:15.474592 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T14:29:15.474681 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:15.475091 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-25T14:29:15.475123 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:15.475372 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T14:29:15.475400 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:15.476198 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.49 ms +I, [2018-07-25T14:29:15.476354 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:15.476885 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T14:29:15.476938 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:15.477323 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T14:29:15.477372 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:15.477765 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T14:29:15.477814 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:15.480320 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-25T14:29:15.480382 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:15.480790 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T14:29:15.480842 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:15.481206 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T14:29:15.481240 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:15.481584 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T14:29:15.481682 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:15.482071 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T14:29:15.482098 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:15.482657 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.41 ms +I, [2018-07-25T14:29:15.482704 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:15.483211 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-07-25T14:29:15.483265 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:15.484207 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.7 ms +I, [2018-07-25T14:29:15.484410 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:15.485812 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.47 ms +I, [2018-07-25T14:29:15.485906 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:15.486842 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-07-25T14:29:15.486903 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:15.487861 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.53 ms +I, [2018-07-25T14:29:15.487907 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:15.488401 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T14:29:15.488581 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:15.489109 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-25T14:29:15.489164 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:15.489622 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T14:29:15.489673 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:15.490214 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-07-25T14:29:15.490341 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:15.490953 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-07-25T14:29:15.491001 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:15.491736 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-07-25T14:29:15.492874 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:15.494009 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.73 ms +I, [2018-07-25T14:29:15.494179 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:15.495144 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.69 ms +I, [2018-07-25T14:29:15.495188 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:15.495578 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-25T14:29:15.495641 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:15.496108 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T14:29:15.496173 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:15.496527 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T14:29:15.496577 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:15.497274 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-07-25T14:29:15.497329 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:15.497833 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-07-25T14:29:15.497885 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:15.498461 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-07-25T14:29:15.498534 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:15.499159 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.43 ms +I, [2018-07-25T14:29:15.499214 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:15.500057 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.51 ms +I, [2018-07-25T14:29:15.500112 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:15.500895 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.42 ms +I, [2018-07-25T14:29:15.501009 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:15.501529 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-07-25T14:29:15.501586 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:15.502163 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-07-25T14:29:15.502269 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:15.503126 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.43 ms +I, [2018-07-25T14:29:15.503206 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:15.504564 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-07-25T14:29:15.504658 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:15.505236 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-07-25T14:29:15.505294 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:15.505758 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-25T14:29:15.505811 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:17.506112 #5] INFO -- : Committing offsets: section_change/0:3326 +I, [2018-07-25T14:29:17.510756 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-07-25T14:29:17.510821 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:17.511409 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-07-25T14:29:17.511508 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:17.512428 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T14:29:17.512471 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:17.513099 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.43 ms +I, [2018-07-25T14:29:17.513134 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:17.513907 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.65 ms +I, [2018-07-25T14:29:17.514184 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:17.515373 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.45 ms +I, [2018-07-25T14:29:17.515448 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:17.515973 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-07-25T14:29:17.516025 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:17.517502 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.28 ms +I, [2018-07-25T14:29:17.517568 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:17.518276 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-07-25T14:29:17.518325 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:17.518781 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-07-25T14:29:17.518839 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:17.519576 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.53 ms +I, [2018-07-25T14:29:17.519701 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:17.520202 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-07-25T14:29:17.526016 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:17.526375 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T14:29:17.526408 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:17.526719 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T14:29:17.526750 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:17.527533 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.59 ms +I, [2018-07-25T14:29:17.527608 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:17.528112 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-07-25T14:29:17.528172 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:17.528534 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T14:29:17.534604 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:17.536445 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.27 ms +I, [2018-07-25T14:29:17.536533 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:17.537323 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.52 ms +I, [2018-07-25T14:29:17.537801 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:17.538395 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-07-25T14:29:17.538512 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:17.539050 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-07-25T14:29:17.539146 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:17.539600 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-07-25T14:29:17.539659 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:17.540116 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-07-25T14:29:17.548301 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:17.550200 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-07-25T14:29:17.550296 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:17.550641 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T14:29:17.550673 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:17.550933 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T14:29:17.550964 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:17.551263 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T14:29:17.551307 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:17.552466 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.98 ms +I, [2018-07-25T14:29:17.552527 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:17.558398 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-07-25T14:29:17.558516 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:17.559072 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-07-25T14:29:17.559126 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:17.560755 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.41 ms +I, [2018-07-25T14:29:17.560823 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:17.561313 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-07-25T14:29:17.561361 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:17.561811 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-07-25T14:29:17.561864 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:17.562250 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-07-25T14:29:17.562360 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:17.566014 #5] INFO -- : Inline processing of topic section_change with 1 messages took 2.99 ms +I, [2018-07-25T14:29:17.566064 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:17.566332 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T14:29:17.566365 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:17.566634 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T14:29:17.566664 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:17.566926 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T14:29:17.566956 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:17.567195 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T14:29:17.568144 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:17.569606 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-07-25T14:29:17.569695 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:17.570670 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-07-25T14:29:17.571170 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:17.571627 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-07-25T14:29:17.571691 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:17.573224 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.44 ms +I, [2018-07-25T14:29:17.573285 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:17.573996 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.5 ms +I, [2018-07-25T14:29:17.574212 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:17.575054 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.62 ms +I, [2018-07-25T14:29:17.575105 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:17.575596 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-07-25T14:29:17.575658 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:17.577034 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.89 ms +I, [2018-07-25T14:29:17.577529 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:17.578528 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.63 ms +I, [2018-07-25T14:29:17.578574 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:17.580051 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-07-25T14:29:17.580210 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:17.580914 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.47 ms +I, [2018-07-25T14:29:17.580983 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:17.582213 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-07-25T14:29:17.582281 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:17.582965 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.47 ms +I, [2018-07-25T14:29:17.583031 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:17.583575 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-07-25T14:29:17.584071 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:17.584653 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-07-25T14:29:17.584710 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:17.585097 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T14:29:17.585194 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:17.585692 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T14:29:17.585793 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:17.586603 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-07-25T14:29:17.586683 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:17.588314 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.43 ms +I, [2018-07-25T14:29:17.588385 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:17.588694 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T14:29:17.588770 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:17.589187 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T14:29:17.589254 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:17.589822 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-07-25T14:29:17.589881 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:17.590549 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.42 ms +I, [2018-07-25T14:29:17.594055 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:17.594596 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-07-25T14:29:17.594647 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:17.595175 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-07-25T14:29:17.595242 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:17.596016 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.56 ms +I, [2018-07-25T14:29:17.596091 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:17.597689 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.34 ms +I, [2018-07-25T14:29:17.597753 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:17.598252 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-07-25T14:29:17.598306 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:17.598810 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-07-25T14:29:17.599190 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:17.600707 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.48 ms +I, [2018-07-25T14:29:17.600806 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:17.601327 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-07-25T14:29:17.601381 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:17.601896 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-07-25T14:29:17.601946 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:17.602417 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-07-25T14:29:17.602468 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:17.604054 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.26 ms +I, [2018-07-25T14:29:17.604124 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:17.605764 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.64 ms +I, [2018-07-25T14:29:17.605823 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:17.606650 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.54 ms +I, [2018-07-25T14:29:17.606725 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:17.608520 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-07-25T14:29:17.608591 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:17.609018 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T14:29:17.609074 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:17.609605 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-07-25T14:29:17.609657 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:17.610235 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-07-25T14:29:17.610375 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:17.610649 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T14:29:17.610678 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:17.611342 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.51 ms +I, [2018-07-25T14:29:17.611402 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:17.612259 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-07-25T14:29:17.612325 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:17.615734 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.93 ms +I, [2018-07-25T14:29:17.615797 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:17.618116 #5] INFO -- : Inline processing of topic section_change with 1 messages took 2.06 ms +I, [2018-07-25T14:29:17.618211 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:19.619897 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-25T14:29:19.619947 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:19.620248 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T14:29:19.620279 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:19.620656 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-25T14:29:19.620695 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:19.621051 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-25T14:29:19.621083 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:19.621312 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T14:29:19.621341 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:19.621625 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T14:29:19.621655 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:19.621872 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T14:29:19.621902 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:19.622439 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.4 ms +I, [2018-07-25T14:29:19.622486 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:19.622842 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T14:29:19.622887 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:19.623703 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T14:29:19.624221 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:19.624659 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T14:29:19.624707 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:19.626210 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-07-25T14:29:19.626608 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:19.627188 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T14:29:19.627241 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:19.627639 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T14:29:19.627686 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:19.629758 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T14:29:19.629875 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:19.630414 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-25T14:29:19.630476 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:19.631488 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-07-25T14:29:19.631539 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:19.633238 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.5 ms +I, [2018-07-25T14:29:19.633294 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:19.633929 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-07-25T14:29:19.633980 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:19.634423 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-07-25T14:29:19.634467 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:19.634870 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T14:29:19.634919 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:19.637192 #5] INFO -- : Inline processing of topic section_change with 1 messages took 2.1 ms +I, [2018-07-25T14:29:19.637241 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:19.637597 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T14:29:19.637634 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:19.637969 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T14:29:19.638004 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:19.638349 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T14:29:19.638404 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:19.638703 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T14:29:19.638737 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:19.639049 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T14:29:19.639084 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:19.639381 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T14:29:19.647572 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:19.648020 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T14:29:19.648054 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:19.648270 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T14:29:19.648300 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:19.648515 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T14:29:19.648544 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:19.648837 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T14:29:19.648868 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:19.649145 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T14:29:19.649184 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:19.649423 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T14:29:19.649454 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:19.649677 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T14:29:19.649706 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:19.649912 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T14:29:19.649941 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:19.650145 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T14:29:19.650173 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:19.650424 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T14:29:19.650469 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:19.650749 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T14:29:19.650888 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:19.651100 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T14:29:19.651129 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:19.651350 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T14:29:19.651380 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:19.651596 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T14:29:19.651625 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:19.651838 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T14:29:19.651867 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:19.652083 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T14:29:19.652113 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:19.652298 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T14:29:19.652554 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:19.652750 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T14:29:19.652810 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:19.652999 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T14:29:19.653059 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:19.653272 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T14:29:19.653301 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:19.661880 #5] INFO -- : Inline processing of topic section_change with 1 messages took 8.46 ms +I, [2018-07-25T14:29:19.662716 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:19.665546 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T14:29:19.665592 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:19.665869 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T14:29:19.665902 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:19.666200 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T14:29:19.666234 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:19.666467 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T14:29:19.666497 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:19.666736 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T14:29:19.666768 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:19.666978 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T14:29:19.667044 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:19.667271 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T14:29:19.667302 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:19.671448 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.6 ms +I, [2018-07-25T14:29:19.671559 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:19.673845 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T14:29:19.673887 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:19.674140 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T14:29:19.674171 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:19.674480 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T14:29:19.674510 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:19.674818 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T14:29:19.674850 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:19.675165 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T14:29:19.675208 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:19.675603 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T14:29:19.675725 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:19.678173 #5] INFO -- : Inline processing of topic section_change with 1 messages took 2.21 ms +I, [2018-07-25T14:29:19.678293 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:19.683479 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-25T14:29:19.683525 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:19.683883 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T14:29:19.683915 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:19.684195 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T14:29:19.684250 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:19.684578 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T14:29:19.684608 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:19.689285 #5] INFO -- : Inline processing of topic section_change with 1 messages took 4.53 ms +I, [2018-07-25T14:29:19.689343 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:19.689751 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T14:29:19.689782 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:19.690241 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-07-25T14:29:19.690289 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:19.690640 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T14:29:19.690671 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:19.690974 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T14:29:19.691004 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:19.691315 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T14:29:19.691351 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:19.693137 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.62 ms +I, [2018-07-25T14:29:19.693262 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:19.694652 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.93 ms +I, [2018-07-25T14:29:19.695147 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:19.696090 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.56 ms +I, [2018-07-25T14:29:19.696174 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:19.696798 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-07-25T14:29:19.696866 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:21.698289 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.43 ms +I, [2018-07-25T14:29:21.698346 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:21.698691 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T14:29:21.698719 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:21.700116 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.15 ms +I, [2018-07-25T14:29:21.700337 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:21.701517 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.77 ms +I, [2018-07-25T14:29:21.701613 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:21.702320 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-07-25T14:29:21.702402 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:21.703221 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.5 ms +I, [2018-07-25T14:29:21.703292 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:21.704069 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-07-25T14:29:21.704994 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:21.705640 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-07-25T14:29:21.705699 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:21.706973 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.77 ms +I, [2018-07-25T14:29:21.707042 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:21.707592 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-07-25T14:29:21.707644 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:21.708243 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.42 ms +I, [2018-07-25T14:29:21.708291 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:21.709505 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.42 ms +I, [2018-07-25T14:29:21.710053 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:21.711378 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-07-25T14:29:21.711551 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:21.712010 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T14:29:21.712072 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:21.712420 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T14:29:21.712470 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:21.712799 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T14:29:21.712847 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:21.713192 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T14:29:21.713239 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:21.714531 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T14:29:21.714634 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:21.715301 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-07-25T14:29:21.722265 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:21.731773 #5] INFO -- : Inline processing of topic section_change with 1 messages took 9.17 ms +I, [2018-07-25T14:29:21.731864 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:21.733329 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.78 ms +I, [2018-07-25T14:29:21.733400 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:21.733877 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T14:29:21.733934 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:21.734418 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-25T14:29:21.735219 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:21.735824 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-07-25T14:29:21.735916 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:21.737815 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.38 ms +I, [2018-07-25T14:29:21.737895 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:21.738648 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.42 ms +I, [2018-07-25T14:29:21.738715 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:21.742328 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.52 ms +I, [2018-07-25T14:29:21.742740 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:21.743378 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-07-25T14:29:21.743435 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:21.744126 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.46 ms +I, [2018-07-25T14:29:21.744196 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:21.744705 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-07-25T14:29:21.744760 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:21.745253 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-07-25T14:29:21.745302 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:21.746960 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.43 ms +I, [2018-07-25T14:29:21.747043 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:21.747580 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-07-25T14:29:21.747634 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:21.748641 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-07-25T14:29:21.748697 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:21.749173 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-07-25T14:29:21.749216 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:21.749762 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-07-25T14:29:21.749902 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:21.750309 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T14:29:21.750352 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:21.750703 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T14:29:21.750743 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:21.751175 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-07-25T14:29:21.751214 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:21.752466 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-07-25T14:29:21.752515 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:21.754533 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.78 ms +I, [2018-07-25T14:29:21.754590 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:21.755098 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-07-25T14:29:21.755140 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:21.755895 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.44 ms +I, [2018-07-25T14:29:21.755953 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:21.756401 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-25T14:29:21.756451 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:21.756910 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-07-25T14:29:21.758257 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:21.758774 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T14:29:21.758826 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:21.760205 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.17 ms +I, [2018-07-25T14:29:21.760944 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:21.761528 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-07-25T14:29:21.761581 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:21.762275 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T14:29:21.762331 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:21.763038 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T14:29:21.763164 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:21.763857 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-07-25T14:29:21.763990 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:21.764796 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.45 ms +I, [2018-07-25T14:29:21.764868 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:21.765406 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T14:29:21.765460 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:21.765984 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T14:29:21.766036 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:21.766437 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T14:29:21.766488 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:21.766892 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T14:29:21.768722 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:21.769486 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-07-25T14:29:21.769634 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:21.770118 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-25T14:29:21.770183 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:21.770601 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T14:29:21.770653 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:21.772178 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T14:29:21.772218 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:21.772633 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-07-25T14:29:21.772708 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:21.773022 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T14:29:21.773062 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:21.774347 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.13 ms +I, [2018-07-25T14:29:21.774395 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:21.774707 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T14:29:21.774745 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:21.774968 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T14:29:21.774999 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:21.775220 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T14:29:21.775250 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:21.775469 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T14:29:21.775498 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:21.783604 #5] INFO -- : Inline processing of topic section_change with 1 messages took 7.51 ms +I, [2018-07-25T14:29:21.783780 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:21.784326 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T14:29:21.784374 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:21.784782 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T14:29:21.784824 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:21.785208 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-25T14:29:21.785249 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:21.785812 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-07-25T14:29:21.785872 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:21.786326 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-07-25T14:29:21.786374 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:21.786761 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T14:29:21.786801 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:21.787103 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T14:29:21.787183 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:21.788344 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.94 ms +I, [2018-07-25T14:29:21.788403 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:21.789863 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.43 ms +I, [2018-07-25T14:29:21.790363 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:21.790818 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-07-25T14:29:21.790863 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:21.791306 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T14:29:21.791353 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:21.791782 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-07-25T14:29:21.791833 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:21.792335 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-07-25T14:29:21.795252 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:21.795954 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-07-25T14:29:21.795991 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:21.796245 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T14:29:21.796276 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:21.796493 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T14:29:21.796524 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:21.796794 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T14:29:21.796823 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:21.797104 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T14:29:21.797135 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:21.797488 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-25T14:29:21.797528 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:21.797969 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T14:29:21.797998 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:21.798633 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.52 ms +I, [2018-07-25T14:29:21.798672 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:21.799060 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T14:29:21.799106 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:21.799656 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-07-25T14:29:21.799707 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:23.801212 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T14:29:23.801259 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:23.801532 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T14:29:23.801563 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:23.802779 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T14:29:23.802818 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:23.803521 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-07-25T14:29:23.803579 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:23.804267 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-07-25T14:29:23.804752 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:23.805129 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T14:29:23.805161 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:23.805511 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T14:29:23.805619 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:23.806386 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-25T14:29:23.806441 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:23.806773 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T14:29:23.806805 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:23.807217 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-07-25T14:29:23.807271 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:23.807722 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-07-25T14:29:23.807769 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:23.808110 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T14:29:23.808151 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:23.808512 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T14:29:23.809250 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:23.809881 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-07-25T14:29:23.809937 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:23.810799 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.44 ms +I, [2018-07-25T14:29:23.810848 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:23.811189 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T14:29:23.811236 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:23.811681 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-07-25T14:29:23.811717 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:23.811948 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T14:29:23.811978 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:23.812197 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T14:29:23.812225 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:23.812433 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T14:29:23.812462 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:23.812693 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T14:29:23.812727 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:23.813042 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T14:29:23.813092 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:23.813829 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T14:29:23.813891 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:23.814168 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T14:29:23.814219 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:23.814483 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T14:29:23.814513 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:23.814830 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T14:29:23.814859 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:23.815066 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T14:29:23.815110 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:23.815385 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T14:29:23.815414 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:23.815670 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T14:29:23.815699 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:23.816005 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T14:29:23.816034 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:23.816248 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T14:29:23.816277 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:23.816581 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T14:29:23.816610 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:23.816927 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T14:29:23.816974 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:23.817374 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-25T14:29:23.817404 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:23.817750 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T14:29:23.817801 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:23.818221 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-07-25T14:29:23.818262 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:23.818700 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-07-25T14:29:23.818733 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:23.819042 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T14:29:23.819096 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:23.819406 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T14:29:23.819435 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:23.819881 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-25T14:29:23.819936 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:23.820291 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-25T14:29:23.820322 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:23.826070 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.6 ms +I, [2018-07-25T14:29:23.826143 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:23.826624 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-07-25T14:29:23.826671 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:23.827155 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-07-25T14:29:23.827273 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:23.827804 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-07-25T14:29:23.827842 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:23.828314 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-07-25T14:29:23.828362 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:23.829078 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.4 ms +I, [2018-07-25T14:29:23.829144 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:23.829649 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-07-25T14:29:23.829689 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:23.830018 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T14:29:23.830048 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:23.830339 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T14:29:23.830369 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:23.830672 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T14:29:23.830710 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:23.831067 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-25T14:29:23.831098 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:23.831448 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T14:29:23.831498 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:23.831824 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T14:29:23.831855 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:23.832166 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T14:29:23.832210 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:23.832495 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T14:29:23.832536 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:23.832847 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T14:29:23.832882 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:23.833211 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T14:29:23.833241 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:23.833559 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T14:29:23.833589 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:23.833898 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T14:29:23.833928 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:23.834266 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T14:29:23.834311 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:23.848431 #5] INFO -- : Inline processing of topic section_change with 1 messages took 13.92 ms +I, [2018-07-25T14:29:23.848485 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:23.848897 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T14:29:23.848948 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:23.849305 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-25T14:29:23.849344 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:23.849715 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-25T14:29:23.849753 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:23.855129 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.56 ms +I, [2018-07-25T14:29:23.855315 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:23.855966 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-07-25T14:29:23.856031 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:23.856510 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-07-25T14:29:23.856560 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:23.857862 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.11 ms +I, [2018-07-25T14:29:23.857907 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:23.858266 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T14:29:23.858298 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:23.858656 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T14:29:23.858699 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:23.867841 #5] INFO -- : Inline processing of topic section_change with 1 messages took 8.96 ms +I, [2018-07-25T14:29:23.867903 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:23.868252 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T14:29:23.868285 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:23.868594 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T14:29:23.868625 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:23.868896 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T14:29:23.868925 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:23.869198 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T14:29:23.869256 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:23.869514 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T14:29:23.869571 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:23.873279 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.63 ms +I, [2018-07-25T14:29:23.874517 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:23.875056 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-07-25T14:29:23.875110 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:23.875589 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-07-25T14:29:23.875643 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:23.876109 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-25T14:29:23.876158 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:23.876572 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-25T14:29:23.876619 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:23.877144 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-07-25T14:29:23.877201 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:23.877686 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-07-25T14:29:23.879032 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:23.880462 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.12 ms +I, [2018-07-25T14:29:23.881136 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:23.882180 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.41 ms +I, [2018-07-25T14:29:23.882233 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:23.883150 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.51 ms +I, [2018-07-25T14:29:23.883206 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:23.883707 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-25T14:29:23.883759 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:23.884201 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-07-25T14:29:23.884300 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:23.884799 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-07-25T14:29:23.884846 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:23.885179 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T14:29:23.885224 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:23.885784 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-07-25T14:29:23.885863 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:23.886498 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.42 ms +I, [2018-07-25T14:29:23.886559 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:25.034098 #5] INFO -- : Committing offsets: course_change/0:1011 +I, [2018-07-25T14:29:25.887444 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-07-25T14:29:25.887650 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:25.888104 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T14:29:25.888158 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:25.888678 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-07-25T14:29:25.888724 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:25.889185 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-07-25T14:29:25.889231 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:25.889819 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.41 ms +I, [2018-07-25T14:29:25.889870 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:25.890432 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-07-25T14:29:25.890520 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:25.891794 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-07-25T14:29:25.891870 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:25.892294 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T14:29:25.892336 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:25.892759 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-07-25T14:29:25.892803 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:25.894215 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.42 ms +I, [2018-07-25T14:29:25.894282 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:25.895211 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T14:29:25.895273 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:25.895815 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-07-25T14:29:25.895865 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:25.896206 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T14:29:25.896247 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:25.897914 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.47 ms +I, [2018-07-25T14:29:25.897997 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:25.899735 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.44 ms +I, [2018-07-25T14:29:25.899852 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:25.901640 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.48 ms +I, [2018-07-25T14:29:25.901689 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:25.902040 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T14:29:25.902087 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:25.902511 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-25T14:29:25.902564 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:25.903104 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-07-25T14:29:25.903144 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:25.903810 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-07-25T14:29:25.903865 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:25.905086 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.83 ms +I, [2018-07-25T14:29:25.906161 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:25.906634 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T14:29:25.906726 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:25.908429 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T14:29:25.908472 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:25.909075 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.45 ms +I, [2018-07-25T14:29:25.909135 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:25.909860 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-07-25T14:29:25.909919 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:25.910358 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-25T14:29:25.910400 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:25.910671 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T14:29:25.910723 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:25.911057 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T14:29:25.911090 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:25.914836 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T14:29:25.914881 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:25.915297 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T14:29:25.915340 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:25.915908 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-07-25T14:29:25.915977 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:25.916512 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-25T14:29:25.916586 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:25.917078 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-25T14:29:25.917188 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:25.917663 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T14:29:25.917725 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:25.919143 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.62 ms +I, [2018-07-25T14:29:25.919208 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:25.919676 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T14:29:25.919990 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:25.920646 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-07-25T14:29:25.920980 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:25.921327 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T14:29:25.921388 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:25.921639 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T14:29:25.921705 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:25.922287 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T14:29:25.922364 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:25.922821 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-07-25T14:29:25.923001 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:25.923468 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T14:29:25.923521 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:25.924005 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T14:29:25.926174 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:25.926655 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-07-25T14:29:25.926713 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:25.927194 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-25T14:29:25.927239 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:25.927518 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T14:29:25.927550 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:25.927813 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T14:29:25.927843 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:25.928064 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T14:29:25.928117 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:25.928561 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T14:29:25.928654 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:25.928935 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T14:29:25.928968 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:25.929225 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T14:29:25.929944 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:25.930273 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T14:29:25.930310 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:25.930896 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.44 ms +I, [2018-07-25T14:29:25.930999 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:25.935817 #5] INFO -- : Inline processing of topic section_change with 1 messages took 4.57 ms +I, [2018-07-25T14:29:25.935875 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:25.936330 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-25T14:29:25.936380 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:25.936918 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-07-25T14:29:25.936984 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:25.937329 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T14:29:25.937364 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:25.938819 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T14:29:25.938877 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:25.939251 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T14:29:25.939322 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:25.939663 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T14:29:25.939716 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:25.940178 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-07-25T14:29:25.940241 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:25.940593 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T14:29:25.940679 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:25.941064 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T14:29:25.941091 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:25.941332 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T14:29:25.941359 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:25.941594 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T14:29:25.941620 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:25.942156 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-07-25T14:29:25.942857 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:25.943602 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T14:29:25.945516 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:25.946013 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T14:29:25.946062 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:25.946311 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T14:29:25.946342 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:25.946574 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T14:29:25.946609 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:25.946842 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T14:29:25.946884 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:25.947134 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T14:29:25.947478 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:25.947791 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T14:29:25.947826 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:25.948109 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T14:29:25.948154 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:25.954268 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-25T14:29:25.954327 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:25.954699 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T14:29:25.954766 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:25.955137 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T14:29:25.955197 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:25.955589 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T14:29:25.955653 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:25.957314 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T14:29:25.957369 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:25.957700 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T14:29:25.957741 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:25.958206 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-07-25T14:29:25.958341 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:25.958714 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T14:29:25.958758 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:25.959062 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T14:29:25.959102 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:25.959434 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T14:29:25.959473 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:25.959768 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T14:29:25.959897 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:25.960381 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T14:29:25.960415 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:25.960716 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T14:29:25.960916 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:25.961290 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T14:29:25.961670 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:25.962095 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T14:29:25.962148 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:25.964585 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.94 ms +I, [2018-07-25T14:29:25.964648 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:25.965411 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-07-25T14:29:25.965517 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:25.965900 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T14:29:25.965939 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:25.966195 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T14:29:25.966228 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:25.966468 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T14:29:25.967217 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:25.967685 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T14:29:25.967740 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:25.968148 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T14:29:25.968345 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:25.969235 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.67 ms +I, [2018-07-25T14:29:25.970844 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:25.971295 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T14:29:25.971347 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:25.971825 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-07-25T14:29:25.971876 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:25.972238 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T14:29:25.972290 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:25.972705 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T14:29:25.972756 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:25.973097 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T14:29:25.973147 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:27.974100 #5] INFO -- : Committing offsets: section_change/0:3774 +I, [2018-07-25T14:29:27.977538 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-07-25T14:29:27.977604 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:27.978328 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-07-25T14:29:27.978394 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:27.978984 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-07-25T14:29:27.979096 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:27.979818 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-07-25T14:29:27.979926 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:27.981974 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.67 ms +I, [2018-07-25T14:29:27.982040 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:27.982378 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T14:29:27.982906 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:27.984077 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T14:29:27.984117 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:27.984472 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T14:29:27.984521 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:27.984858 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T14:29:27.984933 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:27.985383 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T14:29:27.985654 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:27.986581 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.56 ms +I, [2018-07-25T14:29:27.986715 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:27.987403 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-25T14:29:27.987470 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:27.988517 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.51 ms +I, [2018-07-25T14:29:27.988626 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:27.989368 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.43 ms +I, [2018-07-25T14:29:27.989439 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:27.990365 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.57 ms +I, [2018-07-25T14:29:27.990607 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:27.991507 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.41 ms +I, [2018-07-25T14:29:27.991568 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:27.992112 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T14:29:27.992240 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:27.992862 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-07-25T14:29:27.992939 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:27.994795 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-07-25T14:29:27.994884 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:27.995405 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T14:29:27.995455 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:27.995820 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T14:29:27.995872 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:27.996331 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-07-25T14:29:27.996378 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:27.996711 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T14:29:27.996761 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:27.997160 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T14:29:27.997212 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:27.997571 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T14:29:27.997619 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:27.997968 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T14:29:27.998014 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:27.998348 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T14:29:27.998428 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:27.998786 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T14:29:28.000283 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:28.000720 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T14:29:28.000798 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:28.003043 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T14:29:28.003163 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:28.003986 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T14:29:28.004041 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:28.006289 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T14:29:28.006375 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:28.006699 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T14:29:28.006740 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:28.007047 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T14:29:28.007087 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:28.007387 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T14:29:28.007429 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:28.007877 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T14:29:28.007919 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:28.008171 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T14:29:28.008202 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:28.008487 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T14:29:28.008520 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:28.008766 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T14:29:28.008795 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:28.009307 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-07-25T14:29:28.009356 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:28.010083 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.51 ms +I, [2018-07-25T14:29:28.010360 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:28.011215 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.47 ms +I, [2018-07-25T14:29:28.011339 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:28.011983 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.42 ms +I, [2018-07-25T14:29:28.012054 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:28.012613 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-07-25T14:29:28.013801 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:28.014457 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.43 ms +I, [2018-07-25T14:29:28.014507 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:28.016421 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.7 ms +I, [2018-07-25T14:29:28.016479 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:28.017124 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.43 ms +I, [2018-07-25T14:29:28.017177 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:28.018013 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.59 ms +I, [2018-07-25T14:29:28.018174 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:28.019234 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.45 ms +I, [2018-07-25T14:29:28.019322 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:28.019916 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-07-25T14:29:28.019961 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:28.020561 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.43 ms +I, [2018-07-25T14:29:28.020603 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:28.021222 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.46 ms +I, [2018-07-25T14:29:28.021658 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:28.022385 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.49 ms +I, [2018-07-25T14:29:28.022441 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:28.023079 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.44 ms +I, [2018-07-25T14:29:28.023135 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:28.025708 #5] INFO -- : Inline processing of topic section_change with 1 messages took 2.22 ms +I, [2018-07-25T14:29:28.025900 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:28.026876 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.72 ms +I, [2018-07-25T14:29:28.026964 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:28.027790 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.5 ms +I, [2018-07-25T14:29:28.027854 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:28.028598 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.49 ms +I, [2018-07-25T14:29:28.029095 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:28.029751 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-07-25T14:29:28.029815 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:28.030398 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-07-25T14:29:28.030444 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:28.030942 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-07-25T14:29:28.030990 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:28.031423 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-07-25T14:29:28.031456 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:28.031901 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-07-25T14:29:28.031931 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:28.032559 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.4 ms +I, [2018-07-25T14:29:28.032589 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:28.034204 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.42 ms +I, [2018-07-25T14:29:28.034570 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:28.035688 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.72 ms +I, [2018-07-25T14:29:28.035806 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:28.036406 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-07-25T14:29:28.036469 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:28.037410 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-07-25T14:29:28.037486 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:28.039157 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.43 ms +I, [2018-07-25T14:29:28.039221 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:28.039700 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-07-25T14:29:28.039745 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:28.040310 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-07-25T14:29:28.040357 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:28.040943 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-07-25T14:29:28.040991 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:28.041704 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.46 ms +I, [2018-07-25T14:29:28.041758 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:28.042451 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.41 ms +I, [2018-07-25T14:29:28.042514 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:28.044099 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.04 ms +I, [2018-07-25T14:29:28.044179 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:28.044755 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-07-25T14:29:28.045247 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:28.046182 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.7 ms +I, [2018-07-25T14:29:28.046378 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:28.046939 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-07-25T14:29:28.046990 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:28.047589 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-07-25T14:29:28.047655 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:28.048208 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-07-25T14:29:28.048302 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:28.049423 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.91 ms +I, [2018-07-25T14:29:28.049995 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:28.051811 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.78 ms +I, [2018-07-25T14:29:28.052066 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:28.052710 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-07-25T14:29:28.052764 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:28.053472 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.43 ms +I, [2018-07-25T14:29:28.053581 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:28.054159 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-07-25T14:29:28.054231 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:28.055551 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.02 ms +I, [2018-07-25T14:29:28.055655 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:28.056302 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-07-25T14:29:28.056348 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:28.057637 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.04 ms +I, [2018-07-25T14:29:28.057701 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:28.059240 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.15 ms +I, [2018-07-25T14:29:28.059524 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:28.060684 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.44 ms +I, [2018-07-25T14:29:28.060766 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:28.061326 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-07-25T14:29:28.061379 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:30.062771 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.4 ms +I, [2018-07-25T14:29:30.062831 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:30.063437 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.44 ms +I, [2018-07-25T14:29:30.064075 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:30.064650 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-07-25T14:29:30.064778 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:30.065822 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.85 ms +I, [2018-07-25T14:29:30.065861 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:30.066203 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T14:29:30.066251 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:30.066601 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T14:29:30.066642 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:30.067369 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-07-25T14:29:30.067462 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:30.068009 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-07-25T14:29:30.068052 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:30.068524 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-07-25T14:29:30.068855 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:30.069359 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-07-25T14:29:30.070875 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:30.072443 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.14 ms +I, [2018-07-25T14:29:30.072581 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:30.073439 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.53 ms +I, [2018-07-25T14:29:30.073532 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:30.073956 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-07-25T14:29:30.073989 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:30.074401 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-07-25T14:29:30.074434 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:30.074822 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-25T14:29:30.074855 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:30.075175 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T14:29:30.075231 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:30.076202 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.68 ms +I, [2018-07-25T14:29:30.076274 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:30.077652 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.86 ms +I, [2018-07-25T14:29:30.077883 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:30.079358 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.41 ms +I, [2018-07-25T14:29:30.079454 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:30.081224 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.47 ms +I, [2018-07-25T14:29:30.081274 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:30.081688 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T14:29:30.081720 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:30.082065 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T14:29:30.082096 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:30.082466 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-25T14:29:30.082527 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:30.082878 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T14:29:30.082912 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:30.083518 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-07-25T14:29:30.083585 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:30.084047 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T14:29:30.084082 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:30.084782 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-07-25T14:29:30.084836 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:30.086893 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.81 ms +I, [2018-07-25T14:29:30.086972 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:30.087772 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.52 ms +I, [2018-07-25T14:29:30.087844 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:30.088369 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-07-25T14:29:30.088421 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:30.088872 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-07-25T14:29:30.089726 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:30.091872 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.15 ms +I, [2018-07-25T14:29:30.091933 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:30.092696 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.45 ms +I, [2018-07-25T14:29:30.092760 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:30.093166 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T14:29:30.093231 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:30.093785 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-07-25T14:29:30.093843 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:30.094359 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-07-25T14:29:30.094422 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:30.095741 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.08 ms +I, [2018-07-25T14:29:30.095916 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:30.096958 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.78 ms +I, [2018-07-25T14:29:30.097049 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:30.099129 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.74 ms +I, [2018-07-25T14:29:30.099225 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:30.099678 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T14:29:30.099712 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:30.100206 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-07-25T14:29:30.100243 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:30.100874 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-07-25T14:29:30.100920 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:30.101298 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T14:29:30.101335 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:30.101647 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T14:29:30.102366 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:30.102848 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T14:29:30.104192 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:30.105223 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-07-25T14:29:30.105290 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:30.106400 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T14:29:30.106502 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:30.108360 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T14:29:30.108406 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:30.108694 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T14:29:30.108728 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:30.109009 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T14:29:30.109042 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:30.109346 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T14:29:30.109395 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:30.109773 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T14:29:30.109807 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:30.110059 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T14:29:30.110090 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:30.110326 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T14:29:30.110357 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:30.110589 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T14:29:30.110664 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:30.111028 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T14:29:30.111061 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:30.111311 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T14:29:30.111369 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:30.111580 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T14:29:30.111611 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:30.111830 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T14:29:30.111857 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:30.112185 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T14:29:30.112229 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:30.112584 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T14:29:30.112639 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:30.113007 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T14:29:30.113060 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:30.113428 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T14:29:30.113517 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:30.113860 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T14:29:30.113911 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:30.114305 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T14:29:30.114357 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:30.114708 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T14:29:30.114780 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:30.115211 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T14:29:30.115263 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:30.115568 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T14:29:30.115633 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:30.115938 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T14:29:30.115984 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:30.116314 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T14:29:30.116359 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:30.117548 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T14:29:30.117611 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:30.118149 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-07-25T14:29:30.118202 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:30.118700 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-07-25T14:29:30.118753 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:30.119748 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.76 ms +I, [2018-07-25T14:29:30.119802 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:30.120560 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-07-25T14:29:30.120712 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:30.121437 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-07-25T14:29:30.121490 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:30.121977 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-25T14:29:30.122028 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:30.122441 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T14:29:30.122487 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:30.122902 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-25T14:29:30.122939 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:30.124392 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.26 ms +I, [2018-07-25T14:29:30.124460 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:30.124986 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-07-25T14:29:30.125043 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:30.125786 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.52 ms +I, [2018-07-25T14:29:30.125840 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:30.126302 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-07-25T14:29:30.127401 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:30.127913 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-25T14:29:30.127966 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:30.128427 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-25T14:29:30.128478 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:30.128905 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-25T14:29:30.128974 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:30.129503 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-07-25T14:29:30.129545 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:30.129963 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T14:29:30.130010 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:30.130433 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T14:29:30.130487 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:30.130935 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-25T14:29:30.130988 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:30.131462 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-07-25T14:29:30.131516 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:30.132634 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-07-25T14:29:30.132693 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:32.134069 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-07-25T14:29:32.134122 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:32.134632 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-07-25T14:29:32.134676 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:32.135118 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-07-25T14:29:32.135152 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:32.135564 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-07-25T14:29:32.135620 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:32.136025 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-25T14:29:32.136058 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:32.137181 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.53 ms +I, [2018-07-25T14:29:32.137246 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:32.137863 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-07-25T14:29:32.137961 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:32.139084 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.67 ms +I, [2018-07-25T14:29:32.139420 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:32.140599 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.83 ms +I, [2018-07-25T14:29:32.140654 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:32.151827 #5] INFO -- : Inline processing of topic section_change with 1 messages took 10.9 ms +I, [2018-07-25T14:29:32.151914 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:32.153283 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.01 ms +I, [2018-07-25T14:29:32.154070 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:32.155491 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.01 ms +I, [2018-07-25T14:29:32.155566 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:32.157116 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.05 ms +I, [2018-07-25T14:29:32.157176 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:32.158442 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.89 ms +I, [2018-07-25T14:29:32.158506 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:32.159521 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.78 ms +I, [2018-07-25T14:29:32.159585 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:32.160564 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.75 ms +I, [2018-07-25T14:29:32.160628 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:32.162283 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.38 ms +I, [2018-07-25T14:29:32.162913 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:32.163882 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.66 ms +I, [2018-07-25T14:29:32.163936 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:32.164901 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.77 ms +I, [2018-07-25T14:29:32.164950 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:32.165273 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T14:29:32.165314 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:32.166288 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-07-25T14:29:32.166348 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:32.167384 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.82 ms +I, [2018-07-25T14:29:32.167447 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:32.168524 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.85 ms +I, [2018-07-25T14:29:32.168583 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:32.170837 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.78 ms +I, [2018-07-25T14:29:32.170897 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:32.171613 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-25T14:29:32.171656 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:32.172553 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T14:29:32.172596 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:32.173750 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.96 ms +I, [2018-07-25T14:29:32.173824 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:32.175555 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.0 ms +I, [2018-07-25T14:29:32.175619 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:32.176684 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.84 ms +I, [2018-07-25T14:29:32.176739 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:32.178694 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.44 ms +I, [2018-07-25T14:29:32.178757 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:32.179846 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.82 ms +I, [2018-07-25T14:29:32.179906 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:32.180249 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T14:29:32.180298 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:32.181240 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T14:29:32.181298 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:32.182378 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.87 ms +I, [2018-07-25T14:29:32.182441 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:32.183210 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.56 ms +I, [2018-07-25T14:29:32.183266 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:32.183702 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T14:29:32.184333 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:32.186265 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.02 ms +I, [2018-07-25T14:29:32.186346 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:32.187565 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.91 ms +I, [2018-07-25T14:29:32.187661 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:32.188797 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.83 ms +I, [2018-07-25T14:29:32.188864 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:32.191242 #5] INFO -- : Inline processing of topic section_change with 1 messages took 2.1 ms +I, [2018-07-25T14:29:32.191317 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:32.191739 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T14:29:32.191788 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:32.192740 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.76 ms +I, [2018-07-25T14:29:32.192812 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:32.193478 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-07-25T14:29:32.193541 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:32.194169 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.41 ms +I, [2018-07-25T14:29:32.194235 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:32.194686 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T14:29:32.194737 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:32.195149 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T14:29:32.195209 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:32.195701 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-07-25T14:29:32.195752 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:32.196131 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T14:29:32.196177 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:32.196658 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-07-25T14:29:32.196706 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:32.198087 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-07-25T14:29:32.198163 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:32.198696 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-07-25T14:29:32.198770 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:32.199477 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-07-25T14:29:32.199561 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:32.200069 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-25T14:29:32.200114 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:32.200592 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-07-25T14:29:32.200632 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:32.200922 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T14:29:32.200952 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:32.201273 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T14:29:32.201313 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:32.201819 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-07-25T14:29:32.201902 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:32.202406 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-07-25T14:29:32.202469 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:32.203153 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-07-25T14:29:32.203208 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:32.203587 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T14:29:32.203636 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:32.204165 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-07-25T14:29:32.204218 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:32.204900 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.43 ms +I, [2018-07-25T14:29:32.204969 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:32.205440 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-25T14:29:32.205507 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:32.207610 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.85 ms +I, [2018-07-25T14:29:32.209298 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:32.211249 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.5 ms +I, [2018-07-25T14:29:32.211311 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:32.211835 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-07-25T14:29:32.211878 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:32.212178 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T14:29:32.212218 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:32.212583 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T14:29:32.212624 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:32.213578 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.57 ms +I, [2018-07-25T14:29:32.213738 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:32.214124 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T14:29:32.214163 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:32.214560 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T14:29:32.214604 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:32.215190 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.42 ms +I, [2018-07-25T14:29:32.215237 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:32.215760 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-07-25T14:29:32.215820 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:32.217346 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.29 ms +I, [2018-07-25T14:29:32.217418 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:32.218255 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.44 ms +I, [2018-07-25T14:29:32.218326 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:32.219682 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-07-25T14:29:32.219802 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:32.220320 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-07-25T14:29:32.220433 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:32.221108 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.45 ms +I, [2018-07-25T14:29:32.221277 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:32.222048 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-07-25T14:29:32.222110 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:32.223590 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.94 ms +I, [2018-07-25T14:29:32.223716 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:32.224580 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.55 ms +I, [2018-07-25T14:29:32.224642 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:32.225408 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-07-25T14:29:32.225475 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:32.226556 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-07-25T14:29:32.226762 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:32.227286 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T14:29:32.227520 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:32.228133 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T14:29:32.228239 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:32.229225 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.64 ms +I, [2018-07-25T14:29:32.229335 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:32.229828 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T14:29:32.229879 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:34.230802 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T14:29:34.230856 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:34.231096 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T14:29:34.231131 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:34.231397 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T14:29:34.231432 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:34.231662 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T14:29:34.231733 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:34.233109 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.44 ms +I, [2018-07-25T14:29:34.233186 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:34.233692 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T14:29:34.233756 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:34.234145 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T14:29:34.234192 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:34.234519 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T14:29:34.234587 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:34.234898 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T14:29:34.234962 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:34.235456 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-07-25T14:29:34.235513 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:34.236265 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-07-25T14:29:34.236333 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:34.237564 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.0 ms +I, [2018-07-25T14:29:34.237615 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:34.238242 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-07-25T14:29:34.238294 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:34.244118 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-07-25T14:29:34.244175 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:34.244575 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T14:29:34.244617 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:34.245627 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-07-25T14:29:34.245691 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:34.246364 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-07-25T14:29:34.246420 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:34.246872 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-07-25T14:29:34.246925 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:34.247410 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-07-25T14:29:34.247462 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:34.247811 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T14:29:34.247904 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:34.248377 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-07-25T14:29:34.248412 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:34.248949 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-07-25T14:29:34.248991 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:34.249448 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-25T14:29:34.249527 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:34.249991 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-07-25T14:29:34.250044 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:34.250526 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-07-25T14:29:34.250582 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:34.251130 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-07-25T14:29:34.251662 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:34.252205 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-07-25T14:29:34.252260 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:34.252616 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T14:29:34.252700 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:34.253225 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-07-25T14:29:34.253276 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:34.253774 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-07-25T14:29:34.253826 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:34.254191 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T14:29:34.254244 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:34.254591 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T14:29:34.254637 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:34.255056 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T14:29:34.255105 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:34.255674 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T14:29:34.255854 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:34.256205 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T14:29:34.256249 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:34.256586 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T14:29:34.256630 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:34.257186 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T14:29:34.257230 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:34.258416 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.93 ms +I, [2018-07-25T14:29:34.258487 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:34.258924 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T14:29:34.258968 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:34.259308 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T14:29:34.259397 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:34.259996 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T14:29:34.260040 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:34.260380 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T14:29:34.260421 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:34.260736 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T14:29:34.260776 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:34.261100 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T14:29:34.261140 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:34.261452 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T14:29:34.261524 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:34.262661 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T14:29:34.262709 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:34.263024 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T14:29:34.263064 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:34.263367 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T14:29:34.263442 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:34.263786 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T14:29:34.263824 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:34.264117 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T14:29:34.264966 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:34.265474 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T14:29:34.265530 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:34.265981 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T14:29:34.266035 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:34.266415 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T14:29:34.266467 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:34.266841 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T14:29:34.266891 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:34.267261 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T14:29:34.267323 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:34.267700 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T14:29:34.267752 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:34.268111 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T14:29:34.268158 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:34.268418 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T14:29:34.268470 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:34.268745 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T14:29:34.268775 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:34.269020 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T14:29:34.269047 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:34.269273 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T14:29:34.269323 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:34.269658 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T14:29:34.269720 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:34.270274 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-07-25T14:29:34.270329 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:34.271068 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-07-25T14:29:34.271200 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:34.271705 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T14:29:34.271783 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:34.272790 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.4 ms +I, [2018-07-25T14:29:34.272858 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:34.273248 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T14:29:34.273296 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:34.274081 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.42 ms +I, [2018-07-25T14:29:34.274178 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:34.274604 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T14:29:34.274647 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:34.275434 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.59 ms +I, [2018-07-25T14:29:34.275494 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:34.275957 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T14:29:34.276004 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:34.277482 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.29 ms +I, [2018-07-25T14:29:34.277545 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:34.278048 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-07-25T14:29:34.278099 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:34.278481 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T14:29:34.278554 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:34.278923 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T14:29:34.278975 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:34.279517 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T14:29:34.279568 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:34.279919 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T14:29:34.279970 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:34.280400 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T14:29:34.280456 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:34.280851 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T14:29:34.280904 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:34.281319 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T14:29:34.281373 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:34.281769 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T14:29:34.281816 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:34.282199 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T14:29:34.282252 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:34.282642 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T14:29:34.282696 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:34.283128 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T14:29:34.283229 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:34.283769 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-07-25T14:29:34.283848 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:34.284366 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-07-25T14:29:34.284421 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:34.285379 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-07-25T14:29:34.285430 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:34.286139 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-07-25T14:29:34.286203 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:34.288287 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.84 ms +I, [2018-07-25T14:29:34.288348 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:34.288741 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T14:29:34.288793 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:34.289371 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-07-25T14:29:34.289432 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:34.289941 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-07-25T14:29:34.290092 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:34.290625 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-07-25T14:29:34.290674 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:34.291456 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.43 ms +I, [2018-07-25T14:29:34.291519 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:34.292219 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-07-25T14:29:34.292415 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:34.292811 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T14:29:34.292867 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:35.040979 #5] INFO -- : Committing offsets: course_change/0:1011 +I, [2018-07-25T14:29:36.294446 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.4 ms +I, [2018-07-25T14:29:36.294672 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:36.295126 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T14:29:36.295170 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:36.295520 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T14:29:36.295555 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:36.295893 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T14:29:36.295925 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:36.296516 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-07-25T14:29:36.296621 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:36.296979 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T14:29:36.297011 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:36.297311 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T14:29:36.297349 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:36.297816 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-07-25T14:29:36.297868 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:36.298378 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-07-25T14:29:36.298430 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:36.299197 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.48 ms +I, [2018-07-25T14:29:36.299258 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:36.299652 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T14:29:36.299686 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:36.300021 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T14:29:36.300081 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:36.300571 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-07-25T14:29:36.300626 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:36.301280 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-07-25T14:29:36.301342 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:36.302014 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.46 ms +I, [2018-07-25T14:29:36.302106 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:36.302919 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-07-25T14:29:36.302957 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:36.303447 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-07-25T14:29:36.303496 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:36.304433 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.68 ms +I, [2018-07-25T14:29:36.304496 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:36.305108 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-07-25T14:29:36.305187 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:36.305914 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.43 ms +I, [2018-07-25T14:29:36.305982 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:36.306365 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T14:29:36.306401 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:36.308090 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.53 ms +I, [2018-07-25T14:29:36.308168 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:36.308638 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-25T14:29:36.308676 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:36.309058 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T14:29:36.309103 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:36.309459 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T14:29:36.309492 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:36.309950 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T14:29:36.310042 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:36.311769 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.43 ms +I, [2018-07-25T14:29:36.311818 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:36.312534 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-07-25T14:29:36.312593 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:36.313380 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.45 ms +I, [2018-07-25T14:29:36.313441 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:36.313956 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-07-25T14:29:36.314014 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:36.314628 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.4 ms +I, [2018-07-25T14:29:36.314684 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:36.315616 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.64 ms +I, [2018-07-25T14:29:36.315738 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:36.316180 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-25T14:29:36.316216 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:36.316621 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-07-25T14:29:36.316710 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:36.317285 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-07-25T14:29:36.317346 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:36.317818 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-25T14:29:36.317879 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:36.318481 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-07-25T14:29:36.318517 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:36.318976 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T14:29:36.319012 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:36.319373 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T14:29:36.319405 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:36.319810 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-07-25T14:29:36.319862 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:36.320402 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-07-25T14:29:36.320456 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:36.320969 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-07-25T14:29:36.321022 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:36.322066 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.47 ms +I, [2018-07-25T14:29:36.322127 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:36.322651 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-07-25T14:29:36.322710 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:36.323170 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-25T14:29:36.323226 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:36.323623 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T14:29:36.323671 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:36.324348 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-07-25T14:29:36.324405 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:36.324826 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T14:29:36.324880 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:36.325283 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T14:29:36.325320 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:36.325743 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T14:29:36.325792 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:36.326433 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-07-25T14:29:36.326920 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:36.327354 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T14:29:36.327415 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:36.328066 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-07-25T14:29:36.328123 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:36.328629 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T14:29:36.328686 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:36.329371 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-07-25T14:29:36.329433 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:36.330055 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T14:29:36.330177 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:36.330488 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T14:29:36.330522 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:36.330752 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T14:29:36.330783 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:36.331002 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T14:29:36.331033 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:36.331831 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.66 ms +I, [2018-07-25T14:29:36.331926 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:36.332421 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T14:29:36.332475 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:36.332760 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T14:29:36.332793 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:36.333161 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-25T14:29:36.334276 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:36.334811 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T14:29:36.334868 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:36.335272 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T14:29:36.335326 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:36.335736 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T14:29:36.335794 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:36.336220 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T14:29:36.336273 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:36.336650 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T14:29:36.336699 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:36.337101 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T14:29:36.337151 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:36.337508 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T14:29:36.337558 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:36.337919 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T14:29:36.338005 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:36.338479 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T14:29:36.338529 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:36.339286 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T14:29:36.339368 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:36.339839 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-07-25T14:29:36.339893 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:36.340279 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T14:29:36.340328 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:36.340690 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T14:29:36.340736 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:36.341074 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T14:29:36.341117 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:36.341482 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T14:29:36.341529 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:36.341875 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T14:29:36.341926 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:36.342302 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T14:29:36.342526 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:36.343017 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T14:29:36.343113 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:36.343572 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T14:29:36.343625 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:36.344083 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-07-25T14:29:36.344243 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:36.344918 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-25T14:29:36.345061 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:36.345862 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-25T14:29:36.345919 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:36.346345 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T14:29:36.346484 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:36.346975 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-07-25T14:29:36.347035 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:36.347303 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T14:29:36.347346 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:36.347560 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T14:29:36.347598 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:36.347820 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T14:29:36.347850 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:36.348342 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-07-25T14:29:36.348423 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:38.349261 #5] INFO -- : Committing offsets: section_change/0:4231 +I, [2018-07-25T14:29:38.353625 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.58 ms +I, [2018-07-25T14:29:38.353719 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:38.354217 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T14:29:38.354270 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:38.354784 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-07-25T14:29:38.354826 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:38.355694 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.53 ms +I, [2018-07-25T14:29:38.355820 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:38.356392 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-07-25T14:29:38.356447 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:38.356921 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-07-25T14:29:38.356971 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:38.357420 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-07-25T14:29:38.357466 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:38.357866 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T14:29:38.358658 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:38.359172 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-07-25T14:29:38.359218 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:38.359654 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-07-25T14:29:38.359695 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:38.360551 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.61 ms +I, [2018-07-25T14:29:38.360607 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:38.361079 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-07-25T14:29:38.361122 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:38.361951 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.59 ms +I, [2018-07-25T14:29:38.362005 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:38.362877 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-07-25T14:29:38.362957 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:38.364076 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-07-25T14:29:38.364197 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:38.364839 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-07-25T14:29:38.364896 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:38.365612 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-07-25T14:29:38.365668 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:38.366124 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-07-25T14:29:38.366175 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:38.366689 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-07-25T14:29:38.366742 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:38.367430 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-07-25T14:29:38.367535 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:38.368243 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.4 ms +I, [2018-07-25T14:29:38.368296 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:38.368724 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T14:29:38.368777 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:38.369269 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-07-25T14:29:38.369319 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:38.369813 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-07-25T14:29:38.369866 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:38.370481 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.42 ms +I, [2018-07-25T14:29:38.370536 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:38.371018 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-07-25T14:29:38.371062 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:38.371823 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.42 ms +I, [2018-07-25T14:29:38.371875 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:38.372419 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-07-25T14:29:38.372494 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:38.373138 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.41 ms +I, [2018-07-25T14:29:38.373195 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:38.373838 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-07-25T14:29:38.373897 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:38.374307 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T14:29:38.374359 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:38.374867 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-07-25T14:29:38.374929 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:38.375583 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.41 ms +I, [2018-07-25T14:29:38.375639 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:38.376196 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-07-25T14:29:38.376256 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:38.376761 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T14:29:38.376813 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:38.377203 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T14:29:38.377441 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:38.377817 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T14:29:38.377866 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:38.379093 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.67 ms +I, [2018-07-25T14:29:38.379136 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:38.379692 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-07-25T14:29:38.379753 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:38.380969 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-07-25T14:29:38.381258 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:38.381845 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-07-25T14:29:38.381900 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:38.383253 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.09 ms +I, [2018-07-25T14:29:38.383321 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:38.384298 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-07-25T14:29:38.384383 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:38.384847 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T14:29:38.384909 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:38.385846 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-07-25T14:29:38.385906 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:38.386820 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.58 ms +I, [2018-07-25T14:29:38.386872 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:38.387409 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-07-25T14:29:38.387467 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:38.387925 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-07-25T14:29:38.387981 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:38.388382 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T14:29:38.388457 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:38.391198 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.58 ms +I, [2018-07-25T14:29:38.391259 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:38.391733 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-07-25T14:29:38.391815 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:38.392368 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-07-25T14:29:38.392470 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:38.393056 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T14:29:38.393119 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:38.393600 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-07-25T14:29:38.393710 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:38.394437 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.51 ms +I, [2018-07-25T14:29:38.394492 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:38.395515 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-07-25T14:29:38.395572 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:38.396288 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.52 ms +I, [2018-07-25T14:29:38.396371 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:38.397553 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.77 ms +I, [2018-07-25T14:29:38.397623 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:38.398205 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-07-25T14:29:38.398255 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:38.398812 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-07-25T14:29:38.398865 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:38.399471 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-07-25T14:29:38.399509 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:38.399762 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T14:29:38.399794 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:38.400126 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T14:29:38.400158 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:38.400783 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-07-25T14:29:38.400825 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:38.401389 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-07-25T14:29:38.401447 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:38.402166 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T14:29:38.402226 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:38.402743 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-07-25T14:29:38.402794 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:38.403290 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-07-25T14:29:38.403325 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:38.403727 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-07-25T14:29:38.403778 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:38.404862 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.75 ms +I, [2018-07-25T14:29:38.404929 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:38.405390 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T14:29:38.405440 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:38.405904 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-07-25T14:29:38.405995 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:38.406435 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-25T14:29:38.406484 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:38.406959 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-07-25T14:29:38.407007 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:38.407364 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T14:29:38.407396 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:38.408153 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.42 ms +I, [2018-07-25T14:29:38.408210 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:38.408735 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-07-25T14:29:38.408791 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:38.409224 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T14:29:38.409275 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:38.409736 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T14:29:38.409788 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:38.410469 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.48 ms +I, [2018-07-25T14:29:38.410527 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:38.411132 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.4 ms +I, [2018-07-25T14:29:38.412291 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:38.413191 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.44 ms +I, [2018-07-25T14:29:38.413270 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:38.414226 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.57 ms +I, [2018-07-25T14:29:38.414333 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:38.415057 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-07-25T14:29:38.415215 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:38.416141 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-07-25T14:29:38.416187 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:38.416564 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T14:29:38.416596 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:38.417163 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-07-25T14:29:38.417215 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:38.417907 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-07-25T14:29:38.418000 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:38.418440 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-25T14:29:38.418496 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:38.418916 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T14:29:38.418968 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:38.419465 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-07-25T14:29:38.419516 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:38.419957 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-25T14:29:38.420008 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:38.420531 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-07-25T14:29:38.420572 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:38.421119 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-25T14:29:38.421154 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:38.421625 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T14:29:38.421681 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:38.422242 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-07-25T14:29:38.422315 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:38.422668 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T14:29:38.422744 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:40.424947 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T14:29:40.424997 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:40.425394 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T14:29:40.425483 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:40.425872 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T14:29:40.425907 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:40.426149 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T14:29:40.426204 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:40.426400 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T14:29:40.426442 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:40.426660 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T14:29:40.426689 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:40.426889 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T14:29:40.427020 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:40.427822 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.4 ms +I, [2018-07-25T14:29:40.427876 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:40.428422 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T14:29:40.428503 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:40.428901 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T14:29:40.428953 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:40.429342 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T14:29:40.429486 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:40.430007 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-07-25T14:29:40.430058 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:40.430553 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-07-25T14:29:40.430634 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:40.431192 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-07-25T14:29:40.432152 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:40.433686 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.4 ms +I, [2018-07-25T14:29:40.433751 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:40.434379 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-07-25T14:29:40.434442 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:40.435089 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-07-25T14:29:40.435182 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:40.435686 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-07-25T14:29:40.435740 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:40.436126 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T14:29:40.436214 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:40.436983 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.51 ms +I, [2018-07-25T14:29:40.437071 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:40.437960 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-07-25T14:29:40.438044 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:40.438515 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-07-25T14:29:40.438568 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:40.438981 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T14:29:40.439031 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:40.439613 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-07-25T14:29:40.439662 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:40.440429 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-07-25T14:29:40.440545 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:40.441273 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-07-25T14:29:40.441334 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:40.441772 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T14:29:40.441858 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:40.442332 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-07-25T14:29:40.442385 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:40.442860 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-07-25T14:29:40.442948 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:40.443439 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-07-25T14:29:40.443551 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:40.444234 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-07-25T14:29:40.444285 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:40.445166 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.53 ms +I, [2018-07-25T14:29:40.445223 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:40.445863 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-07-25T14:29:40.445914 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:40.446322 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T14:29:40.446367 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:40.446835 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-07-25T14:29:40.446894 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:40.447512 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-07-25T14:29:40.447586 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:40.448598 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.58 ms +I, [2018-07-25T14:29:40.448732 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:40.449766 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.49 ms +I, [2018-07-25T14:29:40.449831 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:40.450386 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-07-25T14:29:40.450514 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:40.451437 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-07-25T14:29:40.451493 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:40.452298 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.44 ms +I, [2018-07-25T14:29:40.452372 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:40.453128 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.43 ms +I, [2018-07-25T14:29:40.453226 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T14:29:41.047488 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-07-25T14:29:41.047563 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:41.047861 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-07-25T14:29:41.047896 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:41.048177 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-07-25T14:29:41.048211 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:41.052225 #5] INFO -- : Inline processing of topic course_change with 1 messages took 3.84 ms +I, [2018-07-25T14:29:41.052282 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:41.052609 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-07-25T14:29:41.052641 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:41.052884 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-07-25T14:29:41.053198 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:41.055823 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.66 ms +I, [2018-07-25T14:29:41.056706 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:41.057192 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-07-25T14:29:41.057247 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:41.057633 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-07-25T14:29:41.057679 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:41.058763 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.89 ms +I, [2018-07-25T14:29:41.058832 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:41.059252 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-07-25T14:29:41.059304 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:41.064016 #5] INFO -- : Inline processing of topic course_change with 1 messages took 3.44 ms +I, [2018-07-25T14:29:41.064095 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:41.067581 #5] INFO -- : Inline processing of topic course_change with 1 messages took 2.79 ms +I, [2018-07-25T14:29:41.068252 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:41.068694 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-07-25T14:29:41.068739 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:41.069073 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-07-25T14:29:41.070248 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:41.070858 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.4 ms +I, [2018-07-25T14:29:41.070900 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:41.071435 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.35 ms +I, [2018-07-25T14:29:41.071489 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:41.073058 #5] INFO -- : Inline processing of topic course_change with 1 messages took 1.32 ms +I, [2018-07-25T14:29:41.073133 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:41.073897 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.26 ms +I, [2018-07-25T14:29:41.073958 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:41.074434 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-07-25T14:29:41.074488 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:41.074867 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-07-25T14:29:41.074914 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:41.075218 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-07-25T14:29:41.075263 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:41.075768 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.37 ms +I, [2018-07-25T14:29:41.075805 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:41.076967 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.47 ms +I, [2018-07-25T14:29:41.077444 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:41.078884 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.98 ms +I, [2018-07-25T14:29:41.078951 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:41.080081 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.82 ms +I, [2018-07-25T14:29:41.080140 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:41.080709 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-07-25T14:29:41.080748 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:41.081011 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T14:29:41.081042 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:41.081316 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-07-25T14:29:41.081396 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:41.082630 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.96 ms +I, [2018-07-25T14:29:41.083169 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:41.093154 #5] INFO -- : Inline processing of topic course_change with 1 messages took 9.26 ms +I, [2018-07-25T14:29:41.093222 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:41.093626 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-07-25T14:29:41.093699 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:41.094118 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.24 ms +I, [2018-07-25T14:29:41.094171 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:41.094525 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-07-25T14:29:41.094758 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:41.095185 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-07-25T14:29:41.095219 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:41.095450 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T14:29:41.095481 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:41.095732 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-07-25T14:29:41.095928 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:41.096177 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T14:29:41.096214 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:41.097654 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.35 ms +I, [2018-07-25T14:29:41.097750 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:41.098508 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-07-25T14:29:41.098575 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:41.101110 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.25 ms +I, [2018-07-25T14:29:41.101168 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:41.101968 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.25 ms +I, [2018-07-25T14:29:41.102115 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:41.102759 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.41 ms +I, [2018-07-25T14:29:41.102802 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:41.103984 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.98 ms +I, [2018-07-25T14:29:41.104102 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:41.104529 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-07-25T14:29:41.104581 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:41.106185 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.25 ms +I, [2018-07-25T14:29:41.106229 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:41.106505 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-07-25T14:29:41.106660 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:41.107198 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.38 ms +I, [2018-07-25T14:29:41.107245 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:41.107584 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-07-25T14:29:41.107629 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:41.107937 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-07-25T14:29:41.107975 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:41.108876 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.3 ms +I, [2018-07-25T14:29:41.109461 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:41.109896 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-07-25T14:29:41.112428 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:41.112849 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-07-25T14:29:41.113000 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:41.113360 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-07-25T14:29:41.113403 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:41.113708 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-07-25T14:29:41.113747 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:41.114034 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T14:29:41.114430 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:41.115179 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.44 ms +I, [2018-07-25T14:29:41.115230 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:41.117049 #5] INFO -- : Inline processing of topic course_change with 1 messages took 1.59 ms +I, [2018-07-25T14:29:41.117461 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:41.119789 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.72 ms +I, [2018-07-25T14:29:41.119844 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:41.120167 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-07-25T14:29:41.120213 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:41.120597 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-07-25T14:29:41.120642 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:41.121633 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-07-25T14:29:41.121686 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:41.122034 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-07-25T14:29:41.122079 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:41.122421 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-07-25T14:29:41.122468 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:41.127702 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.4 ms +I, [2018-07-25T14:29:41.127940 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:41.128992 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-07-25T14:29:41.129052 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:41.129611 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.3 ms +I, [2018-07-25T14:29:41.129663 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:41.130013 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-07-25T14:29:41.130331 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:41.130926 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.32 ms +I, [2018-07-25T14:29:41.131033 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:41.131540 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-07-25T14:29:41.131596 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:41.133030 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.34 ms +I, [2018-07-25T14:29:41.133151 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:41.135255 #5] INFO -- : Inline processing of topic course_change with 1 messages took 1.76 ms +I, [2018-07-25T14:29:41.135445 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:41.135948 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-07-25T14:29:41.136011 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:41.136792 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.4 ms +I, [2018-07-25T14:29:41.136848 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:41.137218 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-07-25T14:29:41.137292 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:41.137643 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-07-25T14:29:41.137693 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:41.138044 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-07-25T14:29:41.138093 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:41.140013 #5] INFO -- : Inline processing of topic course_change with 1 messages took 1.28 ms +I, [2018-07-25T14:29:41.140097 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:41.140546 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-07-25T14:29:41.140600 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:41.143071 #5] INFO -- : Inline processing of topic course_change with 1 messages took 2.24 ms +I, [2018-07-25T14:29:41.143162 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:41.143627 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-07-25T14:29:41.143817 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:41.144581 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.53 ms +I, [2018-07-25T14:29:41.144643 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:41.145298 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-07-25T14:29:41.145365 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:41.145924 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.32 ms +I, [2018-07-25T14:29:41.146458 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:43.147430 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.23 ms +I, [2018-07-25T14:29:43.147480 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:43.147721 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T14:29:43.147751 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:43.147969 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T14:29:43.147998 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:43.148212 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T14:29:43.148240 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:43.148439 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-07-25T14:29:43.149092 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:43.149387 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-07-25T14:29:43.149419 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:43.149643 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T14:29:43.149673 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:43.149895 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-07-25T14:29:43.149925 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:43.150260 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-07-25T14:29:43.150325 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:43.150611 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T14:29:43.150644 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:43.150874 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T14:29:43.151493 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:43.152551 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.68 ms +I, [2018-07-25T14:29:43.152620 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:43.153196 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.27 ms +I, [2018-07-25T14:29:43.153260 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:43.153583 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-07-25T14:29:43.153633 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:43.153996 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-07-25T14:29:43.154046 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:43.154487 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-07-25T14:29:43.154538 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:43.154868 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-07-25T14:29:43.154915 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:43.155238 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-07-25T14:29:43.155285 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:43.155646 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-07-25T14:29:43.155693 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:43.156016 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T14:29:43.156049 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:43.156268 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-07-25T14:29:43.156319 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:43.156530 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-07-25T14:29:43.156559 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:43.164149 #5] INFO -- : Inline processing of topic course_change with 1 messages took 7.17 ms +I, [2018-07-25T14:29:43.164240 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:43.164694 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-07-25T14:29:43.164738 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:43.165100 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-07-25T14:29:43.165150 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:43.165450 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-07-25T14:29:43.165499 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:43.165772 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T14:29:43.165803 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:43.166019 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T14:29:43.166048 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:43.166294 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-07-25T14:29:43.166340 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:43.166584 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-07-25T14:29:43.166614 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:43.166881 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-07-25T14:29:43.166957 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:43.170341 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-07-25T14:29:43.170386 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:43.175277 #5] INFO -- : Inline processing of topic course_change with 1 messages took 4.17 ms +I, [2018-07-25T14:29:43.175334 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:43.176011 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-07-25T14:29:43.177985 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:43.178455 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-07-25T14:29:43.178540 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:43.178911 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-07-25T14:29:43.180777 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:43.181262 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-07-25T14:29:43.181317 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:43.181717 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-07-25T14:29:43.182391 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:43.186205 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.3 ms +I, [2018-07-25T14:29:43.186299 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:43.187022 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.43 ms +I, [2018-07-25T14:29:43.187082 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:43.187942 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.4 ms +I, [2018-07-25T14:29:43.188002 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:43.188634 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.35 ms +I, [2018-07-25T14:29:43.192095 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:43.192808 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.31 ms +I, [2018-07-25T14:29:43.192855 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:43.193198 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-07-25T14:29:43.193237 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:43.193607 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-07-25T14:29:43.193658 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:43.194757 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.5 ms +I, [2018-07-25T14:29:43.194962 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:43.195472 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-07-25T14:29:43.195517 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:43.195838 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-07-25T14:29:43.195878 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:43.196180 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-07-25T14:29:43.196222 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:43.196546 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-07-25T14:29:43.196603 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:43.197374 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-07-25T14:29:43.197424 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:43.198123 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.23 ms +I, [2018-07-25T14:29:43.198184 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:43.198595 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-07-25T14:29:43.198657 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:43.199152 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.31 ms +I, [2018-07-25T14:29:43.199190 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:43.200573 #5] INFO -- : Inline processing of topic course_change with 1 messages took 1.22 ms +I, [2018-07-25T14:29:43.200682 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:43.201145 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-07-25T14:29:43.201195 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:43.201947 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.5 ms +I, [2018-07-25T14:29:43.202001 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:43.202374 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-07-25T14:29:43.204112 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:43.204598 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-07-25T14:29:43.204732 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:43.205404 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.38 ms +I, [2018-07-25T14:29:43.205525 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:43.205930 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-07-25T14:29:43.205963 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:43.207333 #5] INFO -- : Inline processing of topic course_change with 1 messages took 1.22 ms +I, [2018-07-25T14:29:43.207392 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:43.207856 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-07-25T14:29:43.207908 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:43.208239 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-07-25T14:29:43.208281 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:43.208618 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-07-25T14:29:43.208670 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:43.209031 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-07-25T14:29:43.209125 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:43.211063 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.36 ms +I, [2018-07-25T14:29:43.211113 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:43.211915 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.37 ms +I, [2018-07-25T14:29:43.211964 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:43.213567 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.98 ms +I, [2018-07-25T14:29:43.213638 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:43.214245 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.34 ms +I, [2018-07-25T14:29:43.214362 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:43.215194 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.63 ms +I, [2018-07-25T14:29:43.215259 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:43.215936 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.33 ms +I, [2018-07-25T14:29:43.215990 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:45.216520 #5] INFO -- : Committing offsets: course_change/0:1167 +I, [2018-07-25T14:29:45.220702 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.28 ms +I, [2018-07-25T14:29:45.220887 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:45.221173 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T14:29:45.221203 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:45.221711 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.36 ms +I, [2018-07-25T14:29:45.222217 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:45.223262 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.35 ms +I, [2018-07-25T14:29:45.223337 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:45.223858 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-07-25T14:29:45.223898 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:45.224911 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.36 ms +I, [2018-07-25T14:29:45.225390 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:45.230809 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.49 ms +I, [2018-07-25T14:29:45.230993 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:45.231798 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.58 ms +I, [2018-07-25T14:29:45.231854 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:45.232714 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.41 ms +I, [2018-07-25T14:29:45.232786 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:45.234753 #5] INFO -- : Inline processing of topic course_change with 1 messages took 1.52 ms +I, [2018-07-25T14:29:45.234855 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:45.235191 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-07-25T14:29:45.235227 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:45.235561 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-07-25T14:29:45.235629 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:45.236131 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.25 ms +I, [2018-07-25T14:29:45.236229 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:45.236837 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-07-25T14:29:45.236905 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:45.237567 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.39 ms +I, [2018-07-25T14:29:45.237625 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:45.238196 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-07-25T14:29:45.238393 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:45.240267 #5] INFO -- : Inline processing of topic course_change with 1 messages took 1.08 ms +I, [2018-07-25T14:29:45.240354 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:45.247031 #5] INFO -- : Inline processing of topic course_change with 1 messages took 2.74 ms +I, [2018-07-25T14:29:45.248164 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:45.248817 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.24 ms +I, [2018-07-25T14:29:45.248909 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:45.249407 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.28 ms +I, [2018-07-25T14:29:45.249462 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:45.250001 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.35 ms +I, [2018-07-25T14:29:45.250056 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:45.250535 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.27 ms +I, [2018-07-25T14:29:45.250590 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:45.255862 #5] INFO -- : Inline processing of topic course_change with 1 messages took 4.94 ms +I, [2018-07-25T14:29:45.255961 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:45.261254 #5] INFO -- : Inline processing of topic course_change with 1 messages took 1.8 ms +I, [2018-07-25T14:29:45.261315 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:45.261634 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-07-25T14:29:45.261670 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:45.261920 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T14:29:45.261951 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:45.262181 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T14:29:45.262214 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:45.262452 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T14:29:45.262485 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:45.265787 #5] INFO -- : Inline processing of topic course_change with 1 messages took 3.14 ms +I, [2018-07-25T14:29:45.265836 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:45.266145 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-07-25T14:29:45.266176 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:45.267912 #5] INFO -- : Inline processing of topic course_change with 1 messages took 1.58 ms +I, [2018-07-25T14:29:45.268008 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:45.272549 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.38 ms +I, [2018-07-25T14:29:45.275327 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:45.283527 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-07-25T14:29:45.283573 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:45.283832 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-07-25T14:29:45.283862 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:45.284095 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T14:29:45.284125 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:45.284439 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-07-25T14:29:45.284471 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:45.284695 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T14:29:45.284724 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:45.285014 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-07-25T14:29:45.285059 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:45.287376 #5] INFO -- : Inline processing of topic course_change with 1 messages took 2.08 ms +I, [2018-07-25T14:29:45.287554 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:45.289537 #5] INFO -- : Inline processing of topic course_change with 1 messages took 1.36 ms +I, [2018-07-25T14:29:45.289598 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:45.290797 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.52 ms +I, [2018-07-25T14:29:45.290918 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:45.292754 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.3 ms +I, [2018-07-25T14:29:45.292847 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:45.293705 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.33 ms +I, [2018-07-25T14:29:45.293778 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:45.299495 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-07-25T14:29:45.299606 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:45.299898 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-07-25T14:29:45.299948 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:45.300238 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-07-25T14:29:45.300270 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:45.302982 #5] INFO -- : Inline processing of topic course_change with 1 messages took 2.49 ms +I, [2018-07-25T14:29:45.303074 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:45.307687 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.55 ms +I, [2018-07-25T14:29:45.307798 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:45.308203 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-07-25T14:29:45.308235 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:45.308536 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-07-25T14:29:45.308578 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:45.308839 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T14:29:45.308881 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:45.309195 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T14:29:45.309282 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:45.309809 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.32 ms +I, [2018-07-25T14:29:45.309868 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:45.310126 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-07-25T14:29:45.310158 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:45.311668 #5] INFO -- : Inline processing of topic course_change with 1 messages took 1.31 ms +I, [2018-07-25T14:29:45.311757 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:45.312918 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.8 ms +I, [2018-07-25T14:29:45.313044 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:45.318930 #5] INFO -- : Inline processing of topic course_change with 1 messages took 5.46 ms +I, [2018-07-25T14:29:45.319110 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:45.320136 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.33 ms +I, [2018-07-25T14:29:45.320283 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:45.321391 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.54 ms +I, [2018-07-25T14:29:45.321481 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:45.322469 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.51 ms +I, [2018-07-25T14:29:45.322528 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:45.326111 #5] INFO -- : Inline processing of topic course_change with 1 messages took 2.73 ms +I, [2018-07-25T14:29:45.327490 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:45.328233 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-07-25T14:29:45.328813 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:45.329447 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.33 ms +I, [2018-07-25T14:29:45.329503 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:45.331288 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.48 ms +I, [2018-07-25T14:29:45.331402 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:45.331940 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.31 ms +I, [2018-07-25T14:29:45.332026 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:45.332447 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-07-25T14:29:45.332549 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:45.332997 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.27 ms +I, [2018-07-25T14:29:45.333049 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:45.333397 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-07-25T14:29:45.333443 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:45.333956 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-07-25T14:29:45.334045 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:45.335496 #5] INFO -- : Inline processing of topic course_change with 1 messages took 1.11 ms +I, [2018-07-25T14:29:45.335597 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:45.337449 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.31 ms +I, [2018-07-25T14:29:45.337554 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:45.338114 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.29 ms +I, [2018-07-25T14:29:45.338185 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:45.338903 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.24 ms +I, [2018-07-25T14:29:45.338956 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:45.340247 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.89 ms +I, [2018-07-25T14:29:45.340321 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:45.341444 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.38 ms +I, [2018-07-25T14:29:45.341517 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:45.342435 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.49 ms +I, [2018-07-25T14:29:45.342573 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:45.344044 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.36 ms +I, [2018-07-25T14:29:45.344240 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:45.344645 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-07-25T14:29:45.344682 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:45.345012 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-07-25T14:29:45.345053 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:45.345574 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.25 ms +I, [2018-07-25T14:29:45.345642 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:45.347427 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-07-25T14:29:45.347480 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:45.347801 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-07-25T14:29:45.347841 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:45.348353 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.29 ms +I, [2018-07-25T14:29:45.348428 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:45.348743 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-07-25T14:29:45.348774 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:45.349139 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-07-25T14:29:45.350740 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:45.351412 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.43 ms +I, [2018-07-25T14:29:45.351468 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:45.352133 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-07-25T14:29:45.352277 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:45.353285 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.67 ms +I, [2018-07-25T14:29:45.353344 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:45.353786 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-07-25T14:29:45.353833 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:45.354576 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.31 ms +I, [2018-07-25T14:29:45.354660 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:47.355686 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-07-25T14:29:47.355787 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:47.356173 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-07-25T14:29:47.356205 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:47.357375 #5] INFO -- : Inline processing of topic course_change with 1 messages took 1.02 ms +I, [2018-07-25T14:29:47.357441 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:47.357843 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-07-25T14:29:47.357893 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:47.358382 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-07-25T14:29:47.358431 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:47.358778 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-07-25T14:29:47.358859 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:47.359194 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-07-25T14:29:47.359243 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:47.359554 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T14:29:47.359589 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:47.359835 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T14:29:47.359865 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:47.360363 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.24 ms +I, [2018-07-25T14:29:47.360476 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:47.361880 #5] INFO -- : Inline processing of topic course_change with 1 messages took 1.17 ms +I, [2018-07-25T14:29:47.361950 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:47.362400 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-07-25T14:29:47.362448 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:47.362740 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-07-25T14:29:47.362772 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:47.363140 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.24 ms +I, [2018-07-25T14:29:47.363281 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:47.363622 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T14:29:47.363654 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:47.363886 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T14:29:47.363916 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:47.364136 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T14:29:47.364166 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:47.364628 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.27 ms +I, [2018-07-25T14:29:47.364669 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:47.365468 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.51 ms +I, [2018-07-25T14:29:47.365527 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:47.365963 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-07-25T14:29:47.366045 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:47.366429 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-07-25T14:29:47.367075 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:47.367508 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-07-25T14:29:47.367590 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:47.367944 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-07-25T14:29:47.367993 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:47.368237 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T14:29:47.368266 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:47.371219 #5] INFO -- : Inline processing of topic course_change with 1 messages took 2.62 ms +I, [2018-07-25T14:29:47.371434 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:47.372223 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.41 ms +I, [2018-07-25T14:29:47.372287 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:47.372782 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-07-25T14:29:47.372947 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:47.374112 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.24 ms +I, [2018-07-25T14:29:47.374175 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:47.375526 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.54 ms +I, [2018-07-25T14:29:47.375585 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:47.375989 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-07-25T14:29:47.376040 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:47.376502 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-07-25T14:29:47.376569 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:47.377074 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.24 ms +I, [2018-07-25T14:29:47.377290 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:47.380381 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.47 ms +I, [2018-07-25T14:29:47.380503 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:47.382539 #5] INFO -- : Inline processing of topic course_change with 1 messages took 1.28 ms +I, [2018-07-25T14:29:47.382634 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:47.383603 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.6 ms +I, [2018-07-25T14:29:47.383672 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:47.384095 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-07-25T14:29:47.384146 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:47.384514 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-07-25T14:29:47.384869 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:47.386033 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.91 ms +I, [2018-07-25T14:29:47.386098 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:47.386511 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-07-25T14:29:47.386563 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:47.387978 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.27 ms +I, [2018-07-25T14:29:47.388070 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:47.389598 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.7 ms +I, [2018-07-25T14:29:47.390236 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:47.390984 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.46 ms +I, [2018-07-25T14:29:47.391052 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:47.391836 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.39 ms +I, [2018-07-25T14:29:47.391894 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:47.392348 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.24 ms +I, [2018-07-25T14:29:47.392402 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:47.393875 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.42 ms +I, [2018-07-25T14:29:47.394359 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:47.395559 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.59 ms +I, [2018-07-25T14:29:47.395624 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:47.396088 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-07-25T14:29:47.396124 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:47.396649 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.23 ms +I, [2018-07-25T14:29:47.396712 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:47.397481 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.51 ms +I, [2018-07-25T14:29:47.397532 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:47.397890 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-07-25T14:29:47.397931 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:47.398255 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-07-25T14:29:47.398315 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:47.398878 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-07-25T14:29:47.398940 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:47.399305 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-07-25T14:29:47.399346 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:47.399682 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-07-25T14:29:47.399722 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:47.400026 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-07-25T14:29:47.400064 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:47.401384 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.42 ms +I, [2018-07-25T14:29:47.401575 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:47.402731 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.23 ms +I, [2018-07-25T14:29:47.402816 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:47.403303 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.28 ms +I, [2018-07-25T14:29:47.403356 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:47.404039 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-07-25T14:29:47.404092 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:47.404489 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-07-25T14:29:47.404537 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:47.404968 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.25 ms +I, [2018-07-25T14:29:47.405005 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:47.405674 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.47 ms +I, [2018-07-25T14:29:47.405713 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:47.406447 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.51 ms +I, [2018-07-25T14:29:47.406580 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:47.407358 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-07-25T14:29:47.407434 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:47.408572 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.46 ms +I, [2018-07-25T14:29:47.408634 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:47.410104 #5] INFO -- : Inline processing of topic course_change with 1 messages took 1.23 ms +I, [2018-07-25T14:29:47.410166 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:47.411035 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-07-25T14:29:47.411196 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:47.411627 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-07-25T14:29:47.411699 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:47.412072 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-07-25T14:29:47.412124 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:47.412472 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-07-25T14:29:47.412529 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:47.413269 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.5 ms +I, [2018-07-25T14:29:47.413310 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:47.414091 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.51 ms +I, [2018-07-25T14:29:47.414163 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:47.416185 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-07-25T14:29:47.416268 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:47.416676 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-07-25T14:29:47.416731 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:47.418287 #5] INFO -- : Inline processing of topic course_change with 1 messages took 1.28 ms +I, [2018-07-25T14:29:47.418546 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:48.456813 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T14:29:49.424008 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.27 ms +I, [2018-07-25T14:29:49.424094 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:49.425403 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.77 ms +I, [2018-07-25T14:29:49.426689 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:49.427123 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-07-25T14:29:49.427166 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:49.427506 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-07-25T14:29:49.427548 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:49.427851 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-07-25T14:29:49.427890 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:49.428324 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.24 ms +I, [2018-07-25T14:29:49.428376 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:49.428927 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.26 ms +I, [2018-07-25T14:29:49.428984 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:49.429396 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-07-25T14:29:49.429447 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:49.429831 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-07-25T14:29:49.429883 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:49.430239 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-07-25T14:29:49.430283 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:49.430674 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-07-25T14:29:49.430740 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:49.431065 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-07-25T14:29:49.431105 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:49.431429 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-07-25T14:29:49.431478 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:49.431782 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-07-25T14:29:49.431821 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:49.432129 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-07-25T14:29:49.432175 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:49.432563 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.23 ms +I, [2018-07-25T14:29:49.432610 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:49.432954 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-07-25T14:29:49.433002 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:49.433339 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-07-25T14:29:49.433393 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:49.433748 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-07-25T14:29:49.433804 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:49.434188 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-07-25T14:29:49.434222 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:49.434535 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-07-25T14:29:49.434602 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:49.448217 #5] INFO -- : Inline processing of topic course_change with 1 messages took 13.34 ms +I, [2018-07-25T14:29:49.448323 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:49.449211 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.52 ms +I, [2018-07-25T14:29:49.449273 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:49.449800 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-07-25T14:29:49.449886 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:49.455234 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-07-25T14:29:49.455285 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:49.455587 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T14:29:49.456606 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:49.456952 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-07-25T14:29:49.456999 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:49.457257 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T14:29:49.457288 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:49.463238 #5] INFO -- : Inline processing of topic course_change with 1 messages took 5.74 ms +I, [2018-07-25T14:29:49.463332 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:49.463849 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.24 ms +I, [2018-07-25T14:29:49.463909 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:49.467393 #5] INFO -- : Inline processing of topic course_change with 1 messages took 3.25 ms +I, [2018-07-25T14:29:49.467532 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:49.470603 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.27 ms +I, [2018-07-25T14:29:49.470668 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:49.471062 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-07-25T14:29:49.471126 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:49.471480 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-07-25T14:29:49.471570 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:49.472495 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.74 ms +I, [2018-07-25T14:29:49.472552 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:49.472852 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-07-25T14:29:49.472927 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:49.477407 #5] INFO -- : Inline processing of topic course_change with 1 messages took 4.28 ms +I, [2018-07-25T14:29:49.477542 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:49.477939 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-07-25T14:29:49.477972 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:49.478363 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-07-25T14:29:49.478447 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:49.479063 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.25 ms +I, [2018-07-25T14:29:49.479158 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:49.479467 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-07-25T14:29:49.479515 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:49.479815 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-07-25T14:29:49.479849 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:49.480506 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.45 ms +I, [2018-07-25T14:29:49.480558 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:49.481004 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.23 ms +I, [2018-07-25T14:29:49.481048 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:49.485453 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.78 ms +I, [2018-07-25T14:29:49.488898 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:49.489463 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.24 ms +I, [2018-07-25T14:29:49.489559 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:49.489957 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-07-25T14:29:49.490004 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:49.490553 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-07-25T14:29:49.490605 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:49.491379 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.29 ms +I, [2018-07-25T14:29:49.491458 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:49.493722 #5] INFO -- : Inline processing of topic course_change with 1 messages took 1.93 ms +I, [2018-07-25T14:29:49.493819 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:49.494256 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-07-25T14:29:49.494306 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:49.494663 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-07-25T14:29:49.494710 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:49.495093 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-07-25T14:29:49.495141 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:49.502047 #5] INFO -- : Inline processing of topic course_change with 1 messages took 6.63 ms +I, [2018-07-25T14:29:49.502139 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:49.502820 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.42 ms +I, [2018-07-25T14:29:49.502862 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:49.503473 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-07-25T14:29:49.503510 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:49.503814 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-07-25T14:29:49.503847 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:49.504091 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T14:29:49.504122 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:49.504366 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T14:29:49.504396 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:49.504678 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-07-25T14:29:49.504710 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:49.504976 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T14:29:49.505007 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:49.505691 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.48 ms +I, [2018-07-25T14:29:49.505731 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:49.507407 #5] INFO -- : Inline processing of topic course_change with 1 messages took 1.15 ms +I, [2018-07-25T14:29:49.511538 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:49.513140 #5] INFO -- : Inline processing of topic course_change with 1 messages took 1.11 ms +I, [2018-07-25T14:29:49.513278 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:49.513862 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.3 ms +I, [2018-07-25T14:29:49.513908 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:49.514340 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-07-25T14:29:49.515390 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:49.515868 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-07-25T14:29:49.515919 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:49.516555 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.45 ms +I, [2018-07-25T14:29:49.516796 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:49.517721 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.48 ms +I, [2018-07-25T14:29:49.517784 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:49.518206 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-07-25T14:29:49.518255 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:49.522814 #5] INFO -- : Inline processing of topic course_change with 1 messages took 4.3 ms +I, [2018-07-25T14:29:49.522901 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:49.523939 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.62 ms +I, [2018-07-25T14:29:49.524062 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:49.524800 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-07-25T14:29:49.524850 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:49.531574 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.35 ms +I, [2018-07-25T14:29:49.531651 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:49.532211 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.26 ms +I, [2018-07-25T14:29:49.532271 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:49.532823 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-07-25T14:29:49.532887 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:49.534297 #5] INFO -- : Inline processing of topic course_change with 1 messages took 1.2 ms +I, [2018-07-25T14:29:49.534366 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:49.534809 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-07-25T14:29:49.534862 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:49.535822 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.66 ms +I, [2018-07-25T14:29:49.539431 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:49.539917 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-07-25T14:29:49.540000 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:49.540332 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-07-25T14:29:49.540372 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:49.540675 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-07-25T14:29:49.540718 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:49.542908 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.74 ms +I, [2018-07-25T14:29:49.543009 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:49.543628 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.38 ms +I, [2018-07-25T14:29:49.543692 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:49.544770 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.71 ms +I, [2018-07-25T14:29:49.544940 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:49.545554 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-07-25T14:29:49.547290 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:49.549158 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.66 ms +I, [2018-07-25T14:29:49.549235 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:49.550820 #5] INFO -- : Inline processing of topic course_change with 1 messages took 1.32 ms +I, [2018-07-25T14:29:49.550936 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:49.551381 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-07-25T14:29:49.551434 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:49.551805 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-07-25T14:29:49.552084 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:51.554485 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-07-25T14:29:51.554532 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:51.554774 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T14:29:51.554802 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:51.555012 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-07-25T14:29:51.555042 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:51.555277 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-07-25T14:29:51.555302 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:51.555673 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.27 ms +I, [2018-07-25T14:29:51.555776 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:51.556143 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-07-25T14:29:51.556279 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:51.556557 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-07-25T14:29:51.556589 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:51.556818 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-07-25T14:29:51.556874 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:51.557078 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-07-25T14:29:51.557102 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:51.557321 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T14:29:51.560923 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:51.561269 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-07-25T14:29:51.561300 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:51.561615 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-07-25T14:29:51.561670 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:51.562164 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.24 ms +I, [2018-07-25T14:29:51.562276 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:51.562841 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.36 ms +I, [2018-07-25T14:29:51.562877 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:51.563180 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T14:29:51.563229 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:51.565682 #5] INFO -- : Inline processing of topic course_change with 1 messages took 2.2 ms +I, [2018-07-25T14:29:51.565760 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:51.566162 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-07-25T14:29:51.566194 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:51.566431 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T14:29:51.566488 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:51.566702 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-07-25T14:29:51.566732 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:51.566949 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T14:29:51.567125 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:51.567574 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-07-25T14:29:51.567704 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:51.568153 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-07-25T14:29:51.568243 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:51.571002 #5] INFO -- : Inline processing of topic course_change with 1 messages took 2.54 ms +I, [2018-07-25T14:29:51.571062 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:51.571424 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-07-25T14:29:51.571459 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:51.572106 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T14:29:51.572334 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:51.572610 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-07-25T14:29:51.572641 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:51.573317 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.56 ms +I, [2018-07-25T14:29:51.573451 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:51.574011 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-07-25T14:29:51.574063 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:51.574426 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-07-25T14:29:51.574478 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:51.575989 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.69 ms +I, [2018-07-25T14:29:51.576048 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:51.576342 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-07-25T14:29:51.576375 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:51.576643 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T14:29:51.576666 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:51.576889 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T14:29:51.576934 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:51.577565 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.34 ms +I, [2018-07-25T14:29:51.577634 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:51.578523 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.63 ms +I, [2018-07-25T14:29:51.578577 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:51.579011 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.25 ms +I, [2018-07-25T14:29:51.579439 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:51.580004 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-07-25T14:29:51.580062 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:51.582194 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.3 ms +I, [2018-07-25T14:29:51.582261 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:51.582993 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.51 ms +I, [2018-07-25T14:29:51.583036 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:51.583333 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-07-25T14:29:51.583365 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:51.584334 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.3 ms +I, [2018-07-25T14:29:51.584383 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:51.585232 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.53 ms +I, [2018-07-25T14:29:51.585324 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:51.585983 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-07-25T14:29:51.586040 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:51.587593 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.37 ms +I, [2018-07-25T14:29:51.587930 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:51.588430 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-07-25T14:29:51.588551 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:51.589025 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.27 ms +I, [2018-07-25T14:29:51.589078 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:51.589698 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.23 ms +I, [2018-07-25T14:29:51.590219 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:51.590579 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-07-25T14:29:51.590614 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:51.591214 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.26 ms +I, [2018-07-25T14:29:51.591426 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:51.592331 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.62 ms +I, [2018-07-25T14:29:51.592414 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:51.596674 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.25 ms +I, [2018-07-25T14:29:51.596784 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:51.597781 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-07-25T14:29:51.597854 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:51.598595 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.46 ms +I, [2018-07-25T14:29:51.598654 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:51.599258 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-07-25T14:29:51.599333 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:51.599716 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-07-25T14:29:51.603678 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:51.604222 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-07-25T14:29:51.604269 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:51.612171 #5] INFO -- : Inline processing of topic course_change with 1 messages took 7.7 ms +I, [2018-07-25T14:29:51.612237 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:51.613114 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.26 ms +I, [2018-07-25T14:29:51.613238 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:51.613678 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-07-25T14:29:51.613786 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:51.614098 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-07-25T14:29:51.614130 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:51.614374 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T14:29:51.614404 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:51.614732 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T14:29:51.614764 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:51.615022 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-07-25T14:29:51.615053 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:51.615302 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T14:29:51.615332 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:51.616529 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.82 ms +I, [2018-07-25T14:29:51.616647 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:53.617525 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-07-25T14:29:53.617575 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:53.617839 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T14:29:53.617869 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:53.618088 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T14:29:53.618117 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:53.618339 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T14:29:53.618369 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:53.618588 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T14:29:53.618617 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:53.618832 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T14:29:53.618861 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:53.619369 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.25 ms +I, [2018-07-25T14:29:53.619413 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:53.620072 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.38 ms +I, [2018-07-25T14:29:53.620122 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:53.620481 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-07-25T14:29:53.620559 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:53.620917 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-07-25T14:29:53.620967 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:53.621453 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-07-25T14:29:53.621519 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:53.621894 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-07-25T14:29:53.621948 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:53.622310 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-07-25T14:29:53.622357 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:53.622746 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-07-25T14:29:53.622797 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:53.623321 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.32 ms +I, [2018-07-25T14:29:53.623377 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:53.623767 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-07-25T14:29:53.623819 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:53.625726 #5] INFO -- : Inline processing of topic course_change with 1 messages took 1.38 ms +I, [2018-07-25T14:29:53.626143 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:53.628260 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.23 ms +I, [2018-07-25T14:29:53.628324 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:53.628741 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-07-25T14:29:53.632277 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:53.632774 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-07-25T14:29:53.632810 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:53.635872 #5] INFO -- : Inline processing of topic course_change with 1 messages took 1.11 ms +I, [2018-07-25T14:29:53.636000 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:53.638251 #5] INFO -- : Inline processing of topic course_change with 1 messages took 1.75 ms +I, [2018-07-25T14:29:53.638302 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:53.639668 #5] INFO -- : Inline processing of topic course_change with 1 messages took 1.11 ms +I, [2018-07-25T14:29:53.639753 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:53.641890 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-07-25T14:29:53.641966 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:53.642274 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-07-25T14:29:53.642306 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:53.642541 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-07-25T14:29:53.642576 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:53.642815 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T14:29:53.642845 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:53.643071 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-07-25T14:29:53.643100 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:53.643311 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-07-25T14:29:53.643352 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:53.643574 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T14:29:53.644507 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:53.645358 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.26 ms +I, [2018-07-25T14:29:53.645433 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:53.647179 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-07-25T14:29:53.647263 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:53.651951 #5] INFO -- : Inline processing of topic course_change with 1 messages took 1.52 ms +I, [2018-07-25T14:29:53.652019 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:53.652321 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-07-25T14:29:53.652352 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:53.652788 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.23 ms +I, [2018-07-25T14:29:53.652833 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:53.653155 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-07-25T14:29:53.653220 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:53.653530 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-07-25T14:29:53.653568 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:53.655093 #5] INFO -- : Inline processing of topic course_change with 1 messages took 1.23 ms +I, [2018-07-25T14:29:53.655392 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:53.656674 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.61 ms +I, [2018-07-25T14:29:53.659364 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:53.660041 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.26 ms +I, [2018-07-25T14:29:53.660090 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:53.660370 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-07-25T14:29:53.660401 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:53.660664 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-07-25T14:29:53.660698 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:53.660942 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T14:29:53.660977 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:53.661217 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T14:29:53.661247 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:53.665624 #5] INFO -- : Inline processing of topic course_change with 1 messages took 4.1 ms +I, [2018-07-25T14:29:53.666059 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:53.667570 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.73 ms +I, [2018-07-25T14:29:53.667746 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:53.674680 #5] INFO -- : Inline processing of topic course_change with 1 messages took 6.53 ms +I, [2018-07-25T14:29:53.674779 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:53.675201 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-07-25T14:29:53.675244 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:53.675560 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-07-25T14:29:53.675600 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:53.675925 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-07-25T14:29:53.675966 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:53.676680 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-07-25T14:29:53.676725 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:53.677048 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-07-25T14:29:53.677124 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:53.677922 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.67 ms +I, [2018-07-25T14:29:53.677964 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:53.679549 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.35 ms +I, [2018-07-25T14:29:53.679609 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:53.681260 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.58 ms +I, [2018-07-25T14:29:53.681327 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:53.681785 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-07-25T14:29:53.682879 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:53.683408 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-07-25T14:29:53.683441 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:53.683706 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-07-25T14:29:53.683738 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:53.683963 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T14:29:53.684099 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:53.684464 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-07-25T14:29:53.684506 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:53.685968 #5] INFO -- : Inline processing of topic course_change with 1 messages took 1.02 ms +I, [2018-07-25T14:29:53.686098 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:53.686590 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-07-25T14:29:53.686646 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:53.687086 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.24 ms +I, [2018-07-25T14:29:53.687142 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:53.687532 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-07-25T14:29:53.687585 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:53.687960 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-07-25T14:29:53.688260 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:53.688866 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.23 ms +I, [2018-07-25T14:29:53.688913 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:53.689295 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-07-25T14:29:53.689337 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:53.689706 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-07-25T14:29:53.689769 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:53.690380 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.32 ms +I, [2018-07-25T14:29:53.690427 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:53.690916 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-07-25T14:29:53.690969 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:53.691381 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-07-25T14:29:53.691491 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:53.693670 #5] INFO -- : Inline processing of topic course_change with 1 messages took 1.07 ms +I, [2018-07-25T14:29:53.693779 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:53.694142 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-07-25T14:29:53.694224 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:53.694573 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-07-25T14:29:53.694620 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:55.695197 #5] INFO -- : Committing offsets: course_change/0:1561 +I, [2018-07-25T14:29:55.700241 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.34 ms +I, [2018-07-25T14:29:55.700364 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:55.702225 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.56 ms +I, [2018-07-25T14:29:55.702296 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:55.702758 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.23 ms +I, [2018-07-25T14:29:55.702805 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:55.703999 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.3 ms +I, [2018-07-25T14:29:55.704075 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:55.704758 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.31 ms +I, [2018-07-25T14:29:55.704831 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:55.705407 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.3 ms +I, [2018-07-25T14:29:55.705478 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:55.706126 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.32 ms +I, [2018-07-25T14:29:55.706444 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:55.706956 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.25 ms +I, [2018-07-25T14:29:55.707015 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:55.707874 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.3 ms +I, [2018-07-25T14:29:55.709254 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:55.710039 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.3 ms +I, [2018-07-25T14:29:55.710118 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:55.711202 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.65 ms +I, [2018-07-25T14:29:55.711347 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:55.712114 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-07-25T14:29:55.712151 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:55.712487 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-07-25T14:29:55.712519 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:55.712780 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-07-25T14:29:55.712811 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:55.714902 #5] INFO -- : Inline processing of topic course_change with 1 messages took 1.95 ms +I, [2018-07-25T14:29:55.715006 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:55.720380 #5] INFO -- : Inline processing of topic course_change with 1 messages took 4.16 ms +I, [2018-07-25T14:29:55.720486 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:55.725480 #5] INFO -- : Inline processing of topic course_change with 1 messages took 4.34 ms +I, [2018-07-25T14:29:55.726617 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:55.727137 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.24 ms +I, [2018-07-25T14:29:55.727213 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:55.730677 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.55 ms +I, [2018-07-25T14:29:55.730740 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:55.731215 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-07-25T14:29:55.731273 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:55.731676 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-07-25T14:29:55.731732 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:55.732114 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-07-25T14:29:55.732190 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:55.732550 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-07-25T14:29:55.732628 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:55.733227 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.3 ms +I, [2018-07-25T14:29:55.733372 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:55.734476 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.64 ms +I, [2018-07-25T14:29:55.734550 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:55.735884 #5] INFO -- : Inline processing of topic course_change with 1 messages took 1.12 ms +I, [2018-07-25T14:29:55.735940 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:55.736643 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-07-25T14:29:55.736700 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:55.737616 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T14:29:55.737648 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:55.738595 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.81 ms +I, [2018-07-25T14:29:55.738637 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:55.738897 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T14:29:55.739557 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:55.739841 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T14:29:55.739874 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:55.740971 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.96 ms +I, [2018-07-25T14:29:55.741901 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:55.742376 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-07-25T14:29:55.742431 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:55.745240 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-07-25T14:29:55.745294 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:55.746225 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.74 ms +I, [2018-07-25T14:29:55.746290 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:55.747571 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-07-25T14:29:55.747647 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:55.748194 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.33 ms +I, [2018-07-25T14:29:55.748259 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:55.749113 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.61 ms +I, [2018-07-25T14:29:55.749169 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:55.749862 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.3 ms +I, [2018-07-25T14:29:55.751511 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:55.752984 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.84 ms +I, [2018-07-25T14:29:55.753046 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:55.753631 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.25 ms +I, [2018-07-25T14:29:55.754407 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:55.755030 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-07-25T14:29:55.755081 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:55.755606 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T14:29:55.755644 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:55.757899 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-07-25T14:29:55.757971 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:55.759122 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.87 ms +I, [2018-07-25T14:29:55.759169 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:55.762743 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-07-25T14:29:55.762798 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:55.765058 #5] INFO -- : Inline processing of topic course_change with 1 messages took 2.05 ms +I, [2018-07-25T14:29:55.765141 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:55.765882 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-07-25T14:29:55.767250 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:55.768437 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.32 ms +I, [2018-07-25T14:29:55.768503 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:55.769679 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.93 ms +I, [2018-07-25T14:29:55.769747 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:55.770146 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-07-25T14:29:55.770191 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:55.771257 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.88 ms +I, [2018-07-25T14:29:55.771315 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:55.772483 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.94 ms +I, [2018-07-25T14:29:55.772551 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:55.773448 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.61 ms +I, [2018-07-25T14:29:55.774507 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:55.776704 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.78 ms +I, [2018-07-25T14:29:55.776971 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:55.777749 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-07-25T14:29:55.777807 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:55.778809 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.8 ms +I, [2018-07-25T14:29:55.778865 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:55.779231 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-07-25T14:29:55.779283 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:55.780213 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-07-25T14:29:55.780251 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:55.780912 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.53 ms +I, [2018-07-25T14:29:55.780945 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:55.781523 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.41 ms +I, [2018-07-25T14:29:55.781597 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:55.782925 #5] INFO -- : Inline processing of topic course_change with 1 messages took 1.07 ms +I, [2018-07-25T14:29:55.782980 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:55.784547 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-07-25T14:29:55.784620 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:55.785114 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.23 ms +I, [2018-07-25T14:29:55.786749 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:55.788385 #5] INFO -- : Inline processing of topic course_change with 1 messages took 1.4 ms +I, [2018-07-25T14:29:55.788439 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:55.788714 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T14:29:55.788810 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:55.790418 #5] INFO -- : Inline processing of topic course_change with 1 messages took 1.36 ms +I, [2018-07-25T14:29:55.790489 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:55.791465 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.3 ms +I, [2018-07-25T14:29:55.791527 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:55.792953 #5] INFO -- : Inline processing of topic course_change with 1 messages took 1.2 ms +I, [2018-07-25T14:29:55.793025 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:55.798478 #5] INFO -- : Inline processing of topic course_change with 1 messages took 5.15 ms +I, [2018-07-25T14:29:55.799879 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:55.800474 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.25 ms +I, [2018-07-25T14:29:55.800534 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:55.801103 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.3 ms +I, [2018-07-25T14:29:55.801162 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:55.803327 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.26 ms +I, [2018-07-25T14:29:55.803662 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:55.805047 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.5 ms +I, [2018-07-25T14:29:55.805274 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:55.806114 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.43 ms +I, [2018-07-25T14:29:55.806389 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:55.809579 #5] INFO -- : Inline processing of topic course_change with 1 messages took 2.93 ms +I, [2018-07-25T14:29:55.809649 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:55.810113 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-07-25T14:29:55.810156 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:55.810919 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.25 ms +I, [2018-07-25T14:29:55.810985 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:55.811401 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-07-25T14:29:55.811518 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:55.811979 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-07-25T14:29:55.812029 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:55.812391 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-07-25T14:29:55.812439 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:55.812865 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.24 ms +I, [2018-07-25T14:29:55.812915 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:55.813394 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-07-25T14:29:55.813447 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:55.813847 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-07-25T14:29:55.813895 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:55.815340 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.24 ms +I, [2018-07-25T14:29:55.815399 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:55.815782 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-07-25T14:29:55.815829 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:55.816430 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-07-25T14:29:55.816483 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:55.817528 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.66 ms +I, [2018-07-25T14:29:55.817595 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:55.817994 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-07-25T14:29:55.818044 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:55.818440 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-07-25T14:29:55.818476 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:55.818714 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T14:29:55.818778 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:55.819326 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.4 ms +I, [2018-07-25T14:29:55.819373 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:55.820401 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-07-25T14:29:55.820461 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:55.820855 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-07-25T14:29:55.820911 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:55.821352 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.24 ms +I, [2018-07-25T14:29:55.821403 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:55.821865 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-07-25T14:29:55.821914 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:55.822307 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-07-25T14:29:55.822359 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:55.822725 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-07-25T14:29:55.822816 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:55.824078 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.97 ms +I, [2018-07-25T14:29:55.824152 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:55.824576 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-07-25T14:29:55.824672 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:55.825220 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-07-25T14:29:55.825274 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:55.825682 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-07-25T14:29:55.825735 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:57.827355 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.29 ms +I, [2018-07-25T14:29:57.827428 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:57.827945 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-07-25T14:29:57.828004 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:57.828375 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-07-25T14:29:57.828438 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:57.829168 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.52 ms +I, [2018-07-25T14:29:57.830210 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:57.830678 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-07-25T14:29:57.830724 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:57.831051 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-07-25T14:29:57.831212 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:57.831743 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.23 ms +I, [2018-07-25T14:29:57.831799 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:57.832166 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-07-25T14:29:57.832218 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:57.832595 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-07-25T14:29:57.832647 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:57.833028 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-07-25T14:29:57.833078 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:57.833450 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-07-25T14:29:57.833518 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:57.834155 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.31 ms +I, [2018-07-25T14:29:57.834217 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:57.834955 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.42 ms +I, [2018-07-25T14:29:57.835025 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:57.835547 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-07-25T14:29:57.835605 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:57.835952 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-07-25T14:29:57.836000 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:57.836498 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-07-25T14:29:57.836559 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:57.837052 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.3 ms +I, [2018-07-25T14:29:57.837135 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:57.837541 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-07-25T14:29:57.837691 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:57.839140 #5] INFO -- : Inline processing of topic course_change with 1 messages took 1.15 ms +I, [2018-07-25T14:29:57.839213 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:57.841412 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.25 ms +I, [2018-07-25T14:29:57.841494 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:57.841908 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-07-25T14:29:57.841976 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:57.842334 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-07-25T14:29:57.842390 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:57.842757 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-07-25T14:29:57.842804 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:57.843187 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-07-25T14:29:57.843246 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:57.846633 #5] INFO -- : Inline processing of topic course_change with 1 messages took 3.09 ms +I, [2018-07-25T14:29:57.846758 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:57.847539 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.41 ms +I, [2018-07-25T14:29:57.847648 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:57.848176 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.29 ms +I, [2018-07-25T14:29:57.848258 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:57.849880 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-07-25T14:29:57.849944 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:57.852737 #5] INFO -- : Inline processing of topic course_change with 1 messages took 2.51 ms +I, [2018-07-25T14:29:57.852816 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:57.853590 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.45 ms +I, [2018-07-25T14:29:57.853672 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:57.858040 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.27 ms +I, [2018-07-25T14:29:57.858744 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:57.861120 #5] INFO -- : Inline processing of topic course_change with 1 messages took 1.23 ms +I, [2018-07-25T14:29:57.861243 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:57.862063 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-07-25T14:29:57.862125 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:57.862523 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-07-25T14:29:57.863352 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:57.863952 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-07-25T14:29:57.864002 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:57.864341 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-07-25T14:29:57.864427 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:57.864708 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-07-25T14:29:57.864747 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:57.865069 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-07-25T14:29:57.865108 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:57.865406 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T14:29:57.865445 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:57.865813 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-07-25T14:29:57.865854 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:57.866241 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-07-25T14:29:57.866290 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:57.866697 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.25 ms +I, [2018-07-25T14:29:57.866738 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:57.867378 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.45 ms +I, [2018-07-25T14:29:57.867449 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:57.867795 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-07-25T14:29:57.867828 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:57.868154 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-07-25T14:29:57.868228 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:57.868756 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.24 ms +I, [2018-07-25T14:29:57.868832 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:57.869992 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-07-25T14:29:57.870046 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:57.870348 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-07-25T14:29:57.870429 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:57.870831 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-07-25T14:29:57.870911 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:57.871325 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.23 ms +I, [2018-07-25T14:29:57.871381 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:57.871877 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.3 ms +I, [2018-07-25T14:29:57.871946 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:57.872383 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-07-25T14:29:57.874750 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:57.875412 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.23 ms +I, [2018-07-25T14:29:57.875460 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:57.875751 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-07-25T14:29:57.875831 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:57.876107 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T14:29:57.876146 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:57.876444 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T14:29:57.876483 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:57.877708 #5] INFO -- : Inline processing of topic course_change with 1 messages took 1.03 ms +I, [2018-07-25T14:29:57.877808 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:57.878210 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-07-25T14:29:57.878259 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:57.878602 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-07-25T14:29:57.878685 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:57.879186 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.34 ms +I, [2018-07-25T14:29:57.879303 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:57.879675 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-07-25T14:29:57.879716 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:57.880045 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-07-25T14:29:57.880127 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:57.880685 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-07-25T14:29:57.880808 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:57.881163 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-07-25T14:29:57.881215 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:57.883275 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.24 ms +I, [2018-07-25T14:29:57.883327 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:57.883735 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-07-25T14:29:57.884524 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:57.885116 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-07-25T14:29:57.885173 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:57.885568 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-07-25T14:29:57.885618 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:57.886412 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.4 ms +I, [2018-07-25T14:29:57.886472 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:57.887020 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.28 ms +I, [2018-07-25T14:29:57.887065 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:57.887403 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-07-25T14:29:57.887444 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:57.887778 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-07-25T14:29:57.887818 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:57.888257 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.29 ms +I, [2018-07-25T14:29:57.888300 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:57.889041 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.54 ms +I, [2018-07-25T14:29:57.889190 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:57.890304 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.52 ms +I, [2018-07-25T14:29:57.890762 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:57.891507 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-07-25T14:29:57.891570 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:57.891939 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-07-25T14:29:57.891979 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:57.892289 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-07-25T14:29:57.892327 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:57.893015 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.28 ms +I, [2018-07-25T14:29:57.893183 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:57.893562 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-07-25T14:29:57.893610 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:57.893986 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-07-25T14:29:57.894107 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:57.895383 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.31 ms +I, [2018-07-25T14:29:57.895526 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:57.896006 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.24 ms +I, [2018-07-25T14:29:57.896063 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:57.896466 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-07-25T14:29:57.896516 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:57.896896 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-07-25T14:29:57.896944 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:57.897310 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-07-25T14:29:57.897365 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:57.897953 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.27 ms +I, [2018-07-25T14:29:57.898010 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:58.469425 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T14:29:59.899270 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-07-25T14:29:59.899344 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:59.899745 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-07-25T14:29:59.899812 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:59.900316 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.33 ms +I, [2018-07-25T14:29:59.900413 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:59.900883 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.23 ms +I, [2018-07-25T14:29:59.900942 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:59.901351 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-07-25T14:29:59.901414 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:59.901783 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-07-25T14:29:59.901831 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:59.902166 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-07-25T14:29:59.902212 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:59.902545 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-07-25T14:29:59.902590 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:59.903246 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-07-25T14:29:59.903285 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:59.903582 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-07-25T14:29:59.903615 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:59.904988 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.27 ms +I, [2018-07-25T14:29:59.905056 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:59.905492 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-07-25T14:29:59.905547 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:59.906519 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.75 ms +I, [2018-07-25T14:29:59.906620 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:59.907150 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-07-25T14:29:59.907710 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:59.908029 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-07-25T14:29:59.908063 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:59.908296 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T14:29:59.908326 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:59.908704 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-07-25T14:29:59.908756 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:59.909402 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.41 ms +I, [2018-07-25T14:29:59.909455 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:59.909852 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-07-25T14:29:59.909903 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:59.910285 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-07-25T14:29:59.910398 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:59.910910 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.31 ms +I, [2018-07-25T14:29:59.910963 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:59.911435 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.28 ms +I, [2018-07-25T14:29:59.911484 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:59.911854 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-07-25T14:29:59.911903 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:59.912192 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-07-25T14:29:59.912224 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:59.913280 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.24 ms +I, [2018-07-25T14:29:59.913342 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:59.913879 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.27 ms +I, [2018-07-25T14:29:59.914045 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:59.914483 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-07-25T14:29:59.914539 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:59.914896 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-07-25T14:29:59.914997 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:59.915471 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-07-25T14:29:59.915598 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:59.916036 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-07-25T14:29:59.916104 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:59.916643 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-07-25T14:29:59.916709 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:59.917468 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.27 ms +I, [2018-07-25T14:29:59.917543 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:59.918757 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.23 ms +I, [2018-07-25T14:29:59.918813 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:59.919153 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-07-25T14:29:59.919195 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:59.919581 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-07-25T14:29:59.919717 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:59.920333 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.35 ms +I, [2018-07-25T14:29:59.920382 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:59.920867 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-07-25T14:29:59.920966 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:59.922485 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.29 ms +I, [2018-07-25T14:29:59.922548 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:59.922958 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-07-25T14:29:59.923011 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:59.923433 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-07-25T14:29:59.923485 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:59.923837 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-07-25T14:29:59.923884 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:59.924293 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.23 ms +I, [2018-07-25T14:29:59.924346 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:59.924715 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-07-25T14:29:59.924767 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:59.925264 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-07-25T14:29:59.925337 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:59.925946 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-07-25T14:29:59.926004 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:59.926583 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-07-25T14:29:59.926641 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:59.927050 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-07-25T14:29:59.927103 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:59.927472 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-07-25T14:29:59.927515 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:59.927868 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-07-25T14:29:59.927917 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:59.928338 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-07-25T14:29:59.928431 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:59.931144 #5] INFO -- : Inline processing of topic course_change with 1 messages took 2.53 ms +I, [2018-07-25T14:29:59.933030 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:59.933514 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-07-25T14:29:59.933694 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:59.934057 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-07-25T14:29:59.934098 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:59.934512 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.25 ms +I, [2018-07-25T14:29:59.934557 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:59.935365 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.35 ms +I, [2018-07-25T14:29:59.935443 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:59.936439 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.73 ms +I, [2018-07-25T14:29:59.936537 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:59.936904 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-07-25T14:29:59.936945 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:59.937318 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-07-25T14:29:59.937358 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:59.938621 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.27 ms +I, [2018-07-25T14:29:59.938674 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:59.939010 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-07-25T14:29:59.939049 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:59.939357 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-07-25T14:29:59.939395 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:59.939696 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-07-25T14:29:59.939733 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:59.940017 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-07-25T14:29:59.940055 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:59.940353 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T14:29:59.940390 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:59.940718 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-07-25T14:29:59.940757 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:59.941205 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-07-25T14:29:59.941250 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:59.941836 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-07-25T14:29:59.941877 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:59.942490 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.24 ms +I, [2018-07-25T14:29:59.942550 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:59.942989 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-07-25T14:29:59.943053 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:59.943433 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-07-25T14:29:59.943508 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:59.943941 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.25 ms +I, [2018-07-25T14:29:59.943989 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:59.944378 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-07-25T14:29:59.944430 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:59.944875 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-07-25T14:29:59.945851 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:59.946433 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.27 ms +I, [2018-07-25T14:29:59.946490 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:59.946888 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-07-25T14:29:59.946936 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:59.947507 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.35 ms +I, [2018-07-25T14:29:59.947577 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:59.947960 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-07-25T14:29:59.948010 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:59.948673 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.45 ms +I, [2018-07-25T14:29:59.948800 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:59.949186 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-07-25T14:29:59.949229 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:59.949620 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-07-25T14:29:59.949659 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:59.950399 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.51 ms +I, [2018-07-25T14:29:59.950454 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:59.950838 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-07-25T14:29:59.950909 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:59.951316 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-07-25T14:29:59.951384 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:59.951756 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-07-25T14:29:59.951806 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:59.952336 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.27 ms +I, [2018-07-25T14:29:59.952390 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:59.952805 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-07-25T14:29:59.952860 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:59.953376 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.28 ms +I, [2018-07-25T14:29:59.953432 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:59.956790 #5] INFO -- : Inline processing of topic course_change with 1 messages took 3.12 ms +I, [2018-07-25T14:29:59.957362 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:59.958121 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.34 ms +I, [2018-07-25T14:29:59.958216 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:59.958594 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-07-25T14:29:59.958639 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:59.958981 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-07-25T14:29:59.959034 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:59.959424 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-07-25T14:29:59.959473 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:59.959835 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-07-25T14:29:59.959885 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:59.960517 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.34 ms +I, [2018-07-25T14:29:59.960573 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:59.961312 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.4 ms +I, [2018-07-25T14:29:59.961378 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:59.961921 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.23 ms +I, [2018-07-25T14:29:59.961975 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:59.962762 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.31 ms +I, [2018-07-25T14:29:59.962838 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:59.963342 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-07-25T14:29:59.963392 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:29:59.963784 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-07-25T14:29:59.963840 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +W, [2018-07-25T14:30:01.893428 #5] WARN -- : Reached max fetcher queue size (100), sleeping 1s +I, [2018-07-25T14:30:01.964695 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-07-25T14:30:01.964743 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:30:01.964987 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T14:30:01.965016 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:30:01.965247 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T14:30:01.965277 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:30:01.965504 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T14:30:01.965536 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:30:01.965808 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-07-25T14:30:01.965875 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:30:01.967580 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.35 ms +I, [2018-07-25T14:30:01.967684 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:30:01.968363 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.31 ms +I, [2018-07-25T14:30:01.968461 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:30:01.969708 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.25 ms +I, [2018-07-25T14:30:01.969767 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:30:01.970094 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-07-25T14:30:01.970126 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:30:01.970369 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-07-25T14:30:01.970417 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:30:01.970633 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-07-25T14:30:01.970661 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:30:01.970895 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T14:30:01.970923 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:30:01.971169 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-07-25T14:30:01.971217 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:30:01.971581 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-07-25T14:30:01.971611 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:30:01.971858 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T14:30:01.971882 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:30:01.972381 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.29 ms +I, [2018-07-25T14:30:01.972421 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:30:01.972675 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T14:30:01.972706 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:30:01.972926 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-07-25T14:30:01.972955 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:30:01.974351 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.25 ms +I, [2018-07-25T14:30:01.974410 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:30:01.974788 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-07-25T14:30:01.974855 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:30:01.975277 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-07-25T14:30:01.975331 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:30:01.975629 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-07-25T14:30:01.975668 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:30:01.977329 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.35 ms +I, [2018-07-25T14:30:01.977399 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:30:01.978585 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.91 ms +I, [2018-07-25T14:30:01.978737 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:30:01.979548 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-07-25T14:30:01.979692 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:30:01.981250 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-07-25T14:30:01.981289 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:30:01.981522 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T14:30:01.981552 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:30:01.981770 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T14:30:01.981799 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:30:01.982040 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-07-25T14:30:01.982090 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:30:01.982304 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-07-25T14:30:01.982333 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:30:01.982544 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-07-25T14:30:01.982591 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:30:01.982797 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-07-25T14:30:01.982831 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:30:01.983051 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T14:30:01.983088 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:30:01.983306 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T14:30:01.983335 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:30:01.983717 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-07-25T14:30:01.983754 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:30:01.984004 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T14:30:01.984046 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:30:01.984303 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-07-25T14:30:01.984341 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:30:01.984589 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T14:30:01.984619 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:30:01.984856 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T14:30:01.984896 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:30:01.985131 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T14:30:01.985173 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:30:01.985436 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-07-25T14:30:01.985473 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:30:01.986584 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.97 ms +I, [2018-07-25T14:30:01.986620 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:30:01.986894 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T14:30:01.986927 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:30:01.987141 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-07-25T14:30:01.987171 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:30:01.987426 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-07-25T14:30:01.987456 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:30:01.987679 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T14:30:01.988814 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:30:01.989941 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.48 ms +I, [2018-07-25T14:30:01.989982 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:30:01.990241 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-07-25T14:30:01.990320 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:30:01.990519 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-07-25T14:30:01.990548 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:30:01.990895 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-07-25T14:30:01.990927 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:30:01.991207 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-07-25T14:30:01.991239 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:30:01.991474 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T14:30:01.991503 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:30:01.996924 #5] INFO -- : Inline processing of topic course_change with 1 messages took 5.24 ms +I, [2018-07-25T14:30:01.997009 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:30:01.997494 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-07-25T14:30:01.997547 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:30:01.997937 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-07-25T14:30:01.997985 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:30:01.998385 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-07-25T14:30:01.998433 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:30:01.998770 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-07-25T14:30:01.998818 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:30:01.999151 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-07-25T14:30:01.999183 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:30:01.999438 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-07-25T14:30:01.999479 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:30:01.999726 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T14:30:01.999755 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:30:02.000804 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.26 ms +I, [2018-07-25T14:30:02.000858 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:30:02.001148 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-07-25T14:30:02.001179 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:30:02.002125 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-07-25T14:30:02.002173 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:30:02.002534 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-07-25T14:30:02.002584 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:30:02.003099 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.31 ms +I, [2018-07-25T14:30:02.003134 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:30:02.003385 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-07-25T14:30:02.003416 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:30:02.003638 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T14:30:02.003668 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:30:02.003894 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T14:30:02.005715 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:30:02.006536 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.51 ms +I, [2018-07-25T14:30:02.006605 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:30:02.008646 #5] INFO -- : Inline processing of topic course_change with 1 messages took 1.79 ms +I, [2018-07-25T14:30:02.008718 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:30:02.009177 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.23 ms +I, [2018-07-25T14:30:02.009233 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:30:02.009632 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-07-25T14:30:02.009687 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:30:02.010141 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.26 ms +I, [2018-07-25T14:30:02.010195 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:30:02.010767 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-07-25T14:30:02.010802 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:30:02.011034 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T14:30:02.011063 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:30:02.011471 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.28 ms +I, [2018-07-25T14:30:02.012252 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:30:02.012664 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-07-25T14:30:02.012705 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:30:02.013008 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-07-25T14:30:02.013046 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:30:02.014695 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.24 ms +I, [2018-07-25T14:30:02.014766 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:30:02.015109 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-07-25T14:30:02.015147 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:30:02.015403 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-07-25T14:30:02.015433 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:30:02.015660 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T14:30:02.015689 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:30:02.017081 #5] INFO -- : Inline processing of topic course_change with 1 messages took 1.21 ms +I, [2018-07-25T14:30:02.017129 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:30:02.017422 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T14:30:02.017452 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:30:02.017692 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-07-25T14:30:02.017721 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:30:02.017951 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-07-25T14:30:02.017980 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:30:02.018673 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-07-25T14:30:02.018732 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:30:02.019112 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-07-25T14:30:02.019164 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:30:02.019580 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T14:30:02.019616 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:30:02.019999 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.23 ms +I, [2018-07-25T14:30:02.020619 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:30:02.020920 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-07-25T14:30:02.020952 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:30:02.021185 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T14:30:02.021215 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:30:02.021512 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-07-25T14:30:02.021603 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:30:02.021961 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-07-25T14:30:02.022011 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:30:02.022831 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.48 ms +I, [2018-07-25T14:30:02.022888 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:30:02.023378 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.27 ms +I, [2018-07-25T14:30:02.023430 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:30:02.025533 #5] INFO -- : Inline processing of topic course_change with 1 messages took 1.68 ms +I, [2018-07-25T14:30:02.025619 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:30:02.025992 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-07-25T14:30:02.026028 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:30:02.026294 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-07-25T14:30:02.026329 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:30:02.028214 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-07-25T14:30:02.028274 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:30:04.029585 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.33 ms +I, [2018-07-25T14:30:04.029672 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:30:04.030103 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.23 ms +I, [2018-07-25T14:30:04.030160 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:30:04.030588 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-07-25T14:30:04.030645 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T14:30:06.031847 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T14:30:08.477360 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T14:30:16.042109 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T14:30:18.486941 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T14:30:26.050726 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T14:30:28.497177 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T14:30:36.059263 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T14:30:38.506365 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T14:30:46.069539 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T14:30:48.514298 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T14:30:56.088717 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T14:30:58.526104 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T14:31:06.095791 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T14:31:08.538332 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T14:31:16.108688 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T14:31:18.548513 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T14:31:26.118192 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T14:31:28.567942 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T14:31:36.129349 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T14:31:38.578572 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T14:31:46.139768 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T14:31:48.591980 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T14:31:56.149663 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T14:31:58.604114 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T14:32:06.161754 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T14:32:08.614956 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T14:32:16.173833 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T14:32:18.626284 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T14:32:26.193743 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T14:32:28.637345 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T14:32:36.207938 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T14:32:38.648395 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T14:32:46.217626 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T14:32:48.660948 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T14:32:56.226770 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T14:32:58.675314 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T14:33:06.235843 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T14:33:08.685746 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T14:33:16.244613 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T14:33:18.696625 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T14:33:26.255550 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T14:33:28.708623 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T14:33:36.266152 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T14:33:38.718610 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T14:33:46.274407 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T14:33:48.727178 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T14:33:56.286359 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T14:33:58.734576 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T14:34:06.294820 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T14:34:08.744345 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T14:34:16.308737 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T14:34:18.763804 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T14:34:26.319751 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T14:34:28.777050 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T14:34:36.334939 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T14:34:38.795932 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T14:34:46.347550 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T14:34:48.808598 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T14:34:56.361071 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T14:34:58.817951 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T14:35:06.372534 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T14:35:08.829450 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T14:35:16.385161 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T14:35:18.837978 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T14:35:26.399070 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T14:35:28.852179 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T14:35:36.414085 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T14:35:38.863580 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T14:35:46.426014 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T14:35:48.875943 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T14:35:56.433108 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T14:35:58.892512 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T14:36:06.448553 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T14:36:08.904754 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T14:36:16.463254 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T14:36:18.914877 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T14:36:26.477287 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T14:36:28.935452 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T14:36:36.487700 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T14:36:38.950797 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T14:36:46.503973 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T14:36:48.964362 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T14:36:56.518275 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T14:36:58.979267 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T14:37:06.529469 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T14:37:08.996613 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T14:37:16.538389 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T14:37:19.003859 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T14:37:26.552842 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T14:37:29.016619 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T14:37:36.574616 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T14:37:39.030328 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T14:37:46.585690 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T14:37:49.042024 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T14:37:56.595496 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T14:37:59.054403 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T14:38:06.608264 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T14:38:09.071570 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T14:38:16.618048 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T14:38:19.086430 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T14:38:26.628489 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T14:38:29.097100 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T14:38:36.636435 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T14:38:39.107441 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T14:38:46.646558 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T14:38:49.120179 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T14:38:56.656937 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T14:38:59.130432 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T14:39:06.668513 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T14:39:09.139872 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T14:39:16.692550 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T14:39:19.148842 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T14:39:26.701752 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T14:39:29.160072 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T14:39:36.710565 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T14:39:39.172630 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T14:39:46.725545 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T14:39:49.183114 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T14:39:56.736913 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T14:39:59.193165 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T14:40:06.748372 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T14:40:09.202586 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T14:40:16.759612 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T14:40:19.211919 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T14:40:27.045108 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T14:40:29.222033 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T14:40:37.055377 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T14:40:39.235829 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T14:40:47.064886 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T14:40:49.254412 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T14:40:57.075197 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T14:40:59.266164 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T14:41:07.084058 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T14:41:09.277718 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T14:41:17.094068 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T14:41:19.284291 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T14:41:27.110672 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T14:41:29.297733 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T14:41:37.118022 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T14:41:39.311473 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T14:41:47.130706 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T14:41:49.329510 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T14:41:57.138973 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T14:41:59.345297 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T14:42:07.148633 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T14:42:09.355564 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T14:42:17.157437 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T14:42:19.365743 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T14:42:27.174404 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T14:42:29.380056 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T14:42:37.192204 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T14:42:39.391057 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T14:42:47.202054 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T14:42:49.399459 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T14:42:57.210874 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T14:42:59.410101 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T14:43:07.219527 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T14:43:09.424014 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T14:43:17.235194 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T14:43:19.436322 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T14:43:27.244881 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T14:43:29.449192 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T14:43:37.255731 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T14:43:39.460736 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T14:43:47.266050 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T14:43:49.467716 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T14:43:57.274933 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T14:43:59.485749 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T14:44:07.283173 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T14:44:09.494077 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T14:44:17.289726 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T14:44:19.516104 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T14:44:27.298819 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T14:44:29.528679 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T14:44:37.307748 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T14:44:39.537104 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T14:44:47.316170 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T14:44:49.546025 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T14:44:57.326938 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T14:44:59.561831 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T14:45:07.335783 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T14:45:09.578395 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T14:45:17.344642 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T14:45:19.590712 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T14:45:27.355450 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T14:45:29.602212 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T14:45:37.373937 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T14:45:39.612915 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T14:45:47.386294 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T14:45:49.625554 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T14:45:57.397096 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T14:45:59.637751 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T14:46:07.406619 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T14:46:09.652478 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T14:46:17.413710 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T14:46:19.662769 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T14:46:27.421830 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T14:46:29.675823 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T14:46:37.455052 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T14:46:39.685140 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T14:46:47.464338 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T14:46:49.692790 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T14:46:57.477069 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T14:46:59.704466 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T14:47:07.487508 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T14:47:09.715650 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T14:47:17.497475 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T14:47:19.727398 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T14:47:27.508261 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T14:47:29.740103 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T14:47:37.519742 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T14:47:39.752907 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T14:47:47.542035 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T14:47:49.770080 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T14:47:57.553881 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T14:47:59.779313 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T14:48:07.569412 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T14:48:09.789101 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T14:48:17.579887 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T14:48:19.800553 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T14:48:27.595106 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T14:48:29.813834 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T14:48:37.606592 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T14:48:39.828771 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T14:48:47.617884 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T14:48:49.838296 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T14:48:57.634834 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T14:48:59.850410 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T14:49:07.645449 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T14:49:09.862528 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T14:49:17.659062 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T14:49:19.871672 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T14:49:27.670420 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T14:49:29.881104 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T14:49:37.682167 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T14:49:39.892121 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T14:49:47.692082 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T14:49:49.908640 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T14:49:57.701230 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T14:49:59.924815 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T14:50:07.713296 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T14:50:09.937743 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T14:50:17.725706 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T14:50:19.947601 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T14:50:27.740894 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T14:50:29.959163 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T14:50:37.749084 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T14:50:39.975456 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T14:50:47.759879 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T14:50:49.985018 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T14:50:57.769414 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T14:50:59.995312 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T14:51:07.780289 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T14:51:10.006598 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T14:51:17.790880 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T14:51:20.017575 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T14:51:27.803976 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T14:51:30.025562 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T14:51:37.819308 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T14:51:40.040500 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T14:51:47.832150 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T14:51:50.051709 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T14:51:57.842688 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T14:52:00.066573 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T14:52:07.855396 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T14:52:10.076111 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T14:52:17.866048 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T14:52:20.087214 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T14:52:27.876089 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T14:52:30.100880 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T14:52:37.886676 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T14:52:40.114957 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T14:52:47.898646 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T14:52:50.129399 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T14:52:57.910025 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T14:53:00.137570 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T14:53:07.922107 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T14:53:10.148568 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T14:53:17.935436 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T14:53:20.160101 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T14:53:27.946382 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T14:53:30.168886 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T14:53:37.955033 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T14:53:40.179197 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T14:53:47.966628 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T14:53:50.189690 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T14:53:57.976482 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T14:54:00.203553 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T14:54:07.985693 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T14:54:10.215250 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T14:54:17.995394 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T14:54:20.224634 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T14:54:28.004117 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T14:54:30.236048 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T14:54:38.013262 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T14:54:40.244864 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T14:54:48.023962 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T14:54:50.256899 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T14:54:58.034992 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T14:55:00.267154 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T14:55:08.045818 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T14:55:10.275020 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T14:55:18.055187 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T14:55:20.288567 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T14:55:28.065845 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T14:55:30.300014 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T14:55:38.075763 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T14:55:40.311473 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T14:55:48.086782 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T14:55:50.321577 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T14:55:58.104509 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T14:56:00.331814 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T14:56:08.115130 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T14:56:10.341386 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T14:56:18.125188 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T14:56:20.351730 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T14:56:28.136870 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T14:56:30.361848 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T14:56:38.148298 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T14:56:40.371193 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T14:56:48.159538 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T14:56:50.383809 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T14:56:58.169469 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T14:57:00.395705 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T14:57:08.181187 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T14:57:10.403813 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T14:57:18.190512 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T14:57:20.412541 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T14:57:28.200504 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T14:57:30.421255 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T14:57:38.210872 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T14:57:40.432980 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T14:57:48.221150 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T14:57:50.451255 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T14:57:58.228517 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T14:58:00.464942 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T14:58:08.237481 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T14:58:10.484229 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T14:58:18.246572 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T14:58:20.493564 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T14:58:28.258098 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T14:58:30.505952 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T14:58:38.266530 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T14:58:40.519123 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T14:58:48.277679 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T14:58:50.529715 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T14:58:58.290417 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T14:59:00.539698 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T14:59:08.301245 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T14:59:10.553085 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T14:59:18.313744 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T14:59:20.564578 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T14:59:28.325370 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T14:59:30.576036 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T14:59:38.334140 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T14:59:40.587696 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T14:59:48.345075 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T14:59:50.598832 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T14:59:58.357793 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:00:00.609939 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:00:08.368638 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:00:10.619491 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:00:18.377127 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:00:20.632465 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:00:28.386062 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:00:30.644094 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:00:38.397245 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:00:40.666214 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:00:48.408296 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:00:50.677912 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:00:58.420448 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:01:00.689204 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:01:08.434183 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:01:10.699277 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:01:18.446359 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:01:20.710227 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:01:28.458582 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:01:30.720441 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:01:38.471044 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:01:40.731865 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:01:48.483435 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:01:50.746700 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:01:58.495939 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:02:00.757732 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:02:08.507888 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:02:10.768133 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:02:18.518166 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:02:20.780553 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:02:28.526187 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:02:30.789505 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:02:38.537064 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:02:40.800401 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:02:48.551819 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:02:50.815700 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:02:58.564144 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:03:00.832351 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:03:08.582094 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:03:10.847319 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:03:18.597297 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:03:20.859518 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:03:28.611550 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:03:30.872307 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:03:38.625554 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:03:40.896344 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:03:48.637477 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:03:50.912302 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:03:58.648553 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:04:00.933093 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:04:08.656303 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:04:10.947036 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:04:18.668808 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:04:20.958592 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:04:28.680716 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:04:30.970622 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:04:38.689265 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:04:40.981416 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:04:48.701449 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:04:51.002534 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:04:58.727729 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:05:01.016699 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:05:08.738378 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:05:11.028800 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:05:18.756070 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:05:21.047989 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:05:28.771448 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:05:31.063305 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:05:38.781680 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:05:41.080160 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:05:48.795969 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:05:51.101000 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:05:58.813355 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:06:01.111417 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:06:08.827214 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:06:11.128494 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:06:18.838260 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:06:21.142682 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:06:28.851613 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:06:31.155344 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:06:38.863788 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:06:41.165838 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:06:48.877526 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:06:51.181928 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:06:58.899069 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:07:01.198103 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:07:08.927007 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:07:11.216080 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:07:18.941484 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:07:21.231451 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:07:28.953854 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:07:31.249696 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:07:38.975265 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:07:41.259045 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:07:48.987816 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:07:51.267594 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:07:59.002691 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:08:01.284185 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:08:09.013279 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:08:11.304189 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:08:19.025194 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:08:21.315075 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:08:29.045104 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:08:31.328757 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:08:39.058186 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:08:41.338318 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:08:49.067824 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:08:51.347430 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:08:59.085837 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:09:01.357807 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:09:09.100544 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:09:11.375930 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:09:19.113662 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:09:21.389152 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:09:29.125996 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:09:31.399484 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:09:39.142451 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:09:41.411551 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:09:49.155690 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:09:51.424388 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:09:59.168570 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:10:01.433457 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:10:09.181293 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:10:11.443766 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:10:19.190576 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:10:21.454662 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:10:29.201090 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:10:31.465860 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:10:39.218265 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:10:41.477969 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:10:49.237000 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:10:51.489860 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:10:59.330281 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:11:01.499885 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:11:09.337840 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:11:11.508672 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:11:19.350208 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:11:21.523619 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:11:29.359443 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:11:31.536621 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:11:39.376610 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:11:41.548635 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:11:49.391870 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:11:51.558537 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:11:59.400851 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:12:01.575059 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:12:09.412692 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:12:11.586052 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:12:19.422760 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:12:21.599741 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:12:29.430327 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:12:31.611870 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:12:39.438277 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:12:41.622181 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:12:49.445718 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:12:51.632098 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:12:59.454985 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:13:01.643555 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:13:09.467322 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:13:11.651035 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:13:19.478634 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:13:21.659131 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:13:29.495868 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:13:31.675476 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:13:39.507493 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:13:41.685784 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:13:49.516421 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:13:51.695557 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:13:59.525770 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:14:01.706826 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:14:09.534096 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:14:11.715680 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:14:19.551240 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:14:21.725982 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:14:29.559644 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:14:31.741902 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:14:39.572236 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:14:41.752547 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:14:49.584714 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:14:51.764951 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:14:59.599135 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:15:01.774347 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:15:09.608309 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:15:11.785197 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:15:19.615472 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:15:21.796972 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:15:29.628040 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:15:31.809266 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:15:39.640302 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:15:41.833710 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:15:49.652439 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:15:51.852908 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:15:59.670638 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:16:01.883138 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:16:09.685551 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:16:11.900822 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:16:19.709476 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:16:21.915314 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:16:29.726397 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:16:31.939695 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:16:39.748817 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:16:41.953318 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:16:49.762372 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:16:51.969363 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:16:59.777876 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:17:01.985729 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:17:09.791836 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:17:12.001741 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:17:19.805423 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:17:22.015687 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:17:29.817352 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:17:32.028043 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:17:39.824175 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:17:42.039372 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:17:49.838229 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:17:52.055413 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:17:59.854475 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:18:02.070310 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:18:09.878634 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:18:12.081551 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:18:19.893343 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:18:22.105634 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:18:29.903855 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:18:32.117213 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:18:39.914052 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:18:42.125439 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:18:49.922921 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:18:52.137425 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:18:59.934786 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:19:02.148584 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:19:09.963305 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:19:12.165326 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:19:19.974421 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:19:22.177366 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:19:29.984262 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:19:32.186599 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:19:39.996676 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:19:42.196472 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:19:50.007283 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:19:52.214356 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:20:00.018441 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:20:02.223481 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:20:10.032198 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:20:12.233961 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:20:20.046465 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:20:22.245114 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:20:30.057119 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:20:32.259788 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:20:40.067936 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:20:42.270276 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:20:50.077631 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:20:52.281689 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:21:00.090283 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:21:02.294798 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:21:10.101995 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:21:12.306921 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:21:20.115466 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:21:22.316823 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:21:30.126145 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:21:32.325574 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:21:40.139002 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:21:42.337048 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:21:50.148881 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:21:52.346719 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:22:00.168386 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:22:02.355745 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:22:10.179977 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:22:12.369962 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:22:20.192350 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:22:22.379609 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:22:30.203089 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:22:32.390116 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:22:40.213528 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:22:42.401269 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:22:50.228662 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:22:52.413131 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:23:00.239189 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:23:02.426014 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:23:10.248868 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:23:12.437066 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:23:20.257665 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:23:22.448024 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:23:30.267831 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:23:32.459917 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:23:40.277678 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:23:42.469648 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:23:50.293319 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:23:52.478680 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:24:00.308863 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:24:02.490274 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:24:10.319691 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:24:12.503194 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:24:20.330297 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:24:22.513470 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:24:30.339602 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:24:32.525673 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:24:40.354045 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:24:42.535348 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:24:50.365387 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:24:52.608772 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:25:00.380248 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:25:02.618414 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:25:10.389634 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:25:12.632844 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:25:20.400533 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:25:22.645639 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:25:30.416036 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:25:32.662258 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:25:40.426119 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:25:42.675427 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:25:50.436408 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:25:52.693990 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:26:00.446677 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:26:02.704951 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:26:10.460123 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:26:12.718930 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:26:20.467379 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:26:22.733259 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:26:30.483636 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:26:32.744673 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:26:40.498024 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:26:42.758167 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:26:50.509551 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:26:52.770786 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:27:00.525259 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:27:02.785414 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:27:10.541037 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:27:12.799574 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:27:20.558522 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:27:22.809573 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:27:30.573254 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:27:32.828076 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:27:40.587418 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:27:42.839208 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:27:50.599043 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:27:52.849472 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:28:00.606560 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:28:02.860305 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:28:10.619026 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:28:12.871172 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:28:20.627388 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:28:22.885131 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:28:30.659317 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:28:32.897694 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:28:40.678022 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:28:42.908791 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:28:50.686777 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:28:52.916853 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:29:00.704801 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:29:02.928673 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:29:10.715224 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:29:12.955700 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:29:20.722917 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:29:22.965266 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:29:30.733462 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:29:32.974955 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:29:40.743879 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:29:42.985119 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:29:50.752413 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:29:52.996794 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:30:00.765195 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:30:03.006748 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:30:10.776807 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:30:13.018639 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:30:20.786935 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:30:23.031872 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:30:30.797316 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:30:33.043407 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:30:40.807273 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:30:43.053891 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:30:50.818174 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:30:53.066026 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:31:00.840716 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:31:03.075147 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:31:10.852267 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:31:13.087217 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:31:20.872159 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:31:23.099622 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:31:30.885074 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:31:33.111163 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:31:40.893448 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:31:43.122402 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:31:50.902884 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:31:53.131915 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:32:00.913763 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:32:03.149812 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:32:10.923187 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:32:13.158513 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:32:20.935155 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:32:23.171469 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:32:30.944825 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:32:33.181487 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:32:40.953607 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:32:43.189256 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:32:50.964460 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:32:53.197704 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:33:00.971708 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:33:03.208246 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:33:10.982700 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:33:13.230050 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:33:20.988806 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:33:23.239747 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:33:31.001299 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:33:33.251880 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:33:41.015654 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:33:43.266397 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:33:51.025283 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:33:53.275962 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:34:01.036439 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:34:03.286943 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:34:11.047109 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:34:13.294296 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:34:21.057612 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:34:23.304335 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:34:31.070174 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:34:33.312490 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:34:41.090397 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:34:43.324418 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:34:51.101727 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:34:53.332918 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:35:01.112614 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:35:03.343641 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:35:11.121222 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:35:13.356436 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:35:21.130484 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:35:23.365085 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:35:31.139824 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:35:33.375222 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:35:41.153542 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:35:43.386833 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:35:51.164064 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:35:53.399024 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:36:01.175188 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:36:03.409018 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:36:11.188893 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:36:13.420171 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:36:21.198425 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:36:23.427771 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:36:31.210391 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:36:33.438499 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:36:41.222164 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:36:43.448587 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:36:51.230374 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:36:53.456962 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:37:01.242808 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:37:03.467627 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:37:11.251904 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:37:13.478680 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:37:21.268559 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:37:23.495726 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:37:31.279039 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:37:33.505956 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:37:41.292349 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:37:43.517902 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:37:51.305521 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:37:53.529026 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:38:01.315823 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:38:03.537719 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:38:11.324838 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:38:13.548528 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:38:21.340277 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:38:23.556743 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:38:31.348839 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:38:33.566234 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:38:41.360213 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:38:43.576757 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:38:51.368964 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:38:53.587880 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:39:01.381848 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:39:03.597132 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:39:11.396077 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:39:13.606788 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:39:21.403616 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:39:23.616226 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:39:31.418638 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:39:33.632890 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:39:41.429263 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:39:43.650086 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:39:51.440730 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:39:53.665990 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:40:01.452869 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:40:03.676721 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:40:11.462335 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:40:13.686925 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:40:21.471310 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:40:23.695440 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:40:31.484305 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:40:33.706360 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:40:41.498271 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:40:43.716864 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:40:51.516895 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:40:53.728752 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:41:01.525283 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:41:03.741048 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:41:11.538085 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:41:13.755233 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:41:21.549686 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:41:23.773180 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:41:31.558791 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:41:33.781954 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:41:41.567587 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:41:43.790867 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:41:51.578095 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:41:53.803311 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:42:01.598372 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:42:03.824065 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:42:11.609551 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:42:13.834599 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:42:21.625148 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:42:23.847901 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:42:31.643258 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:42:33.860312 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:42:41.655397 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:42:43.875995 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:42:51.668460 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:42:53.889559 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:43:01.681047 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:43:03.906343 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:43:11.704525 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:43:13.925668 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:43:21.716934 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:43:23.935646 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:43:31.737788 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:43:33.957195 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:43:41.752148 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:43:43.976347 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:43:51.767861 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:43:53.988561 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:44:01.778023 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:44:04.003848 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:44:11.789709 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:44:14.016008 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:44:21.798514 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:44:24.029411 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:44:31.808460 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:44:34.041380 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:44:41.818916 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:44:44.053786 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:44:51.830135 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:44:54.067182 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:45:01.839085 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:45:04.076898 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:45:11.849709 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:45:14.088165 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:45:21.859691 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:45:24.100691 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:45:31.867885 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:45:34.111456 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:45:41.878645 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:45:44.126641 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:45:51.887349 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:45:54.138089 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:46:01.898353 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:46:04.151195 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:46:11.909956 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:46:14.162920 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:46:21.920653 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:46:24.180769 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:46:31.930886 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:46:34.190208 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:46:41.941086 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:46:44.200291 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:46:51.950622 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:46:54.211680 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:47:01.962216 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:47:04.221391 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:47:11.971275 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:47:14.238655 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:47:21.982125 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:47:24.252592 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:47:31.993021 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:47:34.263970 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:47:42.003227 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:47:44.283486 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:47:52.013555 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:47:54.296590 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:48:02.032617 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:48:04.314389 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:48:12.046761 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:48:14.329509 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:48:22.054520 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:48:24.337320 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:48:32.063191 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:48:34.347995 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:48:42.071414 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:48:44.357941 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:48:52.082126 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:48:54.372423 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:49:02.091957 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:49:04.382343 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:49:12.100600 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:49:14.392119 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:49:22.110963 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:49:24.401494 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:49:32.119320 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:49:34.413119 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:49:42.126462 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:49:44.422809 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:49:52.135894 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:49:54.433152 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:50:02.145676 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:50:04.445705 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:50:12.158001 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:50:14.454649 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:50:22.168512 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:50:24.464648 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:50:32.184862 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:50:34.485705 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:50:42.194308 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:50:44.495145 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:50:52.329359 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:50:54.503946 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:51:02.340326 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:51:04.517041 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:51:12.350711 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:51:14.526902 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:51:22.362120 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:51:24.534170 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:51:32.372423 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:51:34.543584 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:51:42.381911 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:51:44.553134 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:51:52.391920 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:51:54.566653 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:52:02.399735 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:52:04.577064 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:52:12.408170 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:52:14.587925 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:52:22.417909 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:52:24.599157 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:52:32.429732 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:52:34.611064 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:52:42.438871 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:52:44.622802 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:52:52.444873 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:52:54.630291 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:53:02.454567 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:53:04.645689 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:53:12.465220 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:53:14.657457 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:53:22.475180 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:53:24.671711 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:53:32.484629 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:53:34.683366 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:53:43.025963 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:53:45.026402 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:53:53.033829 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:53:55.034099 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:54:03.041500 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:54:05.044747 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:54:13.052416 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:54:15.059785 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:54:23.067572 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:54:25.068388 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:54:33.075024 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:54:35.076154 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:54:43.084539 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:54:45.083912 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:54:53.094869 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:54:55.092857 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:55:03.104417 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:55:05.103589 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:55:13.114400 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:55:15.116427 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:55:23.125416 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:55:25.127800 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:55:33.134345 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:55:35.144943 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:55:43.145190 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:55:45.157267 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:55:53.156072 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:55:55.170452 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:56:03.167287 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:56:05.182081 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:56:13.177394 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:56:15.193954 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:56:23.195187 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:56:25.205696 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:56:33.205470 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:56:35.218208 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:56:43.213957 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:56:45.229017 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:56:53.223177 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:56:55.244571 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:57:03.232561 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:57:05.253643 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:57:13.240433 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:57:15.263940 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:57:23.250418 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:57:25.276089 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:57:33.263772 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:57:35.290433 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:57:43.274854 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:57:45.304077 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:57:53.285455 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:57:55.315743 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:58:03.294077 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:58:05.328098 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:58:13.307083 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:58:15.338806 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:58:23.321024 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:58:25.352578 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:58:33.329324 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:58:35.365410 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:58:43.341920 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:58:45.380163 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:58:53.358084 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:58:55.392723 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:59:03.376260 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:59:05.406571 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:59:13.385950 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:59:15.416585 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:59:23.404129 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:59:25.431469 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:59:33.420838 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:59:35.447540 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:59:43.432439 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:59:45.457632 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T15:59:53.441023 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T15:59:55.473744 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T16:00:03.454794 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T16:00:05.489165 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T16:00:13.468994 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T16:00:15.502198 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T16:00:23.484374 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T16:00:25.513947 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T16:00:33.502220 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T16:00:35.529428 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T16:00:43.511807 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T16:00:45.541420 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T16:00:53.523597 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T16:00:55.552827 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T16:01:03.543645 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T16:01:05.564396 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T16:01:13.555873 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T16:01:15.580789 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T16:01:23.571433 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T16:01:25.596041 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T16:01:33.584546 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T16:01:35.611600 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T16:01:43.596032 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T16:01:45.623618 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T16:01:53.604483 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T16:01:55.635743 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T16:02:03.615670 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T16:02:05.647437 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T16:02:13.626235 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T16:02:15.660004 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T16:02:23.636793 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T16:02:25.669277 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T16:02:33.650896 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T16:02:35.681870 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T16:02:43.662401 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T16:02:45.696895 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T16:02:53.671337 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T16:02:55.706201 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T16:03:03.681922 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T16:03:05.714061 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T16:03:13.694523 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T16:03:15.725667 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T16:03:23.707990 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T16:03:25.739229 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T16:03:33.719475 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T16:03:35.747187 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T16:03:43.726695 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T16:03:45.756722 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T16:03:53.739989 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T16:03:55.771312 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T16:04:03.750918 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T16:04:05.783860 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T17:10:18.342515 #5] INFO -- : Committing offsets: course_change/0:1952 +W, [2018-07-25T17:10:18.365611 #5] WARN -- : Connection has been unused for too long, re-connecting... +I, [2018-07-25T17:10:18.377438 #5] INFO -- : Committing offsets: section_change/0:4370 +W, [2018-07-25T17:10:18.377632 #5] WARN -- : Connection has been unused for too long, re-connecting... +I, [2018-07-25T17:10:28.639054 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T17:10:28.669908 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T17:10:42.093987 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T17:10:44.156975 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T17:10:52.799625 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T17:10:54.558112 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T17:11:03.260704 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T17:11:05.214418 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T17:11:13.287050 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T17:11:15.230201 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T17:11:23.300614 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T17:11:25.246957 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T17:11:33.311179 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T17:11:35.259842 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T17:11:43.319518 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T17:11:45.269754 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T17:11:53.342139 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T17:11:55.301024 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T17:12:03.355193 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T17:12:05.311742 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T17:12:13.365224 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T17:12:15.320919 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T17:12:23.382441 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T17:12:25.332841 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T17:12:33.424308 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T17:12:35.346753 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T17:12:43.435986 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T17:12:45.362732 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T17:12:53.446486 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T17:12:55.373114 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T17:13:03.456502 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T17:13:05.382196 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T17:13:13.472665 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T17:13:15.392592 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T17:13:23.487764 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T17:13:25.402461 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T17:13:33.497457 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T17:13:35.414273 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T17:13:43.510476 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T17:13:45.425908 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T17:13:53.522665 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T17:13:55.439786 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T17:14:03.539311 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T17:14:05.452054 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T17:14:13.553040 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T17:14:15.465534 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T17:14:23.562807 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T17:14:25.479134 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T17:14:33.574115 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T17:14:35.507342 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T17:14:43.589273 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T17:14:45.521207 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T17:14:53.601895 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T17:14:55.553658 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T17:15:03.618560 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T17:15:05.566096 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T17:15:13.632876 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T17:15:15.579494 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T17:15:23.870168 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T17:15:25.590971 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T17:15:33.883786 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T17:15:35.602291 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T17:15:43.897327 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T17:15:45.613163 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T17:15:53.909036 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T17:15:55.625050 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T17:16:03.933626 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T17:16:05.635673 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T17:16:13.952361 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T17:16:15.648614 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T17:16:23.963669 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T17:16:25.660150 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T17:16:33.977106 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T17:16:35.673877 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T17:16:43.988289 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T17:16:45.684326 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T17:16:54.001899 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T17:16:55.697602 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T17:17:04.014600 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T17:17:05.709061 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T17:17:14.025910 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T17:17:15.730067 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T17:17:24.037056 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T17:17:25.742612 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T17:17:34.048036 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T17:17:35.756898 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T17:17:44.059902 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T17:17:45.769834 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T17:17:54.081992 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T17:17:55.791117 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T17:18:04.104917 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T17:18:05.806204 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T17:18:14.154421 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T17:18:15.835576 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T17:18:24.172267 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T17:18:25.861333 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T17:18:34.569097 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T17:18:36.717005 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T17:18:46.485456 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T17:18:48.487902 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-25T17:18:56.610977 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-25T17:18:58.582731 #5] INFO -- : Committing offsets: course_change/0:1952 +E, [2018-07-26T13:08:36.226535 #5] ERROR -- : Timed out while waiting for response 8263 +E, [2018-07-26T13:08:36.270323 #5] ERROR -- : Timed out while waiting for response 10496 +W, [2018-07-26T13:08:36.314807 #5] WARN -- : Connection has been unused for too long, re-connecting... +W, [2018-07-26T13:08:36.344608 #5] WARN -- : Connection has been unused for too long, re-connecting... +I, [2018-07-26T13:08:36.464535 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-07-26T13:08:36.527714 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-07-26T13:08:36.917808 #5] INFO -- : Committing offsets with recommit: course_change/0:1952 +I, [2018-07-26T13:08:36.926839 #5] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-07-26T13:08:36.932236 #5] INFO -- : Committing offsets with recommit: section_change/0:4370 +E, [2018-07-26T13:08:37.141650 #5] ERROR -- : Connection error while fetching messages: Connection error Errno::ETIMEDOUT: Operation timed out +I, [2018-07-26T13:08:37.168200 #5] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +E, [2018-07-26T13:08:37.329063 #5] ERROR -- : Connection error while fetching messages: Connection error Errno::ETIMEDOUT: Operation timed out +I, [2018-07-26T13:08:47.150143 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:08:47.692606 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:08:57.175238 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:08:58.001473 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:09:07.188649 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:09:08.008432 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:09:17.201705 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:09:18.018404 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:09:27.213281 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:09:28.030661 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:09:37.223085 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:09:38.064437 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:09:47.386058 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:09:48.076554 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:09:57.397273 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:09:58.085920 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:10:07.408740 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:10:08.093381 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:10:17.422279 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:10:18.105123 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:10:27.433916 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:10:28.116874 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:10:37.445382 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:10:38.127826 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:10:47.457765 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:10:48.292206 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:10:57.468223 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:10:58.303145 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:11:07.482077 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:11:08.311268 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:11:17.493695 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:11:18.323720 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:11:27.507885 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:11:28.337066 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:11:37.521576 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:11:38.350184 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:11:47.531959 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:11:48.361117 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:11:57.541790 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:11:58.368750 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:12:07.555318 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:12:08.380284 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:12:17.565871 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:12:18.392201 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:12:27.575439 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:12:28.399508 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:12:37.590635 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:12:38.414217 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:12:47.602891 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:12:48.427766 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:12:57.613592 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:12:58.435337 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:13:07.628170 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:13:08.447370 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:13:17.638906 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:13:18.464505 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:13:27.651624 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:13:28.475833 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:13:37.666141 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:13:38.488385 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:13:47.676926 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:13:48.499100 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:13:57.692469 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:13:58.509796 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:14:07.702075 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:14:08.536364 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:14:17.716282 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:14:18.549025 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:14:27.732459 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:14:28.564645 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:14:37.750341 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:14:38.578675 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:14:47.766513 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:14:48.590944 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:14:57.782560 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:14:58.604106 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:15:07.794962 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:15:08.616953 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:15:17.809471 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:15:18.628870 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:15:27.832407 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:15:28.644637 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:15:37.847952 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:15:38.661480 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:15:47.866871 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:15:48.672226 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:15:57.880784 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:15:58.685219 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:16:07.902977 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:16:08.696998 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:16:17.916458 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:16:18.712891 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:16:27.930820 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:16:28.726789 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:16:37.947069 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:16:38.739962 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:16:47.961395 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:16:48.765441 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:16:57.975759 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:16:58.778552 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:17:08.028541 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:17:08.796599 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:17:18.042417 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:17:18.815050 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:17:28.053737 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:17:28.827139 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:17:38.067470 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:17:38.843614 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:17:48.077710 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:17:48.859860 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:17:58.091502 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:17:58.871339 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:18:08.108176 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:18:08.885664 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:18:18.122880 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:18:18.897699 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:18:28.137397 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:18:28.909763 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:18:38.157501 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:18:38.920475 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:18:48.171186 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:18:48.938601 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:18:58.181839 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:18:58.954471 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:19:08.795894 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:19:08.971080 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:19:18.812855 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:19:18.983491 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:19:28.828837 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:19:28.996840 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:19:38.844091 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:19:39.006946 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:19:48.867568 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:19:49.022194 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:19:58.880097 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:19:59.037930 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:20:08.889548 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:20:09.049928 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:20:18.906816 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:20:19.064559 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:20:28.924255 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:20:29.084386 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:20:38.944094 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:20:39.098319 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:20:48.956619 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:20:49.108413 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:20:58.970345 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:20:59.121090 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:21:08.979454 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:21:09.129744 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:21:19.011999 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:21:19.148232 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:21:29.027112 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:21:29.166421 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:21:39.050818 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:21:39.179605 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:21:49.066120 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:21:49.196953 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:21:59.080003 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:21:59.210814 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:22:09.099466 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:22:09.227890 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:22:19.122430 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:22:19.246786 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:22:29.138255 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:22:29.265557 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:22:39.148467 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:22:39.272749 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:22:49.157055 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:22:49.284330 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:22:59.165640 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:22:59.303190 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:23:09.175510 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:23:09.311781 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:23:19.185338 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:23:19.319564 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:23:29.195038 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:23:29.331843 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:23:39.203593 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:23:39.342261 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:23:49.211768 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:23:50.593077 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:24:00.496463 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:24:00.603657 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:24:11.334168 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:24:11.334717 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:24:22.905402 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:24:22.905914 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:24:33.581823 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:24:33.582483 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:24:43.602610 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:24:43.602913 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:24:53.619596 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:24:53.619958 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:25:03.628778 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:25:03.629568 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:25:13.642022 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:25:13.643933 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:25:23.661235 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:25:23.662709 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:25:33.676426 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:25:33.677827 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:25:43.690567 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:25:43.691434 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:25:53.703125 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:25:53.705324 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:26:03.721380 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:26:03.722009 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:26:13.738150 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:26:13.738411 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:26:23.754741 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:26:23.755229 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:26:33.771411 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:26:33.772182 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:26:43.782660 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:26:43.784445 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:26:53.799455 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:26:53.800236 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:27:03.814260 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:27:03.814906 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:27:13.828735 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:27:13.829428 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:27:23.843537 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:27:23.843863 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:27:33.858989 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:27:33.859911 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:27:43.870482 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:27:43.871001 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:27:53.884058 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:27:53.884765 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:28:03.896782 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:28:03.898084 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:28:13.910319 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:28:13.911120 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:28:23.919403 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:28:23.920133 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:28:33.933221 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:28:33.933889 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:28:43.945575 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:28:43.946257 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:28:53.962332 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:28:53.963286 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:29:03.974226 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:29:03.974831 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:29:13.989789 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:29:13.990083 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:29:24.004386 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:29:24.004804 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:29:34.022298 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:29:34.025392 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:29:44.044737 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:29:44.045468 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:29:54.058447 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:29:54.059109 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:30:04.077232 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:30:04.077828 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:30:14.098282 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:30:14.099457 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:30:24.121850 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:30:24.122730 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:30:34.138261 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:30:34.138570 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:30:44.150398 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:30:44.151111 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:30:54.160549 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:30:54.161415 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:31:04.175502 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:31:04.176124 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:31:14.191497 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:31:14.192307 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:31:24.205750 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:31:24.206551 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:31:34.220725 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:31:34.221417 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:31:44.232572 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:31:44.233248 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:31:54.244177 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:31:54.244830 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:32:04.257911 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:32:04.258456 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:32:14.270903 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:32:14.271616 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:32:24.286559 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:32:24.287053 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:32:34.299625 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:32:34.299855 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:32:44.309693 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:32:44.310415 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:32:54.321177 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:32:54.321778 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:33:04.334857 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:33:04.335587 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:33:14.344812 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:33:14.345378 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:33:24.356311 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:33:24.356677 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:33:34.366674 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:33:34.367517 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:33:44.377694 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:33:44.378304 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:33:54.391433 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:33:54.391958 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:34:04.404275 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:34:04.404799 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:34:14.415925 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:34:14.416456 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:34:24.431392 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:34:24.432262 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:34:34.445650 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:34:34.448541 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:34:44.465541 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:34:44.466393 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:34:54.476725 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:34:54.477695 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:35:04.486784 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:35:04.490594 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:35:14.497570 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:35:14.498181 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:35:24.511201 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:35:24.511913 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:35:34.529871 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:35:34.531276 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:35:44.547648 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:35:44.548306 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:35:54.560338 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:35:54.561121 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:36:04.571265 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:36:04.571798 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:36:14.582609 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:36:14.583174 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:36:24.593765 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:36:24.594479 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:36:34.605975 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:36:34.606252 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:36:44.617802 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:36:44.619708 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:36:54.637444 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:36:54.638076 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:37:04.651367 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:37:04.652060 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:37:14.671290 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:37:14.672066 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:37:24.687014 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:37:24.687897 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:37:34.699600 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:37:34.700287 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:37:44.713640 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:37:44.714690 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:37:54.738118 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:37:54.738633 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:38:04.758124 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:38:04.758847 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:38:14.773332 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:38:14.774959 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:38:24.792072 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:38:24.792259 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:38:34.805261 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:38:34.805967 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:38:44.827037 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:38:44.827625 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:38:54.843865 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:38:54.844567 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:39:04.859592 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:39:04.860174 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:39:14.877687 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:39:14.878820 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:39:24.897308 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:39:24.898051 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:39:34.916155 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:39:34.917251 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:39:44.926496 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:39:44.927138 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:39:54.936097 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:39:54.936566 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:40:04.944603 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:40:04.945647 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:40:14.956637 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:40:14.957163 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:40:24.966153 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:40:24.966879 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:40:34.985402 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:40:34.985935 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:40:44.994337 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:40:45.008563 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:40:55.005961 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:40:55.020905 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:41:05.018156 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:41:05.032173 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:41:15.029851 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:41:15.043599 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:41:25.040368 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:41:25.055760 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:41:35.051956 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:41:35.065529 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:41:45.064485 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:41:45.074042 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:41:55.073368 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:41:55.084436 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:42:05.085327 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:42:05.095592 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:42:15.096946 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:42:15.105194 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:42:25.110831 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:42:25.115535 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:42:35.121327 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:42:35.125602 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:42:45.132253 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:42:45.137193 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:42:55.142411 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:42:55.144748 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:43:05.154989 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:43:05.161273 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:43:15.167111 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:43:15.167814 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:43:25.181399 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:43:25.182063 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:43:35.196536 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:43:35.196841 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:43:45.210890 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:43:45.211813 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:43:55.221472 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:43:55.222208 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:44:05.236924 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:44:05.237854 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:44:15.251945 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:44:15.252303 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:44:25.265281 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:44:25.266016 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:44:35.281145 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:44:35.282205 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:44:45.291155 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:44:45.291919 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:44:55.304674 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:44:55.305302 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:45:05.319227 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:45:05.321036 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:45:15.332217 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:45:15.332815 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:45:25.349022 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:45:25.349480 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:45:35.359583 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:45:35.360724 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:45:45.374657 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:45:45.375254 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:45:55.408643 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:45:55.412416 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:46:05.417248 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:46:05.421138 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:46:15.439497 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:46:15.439186 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:46:25.453896 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:46:25.454539 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:46:35.466800 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:46:35.468895 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:46:45.481501 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:46:45.482024 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:46:55.495973 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:46:55.515444 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:47:05.504773 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:47:05.538776 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:47:15.518418 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:47:15.545604 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:47:25.529943 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:47:25.557053 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:47:35.544471 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:47:35.566538 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:47:45.556687 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:47:45.573473 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:47:55.582088 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:47:55.583026 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:48:05.593580 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:48:05.593865 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:48:15.604740 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:48:15.606168 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:48:25.621407 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:48:25.622512 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:48:35.633116 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:48:35.633664 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:48:45.646699 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:48:45.647198 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:48:55.654091 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:48:55.654689 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:49:05.665397 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:49:05.665936 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:49:15.696311 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:49:15.696678 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:49:25.715093 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:49:25.715529 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:49:35.722486 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:49:35.723080 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:49:45.733736 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:49:45.734477 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:49:55.747502 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:49:55.748015 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:50:05.759231 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:50:05.759564 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:50:15.769357 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:50:15.769189 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:50:25.786175 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:50:25.787124 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:50:35.799542 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:50:35.800046 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:50:45.815186 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:50:45.815699 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:50:55.824937 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:50:55.825300 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:51:05.845830 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:51:05.846335 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:51:15.857664 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:51:15.858153 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:51:25.869985 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:51:25.870384 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:51:35.884441 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:51:35.885303 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:51:45.895568 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:51:45.895988 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:51:55.909629 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:51:55.910339 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:52:05.923442 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:52:05.924134 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:52:15.939506 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:52:15.940170 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:52:25.952299 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:52:25.952702 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:52:35.971988 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:52:35.972685 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:52:45.991146 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:52:46.002506 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:52:56.005770 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:52:56.016909 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:53:06.017706 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:53:06.029134 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:53:16.029170 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:53:16.042923 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:53:26.038144 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:53:26.050296 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:53:36.045984 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:53:36.058536 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:53:46.056203 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:53:46.068798 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:53:56.065858 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:53:56.077485 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:54:06.080251 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:54:06.086557 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:54:16.088182 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:54:16.092731 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:54:26.101035 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:54:26.101696 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:54:36.110719 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:54:36.111342 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:54:46.126532 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:54:46.126250 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:54:56.139376 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:54:56.139915 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:55:06.156097 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:55:06.156678 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:55:16.171213 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:55:16.171819 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:55:26.183661 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:55:26.184106 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:55:36.194685 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:55:36.195292 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:55:46.208995 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:55:46.209557 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:55:56.222634 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:55:56.223043 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:56:06.231430 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:56:06.232486 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:56:16.244561 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:56:16.245229 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:56:26.255640 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:56:26.256288 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:56:36.268599 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:56:36.269185 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:56:46.281061 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:56:46.281693 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:56:56.293035 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:56:56.294833 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:57:06.305416 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:57:06.305876 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:57:16.316034 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:57:16.316342 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:57:26.325076 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:57:26.325747 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:57:36.343603 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:57:36.344080 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:57:46.355719 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:57:46.356194 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:57:56.372559 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:57:56.373186 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:58:06.387094 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:58:06.387820 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:58:16.397582 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:58:16.398086 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:58:26.407693 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:58:26.408213 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:58:36.425098 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:58:36.425730 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:58:46.438353 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:58:46.438999 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:58:56.458146 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:58:56.458720 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:59:06.471709 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:59:06.472093 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:59:16.480655 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:59:16.481810 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:59:26.492274 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:59:26.492820 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:59:36.502978 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:59:36.503659 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:59:46.519403 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:59:46.520021 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T13:59:56.531476 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T13:59:56.532167 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:00:06.546930 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:00:06.547505 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:00:16.565038 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:00:16.565681 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:00:42.606486 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:00:42.607148 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:00:52.650052 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:00:52.651245 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:01:02.668435 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:01:02.669045 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:01:12.677660 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:01:12.678272 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:01:22.689402 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:01:22.690066 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:01:32.704917 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:01:32.705278 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:01:42.716590 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:01:42.717261 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:01:52.730818 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:01:52.733211 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:02:02.741421 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:02:02.741670 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:02:12.756855 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:02:12.759192 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:02:22.769515 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:02:22.770107 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:02:32.781227 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:02:32.781652 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:02:42.809123 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:02:42.810256 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:02:52.819995 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:02:52.820774 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:03:02.828789 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:03:02.829520 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:03:12.839915 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:03:12.840184 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:03:22.851265 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:03:22.851892 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:03:32.866541 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:03:32.867268 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:03:42.876530 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:03:42.876962 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:03:52.884304 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:03:52.885318 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:04:02.899625 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:04:02.900028 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:04:12.914353 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:04:12.914614 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:04:22.929689 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:04:22.930484 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:04:32.941214 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:04:32.941996 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:04:42.955357 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:04:42.956194 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:04:52.967500 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:04:52.968425 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:05:02.980206 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:05:02.980609 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:05:12.993213 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:05:12.993864 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:05:23.005921 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:05:23.006362 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:05:33.017201 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:05:33.017722 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:05:43.027351 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:05:43.027885 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:05:53.036450 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:05:53.037418 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:06:03.049365 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:06:03.049969 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:06:13.061874 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:06:13.062375 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:06:23.077575 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:06:23.078225 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:06:33.087780 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:06:33.089491 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:06:43.100601 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:06:43.101796 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:06:53.113130 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:06:53.113881 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:07:03.128179 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:07:03.128766 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:07:13.139504 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:07:13.140117 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:07:23.151947 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:07:23.152553 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:07:33.164961 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:07:33.165556 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:07:43.177525 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:07:43.177908 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:07:53.195149 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:07:53.196318 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:08:03.206843 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:08:03.207359 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:08:13.219847 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:08:13.220697 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:08:23.234371 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:08:23.237856 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:08:33.251012 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:08:33.251577 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:08:43.263244 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:08:43.263423 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:08:53.282565 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:08:53.283231 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:09:03.293666 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:09:03.294101 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:09:13.302546 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:09:13.303458 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:09:23.313365 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:09:23.314133 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:09:33.325289 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:09:33.325869 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:09:43.342135 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:09:43.344579 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:09:53.352788 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:09:53.352468 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:10:03.366013 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:10:03.366522 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:10:13.378900 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:10:13.379629 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:10:23.392274 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:10:23.393161 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:10:33.405309 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:10:33.406008 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:10:43.422235 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:10:43.423357 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:10:53.433510 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:10:53.434700 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:11:03.447019 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:11:03.451380 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:11:13.462148 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:11:13.469447 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:11:23.475384 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:11:23.506735 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:11:33.484330 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:11:33.517570 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:11:43.523880 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:11:43.539883 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:11:53.534752 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:11:53.548150 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:12:03.543699 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:12:03.557266 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:12:13.553758 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:12:13.563642 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:12:23.566972 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:12:23.575345 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:12:33.577972 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:12:33.585149 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:12:43.588497 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:12:43.592911 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:12:53.596341 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:12:53.604021 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:13:03.605162 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:13:03.613572 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:13:13.615460 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:13:13.621292 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:13:23.626046 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:13:23.632892 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:13:33.637815 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:13:33.641964 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:13:43.650372 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:13:43.650855 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:13:53.660237 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:13:53.669361 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:14:03.672739 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:14:03.683500 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:14:13.686916 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:14:13.691410 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:14:23.694239 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:14:23.698305 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:14:33.708261 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:14:33.709248 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:14:43.725058 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:14:43.725577 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:14:53.741168 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:14:53.741921 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:15:03.754000 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:15:03.754614 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:15:13.768436 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:15:13.769007 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:15:23.782949 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:15:23.783674 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:15:33.795292 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:15:33.796372 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:15:43.806863 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:15:43.808134 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:15:53.820263 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:15:53.820643 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:16:03.833198 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:16:03.833747 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:16:13.844966 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:16:13.845268 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:16:23.856371 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:16:23.856994 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:16:33.868194 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:16:33.868811 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:16:43.896308 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:16:43.897708 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:16:53.904481 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:16:53.908440 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:17:03.912292 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:17:03.916067 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:17:13.928885 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:17:13.929325 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:17:23.939862 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:17:23.940429 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:17:33.967933 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:17:33.968494 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:17:43.978462 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:17:43.980819 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:17:53.991689 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:17:53.992540 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:18:04.021511 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:18:04.002821 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:18:14.074035 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:18:14.086065 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:18:24.086615 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:18:24.094649 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:18:34.100136 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:18:34.103184 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:18:44.120047 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:18:44.120965 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:18:54.129759 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:18:54.130476 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:19:04.140774 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:19:04.141076 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:19:14.149476 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:19:14.150114 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:19:24.164497 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:19:24.165165 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:19:34.180032 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:19:34.183072 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:19:44.195571 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:19:44.196113 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:19:54.208846 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:19:54.209484 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:20:04.220722 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:20:04.222867 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:20:14.238779 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:20:14.239672 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:20:24.248134 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:20:24.249962 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:20:34.266840 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:20:34.267504 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:20:44.279602 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:20:44.280080 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:20:54.288351 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:20:54.289199 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:21:04.300072 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:21:04.300685 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:21:14.320127 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:21:14.320661 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:21:24.331681 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:21:24.332114 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:21:34.343651 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:21:34.344197 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:21:44.354978 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:21:44.355371 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:21:54.367186 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:21:54.369812 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:22:04.382891 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:22:04.383628 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:22:14.396988 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:22:14.397262 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:22:24.405071 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:22:24.405944 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:22:34.420391 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:22:34.421180 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:22:44.432522 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:22:44.433239 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:22:54.445855 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:22:54.446697 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:23:04.461442 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:23:04.463584 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:23:14.477976 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:23:14.478416 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:23:24.492399 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:23:24.493020 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:23:34.501961 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:23:34.502496 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:23:44.514169 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:23:44.514981 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:23:54.528182 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:23:54.528858 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:24:04.538748 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:24:04.540026 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:24:14.548821 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:24:14.549714 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:24:24.569560 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:24:24.570152 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:24:34.595229 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:24:34.595654 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:24:44.606122 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:24:44.606769 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:24:54.616502 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:24:54.617343 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:25:04.635526 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:25:04.635883 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:25:14.645805 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:25:14.646472 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:25:24.657745 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:25:24.658473 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:25:34.667394 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:25:34.667675 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:25:44.682589 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:25:44.683138 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:25:54.693832 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:25:54.694209 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:26:04.707273 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:26:04.707908 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:26:14.718906 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:26:14.719523 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:26:24.731776 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:26:24.732636 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:26:34.743941 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:26:34.744516 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:26:44.756778 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:26:44.757433 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:26:54.771128 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:26:54.771872 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:27:04.785965 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:27:04.786856 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:27:14.803707 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:27:14.804302 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:27:24.824359 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:27:24.825094 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:27:34.833736 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:27:34.834440 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:27:44.845173 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:27:44.845786 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:27:54.857396 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:27:54.858258 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:28:04.871788 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:28:05.871121 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:28:14.884204 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:28:15.885012 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:28:24.891932 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:28:25.894708 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:28:34.900929 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:28:35.904308 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:28:44.911542 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:28:45.915195 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:28:54.921544 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:28:55.926914 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:29:04.936363 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:29:05.935780 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:29:15.064072 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:29:15.946396 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:29:25.076011 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:29:25.959486 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:29:35.085530 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:29:35.970352 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:29:45.096834 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:29:45.984571 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:29:55.110044 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:29:55.996483 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:30:05.118633 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:30:06.006758 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:30:15.129728 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:30:16.016673 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:30:25.138073 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:30:26.031011 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:30:35.146866 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:30:36.042986 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:30:45.154753 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:30:46.053551 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:30:55.164906 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:30:56.065095 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:31:05.174061 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:31:06.076119 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:31:15.186017 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:31:16.091488 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:31:25.196613 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:31:26.106347 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:31:35.207360 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:31:36.117781 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:31:45.217081 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:31:46.129222 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:31:55.227758 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:31:56.140881 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:32:05.237180 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:32:06.151664 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:32:15.247184 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:32:16.164696 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:32:25.261900 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:32:26.176536 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:32:35.272913 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:32:36.188693 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:32:45.284296 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:32:46.199214 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:32:55.292565 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:32:56.207176 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:33:05.303458 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:33:06.220148 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:33:15.315260 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:33:16.228158 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:33:25.327143 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:33:26.236321 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:33:35.337143 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:33:36.248350 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:33:45.347512 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:33:46.259896 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:33:55.358663 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:33:56.268006 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:34:05.369800 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:34:06.277256 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:34:15.378386 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:34:16.287487 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:34:25.393933 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:34:26.296712 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:34:35.410121 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:34:36.306551 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:34:45.425038 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:34:46.316328 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:34:55.435169 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:34:56.329245 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:35:05.444519 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:35:06.338889 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:35:15.454098 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:35:16.348000 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:35:25.466710 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:35:26.356553 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:35:35.477883 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:35:36.368293 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:35:45.485084 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:35:46.375659 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:35:55.496223 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:35:56.385401 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:36:05.505932 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:36:06.396507 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:36:15.682210 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:36:16.416175 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:36:25.716646 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:36:26.423837 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:36:35.725618 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:36:36.434257 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:36:45.734032 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:36:46.441456 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:36:55.741065 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:36:56.449149 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:37:05.809998 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:37:06.456132 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:37:16.048643 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:37:16.466009 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:37:26.058680 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:37:26.486237 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:37:36.065439 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:37:36.494620 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:37:46.080573 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:37:46.504295 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:37:56.085251 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:37:56.510101 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:38:06.094010 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:38:06.517279 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:38:16.102100 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:38:16.530462 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:38:26.110593 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:38:26.537573 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:38:36.118217 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:38:36.544063 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:38:46.126153 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:38:46.554893 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:38:56.135036 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:38:56.565129 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:39:06.144180 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:39:06.572829 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:39:16.151587 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:39:16.582858 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:39:26.165829 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:39:26.594871 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:39:36.175467 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:39:36.604783 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:39:46.187052 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:39:46.615835 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:39:56.198422 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:39:56.626294 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:40:06.209545 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:40:06.635563 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:40:16.230326 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:40:16.645128 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:40:26.242610 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:40:26.655334 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:40:36.253491 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:40:36.666315 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:40:46.264494 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:40:46.680433 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:40:56.273711 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:40:56.691211 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:41:06.281896 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:41:06.702055 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:41:16.293109 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:41:16.713922 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:41:26.304438 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:41:26.729440 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:41:36.315596 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:41:36.742846 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:41:46.324595 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:41:46.753017 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:41:56.336260 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:41:56.762299 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:42:06.347383 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:42:06.771403 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:42:16.356867 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:42:16.778502 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:42:26.369835 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:42:26.798062 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:42:36.384475 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:42:36.810125 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:42:46.395760 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:42:46.825974 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:42:56.406771 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:42:56.831894 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:43:06.416922 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:43:06.841598 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:43:16.428959 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:43:16.850715 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:43:26.437759 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:43:26.860502 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:43:36.454525 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:43:36.873902 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:43:46.470573 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:43:46.898823 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:43:56.488184 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:43:56.908015 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:44:06.496037 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:44:06.915761 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:44:16.508596 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:44:16.924613 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:44:26.518381 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:44:26.932819 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:44:36.530439 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:44:36.941446 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:44:46.540439 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:44:46.948541 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:44:56.552300 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:44:56.958720 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:45:06.569103 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:45:06.971224 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:45:16.580313 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:45:16.986167 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:45:26.592672 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:45:26.995059 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:45:36.604232 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:45:37.010898 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:45:46.618439 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:45:47.024803 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:45:56.629789 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:45:57.406824 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:46:06.646701 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:46:07.417920 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:46:16.672000 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:46:17.432780 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:46:26.684976 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:46:27.455700 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:46:36.696567 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:46:37.471649 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:46:46.710072 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:46:47.485196 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:46:56.727680 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:46:57.498683 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:47:07.407834 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:47:07.511249 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:47:17.425237 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:47:17.523089 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:47:27.436802 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:47:27.538595 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:47:37.451983 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:47:37.553621 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:47:47.461873 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:47:47.567510 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:47:57.480323 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:47:57.576665 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:48:07.497071 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:48:07.590850 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:48:17.511784 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:48:17.607001 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:48:27.523412 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:48:27.618155 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:48:37.551516 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:48:37.625763 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:48:47.563610 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:48:47.639910 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:48:57.574811 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:48:57.651391 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:49:07.589006 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:49:07.663547 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:49:17.604130 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:49:17.671826 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:49:27.619812 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:49:27.691946 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:49:37.634588 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:49:37.704337 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:49:47.646937 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:49:47.712808 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:49:57.663366 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:49:57.720663 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:50:07.684893 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:50:07.732807 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:50:17.695379 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:50:17.744515 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:50:27.709278 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:50:27.762815 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:50:37.724656 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:50:37.778355 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:50:47.738135 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:50:47.790037 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:50:57.750718 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:50:57.810786 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:51:07.764333 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:51:07.825004 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:51:17.783496 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:51:17.842715 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:51:27.796939 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:51:27.856729 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:51:37.815553 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:51:37.867413 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:51:47.827394 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:51:47.887174 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:51:57.844231 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:51:57.904889 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:52:07.861470 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:52:07.924291 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:52:17.878570 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:52:17.939601 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:52:27.894027 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:52:27.957600 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:52:37.907977 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:52:37.968700 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:52:47.921316 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:52:47.994964 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:52:57.931627 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:52:58.010852 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:53:07.951079 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:53:08.026434 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:53:17.970257 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:53:18.038030 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:53:27.985132 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:53:28.055388 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:53:38.005307 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:53:38.067600 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:53:48.014789 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:53:48.075117 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:53:58.024362 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:53:58.084364 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:54:08.034945 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:54:08.092219 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:54:18.045318 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:54:18.102503 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:54:28.059529 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:54:28.112681 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:54:38.075276 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:54:38.124008 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:54:48.090220 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:54:48.139640 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:54:58.101506 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:54:58.154368 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:55:08.113735 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:55:08.165761 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:55:18.125770 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:55:18.177439 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:55:28.134910 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:55:28.190719 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:55:38.146400 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:55:38.201845 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:55:48.159300 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:55:48.211583 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:55:58.177243 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:55:58.223422 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:56:08.185256 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:56:08.234514 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:56:18.195391 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:56:18.243754 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:56:28.207092 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:56:28.257739 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:56:38.214498 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:56:38.268119 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:56:48.225127 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:56:48.278226 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:56:58.236529 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:56:58.290590 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:57:08.251656 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:57:08.305584 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:57:18.264758 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:57:18.316729 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:57:28.277373 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:57:28.327862 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:57:38.289730 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:57:38.354788 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:57:48.299151 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:57:48.365341 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:57:58.310082 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:57:58.376288 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:58:08.323319 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:58:08.388592 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:58:18.341386 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:58:18.406126 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:58:28.355292 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:58:28.417752 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:58:38.367922 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:58:38.429148 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:58:48.376662 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:58:48.438756 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:58:58.388914 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:58:58.449864 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:59:08.416104 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:59:08.460528 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:59:18.424198 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:59:18.469674 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:59:28.436348 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:59:28.478476 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:59:38.448323 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:59:38.491986 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:59:48.459020 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:59:48.500273 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T14:59:58.467138 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T14:59:58.507019 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T15:00:08.481614 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T15:00:08.519266 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T15:00:18.492829 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T15:00:18.530574 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T15:00:28.503640 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T15:00:28.541211 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T15:00:38.511099 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T15:00:38.554068 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T15:00:48.525039 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T15:00:48.565239 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T15:00:58.537726 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T15:00:58.579018 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T15:01:08.552691 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T15:01:08.589175 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T15:01:18.565870 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T15:01:18.602936 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T15:01:28.576948 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T15:01:28.614843 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T15:01:38.588403 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T15:01:38.626306 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T15:01:48.601846 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T15:01:48.639667 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T15:01:58.611868 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T15:01:58.647642 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T15:02:08.623929 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T15:02:08.665382 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T15:02:18.636626 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T15:02:18.675471 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T15:02:28.643577 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T15:02:28.685121 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T15:02:38.656180 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T15:02:38.695945 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T15:02:48.669725 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T15:02:48.704864 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T15:02:58.684699 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T15:02:58.714830 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T15:03:08.695703 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T15:03:08.725985 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T15:03:18.707763 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T15:03:18.738745 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T15:03:28.721985 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T15:03:28.748197 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T15:03:38.732958 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T15:03:38.756622 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T15:03:48.748509 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T15:03:48.770939 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T15:03:58.758362 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T15:03:58.780866 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T15:04:08.775129 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T15:04:08.791918 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T15:04:18.786891 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T15:04:18.804969 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T15:04:28.796956 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T15:04:28.813614 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T15:04:38.806338 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T15:04:38.823283 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T15:04:48.814673 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T15:04:48.833126 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T15:04:58.832173 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T15:04:58.856274 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T15:05:08.840358 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T15:05:08.873901 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T15:05:18.852837 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T15:05:18.883513 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T15:05:28.863668 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T15:05:28.895137 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T15:05:38.875347 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T15:05:38.906211 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T15:05:48.887891 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T15:05:48.919178 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T15:05:58.896724 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T15:05:58.926290 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T15:06:08.912573 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T15:06:08.938296 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T15:06:18.925102 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T15:06:18.953265 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T15:06:28.936186 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T15:06:28.965368 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T15:06:38.950884 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T15:06:38.976768 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T15:06:48.964513 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T15:06:48.987460 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T15:06:58.974008 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T15:06:58.998802 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T15:07:08.985233 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T15:07:09.008023 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T15:07:18.998726 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T15:07:19.015040 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T15:07:29.007120 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T15:07:29.026842 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T15:07:39.016279 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T15:07:39.038042 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T15:07:49.031578 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T15:07:49.051004 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T15:07:59.048217 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T15:07:59.065390 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T15:08:09.064203 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T15:08:09.082358 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T15:08:19.073943 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T15:08:19.093292 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T15:08:29.083732 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T15:08:29.104063 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T15:08:39.095491 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T15:08:39.116362 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T15:08:49.114688 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T15:08:49.128714 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T15:08:59.124681 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T15:08:59.139875 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T15:09:09.134518 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T15:09:09.149916 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T15:09:19.147658 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T15:09:19.162154 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T15:09:29.158191 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T15:09:29.173078 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T15:09:39.172705 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T15:09:39.185824 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T15:09:49.184017 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T15:09:49.197081 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T15:09:59.195223 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T15:09:59.206688 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T15:10:09.204241 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T15:10:09.219868 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T15:10:19.214804 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T15:10:19.228363 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T15:10:29.225411 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T15:10:29.237610 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T15:10:39.235194 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T15:10:39.248316 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T15:10:49.246497 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T15:10:49.261140 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T15:10:59.258661 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T15:10:59.271185 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T15:11:09.846626 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T15:11:09.847538 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T15:11:19.857223 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T15:11:19.857996 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T15:11:29.876498 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T15:11:29.877383 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T15:11:39.895163 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T15:11:39.896462 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T15:11:49.910790 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T15:11:49.911351 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T15:11:59.929498 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T15:11:59.929993 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T15:12:09.945224 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T15:12:09.945920 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T15:12:19.962105 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T15:12:19.962771 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T15:12:29.983310 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T15:12:29.984449 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T15:12:39.995070 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T15:12:39.995869 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T15:12:50.022731 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T15:12:50.023692 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T15:13:00.039893 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T15:13:00.040810 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T15:13:10.051433 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T15:13:10.051907 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T15:13:20.064118 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T15:13:20.064718 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T15:13:30.075582 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T15:13:30.076439 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T15:13:40.087331 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T15:13:40.087936 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T15:13:50.101688 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T15:13:50.102320 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T15:14:00.114791 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T15:14:00.115564 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T15:14:10.135267 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T15:14:10.135704 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T15:14:20.143550 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T15:14:20.143978 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T15:14:30.154343 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T15:14:30.155057 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T15:14:40.171214 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T15:14:40.171819 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T15:14:50.184394 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T15:14:50.185080 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T15:15:00.197294 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T15:15:00.199298 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T15:15:10.206104 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T15:15:10.206988 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T15:15:20.222938 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T15:15:20.223501 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T15:15:30.233048 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T15:15:30.233696 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T15:15:40.244915 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T15:15:40.245575 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T15:15:50.255967 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T15:15:50.256686 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T15:16:00.266272 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T15:16:00.266853 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T15:16:10.283686 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T15:16:10.284197 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T15:16:20.295726 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T15:16:20.296465 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T15:16:30.309190 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T15:16:30.309597 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T15:16:40.320462 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T15:16:40.321063 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T15:16:50.347850 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T15:16:50.348294 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T15:17:00.357193 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T15:17:00.357879 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T15:17:10.366691 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T15:17:10.367906 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T15:17:20.375978 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T15:17:20.377804 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T15:17:30.390655 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T15:17:30.391153 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T15:17:40.414061 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T15:17:40.414882 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T15:17:50.435269 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T15:17:50.435605 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T15:18:00.444797 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T15:18:00.445562 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T15:18:10.458330 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T15:18:10.458662 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T15:18:20.469600 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T15:18:20.470230 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T15:18:30.483302 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T15:18:30.484115 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T15:18:40.507945 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T15:18:40.508534 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T15:18:50.526135 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T15:18:50.526985 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T15:19:00.544070 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T15:19:00.544769 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T15:19:10.555572 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T15:19:10.556291 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T15:19:20.574834 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T15:19:20.575013 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T15:19:30.595317 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T15:19:30.628569 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T15:19:40.685958 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T15:19:40.686699 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T15:19:50.699495 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T15:19:50.699819 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T15:20:00.718286 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T15:20:00.720483 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T15:20:10.775575 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T15:20:10.950548 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T15:20:20.788827 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T15:20:20.962878 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T15:20:30.799411 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T15:20:30.972985 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T15:20:40.812841 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T15:20:40.983242 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T15:20:50.823339 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T15:20:50.995185 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T15:21:00.832263 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T15:21:01.007173 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T15:21:11.672608 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T15:21:11.673132 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T15:21:21.683305 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T15:21:21.683811 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T15:21:31.711592 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T15:21:31.712153 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T15:21:41.720356 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T15:21:41.723162 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T15:21:51.740775 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T15:21:51.742122 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T15:22:01.754236 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T15:22:01.755323 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T15:22:11.770190 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T15:22:11.770712 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T15:22:21.888029 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T15:22:21.888769 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T15:22:31.900003 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T15:22:31.900688 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T15:22:41.911342 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T15:22:41.912125 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T15:22:51.921403 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T15:22:51.922024 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T15:23:01.934170 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T15:23:01.934882 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T15:23:11.945688 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T15:23:11.946294 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T15:23:21.957025 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T15:23:21.957530 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T15:23:31.969418 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T15:23:31.969785 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T15:23:41.985092 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T15:23:41.987360 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T15:23:51.995463 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T15:23:51.995776 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T15:24:02.004861 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T15:24:02.005529 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T15:24:12.021304 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T15:24:12.021969 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T15:24:22.038043 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T15:24:22.046438 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T15:24:32.053264 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T15:24:32.055298 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T15:24:42.063834 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T15:24:42.064432 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T15:24:52.075323 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T15:24:52.075970 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T15:25:02.092203 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T15:25:02.093323 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T15:25:12.107776 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T15:25:12.108203 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T15:25:22.120641 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T15:25:22.121470 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T15:25:32.137301 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T15:25:32.137994 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T15:25:42.154184 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T15:25:42.154714 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T15:25:52.168896 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T15:25:52.169439 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T15:26:02.179952 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T15:26:02.180538 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T15:26:12.191863 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T15:26:12.192307 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T15:26:22.201760 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T15:26:22.202360 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T15:26:32.210558 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T15:26:32.213794 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T15:26:42.223788 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T15:26:42.224364 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T15:26:52.235065 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T15:26:52.235601 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T15:27:02.245720 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T15:27:02.246383 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T15:27:12.257994 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T15:27:12.258789 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T15:27:22.271754 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T15:27:22.272518 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T15:27:32.283930 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T15:27:32.284922 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T15:27:42.298840 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T15:27:42.299939 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T15:27:52.310639 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T15:27:52.311223 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T15:28:02.324216 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T15:28:02.324590 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T15:28:12.338039 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T15:28:12.344681 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T15:28:22.346827 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T15:28:22.355832 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T15:28:32.361680 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T15:28:32.364949 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T15:28:42.373063 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T15:28:42.376821 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T15:28:52.385318 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T15:28:52.386030 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T15:29:02.399448 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T15:29:02.399987 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T15:29:12.414407 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T15:29:12.415107 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T15:29:22.424018 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T15:29:22.424715 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T15:29:32.434736 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T15:29:32.435469 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T15:29:42.445514 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T15:29:42.445921 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T15:29:52.457858 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T15:29:52.458559 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T15:30:02.468860 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T15:30:02.469669 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T15:30:12.484183 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T15:30:12.484584 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T15:30:22.493388 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T15:30:22.494030 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T15:30:32.508554 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T15:30:32.508939 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T15:30:42.524082 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T15:30:42.524579 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T15:30:52.534441 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T15:30:52.535067 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T15:52:14.977453 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T15:52:14.984587 #5] INFO -- : Committing offsets: course_change/0:1952 +W, [2018-07-26T15:52:14.985911 #5] WARN -- : Connection has been unused for too long, re-connecting... +W, [2018-07-26T15:52:14.986121 #5] WARN -- : Connection has been unused for too long, re-connecting... +I, [2018-07-26T15:52:25.167273 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T15:52:25.299437 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T15:52:35.205476 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T15:52:36.838961 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T15:52:48.584258 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T15:52:48.585100 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T15:52:58.604689 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T15:52:58.605644 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T15:53:08.621677 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T15:53:08.623760 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T15:53:18.637876 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T15:53:18.638488 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T15:53:28.672196 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T15:53:28.672738 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T15:53:38.685071 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T15:53:38.685540 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T15:53:48.694865 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T15:53:48.696263 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T15:53:58.705317 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T15:53:58.706725 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T15:54:08.721984 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T15:54:08.722303 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T15:54:18.730939 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T15:54:18.731472 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T15:54:28.742660 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T15:54:28.743187 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T15:54:38.755878 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T15:54:38.756149 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T15:54:48.765966 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T15:54:48.766483 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T15:54:58.780593 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T15:54:58.781387 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T15:55:08.795870 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T15:55:08.796393 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T15:55:18.813108 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T15:55:18.813659 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T15:55:28.823028 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T15:55:28.823843 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T15:55:38.845419 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T15:55:38.845964 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T15:55:48.861115 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T15:55:48.861645 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T15:55:58.872025 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T15:55:58.872544 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T15:56:08.882476 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T15:56:08.882820 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T15:56:18.902130 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T15:56:18.902671 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T15:56:28.917174 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T15:56:28.917875 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T15:56:38.933379 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T15:56:38.934038 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T15:56:48.944821 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T15:56:48.945703 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T15:56:58.953771 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T15:56:58.954229 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T15:57:08.963064 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T15:57:08.983503 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T15:57:18.980019 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T15:57:18.995104 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T15:57:28.993235 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T15:57:29.006214 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T15:57:39.005327 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T15:57:39.016891 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T15:57:49.017724 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T15:57:49.026391 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T15:57:59.031203 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T15:57:59.033937 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T15:58:09.043710 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T15:58:09.045159 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T15:58:19.062995 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T15:58:19.063534 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T15:58:29.077259 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T15:58:29.077933 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T15:58:39.108388 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T15:58:39.109281 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T15:58:49.131599 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T15:58:49.132420 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T15:58:59.146955 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T15:58:59.147388 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T15:59:09.192411 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T15:59:09.193064 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T15:59:19.203979 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T15:59:19.205302 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T15:59:29.220964 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T15:59:29.221409 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T15:59:39.234063 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T15:59:39.234725 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T15:59:49.250264 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T15:59:49.250962 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T15:59:59.263336 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T15:59:59.263895 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:00:09.274898 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:00:09.275844 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:00:19.292712 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:00:19.293959 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:00:29.305247 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:00:29.305900 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:00:39.319166 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:00:39.319841 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:00:49.334764 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:00:49.335509 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:00:59.348718 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:00:59.349333 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:01:09.363835 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:01:09.364308 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:01:19.379752 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:01:19.380757 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:01:29.393700 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:01:29.394465 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:01:39.407847 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:01:39.408388 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:01:49.418169 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:01:49.419051 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:01:59.430711 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:01:59.431495 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:02:09.443748 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:02:09.444517 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:02:19.453748 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:02:19.454379 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:02:29.468430 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:02:29.468976 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:02:39.479729 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:02:39.480371 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:02:49.489788 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:02:49.490388 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:02:59.503238 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:02:59.504058 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:03:09.521479 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:03:09.522123 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:03:19.533590 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:03:19.534501 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:03:29.548949 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:03:29.550370 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:03:39.564285 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:03:39.564903 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:03:49.573287 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:03:49.573579 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:03:59.584475 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:03:59.589857 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:04:09.599459 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:04:09.599806 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:04:19.613310 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:04:19.614126 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:04:29.624142 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:04:29.624923 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:04:39.644093 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:04:39.645026 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:04:49.658552 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:04:49.659651 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:04:59.669111 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:04:59.669904 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:05:09.684343 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:05:09.684611 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:05:19.702336 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:05:19.702958 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:05:29.722896 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:05:29.723558 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:05:39.736502 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:05:39.737007 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:05:49.744336 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:05:49.747709 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:05:59.753748 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:05:59.754229 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:06:09.760965 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:06:09.761632 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:06:19.773664 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:06:19.774197 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:06:29.784375 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:06:29.785027 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:06:39.807146 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:06:39.807879 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:06:49.822348 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:06:49.868317 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:06:59.835283 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:06:59.877657 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:07:09.848541 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:07:09.885579 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:07:19.867908 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:07:19.899530 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:07:29.881038 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:07:29.908422 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:07:39.905972 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:07:39.918450 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:07:49.914761 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:07:49.927911 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:08:00.037407 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:08:00.042644 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:08:10.047878 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:08:10.050479 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:08:20.107082 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:08:20.119751 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:08:30.120978 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:08:30.132012 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:08:40.134673 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:08:40.144963 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:08:50.147601 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:08:50.157402 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:09:00.157298 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:09:00.174013 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:09:10.171446 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:09:10.185556 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:09:20.182135 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:09:20.197418 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:09:30.196056 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:09:30.209988 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:09:40.205020 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:09:40.218315 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:09:50.217168 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:09:50.226155 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:10:00.225268 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:10:00.237768 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:10:10.236371 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:10:10.248832 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:10:20.246222 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:10:20.256318 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:10:30.259343 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:10:30.266074 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:10:40.269782 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:10:40.274164 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:10:50.280257 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:10:50.280687 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:11:00.294987 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:11:00.295425 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:11:10.303169 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:11:10.305354 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:11:20.312943 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:11:20.316789 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:11:30.321383 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:11:30.323262 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:11:40.335731 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:11:40.336328 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:11:50.351283 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:11:50.351785 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:12:00.363493 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:12:00.365179 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:12:10.373006 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:12:10.373630 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:12:20.382599 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:12:20.383512 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:12:30.393537 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:12:30.394376 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:12:40.404427 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:12:40.405192 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:12:50.422514 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:12:50.422826 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:13:00.436753 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:13:00.437358 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:13:10.452135 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:13:10.451921 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:13:20.470885 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:13:20.471238 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:13:30.483895 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:13:30.484789 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:13:40.495264 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:13:40.498402 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:13:50.510358 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:13:50.511035 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:14:00.526969 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:14:00.527674 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:14:10.538973 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:14:10.539590 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:14:20.552840 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:14:20.554795 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:14:30.561885 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:14:30.562319 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:14:40.576957 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:14:40.578197 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:14:50.591306 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:14:50.592351 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:15:00.608079 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:15:00.609721 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:15:10.686002 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:15:10.716865 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:15:20.698884 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:15:20.724833 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:15:30.713873 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:15:30.736132 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:15:40.725752 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:15:40.750310 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:15:50.750062 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:15:50.758622 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:16:00.769457 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:16:00.770973 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:16:10.788141 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:16:10.789728 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:16:20.807777 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:16:20.808223 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:16:30.816930 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:16:30.824702 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:16:40.826940 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:16:40.837405 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:16:50.837174 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:16:50.844152 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:17:00.851564 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:17:00.854416 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:17:10.861904 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:17:10.862518 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:17:20.872328 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:17:20.873840 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:17:30.884647 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:17:30.885563 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:17:40.896576 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:17:40.897081 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:17:50.905945 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:17:50.906283 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:18:00.914960 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:18:00.916245 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:18:10.932261 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:18:10.933525 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:18:20.943959 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:18:20.944179 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:18:30.955835 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:18:30.959150 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:18:40.964813 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:18:40.966886 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:18:50.978126 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:18:50.983179 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:19:00.986999 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:19:00.992652 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:19:10.995053 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:19:11.001394 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:19:21.007114 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:19:21.010838 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:19:31.020723 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:19:31.022717 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:19:41.032995 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:19:41.033202 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:19:51.046434 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:19:51.046860 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:20:01.064277 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:20:01.065095 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:20:11.079306 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:20:11.080217 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:20:21.088898 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:20:21.090463 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:20:31.100080 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:20:31.100547 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:20:41.108727 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:20:41.109498 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:20:51.126612 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:20:51.128387 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:21:01.141226 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:21:01.141892 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:21:11.156151 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:21:11.159886 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:21:21.170627 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:21:21.171928 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:21:31.180951 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:21:31.181442 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:21:41.192138 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:21:41.193009 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:21:51.208597 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:21:51.209310 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:22:01.250597 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:22:01.273897 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:22:11.262206 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:22:11.286768 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:22:21.274761 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:22:21.299047 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:22:31.285564 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:22:31.308537 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:22:41.296459 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:22:41.316026 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:22:51.307601 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:22:51.325946 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:23:01.317569 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:23:01.342250 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:23:11.327098 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:23:11.354594 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:23:21.338837 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:23:21.367529 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:23:31.355899 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:23:31.382910 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:23:41.374063 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:23:41.396542 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:23:51.388241 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:23:51.406123 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:24:01.408331 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:24:01.416172 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:24:11.428455 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:24:11.429284 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:24:21.453552 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:24:21.455805 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:24:31.466760 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:24:31.472877 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:24:41.478459 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:24:41.491720 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:24:51.488019 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:24:51.500604 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:25:01.499083 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:25:01.509118 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:25:11.511717 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:25:11.526239 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:25:21.521084 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:25:21.535905 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:25:31.541546 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:25:31.545740 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:25:41.549175 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:25:41.557317 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:25:51.556905 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:25:51.565638 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:26:01.570025 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:26:01.578268 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:26:11.579687 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:26:11.585395 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:26:21.591315 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:26:21.596598 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:26:31.604224 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:26:31.604605 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:26:41.613180 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:26:41.615215 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:26:51.623153 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:26:51.623882 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:27:01.639137 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:27:01.640591 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:27:11.658745 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:27:11.659066 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:27:21.666177 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:27:21.666696 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:27:31.676885 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:27:31.693830 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:27:41.688967 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:27:41.703265 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:27:51.697696 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:27:51.710956 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:28:01.707194 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:28:01.721711 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:28:11.716043 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:28:11.727276 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:28:21.725501 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:28:21.733992 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:28:31.734319 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:28:31.745398 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:28:41.745903 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:28:41.753904 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:28:51.756668 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:28:51.763178 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:29:01.765793 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:29:01.769964 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:29:11.779101 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:29:11.779642 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:29:21.797707 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:29:21.798108 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:29:31.811177 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:29:31.811536 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:29:41.823891 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:29:41.824447 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:29:51.837459 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:29:51.837767 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:30:01.849673 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:30:01.850058 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:30:11.864789 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:30:11.865317 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:30:21.882196 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:30:21.882608 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:30:31.894509 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:30:31.895276 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:30:41.902940 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:30:41.903268 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:30:51.914374 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:30:51.914739 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:31:01.925964 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:31:01.926415 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:31:11.941214 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:31:11.941667 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:31:21.953935 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:31:21.954340 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:31:31.969051 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:31:31.969415 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:31:41.991121 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:31:41.991336 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:31:52.008979 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:31:52.009218 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:32:02.021257 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:32:02.021700 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:32:12.036778 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:32:12.037464 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:32:22.052338 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:32:22.053506 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:32:32.066756 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:32:32.067316 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:32:42.083389 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:32:42.083989 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:32:52.102806 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:32:52.103290 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:33:02.117463 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:33:02.118600 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:33:12.134012 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:33:12.134617 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:33:22.151219 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:33:22.151714 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:33:32.166786 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:33:32.167187 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:33:42.179539 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:33:42.180168 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:33:52.193731 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:33:52.194193 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:34:02.206681 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:34:02.213848 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:34:12.228283 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:34:12.228706 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:34:22.245513 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:34:22.245918 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:34:32.265593 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:34:32.266027 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:34:42.282143 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:34:42.282732 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:34:52.294505 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:34:52.295482 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:35:02.308161 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:35:02.308769 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:35:12.324467 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:35:12.325116 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:35:22.336660 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:35:22.336950 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:35:32.355913 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:35:32.356628 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:35:42.370991 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:35:42.371606 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:35:52.387190 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:35:52.387697 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:36:02.402380 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:36:02.403003 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:36:12.411826 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:36:12.421801 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:36:22.425079 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:36:22.431398 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:36:32.432539 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:36:32.441750 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:36:42.443962 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:36:42.452486 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:36:52.461048 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:36:52.463300 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:37:02.477995 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:37:02.478392 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:37:12.491872 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:37:12.492609 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:37:22.508963 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:37:22.509407 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:37:32.521970 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:37:32.522416 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:37:42.537639 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:37:42.537971 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:37:52.550035 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:37:52.550878 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:38:02.563186 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:38:02.564169 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:38:12.576886 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:38:12.577599 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:38:22.588592 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:38:22.589463 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:38:32.597712 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:38:32.597972 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:38:42.623718 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:38:42.624380 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:38:52.644750 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:38:52.645541 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:39:02.660322 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:39:02.662009 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:39:12.676205 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:39:12.677053 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:39:22.692303 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:39:22.693007 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:39:32.723661 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:39:32.724177 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:39:42.735261 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:39:42.735875 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:39:52.756640 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:39:52.757308 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:40:02.779756 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:40:02.780578 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:40:12.795405 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:40:12.795051 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:40:22.811108 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:40:22.812026 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:40:32.830695 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:40:32.831507 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:40:42.841551 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:40:42.842335 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:40:52.861108 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:40:52.862514 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:41:02.876821 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:41:02.879737 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:41:12.894712 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:41:12.895463 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:41:22.910137 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:41:22.910814 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:41:32.934524 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:41:32.935197 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:41:42.944257 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:41:42.944829 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:41:52.962115 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:41:52.962745 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:42:02.980006 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:42:02.980450 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:42:12.993053 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:42:12.993405 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:42:23.007384 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:42:23.008021 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:42:33.026599 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:42:33.027317 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:42:43.046234 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:42:43.045915 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:42:53.059461 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:42:53.059936 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:43:03.073583 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:43:03.074300 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:43:13.086230 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:43:13.086465 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:43:23.103330 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:43:23.104083 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:43:33.119788 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:43:33.120063 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:43:43.133822 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:43:43.134387 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:43:53.148672 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:43:53.149639 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:44:03.165935 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:44:03.166594 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:44:13.181513 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:44:13.182132 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:44:23.208936 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:44:23.210117 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:44:33.222087 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:44:33.222730 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:44:43.235504 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:44:43.236201 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:44:53.246995 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:44:53.247582 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:45:03.263819 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:45:03.264350 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:45:13.321140 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:45:13.321906 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:45:23.336111 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:45:23.336296 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:45:33.346261 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:45:33.347056 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:45:43.368295 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:45:43.368750 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:45:53.387514 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:45:53.388124 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:46:03.409287 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:46:03.410003 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:46:13.434719 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:46:13.435487 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:46:23.449530 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:46:23.450222 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:46:33.467525 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:46:33.474285 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:46:43.482391 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:46:43.485818 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:46:53.495173 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:46:53.495754 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:47:03.508248 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:47:03.508858 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:47:13.526552 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:47:13.527156 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:47:23.540270 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:47:23.541057 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:47:33.551076 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:47:33.551784 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:47:43.567894 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:47:43.568884 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:47:53.582021 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:47:53.582750 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:48:03.602878 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:48:03.603401 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:48:13.620970 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:48:13.621685 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:48:23.637230 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:48:23.637926 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:48:33.653120 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:48:33.653443 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:48:43.665301 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:48:43.666048 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:48:53.685535 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:48:53.686122 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:49:03.701171 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:49:03.701791 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:49:13.713054 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:49:13.714098 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:49:23.726458 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:49:23.726876 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:49:33.736068 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:49:33.736682 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:49:43.756732 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:49:43.757229 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:49:53.780225 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:49:53.781010 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:50:03.797039 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:50:03.797554 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:50:13.810059 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:50:13.810646 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:50:23.825937 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:50:23.826590 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:50:33.839406 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:50:33.841263 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:50:43.856457 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:50:43.857235 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:50:53.867333 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:50:53.868104 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:51:03.879236 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:51:03.879451 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:51:13.898375 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:51:13.899765 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:51:23.911009 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:51:23.911495 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:51:33.927930 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:51:33.928844 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:51:43.938995 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:51:43.939494 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:51:53.956728 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:51:53.957351 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:52:03.974675 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:52:03.975538 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:52:13.996095 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:52:13.996401 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:52:24.018393 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:52:24.019567 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:52:34.031311 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:52:34.032460 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:52:44.042731 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:52:44.043213 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:52:54.055448 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:52:54.056259 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:53:04.072072 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:53:04.072852 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:53:14.098118 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:53:14.113749 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:53:24.108780 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:53:24.127661 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:53:34.117481 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:53:34.141554 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:53:44.136354 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:53:44.161421 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:53:54.153693 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:53:54.175443 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:54:04.167389 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:54:04.187454 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:54:14.178137 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:54:14.201150 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:54:24.187831 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:54:24.219964 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:54:34.195734 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:54:34.226115 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:54:44.208043 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:54:44.237972 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:54:54.227211 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:54:54.248495 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:55:04.243496 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:55:04.262244 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:55:14.258312 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:55:14.275414 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:55:24.275045 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:55:24.291185 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:55:34.286164 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:55:34.305105 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:55:44.300064 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:55:44.316354 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:55:54.315000 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:55:54.333522 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:56:04.323059 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:56:04.352020 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:56:14.342933 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:56:14.364240 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:56:24.355808 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:56:24.384282 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:56:34.369085 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:56:34.400500 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:56:44.381298 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:56:44.411612 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:56:54.393250 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:56:54.428096 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:57:04.404019 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:57:04.438733 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:57:14.417692 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:57:14.453767 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:57:24.434241 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:57:24.474447 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:57:34.448239 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:57:34.489970 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:57:44.460020 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:57:44.506003 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:57:54.471345 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:57:54.523982 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:58:04.486616 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:58:04.534968 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:58:14.498894 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:58:14.553893 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:58:24.509763 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:58:24.574138 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:58:34.522003 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:58:34.589657 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:58:44.537842 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:58:44.601180 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:58:54.550693 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:58:54.612214 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:59:04.567933 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:59:04.624171 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:59:14.575739 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:59:14.637534 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:59:24.594752 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:59:24.650330 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:59:34.604694 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:59:34.661473 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:59:44.620064 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:59:44.674605 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T16:59:54.632528 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T16:59:54.689486 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T17:00:04.645805 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T17:00:04.701177 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T17:00:14.658019 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T17:00:14.715173 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T17:00:24.669726 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T17:00:24.724590 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T17:00:34.685725 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T17:00:34.739094 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T17:00:44.701774 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T17:00:44.752193 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T17:00:54.722969 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T17:00:54.771576 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T17:01:04.737781 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T17:01:04.783343 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T17:01:14.751025 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T17:01:14.798023 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T17:01:24.769944 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T17:01:24.815543 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T17:01:34.782691 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T17:01:34.829096 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T17:01:44.794884 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T17:01:44.844011 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T17:01:54.810999 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T17:01:54.854783 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T17:02:04.824739 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T17:02:04.870541 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T17:02:14.840362 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T17:02:14.881085 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T17:02:24.852271 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T17:02:24.892526 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T17:02:34.864585 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T17:02:34.906068 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T17:02:44.879498 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T17:02:44.915425 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T17:02:54.895047 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T17:02:54.924081 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T17:03:04.906215 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T17:03:04.943236 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T17:03:14.920022 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T17:03:14.963063 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T17:03:24.930120 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T17:03:24.975755 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T17:03:34.942850 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T17:03:34.991738 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T17:03:44.954214 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T17:03:45.003126 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T17:03:54.965351 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T17:03:55.012105 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T17:04:04.975431 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T17:04:05.027401 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T17:04:14.993143 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T17:04:15.039084 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T17:04:25.012446 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T17:04:25.055546 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T17:04:35.027271 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T17:04:35.066874 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T17:04:45.041696 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T17:04:45.082312 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T17:04:55.054973 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T17:04:55.112240 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T17:05:05.068321 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T17:05:05.125062 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T17:05:15.083204 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T17:05:15.140175 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T17:05:25.093076 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T17:05:25.153488 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T17:05:35.104028 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T17:05:35.168173 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T17:05:45.115252 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T17:05:45.184295 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T17:05:55.130904 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T17:05:55.198665 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T17:06:05.139034 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T17:06:05.212495 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T17:06:15.151864 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T17:06:15.225515 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T17:06:25.169141 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T17:06:25.242349 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T17:06:35.180710 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T17:06:35.256346 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T17:06:45.190943 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T17:06:45.264539 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T17:06:55.235306 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T17:06:55.278348 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T17:07:05.257596 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T17:07:05.290647 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T17:07:15.272473 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T17:07:15.302627 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T17:07:25.283028 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T17:07:25.323960 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T17:07:35.296969 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T17:07:35.345779 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T17:07:45.308534 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T17:07:45.355364 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T17:07:55.319266 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T17:07:55.369714 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T17:08:05.327401 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T17:08:05.386244 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T17:08:15.343442 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T17:08:15.398291 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T17:08:25.357531 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T17:08:25.411173 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T17:08:35.369294 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T17:08:35.421938 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T17:08:45.383761 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T17:08:45.432946 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T17:08:55.396538 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T17:08:55.447655 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T17:09:05.406925 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T17:09:05.458965 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T17:09:15.419842 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T17:09:15.472487 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T17:09:25.432735 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T17:09:25.484281 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T17:09:35.443821 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T17:09:35.493485 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T17:09:45.452373 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T17:09:45.504729 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T17:09:55.464880 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T17:09:55.514474 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T17:10:05.476100 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T17:10:05.525968 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T17:10:15.486452 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T17:10:15.535034 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T17:10:25.496005 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T17:10:25.544412 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T17:10:35.506203 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T17:10:35.552982 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T17:10:45.523149 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T17:10:45.565058 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T17:10:55.534201 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T17:10:55.574872 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T17:11:05.549741 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T17:11:05.588657 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T17:11:15.561728 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T17:11:15.601331 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T17:11:25.573347 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T17:11:25.613546 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T17:11:35.588398 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T17:11:35.625528 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T17:11:45.601666 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T17:11:45.638440 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T17:11:55.614177 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T17:11:55.649236 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T17:12:05.628093 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T17:12:05.667596 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T17:12:15.642467 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T17:12:15.683222 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T17:12:25.657939 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T17:12:25.700654 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T17:12:35.669911 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T17:12:35.711402 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T17:12:45.688701 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T17:12:45.729651 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T17:12:55.700379 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T17:12:55.742482 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T17:13:05.711408 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T17:13:05.755307 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T17:13:15.723384 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T17:13:15.768783 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T17:13:25.736048 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T17:13:25.786758 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T17:13:35.749607 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T17:13:35.800576 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T17:13:45.761108 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T17:13:45.813177 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T17:13:55.774521 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T17:13:55.822361 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T17:14:05.786350 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T17:14:05.834897 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T17:14:15.795220 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T17:14:15.846866 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T17:14:25.811266 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T17:14:25.859908 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T17:14:35.819393 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T17:14:35.870661 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T17:14:45.835821 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T17:14:45.883019 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T17:14:55.850207 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T17:14:55.896331 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T17:15:05.862887 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T17:15:05.908857 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T17:15:15.875698 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T17:15:15.925381 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T17:15:25.886930 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T17:15:25.938568 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T17:15:35.899923 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T17:15:35.952346 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T17:15:45.910553 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T17:15:45.962488 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T17:15:55.925355 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T17:15:55.978129 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T17:16:05.938895 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T17:16:05.990117 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T17:16:15.951547 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T17:16:16.000709 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T17:16:25.968678 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T17:16:26.010024 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T17:16:35.987110 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T17:16:36.024478 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T17:16:46.006770 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T17:16:46.037447 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T17:16:56.023249 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T17:16:56.048387 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T17:17:06.042549 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T17:17:06.069113 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T17:17:16.060956 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T17:17:16.080934 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T17:17:26.073368 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T17:17:26.094658 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T17:17:36.096695 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T17:17:36.111967 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T17:17:46.112275 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T17:17:46.123955 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T17:17:56.127546 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T17:17:56.139971 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T17:18:06.142922 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T17:18:06.147856 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T17:18:16.162161 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T17:18:16.162846 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T17:18:26.179117 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T17:18:26.180410 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T17:18:36.192322 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T17:18:36.193190 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T17:18:46.212997 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T17:18:46.213394 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T17:18:56.223468 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T17:18:56.223870 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T17:19:06.239618 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T17:19:06.240102 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T17:19:16.254870 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T17:19:16.255148 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T17:19:26.261331 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T17:19:26.261536 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T17:19:36.273765 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T17:19:36.274021 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T17:19:46.284261 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T17:19:46.284762 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T17:19:56.440662 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T17:19:56.528438 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T17:20:06.746976 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T17:20:06.747678 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T17:20:16.778782 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T17:20:16.781942 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T17:20:27.862546 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T17:20:28.037910 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T17:20:37.874833 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T17:20:38.054603 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T17:20:47.899698 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T17:20:48.068388 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T17:20:57.987846 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T17:20:58.147778 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T17:21:08.210193 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T17:21:08.581948 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T17:21:18.224389 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T17:21:18.592664 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:09:01.997510 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:09:02.621884 #5] INFO -- : Committing offsets: section_change/0:4370 +W, [2018-07-26T18:09:02.622401 #5] WARN -- : Connection has been unused for too long, re-connecting... +W, [2018-07-26T18:09:02.014653 #5] WARN -- : Connection has been unused for too long, re-connecting... +I, [2018-07-26T18:09:13.200720 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:09:13.201390 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:09:23.218933 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:09:23.219527 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:09:33.228718 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:09:33.229193 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:09:43.249695 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:09:43.251787 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:09:53.263830 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:09:53.264547 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:10:03.277966 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:10:03.278688 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:10:13.290650 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:10:13.291061 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:10:23.304230 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:10:23.304583 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:10:33.313398 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:10:33.314147 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:10:43.326959 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:10:43.327945 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:10:53.339066 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:10:53.339625 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:11:03.349807 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:11:03.351230 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:11:13.363793 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:11:13.364334 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:11:23.375446 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:11:23.376162 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:11:33.389587 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:11:33.390094 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:11:43.397978 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:11:43.398769 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:11:53.414292 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:11:53.415094 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:12:03.428249 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:12:03.429202 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:12:13.439877 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:12:13.440638 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:12:23.492110 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:12:23.492852 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:12:33.503339 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:12:33.504074 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:12:43.514540 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:12:43.515352 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:12:53.528591 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:12:53.529255 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:13:03.546262 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:13:03.548434 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:13:13.630657 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:13:13.631441 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:13:23.642641 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:13:23.643275 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:13:33.656051 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:13:33.657495 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:13:43.665391 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:13:43.668204 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:13:53.678903 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:13:53.681006 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:14:03.689457 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:14:03.689775 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:14:13.703829 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:14:13.704631 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:14:23.717630 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:14:23.718353 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:14:33.726774 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:14:33.729151 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:14:43.739421 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:14:43.752141 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:14:53.764332 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:14:53.765043 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:15:03.775305 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:15:03.775765 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:15:13.784744 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:15:13.785692 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:15:23.794256 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:15:23.794770 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:15:33.803981 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:15:33.804652 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:15:43.814810 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:15:43.816542 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:15:53.825408 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:15:53.826010 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:16:03.937483 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:16:03.938048 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:16:13.947838 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:16:13.949779 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:16:23.960980 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:16:23.961773 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:16:33.976804 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:16:33.977453 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:16:43.987052 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:16:43.987699 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:16:53.998242 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:16:53.998849 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:17:04.008113 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:17:04.009138 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:17:14.016081 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:17:14.062004 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:17:24.025881 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:17:24.072334 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:17:34.033981 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:17:34.083973 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:17:44.050155 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:17:44.099928 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:17:54.069050 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:17:54.109570 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:18:04.080800 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:18:04.119178 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:18:14.089884 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:18:14.131462 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:18:24.097742 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:18:24.141418 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:18:34.110227 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:18:34.156871 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:18:44.122847 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:18:44.168647 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:18:54.134716 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:18:54.184386 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:19:04.151876 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:19:04.193520 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:19:14.167183 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:19:14.206569 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:19:24.175735 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:19:24.217086 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:19:34.184485 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:19:34.229789 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:19:44.193061 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:19:44.240819 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:19:54.200879 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:19:54.250929 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:20:04.210981 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:20:04.265779 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:20:14.221100 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:20:14.277105 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:20:24.233389 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:20:24.294386 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:20:34.245209 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:20:34.305212 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:20:44.254175 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:20:44.316015 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:20:54.262677 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:20:54.326175 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:21:04.272640 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:21:04.348325 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:21:14.283805 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:21:14.357689 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:21:24.296383 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:21:24.368908 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:21:34.306146 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:21:34.379966 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:21:44.314956 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:21:44.392711 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:21:54.327044 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:21:54.402759 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:22:04.337282 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:22:04.416141 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:22:14.347424 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:22:14.426925 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:22:24.358093 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:22:24.439471 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:22:34.371218 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:22:34.455236 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:22:44.381412 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:22:44.464925 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:22:54.391166 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:22:54.473006 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:23:04.405431 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:23:04.486395 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:23:14.417057 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:23:14.494345 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:23:24.427518 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:23:24.504147 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:23:34.441460 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:23:34.523463 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:23:44.451635 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:23:44.540197 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:23:54.459389 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:23:54.554078 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:24:04.468161 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:24:04.563273 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:24:14.476952 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:24:14.577645 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:24:24.490958 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:24:24.586421 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:24:34.502040 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:24:34.599482 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:24:44.513598 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:24:44.608826 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:24:54.526257 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:24:54.619117 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:25:04.536202 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:25:04.627030 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:25:14.546497 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:25:14.637059 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:25:24.562434 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:25:24.646561 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:25:34.570402 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:25:34.664474 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:25:44.580311 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:25:44.676911 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:25:54.591042 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:25:54.685453 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:26:04.603510 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:26:04.696819 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:26:14.613794 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:26:14.706195 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:26:24.624657 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:26:24.720170 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:26:34.643057 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:26:34.727859 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:26:44.655339 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:26:44.736269 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:26:54.666955 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:26:54.749793 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:27:04.676601 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:27:04.758902 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:27:14.688033 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:27:14.772429 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:27:24.697821 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:27:24.780538 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:27:34.708012 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:27:34.789403 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:27:44.716281 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:27:44.797436 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:27:54.725151 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:27:54.808393 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:28:04.735139 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:28:04.818554 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:28:14.747591 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:28:14.832041 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:28:24.758794 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:28:24.843015 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:28:34.773768 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:28:34.854666 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:28:44.784044 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:28:44.864000 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:28:54.796395 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:28:54.874310 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:29:04.810732 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:29:04.882736 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:29:14.819251 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:29:14.893318 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:29:24.828881 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:29:24.905010 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:29:34.841784 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:29:34.916413 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:29:44.849620 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:29:44.925632 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:29:54.860016 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:29:54.938502 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:30:04.868857 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:30:04.946025 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:30:14.880738 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:30:14.954356 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:30:24.970428 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:30:24.973174 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:30:34.981407 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:30:34.984036 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:30:45.003894 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:30:45.009411 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:30:55.016296 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:30:55.019086 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:31:05.032162 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:31:05.032904 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:31:15.043653 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:31:15.044374 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:31:25.064431 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:31:25.064791 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:31:35.077329 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:31:35.078202 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:31:45.085237 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:31:45.085927 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:31:55.096306 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:31:55.096853 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:32:05.109564 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:32:05.110267 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:32:15.122778 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:32:15.123326 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:32:25.135863 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:32:25.136576 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:32:35.149561 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:32:35.149991 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:32:45.158627 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:32:45.159317 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:32:55.166910 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:32:55.167610 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:33:05.181570 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:33:05.182171 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:33:15.233253 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:33:15.318585 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:33:25.247621 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:33:25.328380 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:33:35.266119 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:33:35.337296 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:33:45.284134 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:33:45.344946 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:33:55.298099 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:33:55.351312 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:34:05.314267 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:34:05.360714 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:34:15.325992 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:34:15.368647 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:34:25.339208 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:34:25.376159 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:34:35.349412 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:34:35.386904 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:34:45.361893 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:34:45.394701 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:34:55.372414 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:34:55.403631 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:35:05.379522 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:35:05.452402 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:35:15.388924 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:35:15.463352 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:35:25.403562 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:35:25.475116 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:35:35.414212 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:35:35.487683 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:35:45.432247 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:35:45.496824 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:35:55.452147 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:35:55.517986 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:36:05.460540 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:36:05.526408 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:36:15.495775 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:36:15.534785 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:36:25.504285 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:36:25.545697 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:36:35.515077 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:36:35.555526 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:36:45.526683 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:36:45.568753 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:36:55.537990 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:36:55.577582 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:37:05.545321 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:37:05.587850 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:37:16.093368 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:37:16.096279 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:37:26.133658 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:37:26.134508 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:37:36.146231 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:37:36.146644 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:37:46.158181 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:37:46.158823 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:37:56.179041 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:37:56.180106 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:38:06.190628 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:38:06.191408 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:38:16.201597 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:38:16.202319 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:38:26.223792 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:38:26.224686 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:38:36.236265 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:38:36.236627 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:38:46.247154 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:38:46.255993 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:38:56.258183 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:38:56.264760 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:39:06.268902 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:39:06.275961 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:39:16.277835 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:39:16.285420 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:39:26.287147 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:39:26.293122 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:39:36.297141 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:39:36.301867 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:39:46.307705 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:39:46.309249 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:39:56.319509 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:39:56.320256 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:40:06.330160 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:40:06.330870 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:40:16.343679 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:40:16.345686 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:40:26.354716 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:40:26.363805 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:40:36.362783 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:40:36.371574 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:40:46.374444 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:40:46.381110 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:40:56.417707 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:40:56.428078 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:41:06.434678 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:41:06.436568 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:41:16.445264 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:41:16.446395 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:41:26.544614 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:41:26.545129 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:41:36.556513 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:41:36.557669 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:41:46.569133 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:41:46.570369 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:41:56.586301 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:41:56.587142 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:42:06.601787 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:42:06.602402 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:42:16.614942 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:42:16.615611 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:42:26.625749 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:42:26.627598 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:42:36.640888 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:42:36.641672 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:42:46.659193 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:42:46.662916 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:42:56.674997 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:42:56.675548 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:43:06.686105 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:43:06.686503 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:43:16.695745 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:43:16.696370 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:43:26.705317 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:43:26.705698 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:43:36.716835 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:43:36.717267 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:43:46.730786 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:43:46.731249 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:43:56.740436 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:43:56.740705 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:44:06.749935 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:44:06.750529 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:44:16.806011 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:44:16.825505 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:44:26.817490 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:44:26.834825 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:44:36.828625 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:44:36.845352 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:44:46.839654 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:44:46.856538 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:44:56.850735 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:44:56.867073 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:45:06.861555 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:45:06.879071 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:45:16.872450 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:45:16.894075 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:45:26.885966 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:45:26.903669 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:45:36.894250 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:45:36.917369 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:45:46.904875 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:45:46.926431 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:45:56.915956 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:45:56.934863 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:46:06.925263 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:46:06.943151 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:46:16.935322 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:46:16.952050 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:46:26.946820 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:46:26.962792 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:46:36.955618 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:46:36.978753 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:46:46.963381 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:46:46.988725 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:46:56.972866 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:46:56.998719 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:47:06.983878 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:47:07.008184 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:47:16.996333 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:47:17.022272 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:47:27.004896 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:47:27.034007 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:47:37.014795 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:47:37.043097 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:47:47.026822 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:47:47.055859 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:47:57.036174 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:47:57.069799 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:48:07.043825 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:48:07.079447 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:48:17.054387 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:48:17.088663 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:48:27.064045 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:48:27.098839 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:48:37.079120 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:48:37.106356 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:48:47.087454 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:48:47.116710 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:48:57.097808 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:48:57.154026 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:49:07.108313 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:49:07.160582 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:49:17.126746 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:49:17.176133 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:49:27.136884 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:49:27.184843 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:49:37.153225 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:49:37.238077 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:49:47.163635 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:49:47.252834 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:49:57.172258 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:49:57.266342 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:50:07.213411 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:50:07.278885 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:50:17.292757 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:50:17.353336 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:50:27.305542 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:50:27.362813 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:50:37.315073 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:50:37.374763 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:50:47.324068 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:50:47.387793 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:50:57.334760 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:50:57.401781 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:51:07.345744 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:51:07.411259 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:51:17.356122 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:51:17.420500 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:51:27.364901 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:51:27.429376 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:51:37.375287 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:51:37.437381 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:51:47.387952 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:51:47.446810 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:51:57.419144 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:51:57.454743 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:52:07.430273 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:52:07.464104 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:52:17.441981 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:52:17.476135 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:52:27.452869 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:52:27.487080 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:52:37.463145 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:52:37.492320 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:52:47.470518 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:52:47.498968 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:52:57.493080 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:52:57.508772 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:53:07.505343 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:53:07.518023 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:53:17.514601 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:53:17.525578 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:53:27.525386 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:53:27.554789 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:53:37.540617 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:53:37.565125 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:53:47.548783 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:53:47.574168 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:53:57.558029 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:53:57.587744 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:54:07.566904 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:54:07.598705 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:54:17.575384 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:54:17.608985 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:54:27.584058 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:54:27.621394 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:54:37.595377 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:54:37.629547 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:54:47.606846 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:54:47.637458 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:54:57.617107 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:54:57.653289 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:55:07.630775 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:55:07.665455 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:55:17.641504 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:55:17.673939 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:55:27.650014 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:55:27.682707 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:55:37.663681 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:55:37.694536 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:55:47.674437 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:55:47.705053 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:55:57.685169 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:55:57.716976 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:56:07.702798 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:56:07.728213 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:56:17.714194 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:56:17.738658 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:56:27.724198 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:56:27.747467 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:56:37.733185 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:56:37.762224 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:56:47.747581 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:56:47.775730 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:56:57.755892 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:56:57.786303 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:57:07.773790 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:57:07.800761 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:57:17.782191 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:57:17.814645 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:57:27.793090 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:57:27.827466 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:57:37.804630 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:57:37.836072 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:57:47.811891 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:57:47.849661 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:57:57.827308 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:57:57.859511 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:58:07.835779 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:58:07.865290 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:58:17.847294 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:58:17.875217 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:58:27.855181 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:58:27.885260 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:58:37.864167 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:58:37.897864 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:58:47.875106 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:58:47.907026 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:58:57.884867 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:58:57.916510 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:59:07.894354 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:59:07.925351 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:59:17.903389 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:59:17.937203 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:59:27.913137 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:59:27.946131 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:59:37.922687 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:59:37.953476 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:59:47.935085 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:59:47.960473 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T18:59:57.949053 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T18:59:57.970089 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T19:00:07.958278 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T19:00:07.984428 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T19:00:17.968251 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T19:00:17.991954 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T19:00:27.977210 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T19:00:27.999608 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T19:00:37.988126 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T19:00:38.010493 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T19:00:47.994670 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T19:00:48.016995 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T19:00:58.004779 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T19:00:58.036373 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T19:01:08.016909 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T19:01:08.045549 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T19:01:18.068026 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T19:01:18.066671 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T19:01:28.085492 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T19:01:28.087304 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T19:01:38.105895 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T19:01:38.119433 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T19:01:48.116587 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T19:01:48.143960 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T19:01:58.130236 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T19:01:58.152003 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T19:02:08.140943 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T19:02:08.161638 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T19:02:18.158472 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T19:02:18.173837 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T19:02:28.168289 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T19:02:28.184781 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T19:02:38.177218 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T19:02:38.194739 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T19:02:48.193630 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T19:02:48.225280 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T19:02:58.510056 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T19:02:58.534048 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T19:03:08.942756 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T19:03:08.984222 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T19:03:18.976086 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T19:03:18.992973 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T19:03:29.437129 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T19:03:29.437907 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T19:03:39.452746 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T19:03:39.453238 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T19:03:50.181024 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T19:03:50.181542 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T19:04:00.192108 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T19:04:00.192664 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T19:04:10.203830 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T19:04:10.204217 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T19:04:20.216924 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T19:04:20.217767 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T19:04:30.229838 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T19:04:30.230722 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T19:04:40.241611 #5] INFO -- : Committing offsets: course_change/0:1952 +I, [2018-07-26T19:04:40.243211 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-07-26T19:04:50.255870 #5] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-08-01T22:58:58.295027 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-01T22:58:58.296176 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-01T22:58:58.352381 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-01T22:58:58.352488 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T22:58:58.400678 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T22:58:58.400801 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T22:58:58.400912 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T22:58:58.400961 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T22:59:03.409538 #6] 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.14:9094 +I, [2018-08-01T22:59:03.466556 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-01T22:59:03.471564 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T22:59:03.476424 #6] 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.14:9094 +E, [2018-08-01T22:59:03.522696 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T22:59:03.523158 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +I, [2018-08-01T22:59:03.563708 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-01T22:59:03.563785 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T22:59:03.577890 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T22:59:03.578056 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T22:59:08.489623 #6] 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.14:9094 +I, [2018-08-01T22:59:08.491401 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-01T22:59:08.491478 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T22:59:08.493357 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T22:59:08.493522 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T22:59:08.549808 #6] 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.14:9094 +I, [2018-08-01T22:59:08.550789 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-01T22:59:08.550842 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T22:59:08.552348 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T22:59:08.552442 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T22:59:13.495087 #6] 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.14:9094 +I, [2018-08-01T22:59:13.497361 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-01T22:59:13.497464 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T22:59:13.499689 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T22:59:13.499837 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T22:59:13.552846 #6] 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.14:9094 +I, [2018-08-01T22:59:13.554640 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-01T22:59:13.554720 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T22:59:13.556494 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T22:59:13.556696 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T22:59:18.518204 #6] 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.14:9094 +I, [2018-08-01T22:59:18.520716 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-01T22:59:18.520820 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T22:59:18.532793 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T22:59:18.533017 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T22:59:18.558764 #6] 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.14:9094 +I, [2018-08-01T22:59:18.568795 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-01T22:59:18.569171 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T22:59:18.638420 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T22:59:18.639616 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T22:59:23.547709 #6] 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.14:9094 +E, [2018-08-01T22:59:23.763100 #6] 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.14:9094 +I, [2018-08-01T22:59:23.766967 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-01T22:59:23.767234 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T22:59:23.784610 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T22:59:23.785116 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +I, [2018-08-01T22:59:23.793805 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-01T22:59:23.794093 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T22:59:23.849499 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T22:59:23.849612 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T22:59:28.794139 #6] 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.14:9094 +I, [2018-08-01T22:59:28.843987 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-01T22:59:28.844809 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T22:59:28.869303 #6] 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.14:9094 +I, [2018-08-01T22:59:28.887497 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-01T22:59:28.891079 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T22:59:28.891855 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T22:59:28.895085 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T22:59:28.895898 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T22:59:28.895994 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T22:59:33.898521 #6] 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.14:9094 +E, [2018-08-01T22:59:33.900240 #6] 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.14:9094 +I, [2018-08-01T22:59:33.910715 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-01T22:59:33.910864 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-01T22:59:33.928934 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-01T22:59:33.929032 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T22:59:35.975455 #6] ERROR -- : No brokers in cluster +E, [2018-08-01T22:59:36.033545 #6] ERROR -- : No brokers in cluster +E, [2018-08-01T22:59:40.976987 #6] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: + +E, [2018-08-01T22:59:41.054979 #6] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: + +I, [2018-08-01T22:59:41.111953 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-01T22:59:41.112082 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-01T22:59:41.181590 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-01T22:59:41.181667 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-01T22:59:41.349158 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-01T22:59:41.350059 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-01T22:59:41.368724 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-01T22:59:41.369544 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-01T22:59:41.395160 #6] INFO -- : Will fetch at most 1048576 bytes at a time per partition from section_change +I, [2018-08-01T22:59:41.397344 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-01T22:59:41.397863 #6] INFO -- : Will fetch at most 1048576 bytes at a time per partition from course_change +I, [2018-08-01T22:59:41.398174 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-01T22:59:41.433508 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-01T22:59:41.434154 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T22:59:41.434317 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-01T22:59:41.435177 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T22:59:42.435355 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T22:59:42.435918 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T22:59:43.436752 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T22:59:43.437089 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T22:59:44.443224 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T22:59:44.445459 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T22:59:45.444266 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T22:59:45.446518 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T22:59:46.447689 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T22:59:46.452563 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T22:59:47.448705 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T22:59:47.558622 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T22:59:48.449917 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T22:59:48.561616 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T22:59:49.451373 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T22:59:49.563757 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T22:59:50.526739 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T22:59:50.564405 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T22:59:51.527324 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T22:59:51.565859 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T22:59:52.533077 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T22:59:52.567529 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T22:59:53.534839 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T22:59:53.569025 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T22:59:54.552902 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T22:59:54.571690 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T22:59:55.688435 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T22:59:55.692796 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T22:59:56.689880 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T22:59:56.694761 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T22:59:57.705926 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T22:59:57.706575 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T22:59:58.720387 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T22:59:58.738040 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T22:59:59.722600 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T22:59:59.738698 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:00:00.724309 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:00:00.744387 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:00:01.857053 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:00:01.915615 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:00:02.872983 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:00:02.923577 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:00:03.873939 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:00:03.925658 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:00:04.974437 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:00:04.987005 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:00:05.978202 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:00:05.988151 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:00:07.015612 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:00:07.016662 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:00:08.017220 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:00:08.020025 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:00:09.018634 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:00:09.026857 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:00:10.019306 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:00:10.044740 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:00:11.019963 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:00:11.045656 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:00:12.021133 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:00:12.046148 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:00:12.213041 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-e5a92939-eabf-46d6-9199-916740f49fea` +I, [2018-08-01T23:00:12.213209 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-01T23:00:12.265351 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-78b630c7-313a-4400-bb8e-b3a31d6665c3` +I, [2018-08-01T23:00:12.265405 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-01T23:00:13.022014 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:00:13.046677 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:00:13.221324 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-01T23:00:13.266150 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-01T23:00:13.296592 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-01T23:00:13.297603 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-01T23:00:13.321261 #6] INFO -- : Partitions assigned for `course_change`: 0 +I, [2018-08-01T23:00:13.336909 #6] INFO -- : Partitions assigned for `section_change`: 0 +I, [2018-08-01T23:00:14.022685 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-01T23:00:14.022999 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-01T23:00:14.023126 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-01T23:00:14.044940 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-01T23:00:14.047080 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-01T23:00:14.047509 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-01T23:00:14.047667 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-01T23:00:14.151817 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +E, [2018-08-01T23:00:21.410372 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- ArgumentError: message is required. +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:13:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-01T23:00:21.410586 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-01T23:00:21.411999 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- ArgumentError: message is required. +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:13:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-01T23:00:21.415199 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-01T23:00:21.573955 #6] ERROR -- : Client fetch loop error: message is required. +I, [2018-08-01T23:00:21.574916 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-01T23:00:21.584952 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-01T23:00:21.624420 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-01T23:00:21.626852 #6] ERROR -- : Client fetch loop error: message is required. +I, [2018-08-01T23:00:21.627093 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-01T23:00:21.637620 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-01T23:00:21.659661 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:00:22.585225 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-01T23:00:22.612113 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-ca52006b-1f2c-421e-829a-04436a536577` +I, [2018-08-01T23:00:22.614308 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-01T23:00:22.624756 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:00:22.625694 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-01T23:00:22.625784 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-01T23:00:22.639884 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-01T23:00:22.660486 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:00:22.734385 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-6c09456d-c0c9-4e61-b576-0d3e4af2bf9f` +I, [2018-08-01T23:00:22.734454 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-01T23:00:22.758047 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-01T23:00:22.758218 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-01T23:00:23.635950 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:00:23.660846 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:00:24.647137 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:00:24.683996 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:00:25.647809 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:00:25.685472 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:00:26.724602 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:00:26.728437 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:00:27.729362 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:00:27.730684 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:00:28.820677 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:00:28.830043 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:00:29.822638 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:00:29.830494 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:00:32.202419 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:01:04.815732 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:01:05.874513 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:01:06.182150 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:01:06.944094 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:01:07.363084 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:01:08.371795 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:01:08.385673 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:01:09.182860 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:01:09.201343 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:01:10.268483 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:01:10.538083 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:01:11.420372 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:01:11.883574 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:01:12.962511 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:01:14.008996 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:01:14.009888 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:01:15.012895 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:01:17.252727 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:01:17.256746 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:01:18.455381 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:01:18.455645 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:01:19.885832 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:01:19.459211 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:01:21.072713 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:01:21.074091 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:01:22.077921 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:01:22.078759 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:01:23.094916 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:01:23.100269 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:01:24.164272 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:01:24.165102 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:01:25.085255 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-01T23:01:25.170382 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:01:25.239029 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:01:26.066068 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-01T23:01:26.264815 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-01T23:01:26.296273 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:01:27.298379 #6] INFO -- : Seeking section_change/0 to offset 0 +E, [2018-08-01T23:01:29.637694 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- ArgumentError: message is required. +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:13:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-01T23:01:29.845820 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-01T23:01:31.840632 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- ArgumentError: message is required. +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:13:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-01T23:01:31.841596 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-01T23:01:33.077629 #6] ERROR -- : Client fetch loop error: message is required. +I, [2018-08-01T23:01:33.331225 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-01T23:01:33.293954 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-01T23:01:33.940453 #6] ERROR -- : Client fetch loop error: message is required. +I, [2018-08-01T23:01:34.013835 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-01T23:01:34.066483 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:01:34.644114 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:01:35.070047 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-01T23:01:35.227673 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-08-01T23:01:35.256074 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-01T23:01:35.644873 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:01:36.369454 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-01T23:01:36.594966 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-01T23:01:36.596122 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:01:36.645811 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:01:37.597680 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:01:37.647614 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:01:38.088035 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-7418db16-8309-479b-aa66-083d2a432e96` +I, [2018-08-01T23:01:38.088179 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-01T23:01:38.271015 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-dee1760b-29b6-4391-a9f8-19e4ad8c884d` +I, [2018-08-01T23:01:38.271098 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-01T23:01:38.380593 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-01T23:01:38.380892 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-01T23:01:38.425296 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-01T23:01:38.425463 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-01T23:01:38.598230 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:01:38.660640 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:01:39.569934 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:01:39.638952 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:01:40.572313 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:01:40.641383 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:01:41.651284 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:01:41.651791 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:01:42.714776 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:01:42.718042 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:01:43.719536 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:01:43.720098 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:01:44.519923 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-01T23:01:44.720155 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-01T23:01:44.721175 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:01:44.853680 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-01T23:01:45.722120 #6] INFO -- : Seeking course_change/0 to offset 0 +E, [2018-08-01T23:01:46.569066 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- ArgumentError: message is required. +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:13:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-01T23:01:46.573880 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-01T23:01:46.753532 #6] ERROR -- : Client fetch loop error: message is required. +I, [2018-08-01T23:01:46.767083 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-01T23:01:46.818311 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-08-01T23:01:46.893187 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- ArgumentError: message is required. +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:13:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-01T23:01:46.893267 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-01T23:01:46.954863 #6] ERROR -- : Client fetch loop error: message is required. +I, [2018-08-01T23:01:46.955195 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-01T23:01:46.957454 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-01T23:01:46.988200 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:01:47.195960 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:01:47.820013 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-01T23:01:47.981036 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-01T23:01:47.998833 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:01:48.753584 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:01:49.018043 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:01:49.777211 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:01:50.019023 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:01:50.088681 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-d0c99196-5ec5-4a63-a7bd-1158d54a9913` +I, [2018-08-01T23:01:50.088805 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-01T23:01:50.138835 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-01T23:01:50.138967 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-01T23:01:50.150231 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-f89c29f1-3664-4b41-b816-0be69c90cde6` +I, [2018-08-01T23:01:50.150283 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-01T23:01:50.295010 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-01T23:01:50.295120 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-01T23:01:50.810502 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:01:51.019499 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:01:51.826727 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:01:52.030010 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:01:52.827083 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:01:53.030496 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:01:53.832004 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:01:54.030982 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:01:54.834223 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:01:55.033491 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:01:55.840975 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:01:56.034620 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:01:58.283813 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:01:58.289316 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:01:58.441302 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-01T23:01:58.528242 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-01T23:01:59.287603 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-01T23:01:59.289762 #6] INFO -- : Seeking section_change/0 to offset 0 +E, [2018-08-01T23:02:00.640234 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- ArgumentError: message is required. +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:13:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-01T23:02:00.646307 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-01T23:02:00.651453 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- ArgumentError: message is required. +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:13:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-01T23:02:00.652323 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-01T23:02:00.727380 #6] ERROR -- : Client fetch loop error: message is required. +I, [2018-08-01T23:02:00.729603 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-01T23:02:00.730475 #6] ERROR -- : Client fetch loop error: message is required. +I, [2018-08-01T23:02:00.730867 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-01T23:02:00.731898 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-08-01T23:02:00.736902 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-01T23:02:01.513334 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:02:01.602323 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:02:01.733937 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-01T23:02:01.761547 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-01T23:02:01.804948 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-233ac3f6-4218-45b5-a34f-d729908252b4` +I, [2018-08-01T23:02:01.805033 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-01T23:02:01.825442 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-01T23:02:01.825575 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-01T23:02:01.896115 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-b839c466-59cb-4127-8048-d5dd06c75a4c` +I, [2018-08-01T23:02:01.896170 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-01T23:02:01.919638 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-01T23:02:01.919741 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-01T23:02:02.515563 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:02:02.602796 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:02:03.516205 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:02:03.604303 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:02:04.533108 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:02:04.610790 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:02:05.536451 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:02:05.611425 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:02:06.536808 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:02:06.612019 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:02:07.541818 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:02:07.612681 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:02:08.542476 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:02:08.613161 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:02:09.511215 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:02:09.575481 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:02:10.606744 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:02:10.607677 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:02:11.608310 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:02:11.608486 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:02:11.871452 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-01T23:02:12.058082 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-01T23:02:12.952649 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-01T23:02:12.953903 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-01T23:02:15.728187 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:15.767565 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:15.802970 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +I, [2018-08-01T23:02:15.803498 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:15.812916 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:15.813457 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +I, [2018-08-01T23:02:15.831985 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:15.854835 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:15.862276 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +I, [2018-08-01T23:02:15.862554 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:15.871221 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:15.871780 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +I, [2018-08-01T23:02:15.872239 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:15.892915 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:15.893151 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +I, [2018-08-01T23:02:15.893403 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:15.895666 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:15.895902 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +I, [2018-08-01T23:02:15.896167 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:15.897506 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:15.899080 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +I, [2018-08-01T23:02:15.899549 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:15.903705 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:15.903824 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +I, [2018-08-01T23:02:15.904390 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:15.907134 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:15.907258 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +I, [2018-08-01T23:02:15.909769 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:15.931819 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- ArgumentError: message is required. +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:13:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-01T23:02:15.932249 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-01T23:02:15.938421 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:15.939111 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +I, [2018-08-01T23:02:15.939910 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:15.943048 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:15.943328 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +I, [2018-08-01T23:02:15.943920 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:15.945581 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:15.945786 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +I, [2018-08-01T23:02:15.953152 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:15.969314 #6] ERROR -- : Client fetch loop error: message is required. +I, [2018-08-01T23:02:16.021269 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-01T23:02:16.021930 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:16.110414 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +I, [2018-08-01T23:02:16.111225 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:16.119346 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:16.119448 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +I, [2018-08-01T23:02:16.120003 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:16.120867 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:16.120963 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +I, [2018-08-01T23:02:16.121068 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-01T23:02:16.048188 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:16.125914 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:16.126200 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +I, [2018-08-01T23:02:16.126354 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:16.131968 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:16.132161 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +I, [2018-08-01T23:02:16.132437 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:16.133357 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:16.133450 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +I, [2018-08-01T23:02:16.139043 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:16.139854 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:16.140559 #6] ERROR -- : Connection error while trying to join group `notifications_notifications`; retrying... +E, [2018-08-01T23:02:16.142975 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:16.143303 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +I, [2018-08-01T23:02:16.143431 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:16.156696 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:16.156819 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +I, [2018-08-01T23:02:16.156944 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:16.157818 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:16.157909 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +I, [2018-08-01T23:02:16.158008 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:16.160156 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:16.160262 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +I, [2018-08-01T23:02:16.160437 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:16.162197 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:16.162359 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +I, [2018-08-01T23:02:16.162470 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:16.166534 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:16.166656 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +I, [2018-08-01T23:02:16.166769 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:16.168747 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- ArgumentError: message is required. +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:13:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-01T23:02:16.187236 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-01T23:02:16.177317 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:16.187531 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +I, [2018-08-01T23:02:16.187655 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:16.188930 #6] ERROR -- : Client fetch loop error: message is required. +I, [2018-08-01T23:02:16.189576 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-01T23:02:16.178253 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:16.191372 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +I, [2018-08-01T23:02:16.191713 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:16.195453 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:16.195566 #6] ERROR -- : Connection error while trying to join group `notifications_course_change`; retrying... +E, [2018-08-01T23:02:16.196291 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:16.196919 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +I, [2018-08-01T23:02:16.197459 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:16.212489 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:16.212625 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +I, [2018-08-01T23:02:16.212745 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:16.216463 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:16.216590 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +I, [2018-08-01T23:02:16.216796 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:16.266449 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:16.266606 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +I, [2018-08-01T23:02:16.266722 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:16.267893 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:16.267988 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +I, [2018-08-01T23:02:16.268842 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:16.269999 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:16.270102 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +I, [2018-08-01T23:02:16.270208 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:16.270869 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:16.271029 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +I, [2018-08-01T23:02:16.271134 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:16.272404 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:16.272497 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +I, [2018-08-01T23:02:16.272598 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:16.273215 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:16.273280 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +I, [2018-08-01T23:02:16.273475 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:16.274313 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:16.274406 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +I, [2018-08-01T23:02:16.274505 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:16.275270 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:16.275386 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +I, [2018-08-01T23:02:16.275743 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:16.276830 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:16.276951 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +I, [2018-08-01T23:02:16.277062 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:16.278279 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:16.278371 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +I, [2018-08-01T23:02:16.278821 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:16.279739 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:16.279826 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +I, [2018-08-01T23:02:16.279921 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:16.281317 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:16.281414 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +I, [2018-08-01T23:02:16.281519 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:16.283228 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:16.283329 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +I, [2018-08-01T23:02:16.283431 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:16.292043 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:16.292158 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +I, [2018-08-01T23:02:16.292460 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:16.293052 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:16.293119 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +I, [2018-08-01T23:02:16.293267 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:16.293950 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:16.295145 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +I, [2018-08-01T23:02:16.295383 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:16.296781 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:16.297114 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +I, [2018-08-01T23:02:16.298131 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:16.302026 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:16.302140 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +I, [2018-08-01T23:02:16.302261 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:16.303447 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:16.303540 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +I, [2018-08-01T23:02:16.303651 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:16.304787 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:16.304883 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +I, [2018-08-01T23:02:16.304986 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:16.306279 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:16.306370 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +I, [2018-08-01T23:02:16.306471 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:16.307578 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:16.307678 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +I, [2018-08-01T23:02:16.307795 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:16.309380 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:16.313292 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +I, [2018-08-01T23:02:16.313414 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:16.319132 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:16.319235 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +I, [2018-08-01T23:02:16.319338 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:16.359130 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:16.359369 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +I, [2018-08-01T23:02:16.359514 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:16.360550 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:16.360649 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +I, [2018-08-01T23:02:16.360758 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:16.361937 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:16.362437 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +I, [2018-08-01T23:02:16.362717 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:16.363565 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:16.363646 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +I, [2018-08-01T23:02:16.363868 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:16.383951 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:16.384079 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +I, [2018-08-01T23:02:16.384196 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:16.391150 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:16.391270 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +I, [2018-08-01T23:02:16.391448 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:16.397829 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:16.397943 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +I, [2018-08-01T23:02:16.398060 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:16.399153 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:16.399345 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +I, [2018-08-01T23:02:16.399464 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:16.400321 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:16.400408 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +I, [2018-08-01T23:02:16.400500 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:16.401370 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:16.401776 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +I, [2018-08-01T23:02:16.401910 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:16.405348 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:16.405737 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +I, [2018-08-01T23:02:16.405851 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:16.408992 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:16.409578 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +I, [2018-08-01T23:02:16.410083 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:16.415869 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:16.415990 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +I, [2018-08-01T23:02:16.416107 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:16.417324 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:16.422300 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +I, [2018-08-01T23:02:16.422438 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:16.419655 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:16.423152 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +I, [2018-08-01T23:02:16.423268 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:16.424512 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:16.424603 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +I, [2018-08-01T23:02:16.424736 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:16.425476 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:16.425659 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +I, [2018-08-01T23:02:16.425793 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:16.426356 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:16.426415 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +I, [2018-08-01T23:02:16.426577 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:16.428598 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:16.429194 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +I, [2018-08-01T23:02:16.429307 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:16.429692 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:16.429751 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +I, [2018-08-01T23:02:16.429827 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:16.430615 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:16.430695 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +I, [2018-08-01T23:02:16.430786 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:16.431444 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:16.431507 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +I, [2018-08-01T23:02:16.431576 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:16.432144 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:16.432218 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +I, [2018-08-01T23:02:16.432316 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:16.432841 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:16.432921 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +I, [2018-08-01T23:02:16.433022 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:16.443135 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:16.443361 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +I, [2018-08-01T23:02:16.443475 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:16.445406 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:16.445703 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +I, [2018-08-01T23:02:16.445814 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:16.446652 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:16.446947 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +I, [2018-08-01T23:02:16.447331 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:16.447966 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:16.449373 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +I, [2018-08-01T23:02:16.449492 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:16.451258 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:16.451456 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +I, [2018-08-01T23:02:16.451565 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:16.452453 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:16.452553 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +I, [2018-08-01T23:02:16.452703 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:16.453095 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:16.453176 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +I, [2018-08-01T23:02:16.453496 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:16.455710 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:16.455815 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +I, [2018-08-01T23:02:16.455946 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:16.457183 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:16.457284 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +I, [2018-08-01T23:02:16.464612 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:16.464806 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:16.466416 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +I, [2018-08-01T23:02:16.466574 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:16.467787 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:16.467903 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +I, [2018-08-01T23:02:16.468172 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:16.470881 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:16.561663 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +I, [2018-08-01T23:02:16.561823 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:16.472051 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:16.593144 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:16.593917 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +I, [2018-08-01T23:02:16.594407 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:16.563154 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +I, [2018-08-01T23:02:16.597888 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:16.631763 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:16.632462 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:16.709928 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:16.710528 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +I, [2018-08-01T23:02:16.710652 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-01T23:02:16.714503 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:16.737161 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:16.737513 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +I, [2018-08-01T23:02:16.738669 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:16.743693 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:16.743809 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +I, [2018-08-01T23:02:16.743937 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:16.745105 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:16.745251 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +I, [2018-08-01T23:02:16.745352 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:16.745961 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:16.746043 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +I, [2018-08-01T23:02:16.746751 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:16.752545 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:16.752654 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +I, [2018-08-01T23:02:16.752839 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:16.754375 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:16.754490 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +I, [2018-08-01T23:02:16.754921 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:16.755410 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:16.755514 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +I, [2018-08-01T23:02:16.755638 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:16.756267 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:16.756366 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +I, [2018-08-01T23:02:16.756564 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:16.757139 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:16.757236 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +I, [2018-08-01T23:02:16.757332 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:16.757982 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:16.758064 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +I, [2018-08-01T23:02:16.758160 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:16.758562 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:16.758637 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +I, [2018-08-01T23:02:16.758809 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:16.759150 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:16.759239 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +I, [2018-08-01T23:02:16.759330 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:16.764388 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:16.764518 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +I, [2018-08-01T23:02:16.764631 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:16.765040 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:16.765165 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +I, [2018-08-01T23:02:16.765454 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:16.766002 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:16.766087 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +I, [2018-08-01T23:02:16.766180 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:16.768703 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:16.769428 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +I, [2018-08-01T23:02:16.770558 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:16.772187 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:16.772290 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +I, [2018-08-01T23:02:16.772390 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:16.775436 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:16.788621 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +I, [2018-08-01T23:02:16.788840 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:16.775761 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:16.789226 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +I, [2018-08-01T23:02:16.789538 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:16.806057 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:16.806328 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +I, [2018-08-01T23:02:16.806456 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:16.806821 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:16.806894 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +I, [2018-08-01T23:02:16.807000 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:16.826605 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:16.826757 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +I, [2018-08-01T23:02:16.826893 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:16.827575 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:16.827678 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +I, [2018-08-01T23:02:16.827970 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:16.828397 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:16.828476 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +I, [2018-08-01T23:02:16.828576 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:16.868379 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:16.868520 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +I, [2018-08-01T23:02:16.868751 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:16.877188 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:16.877340 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +I, [2018-08-01T23:02:16.877489 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:16.878238 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:16.878447 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +I, [2018-08-01T23:02:16.878549 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:16.879264 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:16.880697 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +I, [2018-08-01T23:02:16.881060 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:16.887225 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:16.887524 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +I, [2018-08-01T23:02:16.893959 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:16.894977 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:16.895083 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +I, [2018-08-01T23:02:16.895353 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:16.899371 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:16.899480 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +I, [2018-08-01T23:02:16.899589 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:16.906786 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:16.906908 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +I, [2018-08-01T23:02:16.907185 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:16.912643 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:16.999578 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +I, [2018-08-01T23:02:16.999805 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:17.027913 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:17.028210 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +I, [2018-08-01T23:02:17.028424 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:17.031680 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:17.031828 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +I, [2018-08-01T23:02:17.032054 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:17.013727 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:17.032407 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +I, [2018-08-01T23:02:17.032696 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:17.032962 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:17.033032 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +I, [2018-08-01T23:02:17.033226 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:17.033994 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:17.034080 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +I, [2018-08-01T23:02:17.034170 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:17.034944 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:17.035131 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +I, [2018-08-01T23:02:17.035241 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:17.035471 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:17.087649 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +I, [2018-08-01T23:02:17.087889 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:17.048467 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:17.090125 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +I, [2018-08-01T23:02:17.090448 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:17.092576 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:17.092861 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +I, [2018-08-01T23:02:17.095224 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:17.120231 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:17.120990 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +I, [2018-08-01T23:02:17.121308 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:17.129877 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:17.130847 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +I, [2018-08-01T23:02:17.131144 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:17.133118 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:17.133295 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +I, [2018-08-01T23:02:17.133726 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:17.134296 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:17.134492 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +I, [2018-08-01T23:02:17.134864 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:17.140206 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:17.144791 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +I, [2018-08-01T23:02:17.145003 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:17.153864 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:17.153999 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +I, [2018-08-01T23:02:17.154139 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-01T23:02:17.154399 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-01T23:02:17.154674 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:17.158584 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:17.159756 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:17.160160 #6] ERROR -- : Connection error while trying to join group `notifications_notifications`; retrying... +E, [2018-08-01T23:02:17.160468 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:17.160613 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +I, [2018-08-01T23:02:17.161145 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:17.167219 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:17.167410 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +I, [2018-08-01T23:02:17.167618 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:17.169363 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:17.169490 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +I, [2018-08-01T23:02:17.169607 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:17.170868 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:17.170981 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +I, [2018-08-01T23:02:17.171096 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:17.171407 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:17.171571 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +I, [2018-08-01T23:02:17.171962 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:17.177155 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:17.177306 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +I, [2018-08-01T23:02:17.177422 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:17.179308 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:17.179713 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +I, [2018-08-01T23:02:17.180166 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:17.180799 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:17.180982 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +I, [2018-08-01T23:02:17.182697 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:17.183304 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:17.183410 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +I, [2018-08-01T23:02:17.183519 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:17.187298 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:17.187416 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +I, [2018-08-01T23:02:17.187529 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:17.188627 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:17.188740 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +I, [2018-08-01T23:02:17.189285 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:17.197252 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:17.197367 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +I, [2018-08-01T23:02:17.201268 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-01T23:02:17.199436 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-01T23:02:17.201445 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:17.200134 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:17.203244 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +I, [2018-08-01T23:02:17.203574 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:17.205617 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:17.205737 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +I, [2018-08-01T23:02:17.206222 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:17.207585 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:17.207758 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +I, [2018-08-01T23:02:17.207876 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:17.208822 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:17.208983 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +I, [2018-08-01T23:02:17.209124 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:17.210344 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:17.210626 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:17.210676 #6] ERROR -- : Connection error while trying to join group `notifications_course_change`; retrying... +E, [2018-08-01T23:02:17.211217 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:17.211394 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +I, [2018-08-01T23:02:17.211537 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:17.212723 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:17.212852 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +I, [2018-08-01T23:02:17.213486 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:17.218427 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:17.218532 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +I, [2018-08-01T23:02:17.218683 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:17.225067 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:17.225235 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +I, [2018-08-01T23:02:17.225347 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:17.282485 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:17.282643 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +I, [2018-08-01T23:02:17.282769 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:17.284390 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:17.284584 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +I, [2018-08-01T23:02:17.284960 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:17.300538 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:17.300805 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +I, [2018-08-01T23:02:17.301109 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:17.302003 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:17.302433 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +I, [2018-08-01T23:02:17.306980 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:17.307848 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:17.307940 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +I, [2018-08-01T23:02:17.308053 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:17.376976 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:17.377107 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +I, [2018-08-01T23:02:17.377251 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:17.379626 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:17.379847 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +I, [2018-08-01T23:02:17.380123 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:17.381930 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:17.386370 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +I, [2018-08-01T23:02:17.388664 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:17.390113 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:17.390535 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +I, [2018-08-01T23:02:17.390723 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:17.413937 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:17.414120 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +I, [2018-08-01T23:02:17.414303 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:17.418111 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:17.418274 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +I, [2018-08-01T23:02:17.418390 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:17.420124 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:17.421689 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +I, [2018-08-01T23:02:17.421969 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:17.422469 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:17.424682 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +I, [2018-08-01T23:02:17.424955 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:17.428715 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:17.429212 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +I, [2018-08-01T23:02:17.429808 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:17.431175 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:17.431257 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +I, [2018-08-01T23:02:17.431352 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:17.435159 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:17.435299 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +I, [2018-08-01T23:02:17.435415 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:17.442538 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:17.442688 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +I, [2018-08-01T23:02:17.442823 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:17.444648 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:17.444788 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +I, [2018-08-01T23:02:17.444904 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:17.446480 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:17.446616 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +I, [2018-08-01T23:02:17.446743 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:17.454987 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:17.455122 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +I, [2018-08-01T23:02:17.455247 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:17.456655 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:17.456862 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +I, [2018-08-01T23:02:17.457039 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:17.458476 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:17.458607 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +I, [2018-08-01T23:02:17.458712 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:17.460792 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:17.460902 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +I, [2018-08-01T23:02:17.461024 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:17.462362 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:17.462468 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +I, [2018-08-01T23:02:17.462582 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:17.464101 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:17.465530 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +I, [2018-08-01T23:02:17.465666 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:17.466417 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:17.466496 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +I, [2018-08-01T23:02:17.466573 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:17.467689 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:17.467766 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +I, [2018-08-01T23:02:17.467861 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:17.470219 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:17.470312 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +I, [2018-08-01T23:02:17.470404 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:17.471449 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:17.471529 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +I, [2018-08-01T23:02:17.471613 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:17.472711 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:17.474110 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +I, [2018-08-01T23:02:17.474252 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:17.475093 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:17.475179 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +I, [2018-08-01T23:02:17.475294 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:17.480861 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:17.481137 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +I, [2018-08-01T23:02:17.481257 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:17.489304 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:17.489439 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +I, [2018-08-01T23:02:17.489642 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:17.491469 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:17.491591 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +I, [2018-08-01T23:02:17.495179 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:17.498480 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:17.498617 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +I, [2018-08-01T23:02:17.498716 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:17.494837 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:17.509194 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +I, [2018-08-01T23:02:17.509380 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:17.510231 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:17.511019 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +I, [2018-08-01T23:02:17.512721 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:17.513844 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:17.513947 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +I, [2018-08-01T23:02:17.514122 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:17.518007 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:17.518260 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +I, [2018-08-01T23:02:17.518372 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:17.520224 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:17.520356 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +I, [2018-08-01T23:02:17.520461 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:17.522011 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:17.522089 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +I, [2018-08-01T23:02:17.522233 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:17.523880 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:17.524134 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +I, [2018-08-01T23:02:17.524302 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:17.526280 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:17.526401 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +I, [2018-08-01T23:02:17.526541 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:17.528228 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:17.528323 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +I, [2018-08-01T23:02:17.528438 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:17.530448 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:17.530650 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +I, [2018-08-01T23:02:17.530799 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:17.532394 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:17.532507 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +I, [2018-08-01T23:02:17.532624 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:17.535408 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:17.535716 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +I, [2018-08-01T23:02:17.535869 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:17.540197 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:17.540322 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +I, [2018-08-01T23:02:17.540459 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:17.547887 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:17.553388 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +I, [2018-08-01T23:02:17.553642 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:17.554867 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:17.556466 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +I, [2018-08-01T23:02:17.556601 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:17.559531 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:17.559703 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +W, [2018-08-01T23:02:17.559910 #6] WARN -- : Reached max fetcher queue size (100), sleeping 1s +E, [2018-08-01T23:02:17.561790 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:17.561906 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +I, [2018-08-01T23:02:17.562021 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:17.565380 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:17.565474 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +I, [2018-08-01T23:02:17.565564 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:17.572444 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:17.572567 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +I, [2018-08-01T23:02:17.577701 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:17.579637 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:17.579720 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +I, [2018-08-01T23:02:17.579796 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:17.580928 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:17.581274 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +I, [2018-08-01T23:02:17.583191 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:17.584427 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:17.584608 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +I, [2018-08-01T23:02:17.584705 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:17.586994 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:17.587247 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +I, [2018-08-01T23:02:17.587344 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:17.588410 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:17.588547 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +W, [2018-08-01T23:02:17.588598 #6] WARN -- : Reached max fetcher queue size (100), sleeping 1s +I, [2018-08-01T23:02:18.255428 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-01T23:02:18.285223 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-01T23:02:18.285403 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-01T23:02:18.285515 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:18.286728 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:18.286915 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:18.286960 #6] ERROR -- : Connection error while trying to join group `notifications_course_change`; retrying... +E, [2018-08-01T23:02:18.291647 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:18.291800 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:18.291888 #6] ERROR -- : Connection error while trying to join group `notifications_notifications`; retrying... +W, [2018-08-01T23:02:18.567549 #6] WARN -- : Reached max fetcher queue size (100), sleeping 1s +W, [2018-08-01T23:02:18.601188 #6] WARN -- : Reached max fetcher queue size (100), sleeping 1s +I, [2018-08-01T23:02:19.288373 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-01T23:02:19.291507 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-01T23:02:19.293433 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-01T23:02:19.294109 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:19.297309 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:19.297471 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:19.297553 #6] ERROR -- : Connection error while trying to join group `notifications_notifications`; retrying... +E, [2018-08-01T23:02:19.298600 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:19.299480 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:19.299606 #6] ERROR -- : Connection error while trying to join group `notifications_course_change`; retrying... +W, [2018-08-01T23:02:19.568107 #6] WARN -- : Reached max fetcher queue size (100), sleeping 1s +W, [2018-08-01T23:02:19.601913 #6] WARN -- : Reached max fetcher queue size (100), sleeping 1s +I, [2018-08-01T23:02:20.333496 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-01T23:02:20.333609 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-01T23:02:20.334700 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-01T23:02:20.334777 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:20.482608 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:20.482908 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:20.482981 #6] ERROR -- : Connection error while trying to join group `notifications_notifications`; retrying... +E, [2018-08-01T23:02:20.483697 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:20.483859 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:20.483910 #6] ERROR -- : Connection error while trying to join group `notifications_course_change`; retrying... +W, [2018-08-01T23:02:20.630160 #6] WARN -- : Reached max fetcher queue size (100), sleeping 1s +W, [2018-08-01T23:02:20.631875 #6] WARN -- : Reached max fetcher queue size (100), sleeping 1s +I, [2018-08-01T23:02:21.485112 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-01T23:02:21.485243 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-01T23:02:21.485729 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-01T23:02:21.487628 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:21.487880 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:21.488072 #6] ERROR -- : Connection error while trying to join group `notifications_notifications`; retrying... +I, [2018-08-01T23:02:21.488140 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:21.500981 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:21.501145 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:21.501192 #6] ERROR -- : Connection error while trying to join group `notifications_course_change`; retrying... +W, [2018-08-01T23:02:21.647798 #6] WARN -- : Reached max fetcher queue size (100), sleeping 1s +W, [2018-08-01T23:02:21.667743 #6] WARN -- : Reached max fetcher queue size (100), sleeping 1s +I, [2018-08-01T23:02:22.488688 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-01T23:02:22.488813 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:22.490203 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:22.490356 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:22.490461 #6] ERROR -- : Connection error while trying to join group `notifications_notifications`; retrying... +I, [2018-08-01T23:02:22.501614 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-01T23:02:22.501703 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:22.502536 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:22.502680 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:22.502771 #6] ERROR -- : Connection error while trying to join group `notifications_course_change`; retrying... +W, [2018-08-01T23:02:22.648159 #6] WARN -- : Reached max fetcher queue size (100), sleeping 1s +W, [2018-08-01T23:02:22.668359 #6] WARN -- : Reached max fetcher queue size (100), sleeping 1s +I, [2018-08-01T23:02:23.491214 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-01T23:02:23.496994 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-01T23:02:23.514464 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-01T23:02:23.514592 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:23.537112 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:23.547421 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:23.547558 #6] ERROR -- : Connection error while trying to join group `notifications_course_change`; retrying... +E, [2018-08-01T23:02:23.548062 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:23.548176 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:23.548217 #6] ERROR -- : Connection error while trying to join group `notifications_notifications`; retrying... +W, [2018-08-01T23:02:23.652638 #6] WARN -- : Reached max fetcher queue size (100), sleeping 1s +W, [2018-08-01T23:02:23.668946 #6] WARN -- : Reached max fetcher queue size (100), sleeping 1s +I, [2018-08-01T23:02:24.550256 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-01T23:02:24.550808 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-01T23:02:24.551750 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-01T23:02:24.551836 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:24.552597 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:24.552795 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:24.552853 #6] ERROR -- : Connection error while trying to join group `notifications_notifications`; retrying... +E, [2018-08-01T23:02:24.553386 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:24.553619 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:24.554025 #6] ERROR -- : Connection error while trying to join group `notifications_course_change`; retrying... +W, [2018-08-01T23:02:24.655037 #6] WARN -- : Reached max fetcher queue size (100), sleeping 1s +W, [2018-08-01T23:02:24.676711 #6] WARN -- : Reached max fetcher queue size (100), sleeping 1s +I, [2018-08-01T23:02:25.553444 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-01T23:02:25.553692 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-01T23:02:25.554876 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-01T23:02:25.556052 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:25.556566 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:25.556608 #6] ERROR -- : Connection error while trying to join group `notifications_notifications`; retrying... +I, [2018-08-01T23:02:25.556713 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:25.573498 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:25.573689 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:25.573734 #6] ERROR -- : Connection error while trying to join group `notifications_course_change`; retrying... +W, [2018-08-01T23:02:25.669480 #6] WARN -- : Reached max fetcher queue size (100), sleeping 1s +W, [2018-08-01T23:02:25.722460 #6] WARN -- : Reached max fetcher queue size (100), sleeping 1s +I, [2018-08-01T23:02:26.572512 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-01T23:02:26.624399 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-01T23:02:26.622790 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-01T23:02:26.624652 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +W, [2018-08-01T23:02:26.728522 #6] WARN -- : Reached max fetcher queue size (100), sleeping 1s +W, [2018-08-01T23:02:26.729459 #6] WARN -- : Reached max fetcher queue size (100), sleeping 1s +E, [2018-08-01T23:02:26.866714 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:27.281978 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:27.282097 #6] ERROR -- : Connection error while trying to join group `notifications_notifications`; retrying... +E, [2018-08-01T23:02:27.281285 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:27.282400 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:27.282441 #6] ERROR -- : Connection error while trying to join group `notifications_course_change`; retrying... +W, [2018-08-01T23:02:27.729067 #6] WARN -- : Reached max fetcher queue size (100), sleeping 1s +W, [2018-08-01T23:02:27.736199 #6] WARN -- : Reached max fetcher queue size (100), sleeping 1s +I, [2018-08-01T23:02:28.288580 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-01T23:02:28.288923 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-01T23:02:28.302201 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-01T23:02:28.302338 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:28.326306 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:28.326568 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:28.326699 #6] ERROR -- : Connection error while trying to join group `notifications_course_change`; retrying... +E, [2018-08-01T23:02:28.332701 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:28.333106 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:02:28.333164 #6] ERROR -- : Connection error while trying to join group `notifications_notifications`; retrying... +W, [2018-08-01T23:02:28.864809 #6] WARN -- : Reached max fetcher queue size (100), sleeping 1s +W, [2018-08-01T23:02:28.865609 #6] WARN -- : Reached max fetcher queue size (100), sleeping 1s +I, [2018-08-01T23:02:29.327657 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-01T23:02:29.327791 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-01T23:02:29.333388 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-01T23:02:29.333559 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:29.343930 #6] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:02:29.346269 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:02:29.346841 #6] ERROR -- : Connection error while trying to join group `notifications_notifications`; retrying... +E, [2018-08-01T23:02:29.356584 #6] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:02:29.361700 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:02:29.361841 #6] ERROR -- : Connection error while trying to join group `notifications_course_change`; retrying... +W, [2018-08-01T23:02:29.879165 #6] WARN -- : Reached max fetcher queue size (100), sleeping 1s +W, [2018-08-01T23:02:29.879340 #6] WARN -- : Reached max fetcher queue size (100), sleeping 1s +I, [2018-08-01T23:02:30.349988 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-01T23:02:30.350988 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-01T23:02:30.362852 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-01T23:02:30.363006 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:30.394768 #6] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:02:30.395026 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:02:30.395155 #6] ERROR -- : Connection error while trying to join group `notifications_course_change`; retrying... +E, [2018-08-01T23:02:30.395266 #6] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:02:30.395354 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:02:30.395393 #6] ERROR -- : Connection error while trying to join group `notifications_notifications`; retrying... +W, [2018-08-01T23:02:30.924847 #6] WARN -- : Reached max fetcher queue size (100), sleeping 1s +W, [2018-08-01T23:02:30.924959 #6] WARN -- : Reached max fetcher queue size (100), sleeping 1s +I, [2018-08-01T23:02:31.395648 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-01T23:02:31.395782 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-01T23:02:31.396088 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-01T23:02:31.396138 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:31.405415 #6] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:02:31.406087 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:02:31.406269 #6] ERROR -- : Connection error while trying to join group `notifications_course_change`; retrying... +E, [2018-08-01T23:02:31.405153 #6] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:02:31.406421 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:02:31.406467 #6] ERROR -- : Connection error while trying to join group `notifications_notifications`; retrying... +W, [2018-08-01T23:02:31.925210 #6] WARN -- : Reached max fetcher queue size (100), sleeping 1s +W, [2018-08-01T23:02:31.925360 #6] WARN -- : Reached max fetcher queue size (100), sleeping 1s +I, [2018-08-01T23:02:32.407211 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-01T23:02:32.407361 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-01T23:02:32.408058 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-01T23:02:32.408225 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:32.411638 #6] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:02:32.412012 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:02:32.412158 #6] ERROR -- : Connection error while trying to join group `notifications_notifications`; retrying... +E, [2018-08-01T23:02:32.412299 #6] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:02:32.412548 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:02:32.412812 #6] ERROR -- : Connection error while trying to join group `notifications_course_change`; retrying... +W, [2018-08-01T23:02:32.925834 #6] WARN -- : Reached max fetcher queue size (100), sleeping 1s +W, [2018-08-01T23:02:32.925984 #6] WARN -- : Reached max fetcher queue size (100), sleeping 1s +I, [2018-08-01T23:02:33.413749 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-01T23:02:33.414785 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-01T23:02:33.422947 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-01T23:02:33.423959 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:33.512172 #6] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:02:33.513078 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:02:33.513184 #6] ERROR -- : Connection error while trying to join group `notifications_course_change`; retrying... +E, [2018-08-01T23:02:33.513388 #6] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:02:33.513617 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:02:33.513820 #6] ERROR -- : Connection error while trying to join group `notifications_notifications`; retrying... +W, [2018-08-01T23:02:33.928417 #6] WARN -- : Reached max fetcher queue size (100), sleeping 1s +W, [2018-08-01T23:02:33.928952 #6] WARN -- : Reached max fetcher queue size (100), sleeping 1s +I, [2018-08-01T23:02:34.513485 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-01T23:02:34.513883 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-01T23:02:34.514871 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-01T23:02:34.514957 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:34.553067 #6] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:02:34.553410 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:02:34.553454 #6] ERROR -- : Connection error while trying to join group `notifications_course_change`; retrying... +E, [2018-08-01T23:02:34.554272 #6] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:02:34.554445 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:02:34.555117 #6] ERROR -- : Connection error while trying to join group `notifications_notifications`; retrying... +W, [2018-08-01T23:02:34.941939 #6] WARN -- : Reached max fetcher queue size (100), sleeping 1s +W, [2018-08-01T23:02:34.943889 #6] WARN -- : Reached max fetcher queue size (100), sleeping 1s +I, [2018-08-01T23:02:35.554416 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-01T23:02:35.554674 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-01T23:02:35.555513 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-01T23:02:35.555623 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:35.564903 #6] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:02:35.565174 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:02:35.565641 #6] ERROR -- : Connection error while trying to join group `notifications_notifications`; retrying... +E, [2018-08-01T23:02:35.573072 #6] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:02:35.573363 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:02:35.573428 #6] ERROR -- : Connection error while trying to join group `notifications_course_change`; retrying... +W, [2018-08-01T23:02:35.947040 #6] WARN -- : Reached max fetcher queue size (100), sleeping 1s +W, [2018-08-01T23:02:35.952129 #6] WARN -- : Reached max fetcher queue size (100), sleeping 1s +I, [2018-08-01T23:02:36.571116 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-01T23:02:36.587555 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-01T23:02:36.596805 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-01T23:02:36.656139 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:36.663889 #6] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:02:36.664654 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:02:36.664812 #6] ERROR -- : Connection error while trying to join group `notifications_notifications`; retrying... +E, [2018-08-01T23:02:36.665062 #6] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:02:36.665265 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:02:36.665385 #6] ERROR -- : Connection error while trying to join group `notifications_course_change`; retrying... +W, [2018-08-01T23:02:36.952398 #6] WARN -- : Reached max fetcher queue size (100), sleeping 1s +W, [2018-08-01T23:02:36.952528 #6] WARN -- : Reached max fetcher queue size (100), sleeping 1s +I, [2018-08-01T23:02:37.665936 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-01T23:02:37.666150 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-01T23:02:37.666656 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-01T23:02:37.666760 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:37.675231 #6] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:02:37.675720 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:02:37.675807 #6] ERROR -- : Connection error while trying to join group `notifications_course_change`; retrying... +E, [2018-08-01T23:02:37.675886 #6] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:02:37.675995 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:02:37.676036 #6] ERROR -- : Connection error while trying to join group `notifications_notifications`; retrying... +W, [2018-08-01T23:02:37.954892 #6] WARN -- : Reached max fetcher queue size (100), sleeping 1s +W, [2018-08-01T23:02:37.959993 #6] WARN -- : Reached max fetcher queue size (100), sleeping 1s +I, [2018-08-01T23:02:38.677583 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-01T23:02:38.677926 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-01T23:02:38.678259 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-01T23:02:38.678354 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:38.699001 #6] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:02:38.699200 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:02:38.699459 #6] ERROR -- : Connection error while trying to join group `notifications_course_change`; retrying... +E, [2018-08-01T23:02:38.709311 #6] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:02:38.709532 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:02:38.709834 #6] ERROR -- : Connection error while trying to join group `notifications_notifications`; retrying... +W, [2018-08-01T23:02:38.919894 #6] WARN -- : Reached max fetcher queue size (100), sleeping 1s +W, [2018-08-01T23:02:38.924792 #6] WARN -- : Reached max fetcher queue size (100), sleeping 1s +I, [2018-08-01T23:02:39.664787 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-01T23:02:39.664909 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:39.669661 #6] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:02:39.670031 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:02:39.670072 #6] ERROR -- : Connection error while trying to join group `notifications_course_change`; retrying... +I, [2018-08-01T23:02:39.674523 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-01T23:02:39.674678 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:39.685457 #6] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:02:39.685630 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:02:39.685715 #6] ERROR -- : Connection error while trying to join group `notifications_notifications`; retrying... +W, [2018-08-01T23:02:39.922755 #6] WARN -- : Reached max fetcher queue size (100), sleeping 1s +W, [2018-08-01T23:02:39.932388 #6] WARN -- : Reached max fetcher queue size (100), sleeping 1s +I, [2018-08-01T23:02:40.670447 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-01T23:02:40.670594 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:40.678206 #6] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:02:40.684434 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:02:40.684535 #6] ERROR -- : Connection error while trying to join group `notifications_course_change`; retrying... +I, [2018-08-01T23:02:40.685963 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-01T23:02:40.686060 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:40.707148 #6] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:02:40.707487 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:02:40.707564 #6] ERROR -- : Connection error while trying to join group `notifications_notifications`; retrying... +W, [2018-08-01T23:02:40.924230 #6] WARN -- : Reached max fetcher queue size (100), sleeping 1s +W, [2018-08-01T23:02:40.932760 #6] WARN -- : Reached max fetcher queue size (100), sleeping 1s +I, [2018-08-01T23:02:41.684764 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-01T23:02:41.684907 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:41.696407 #6] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:02:41.696863 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:02:41.696936 #6] ERROR -- : Connection error while trying to join group `notifications_course_change`; retrying... +I, [2018-08-01T23:02:41.713304 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-01T23:02:41.713510 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:41.776175 #6] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:02:41.776618 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:02:41.776703 #6] ERROR -- : Connection error while trying to join group `notifications_notifications`; retrying... +W, [2018-08-01T23:02:41.925263 #6] WARN -- : Reached max fetcher queue size (100), sleeping 1s +W, [2018-08-01T23:02:41.933362 #6] WARN -- : Reached max fetcher queue size (100), sleeping 1s +I, [2018-08-01T23:02:42.697829 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-01T23:02:42.698340 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:42.707703 #6] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:02:42.707915 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:02:42.707963 #6] ERROR -- : Connection error while trying to join group `notifications_course_change`; retrying... +I, [2018-08-01T23:02:42.779297 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-01T23:02:42.779721 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:42.800498 #6] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:02:42.800676 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:02:42.800725 #6] ERROR -- : Connection error while trying to join group `notifications_notifications`; retrying... +W, [2018-08-01T23:02:42.936029 #6] WARN -- : Reached max fetcher queue size (100), sleeping 1s +W, [2018-08-01T23:02:42.936186 #6] WARN -- : Reached max fetcher queue size (100), sleeping 1s +I, [2018-08-01T23:02:43.710773 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-01T23:02:43.710911 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:43.714323 #6] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:02:43.714623 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:02:43.714683 #6] ERROR -- : Connection error while trying to join group `notifications_course_change`; retrying... +I, [2018-08-01T23:02:43.801086 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-01T23:02:43.801262 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:43.813144 #6] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:02:43.814958 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:02:43.815105 #6] ERROR -- : Connection error while trying to join group `notifications_notifications`; retrying... +W, [2018-08-01T23:02:43.936334 #6] WARN -- : Reached max fetcher queue size (100), sleeping 1s +W, [2018-08-01T23:02:43.936568 #6] WARN -- : Reached max fetcher queue size (100), sleeping 1s +I, [2018-08-01T23:02:44.715609 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-01T23:02:44.715748 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:44.732526 #6] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:02:44.732740 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:02:44.732804 #6] ERROR -- : Connection error while trying to join group `notifications_course_change`; retrying... +I, [2018-08-01T23:02:44.815947 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-01T23:02:44.816078 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:44.824533 #6] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:02:44.824697 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:02:44.824743 #6] ERROR -- : Connection error while trying to join group `notifications_notifications`; retrying... +W, [2018-08-01T23:02:44.937447 #6] WARN -- : Reached max fetcher queue size (100), sleeping 1s +W, [2018-08-01T23:02:44.937565 #6] WARN -- : Reached max fetcher queue size (100), sleeping 1s +I, [2018-08-01T23:02:45.733645 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-01T23:02:45.734290 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:45.760153 #6] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:02:45.762838 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:02:45.765249 #6] ERROR -- : Connection error while trying to join group `notifications_course_change`; retrying... +I, [2018-08-01T23:02:45.831918 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-01T23:02:45.832078 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:45.840166 #6] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:02:45.840202 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:02:45.841698 #6] ERROR -- : Connection error while trying to join group `notifications_notifications`; retrying... +W, [2018-08-01T23:02:45.937947 #6] WARN -- : Reached max fetcher queue size (100), sleeping 1s +W, [2018-08-01T23:02:45.938086 #6] WARN -- : Reached max fetcher queue size (100), sleeping 1s +I, [2018-08-01T23:02:46.768239 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-01T23:02:46.768677 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:46.773344 #6] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:02:46.773565 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:02:46.773618 #6] ERROR -- : Connection error while trying to join group `notifications_course_change`; retrying... +I, [2018-08-01T23:02:46.842462 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-01T23:02:46.842604 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:46.853107 #6] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:02:46.853394 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:02:46.853455 #6] ERROR -- : Connection error while trying to join group `notifications_notifications`; retrying... +W, [2018-08-01T23:02:46.938455 #6] WARN -- : Reached max fetcher queue size (100), sleeping 1s +W, [2018-08-01T23:02:46.938708 #6] WARN -- : Reached max fetcher queue size (100), sleeping 1s +I, [2018-08-01T23:02:47.774094 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-01T23:02:47.774466 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:47.781470 #6] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:02:47.781726 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:02:47.781762 #6] ERROR -- : Connection error while trying to join group `notifications_course_change`; retrying... +I, [2018-08-01T23:02:47.855891 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-01T23:02:47.856034 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:47.872330 #6] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:02:47.872882 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:02:47.873112 #6] ERROR -- : Connection error while trying to join group `notifications_notifications`; retrying... +W, [2018-08-01T23:02:47.939078 #6] WARN -- : Reached max fetcher queue size (100), sleeping 1s +W, [2018-08-01T23:02:47.939202 #6] WARN -- : Reached max fetcher queue size (100), sleeping 1s +I, [2018-08-01T23:02:48.782184 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-01T23:02:48.782313 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:48.786066 #6] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:02:48.786481 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:02:48.786536 #6] ERROR -- : Connection error while trying to join group `notifications_course_change`; retrying... +I, [2018-08-01T23:02:48.873549 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-01T23:02:48.874016 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:48.878421 #6] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:02:48.880640 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:02:48.880726 #6] ERROR -- : Connection error while trying to join group `notifications_notifications`; retrying... +W, [2018-08-01T23:02:48.939474 #6] WARN -- : Reached max fetcher queue size (100), sleeping 1s +W, [2018-08-01T23:02:48.939601 #6] WARN -- : Reached max fetcher queue size (100), sleeping 1s +I, [2018-08-01T23:02:49.786995 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-01T23:02:49.787171 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:49.797539 #6] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:02:49.797838 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:02:49.797884 #6] ERROR -- : Connection error while trying to join group `notifications_course_change`; retrying... +I, [2018-08-01T23:02:49.881033 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-01T23:02:49.881648 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:49.900077 #6] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:02:49.900481 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:02:49.900526 #6] ERROR -- : Connection error while trying to join group `notifications_notifications`; retrying... +W, [2018-08-01T23:02:49.940276 #6] WARN -- : Reached max fetcher queue size (100), sleeping 1s +W, [2018-08-01T23:02:49.940454 #6] WARN -- : Reached max fetcher queue size (100), sleeping 1s +I, [2018-08-01T23:02:50.798609 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-01T23:02:50.798794 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:50.856838 #6] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:02:50.857260 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:02:50.857326 #6] ERROR -- : Connection error while trying to join group `notifications_course_change`; retrying... +I, [2018-08-01T23:02:50.919294 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-01T23:02:50.919578 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +W, [2018-08-01T23:02:51.012559 #6] WARN -- : Reached max fetcher queue size (100), sleeping 1s +W, [2018-08-01T23:02:51.028540 #6] WARN -- : Reached max fetcher queue size (100), sleeping 1s +E, [2018-08-01T23:02:51.028861 #6] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:02:51.028992 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:02:51.029038 #6] ERROR -- : Connection error while trying to join group `notifications_notifications`; retrying... +I, [2018-08-01T23:02:51.859575 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-01T23:02:51.859710 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:51.872389 #6] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:02:51.872618 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:02:51.872654 #6] ERROR -- : Connection error while trying to join group `notifications_course_change`; retrying... +W, [2018-08-01T23:02:52.012957 #6] WARN -- : Reached max fetcher queue size (100), sleeping 1s +W, [2018-08-01T23:02:52.028855 #6] WARN -- : Reached max fetcher queue size (100), sleeping 1s +I, [2018-08-01T23:02:52.029315 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-01T23:02:52.029409 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:52.035358 #6] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:02:52.035560 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:02:52.035708 #6] ERROR -- : Connection error while trying to join group `notifications_notifications`; retrying... +I, [2018-08-01T23:02:52.873057 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-01T23:02:52.873180 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:52.877646 #6] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:02:52.877967 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:02:52.878011 #6] ERROR -- : Connection error while trying to join group `notifications_course_change`; retrying... +W, [2018-08-01T23:02:53.013345 #6] WARN -- : Reached max fetcher queue size (100), sleeping 1s +W, [2018-08-01T23:02:53.029427 #6] WARN -- : Reached max fetcher queue size (100), sleeping 1s +I, [2018-08-01T23:02:53.035896 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-01T23:02:53.036071 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:53.043509 #6] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:02:53.043816 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:02:53.043862 #6] ERROR -- : Connection error while trying to join group `notifications_notifications`; retrying... +I, [2018-08-01T23:02:53.883051 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-01T23:02:53.883514 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:53.891231 #6] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:02:53.891509 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:02:53.891799 #6] ERROR -- : Connection error while trying to join group `notifications_course_change`; retrying... +W, [2018-08-01T23:02:54.013961 #6] WARN -- : Reached max fetcher queue size (100), sleeping 1s +W, [2018-08-01T23:02:54.030197 #6] WARN -- : Reached max fetcher queue size (100), sleeping 1s +I, [2018-08-01T23:02:54.044204 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-01T23:02:54.044333 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:54.062019 #6] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:02:54.062390 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:02:54.062465 #6] ERROR -- : Connection error while trying to join group `notifications_notifications`; retrying... +I, [2018-08-01T23:02:54.892218 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-01T23:02:54.892369 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:54.898528 #6] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:02:54.899033 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:02:54.899191 #6] ERROR -- : Connection error while trying to join group `notifications_course_change`; retrying... +W, [2018-08-01T23:02:55.018622 #6] WARN -- : Reached max fetcher queue size (100), sleeping 1s +W, [2018-08-01T23:02:55.030784 #6] WARN -- : Reached max fetcher queue size (100), sleeping 1s +I, [2018-08-01T23:02:55.064309 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-01T23:02:55.064491 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:55.085381 #6] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:02:55.086495 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:02:55.096401 #6] ERROR -- : Connection error while trying to join group `notifications_notifications`; retrying... +I, [2018-08-01T23:02:55.899903 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-01T23:02:55.900217 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:55.918716 #6] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:02:55.919077 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:02:55.919214 #6] ERROR -- : Connection error while trying to join group `notifications_course_change`; retrying... +W, [2018-08-01T23:02:56.020907 #6] WARN -- : Reached max fetcher queue size (100), sleeping 1s +W, [2018-08-01T23:02:56.032269 #6] WARN -- : Reached max fetcher queue size (100), sleeping 1s +I, [2018-08-01T23:02:56.277576 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-01T23:02:56.277723 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:56.361864 #6] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:02:56.366361 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:02:56.366453 #6] ERROR -- : Connection error while trying to join group `notifications_notifications`; retrying... +I, [2018-08-01T23:02:56.920659 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-01T23:02:56.920998 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:56.925557 #6] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:02:56.926063 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:02:56.926170 #6] ERROR -- : Connection error while trying to join group `notifications_course_change`; retrying... +W, [2018-08-01T23:02:57.027561 #6] WARN -- : Reached max fetcher queue size (100), sleeping 1s +W, [2018-08-01T23:02:57.034572 #6] WARN -- : Reached max fetcher queue size (100), sleeping 1s +I, [2018-08-01T23:02:57.366904 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-01T23:02:57.367207 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:57.421791 #6] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:02:57.421985 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:02:57.422041 #6] ERROR -- : Connection error while trying to join group `notifications_notifications`; retrying... +I, [2018-08-01T23:02:57.928130 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-01T23:02:57.929729 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:57.934943 #6] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:02:57.935478 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:02:57.935539 #6] ERROR -- : Connection error while trying to join group `notifications_course_change`; retrying... +W, [2018-08-01T23:02:58.027900 #6] WARN -- : Reached max fetcher queue size (100), sleeping 1s +W, [2018-08-01T23:02:58.045964 #6] WARN -- : Reached max fetcher queue size (100), sleeping 1s +I, [2018-08-01T23:02:58.493718 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-01T23:02:58.493930 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:58.534025 #6] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:02:58.534233 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:02:58.534289 #6] ERROR -- : Connection error while trying to join group `notifications_notifications`; retrying... +I, [2018-08-01T23:02:58.936130 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-01T23:02:58.936267 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:58.944208 #6] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:02:58.944688 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:02:58.944753 #6] ERROR -- : Connection error while trying to join group `notifications_course_change`; retrying... +W, [2018-08-01T23:02:59.028267 #6] WARN -- : Reached max fetcher queue size (100), sleeping 1s +W, [2018-08-01T23:02:59.046343 #6] WARN -- : Reached max fetcher queue size (100), sleeping 1s +I, [2018-08-01T23:02:59.534530 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-01T23:02:59.534708 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:59.542564 #6] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:02:59.542827 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:02:59.542898 #6] ERROR -- : Connection error while trying to join group `notifications_notifications`; retrying... +I, [2018-08-01T23:02:59.945643 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-01T23:02:59.945914 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:02:59.951788 #6] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:02:59.951935 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:02:59.951979 #6] ERROR -- : Connection error while trying to join group `notifications_course_change`; retrying... +W, [2018-08-01T23:03:00.028569 #6] WARN -- : Reached max fetcher queue size (100), sleeping 1s +W, [2018-08-01T23:03:00.047121 #6] WARN -- : Reached max fetcher queue size (100), sleeping 1s +I, [2018-08-01T23:03:00.545232 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-01T23:03:00.555734 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:03:00.561762 #6] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:03:00.561931 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:03:00.562029 #6] ERROR -- : Connection error while trying to join group `notifications_notifications`; retrying... +I, [2018-08-01T23:03:00.961907 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-01T23:03:00.962341 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:03:00.971394 #6] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:03:00.973420 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:03:00.973502 #6] ERROR -- : Connection error while trying to join group `notifications_course_change`; retrying... +W, [2018-08-01T23:03:01.046292 #6] WARN -- : Reached max fetcher queue size (100), sleeping 1s +W, [2018-08-01T23:03:01.047626 #6] WARN -- : Reached max fetcher queue size (100), sleeping 1s +I, [2018-08-01T23:03:02.491567 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-01T23:03:02.502805 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:03:02.675521 #6] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:03:02.676798 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:03:02.677011 #6] ERROR -- : Connection error while trying to join group `notifications_course_change`; retrying... +W, [2018-08-01T23:03:02.727843 #6] WARN -- : Reached max fetcher queue size (100), sleeping 1s +W, [2018-08-01T23:03:02.728741 #6] WARN -- : Reached max fetcher queue size (100), sleeping 1s +I, [2018-08-01T23:03:02.730918 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-01T23:03:02.739760 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:03:02.766617 #6] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:03:02.766879 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:03:02.766990 #6] ERROR -- : Connection error while trying to join group `notifications_notifications`; retrying... +W, [2018-08-01T23:03:03.803538 #6] WARN -- : Reached max fetcher queue size (100), sleeping 1s +I, [2018-08-01T23:03:03.832332 #6] INFO -- : Joining group `notifications_course_change` +W, [2018-08-01T23:03:03.849107 #6] WARN -- : Reached max fetcher queue size (100), sleeping 1s +I, [2018-08-01T23:03:03.853581 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-01T23:03:03.914295 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-01T23:03:03.942802 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:03:03.958521 #6] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:03:03.958861 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:03:03.959069 #6] ERROR -- : Connection error while trying to join group `notifications_course_change`; retrying... +E, [2018-08-01T23:03:04.184798 #6] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:03:04.185056 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:03:04.186111 #6] ERROR -- : Connection error while trying to join group `notifications_notifications`; retrying... +W, [2018-08-01T23:03:04.811611 #6] WARN -- : Reached max fetcher queue size (100), sleeping 1s +W, [2018-08-01T23:03:04.850136 #6] WARN -- : Reached max fetcher queue size (100), sleeping 1s +I, [2018-08-01T23:03:04.993661 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-01T23:03:04.993788 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:03:05.021050 #6] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:03:05.021297 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:03:05.021373 #6] ERROR -- : Connection error while trying to join group `notifications_course_change`; retrying... +I, [2018-08-01T23:03:05.186651 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-01T23:03:05.187077 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:03:05.191714 #6] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:03:05.191953 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:03:05.192050 #6] ERROR -- : Connection error while trying to join group `notifications_notifications`; retrying... +W, [2018-08-01T23:03:05.824563 #6] WARN -- : Reached max fetcher queue size (100), sleeping 1s +W, [2018-08-01T23:03:05.854084 #6] WARN -- : Reached max fetcher queue size (100), sleeping 1s +I, [2018-08-01T23:03:06.035577 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-01T23:03:06.036822 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:03:06.047698 #6] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:03:06.048050 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:03:06.048283 #6] ERROR -- : Connection error while trying to join group `notifications_course_change`; retrying... +I, [2018-08-01T23:03:06.192482 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-01T23:03:06.198940 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:03:06.206464 #6] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:03:06.206863 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:03:06.208265 #6] ERROR -- : Connection error while trying to join group `notifications_notifications`; retrying... +W, [2018-08-01T23:03:06.825457 #6] WARN -- : Reached max fetcher queue size (100), sleeping 1s +W, [2018-08-01T23:03:06.857022 #6] WARN -- : Reached max fetcher queue size (100), sleeping 1s +I, [2018-08-01T23:03:07.049303 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-01T23:03:07.049756 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:03:07.073237 #6] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:03:07.073537 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:03:07.073829 #6] ERROR -- : Connection error while trying to join group `notifications_course_change`; retrying... +I, [2018-08-01T23:03:07.209069 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-01T23:03:07.210136 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:03:07.217621 #6] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:03:07.218576 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:03:07.220664 #6] ERROR -- : Connection error while trying to join group `notifications_notifications`; retrying... +W, [2018-08-01T23:03:07.827770 #6] WARN -- : Reached max fetcher queue size (100), sleeping 1s +W, [2018-08-01T23:03:07.860938 #6] WARN -- : Reached max fetcher queue size (100), sleeping 1s +I, [2018-08-01T23:03:08.074549 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-01T23:03:08.074715 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:03:08.089044 #6] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:03:08.089239 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:03:08.089334 #6] ERROR -- : Connection error while trying to join group `notifications_course_change`; retrying... +I, [2018-08-01T23:03:08.221397 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-01T23:03:08.221815 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:03:08.226545 #6] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:03:08.227970 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:03:08.228063 #6] ERROR -- : Connection error while trying to join group `notifications_notifications`; retrying... +W, [2018-08-01T23:03:08.872287 #6] WARN -- : Reached max fetcher queue size (100), sleeping 1s +W, [2018-08-01T23:03:08.872459 #6] WARN -- : Reached max fetcher queue size (100), sleeping 1s +I, [2018-08-01T23:03:09.057628 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-01T23:03:09.057942 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:03:09.070761 #6] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:03:09.072152 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:03:09.072355 #6] ERROR -- : Connection error while trying to join group `notifications_course_change`; retrying... +I, [2018-08-01T23:03:09.364353 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-01T23:03:09.364539 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:03:09.614454 #6] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:03:09.652331 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:03:09.652450 #6] ERROR -- : Connection error while trying to join group `notifications_notifications`; retrying... +W, [2018-08-01T23:03:09.859089 #6] WARN -- : Reached max fetcher queue size (100), sleeping 1s +W, [2018-08-01T23:03:09.859333 #6] WARN -- : Reached max fetcher queue size (100), sleeping 1s +I, [2018-08-01T23:03:10.074292 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-01T23:03:10.074528 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:03:10.081194 #6] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:03:10.082070 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:03:10.082496 #6] ERROR -- : Connection error while trying to join group `notifications_course_change`; retrying... +I, [2018-08-01T23:03:10.654343 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-01T23:03:10.654492 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:03:10.675314 #6] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:03:10.675605 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:03:10.676063 #6] ERROR -- : Connection error while trying to join group `notifications_notifications`; retrying... +W, [2018-08-01T23:03:10.859764 #6] WARN -- : Reached max fetcher queue size (100), sleeping 1s +W, [2018-08-01T23:03:10.860118 #6] WARN -- : Reached max fetcher queue size (100), sleeping 1s +I, [2018-08-01T23:03:11.088596 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-01T23:03:11.089202 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:03:11.141755 #6] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:03:11.142028 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:03:11.142116 #6] ERROR -- : Connection error while trying to join group `notifications_course_change`; retrying... +I, [2018-08-01T23:03:11.676909 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-01T23:03:11.678332 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:03:11.688799 #6] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:03:11.689869 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:03:11.689983 #6] ERROR -- : Connection error while trying to join group `notifications_notifications`; retrying... +W, [2018-08-01T23:03:11.861121 #6] WARN -- : Reached max fetcher queue size (100), sleeping 1s +W, [2018-08-01T23:03:11.861259 #6] WARN -- : Reached max fetcher queue size (100), sleeping 1s +I, [2018-08-01T23:03:12.143337 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-01T23:03:12.143697 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:03:12.159187 #6] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:03:12.159376 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:03:12.159465 #6] ERROR -- : Connection error while trying to join group `notifications_course_change`; retrying... +I, [2018-08-01T23:03:12.690436 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-01T23:03:12.690558 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:03:12.699096 #6] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:03:12.699747 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:03:12.699865 #6] ERROR -- : Connection error while trying to join group `notifications_notifications`; retrying... +W, [2018-08-01T23:03:12.862088 #6] WARN -- : Reached max fetcher queue size (100), sleeping 1s +W, [2018-08-01T23:03:12.862239 #6] WARN -- : Reached max fetcher queue size (100), sleeping 1s +I, [2018-08-01T23:03:13.160678 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-01T23:03:13.160815 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:03:13.192627 #6] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:03:13.193492 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:03:13.193617 #6] ERROR -- : Connection error while trying to join group `notifications_course_change`; retrying... +I, [2018-08-01T23:03:13.859266 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-01T23:03:13.860438 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +W, [2018-08-01T23:03:13.867982 #6] WARN -- : Reached max fetcher queue size (100), sleeping 1s +W, [2018-08-01T23:03:13.868152 #6] WARN -- : Reached max fetcher queue size (100), sleeping 1s +E, [2018-08-01T23:03:13.885318 #6] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:03:13.887462 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:03:13.888846 #6] ERROR -- : Connection error while trying to join group `notifications_notifications`; retrying... +I, [2018-08-01T23:03:14.296169 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-01T23:03:14.296320 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:03:14.305043 #6] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:03:14.305265 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:03:14.305316 #6] ERROR -- : Connection error while trying to join group `notifications_course_change`; retrying... +W, [2018-08-01T23:03:14.868578 #6] WARN -- : Reached max fetcher queue size (100), sleeping 1s +W, [2018-08-01T23:03:14.868700 #6] WARN -- : Reached max fetcher queue size (100), sleeping 1s +I, [2018-08-01T23:03:14.889945 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-01T23:03:14.890125 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:03:14.898214 #6] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:03:14.898841 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:03:14.899239 #6] ERROR -- : Connection error while trying to join group `notifications_notifications`; retrying... +I, [2018-08-01T23:03:15.319473 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-01T23:03:15.319614 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:03:15.326344 #6] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:03:15.333068 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:03:15.333222 #6] ERROR -- : Connection error while trying to join group `notifications_course_change`; retrying... +W, [2018-08-01T23:03:15.881661 #6] WARN -- : Reached max fetcher queue size (100), sleeping 1s +W, [2018-08-01T23:03:15.882661 #6] WARN -- : Reached max fetcher queue size (100), sleeping 1s +I, [2018-08-01T23:03:15.902477 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-01T23:03:15.917506 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:03:15.998013 #6] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:03:15.998651 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:03:16.005947 #6] ERROR -- : Connection error while trying to join group `notifications_notifications`; retrying... +I, [2018-08-01T23:03:17.228914 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-01T23:03:17.248415 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-01T23:03:17.247020 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-01T23:03:17.269018 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:03:17.277309 #6] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:03:17.277842 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:03:17.277918 #6] ERROR -- : Connection error while trying to join group `notifications_notifications`; retrying... +W, [2018-08-01T23:03:16.995061 #6] WARN -- : Reached max fetcher queue size (100), sleeping 1s +W, [2018-08-01T23:03:17.247999 #6] WARN -- : Reached max fetcher queue size (100), sleeping 1s +E, [2018-08-01T23:03:17.304973 #6] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:03:17.305311 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:03:17.305399 #6] ERROR -- : Connection error while trying to join group `notifications_course_change`; retrying... +I, [2018-08-01T23:03:18.278253 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-01T23:03:18.278471 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:03:18.282583 #6] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:03:18.283070 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:03:18.283235 #6] ERROR -- : Connection error while trying to join group `notifications_notifications`; retrying... +I, [2018-08-01T23:03:18.306536 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-01T23:03:18.306685 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +W, [2018-08-01T23:03:18.312564 #6] WARN -- : Reached max fetcher queue size (100), sleeping 1s +W, [2018-08-01T23:03:18.313503 #6] WARN -- : Reached max fetcher queue size (100), sleeping 1s +E, [2018-08-01T23:03:18.318582 #6] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:03:18.318765 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:03:18.318915 #6] ERROR -- : Connection error while trying to join group `notifications_course_change`; retrying... +I, [2018-08-01T23:03:19.285289 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-01T23:03:19.285438 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +W, [2018-08-01T23:03:19.314625 #6] WARN -- : Reached max fetcher queue size (100), sleeping 1s +W, [2018-08-01T23:03:19.315481 #6] WARN -- : Reached max fetcher queue size (100), sleeping 1s +E, [2018-08-01T23:03:19.335589 #6] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:03:19.344186 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:03:19.344505 #6] ERROR -- : Connection error while trying to join group `notifications_notifications`; retrying... +I, [2018-08-01T23:03:19.322454 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-01T23:03:19.345394 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:03:19.370837 #6] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:03:19.371034 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:03:19.371080 #6] ERROR -- : Connection error while trying to join group `notifications_course_change`; retrying... +W, [2018-08-01T23:03:20.390283 #6] WARN -- : Reached max fetcher queue size (100), sleeping 1s +W, [2018-08-01T23:03:20.390546 #6] WARN -- : Reached max fetcher queue size (100), sleeping 1s +I, [2018-08-01T23:03:20.390738 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-01T23:03:20.391134 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-01T23:03:20.393206 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-01T23:03:20.394116 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:03:20.398458 #6] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:03:20.399235 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:03:20.399407 #6] ERROR -- : Connection error while trying to join group `notifications_notifications`; retrying... +E, [2018-08-01T23:03:20.405852 #6] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:03:20.406113 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:03:20.406175 #6] ERROR -- : Connection error while trying to join group `notifications_course_change`; retrying... +W, [2018-08-01T23:03:21.391042 #6] WARN -- : Reached max fetcher queue size (100), sleeping 1s +W, [2018-08-01T23:03:21.391181 #6] WARN -- : Reached max fetcher queue size (100), sleeping 1s +I, [2018-08-01T23:03:21.402865 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-01T23:03:21.403014 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-01T23:03:21.406462 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-01T23:03:21.406565 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:03:21.407803 #6] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:03:21.409329 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:03:21.409674 #6] ERROR -- : Connection error while trying to join group `notifications_notifications`; retrying... +E, [2018-08-01T23:03:21.420861 #6] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:03:21.421111 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:03:21.421159 #6] ERROR -- : Connection error while trying to join group `notifications_course_change`; retrying... +W, [2018-08-01T23:03:22.391793 #6] WARN -- : Reached max fetcher queue size (100), sleeping 1s +W, [2018-08-01T23:03:22.391943 #6] WARN -- : Reached max fetcher queue size (100), sleeping 1s +I, [2018-08-01T23:03:22.410257 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-01T23:03:22.410438 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-01T23:03:22.422236 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-01T23:03:22.423432 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:03:22.427203 #6] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:03:22.431674 #6] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:03:22.432023 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:03:22.432084 #6] ERROR -- : Connection error while trying to join group `notifications_course_change`; retrying... +E, [2018-08-01T23:03:22.432892 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:03:22.432994 #6] ERROR -- : Connection error while trying to join group `notifications_notifications`; retrying... +W, [2018-08-01T23:03:23.392664 #6] WARN -- : Reached max fetcher queue size (100), sleeping 1s +W, [2018-08-01T23:03:23.392859 #6] WARN -- : Reached max fetcher queue size (100), sleeping 1s +I, [2018-08-01T23:03:23.432432 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-01T23:03:23.432613 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:03:23.445819 #6] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:03:23.446133 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:03:23.446232 #6] ERROR -- : Connection error while trying to join group `notifications_course_change`; retrying... +I, [2018-08-01T23:03:23.446332 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-01T23:03:23.446378 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:03:23.453627 #6] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:03:23.453799 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:03:23.453881 #6] ERROR -- : Connection error while trying to join group `notifications_notifications`; retrying... +W, [2018-08-01T23:03:24.393533 #6] WARN -- : Reached max fetcher queue size (100), sleeping 1s +W, [2018-08-01T23:03:24.401140 #6] WARN -- : Reached max fetcher queue size (100), sleeping 1s +I, [2018-08-01T23:03:24.446930 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-01T23:03:24.447061 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-01T23:03:24.454204 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-01T23:03:24.455407 #6] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:03:24.456142 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:03:24.456593 #6] ERROR -- : Connection error while trying to join group `notifications_course_change`; retrying... +I, [2018-08-01T23:03:24.456764 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:03:24.463807 #6] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:03:24.464125 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:03:24.464331 #6] ERROR -- : Connection error while trying to join group `notifications_notifications`; retrying... +W, [2018-08-01T23:03:25.410170 #6] WARN -- : Reached max fetcher queue size (100), sleeping 1s +I, [2018-08-01T23:03:25.582394 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-01T23:03:25.582539 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-01T23:03:25.583662 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-01T23:03:25.585253 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +W, [2018-08-01T23:03:25.664066 #6] WARN -- : Reached max fetcher queue size (100), sleeping 1s +E, [2018-08-01T23:03:25.690906 #6] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:03:25.691437 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:03:25.693164 #6] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:03:25.693319 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:03:25.706135 #6] ERROR -- : Connection error while trying to join group `notifications_course_change`; retrying... +E, [2018-08-01T23:03:25.721559 #6] ERROR -- : Connection error while trying to join group `notifications_notifications`; retrying... +W, [2018-08-01T23:03:26.410829 #6] WARN -- : Reached max fetcher queue size (100), sleeping 1s +W, [2018-08-01T23:03:26.666700 #6] WARN -- : Reached max fetcher queue size (100), sleeping 1s +I, [2018-08-01T23:03:26.707831 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-01T23:03:26.708273 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-01T23:03:26.722538 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-01T23:03:26.722696 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:03:26.731075 #6] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:03:26.731276 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:03:26.732326 #6] ERROR -- : Connection error while trying to join group `notifications_course_change`; retrying... +E, [2018-08-01T23:03:26.735940 #6] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:03:26.736084 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:03:26.736151 #6] ERROR -- : Connection error while trying to join group `notifications_notifications`; retrying... +W, [2018-08-01T23:03:27.411716 #6] WARN -- : Reached max fetcher queue size (100), sleeping 1s +W, [2018-08-01T23:03:27.667676 #6] WARN -- : Reached max fetcher queue size (100), sleeping 1s +I, [2018-08-01T23:03:27.732843 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-01T23:03:27.733021 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-01T23:03:27.736428 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-01T23:03:27.736547 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:03:27.739602 #6] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:03:27.740483 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:03:27.740575 #6] ERROR -- : Connection error while trying to join group `notifications_course_change`; retrying... +E, [2018-08-01T23:03:27.741238 #6] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:03:27.741366 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:03:27.741407 #6] ERROR -- : Connection error while trying to join group `notifications_notifications`; retrying... +W, [2018-08-01T23:03:28.413574 #6] WARN -- : Reached max fetcher queue size (100), sleeping 1s +W, [2018-08-01T23:03:28.668061 #6] WARN -- : Reached max fetcher queue size (100), sleeping 1s +I, [2018-08-01T23:03:28.742250 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-01T23:03:28.742373 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-01T23:03:28.742511 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-01T23:03:28.742550 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:03:28.746711 #6] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:03:28.746893 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:03:28.746967 #6] ERROR -- : Connection error while trying to join group `notifications_notifications`; retrying... +E, [2018-08-01T23:03:28.747087 #6] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:03:28.747274 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:03:28.747376 #6] ERROR -- : Connection error while trying to join group `notifications_course_change`; retrying... +W, [2018-08-01T23:03:29.414253 #6] WARN -- : Reached max fetcher queue size (100), sleeping 1s +W, [2018-08-01T23:03:29.669894 #6] WARN -- : Reached max fetcher queue size (100), sleeping 1s +I, [2018-08-01T23:03:29.747713 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-01T23:03:29.747893 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-01T23:03:29.748114 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-01T23:03:29.756436 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:03:29.761634 #6] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:03:29.763026 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:03:29.763103 #6] ERROR -- : Connection error while trying to join group `notifications_notifications`; retrying... +E, [2018-08-01T23:03:29.767835 #6] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:03:29.769419 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:03:29.769992 #6] ERROR -- : Connection error while trying to join group `notifications_course_change`; retrying... +W, [2018-08-01T23:03:30.415079 #6] WARN -- : Reached max fetcher queue size (100), sleeping 1s +W, [2018-08-01T23:03:30.672910 #6] WARN -- : Reached max fetcher queue size (100), sleeping 1s +I, [2018-08-01T23:03:30.768950 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-01T23:03:30.772908 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-01T23:03:30.791834 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-01T23:03:30.792026 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:03:30.836381 #6] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:03:30.856202 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:03:30.856365 #6] ERROR -- : Connection error while trying to join group `notifications_course_change`; retrying... +E, [2018-08-01T23:03:30.868447 #6] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:03:30.869983 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:03:30.870095 #6] ERROR -- : Connection error while trying to join group `notifications_notifications`; retrying... +W, [2018-08-01T23:03:31.417352 #6] WARN -- : Reached max fetcher queue size (100), sleeping 1s +W, [2018-08-01T23:03:31.674356 #6] WARN -- : Reached max fetcher queue size (100), sleeping 1s +I, [2018-08-01T23:03:31.857425 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-01T23:03:31.857656 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:03:31.862331 #6] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:03:31.862869 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:03:31.862977 #6] ERROR -- : Connection error while trying to join group `notifications_course_change`; retrying... +I, [2018-08-01T23:03:31.870498 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-01T23:03:31.870648 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:03:31.878670 #6] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:03:31.878943 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:03:31.878995 #6] ERROR -- : Connection error while trying to join group `notifications_notifications`; retrying... +W, [2018-08-01T23:03:32.419989 #6] WARN -- : Reached max fetcher queue size (100), sleeping 1s +W, [2018-08-01T23:03:32.675296 #6] WARN -- : Reached max fetcher queue size (100), sleeping 1s +I, [2018-08-01T23:03:32.863984 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-01T23:03:32.864124 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:03:32.872784 #6] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:03:32.874708 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:03:32.875971 #6] ERROR -- : Connection error while trying to join group `notifications_course_change`; retrying... +I, [2018-08-01T23:03:32.879155 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-01T23:03:32.879301 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:03:32.886131 #6] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:03:32.886714 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:03:32.886778 #6] ERROR -- : Connection error while trying to join group `notifications_notifications`; retrying... +W, [2018-08-01T23:03:33.421175 #6] WARN -- : Reached max fetcher queue size (100), sleeping 1s +W, [2018-08-01T23:03:33.675961 #6] WARN -- : Reached max fetcher queue size (100), sleeping 1s +I, [2018-08-01T23:03:33.876827 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-01T23:03:33.876973 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-01T23:03:33.887116 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-01T23:03:33.887298 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:03:33.892432 #6] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:03:33.894187 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:03:33.894486 #6] ERROR -- : Connection error while trying to join group `notifications_notifications`; retrying... +E, [2018-08-01T23:03:33.894421 #6] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:03:33.894936 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:03:33.894983 #6] ERROR -- : Connection error while trying to join group `notifications_course_change`; retrying... +W, [2018-08-01T23:03:34.423232 #6] WARN -- : Reached max fetcher queue size (100), sleeping 1s +W, [2018-08-01T23:03:34.676298 #6] WARN -- : Reached max fetcher queue size (100), sleeping 1s +I, [2018-08-01T23:03:34.894756 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-01T23:03:34.894905 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-01T23:03:34.895355 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-01T23:03:34.895416 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:03:34.901615 #6] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:03:34.902046 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:03:34.902112 #6] ERROR -- : Connection error while trying to join group `notifications_notifications`; retrying... +E, [2018-08-01T23:03:34.902216 #6] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:03:34.902708 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:03:34.902778 #6] ERROR -- : Connection error while trying to join group `notifications_course_change`; retrying... +W, [2018-08-01T23:03:35.423821 #6] WARN -- : Reached max fetcher queue size (100), sleeping 1s +W, [2018-08-01T23:03:35.676996 #6] WARN -- : Reached max fetcher queue size (100), sleeping 1s +I, [2018-08-01T23:03:35.907465 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-01T23:03:35.909065 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-01T23:03:35.912165 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-01T23:03:35.912758 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:03:35.953006 #6] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:03:35.953495 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:03:35.958313 #6] ERROR -- : Connection error while trying to join group `notifications_notifications`; retrying... +E, [2018-08-01T23:03:35.953829 #6] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:03:35.958554 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:03:35.958621 #6] ERROR -- : Connection error while trying to join group `notifications_course_change`; retrying... +W, [2018-08-01T23:03:36.424567 #6] WARN -- : Reached max fetcher queue size (100), sleeping 1s +W, [2018-08-01T23:03:36.678290 #6] WARN -- : Reached max fetcher queue size (100), sleeping 1s +I, [2018-08-01T23:03:36.958642 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-01T23:03:36.958970 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-01T23:03:36.959267 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-01T23:03:36.959318 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:03:36.968551 #6] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:03:36.969411 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:03:36.969468 #6] ERROR -- : Connection error while trying to join group `notifications_notifications`; retrying... +E, [2018-08-01T23:03:36.969692 #6] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:03:36.969834 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:03:36.969939 #6] ERROR -- : Connection error while trying to join group `notifications_course_change`; retrying... +W, [2018-08-01T23:03:37.427165 #6] WARN -- : Reached max fetcher queue size (100), sleeping 1s +W, [2018-08-01T23:03:37.678805 #6] WARN -- : Reached max fetcher queue size (100), sleeping 1s +I, [2018-08-01T23:03:37.970350 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-01T23:03:37.970740 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-01T23:03:37.971159 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-01T23:03:37.971311 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:03:37.975765 #6] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:03:37.975977 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:03:37.976113 #6] ERROR -- : Connection error while trying to join group `notifications_course_change`; retrying... +E, [2018-08-01T23:03:37.986234 #6] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:03:37.986482 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:03:37.986583 #6] ERROR -- : Connection error while trying to join group `notifications_notifications`; retrying... +W, [2018-08-01T23:03:38.428377 #6] WARN -- : Reached max fetcher queue size (100), sleeping 1s +W, [2018-08-01T23:03:38.679293 #6] WARN -- : Reached max fetcher queue size (100), sleeping 1s +I, [2018-08-01T23:03:38.943056 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-01T23:03:38.943309 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-01T23:03:38.972694 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-01T23:03:38.972892 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:03:39.014691 #6] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:03:39.049141 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:03:39.049263 #6] ERROR -- : Connection error while trying to join group `notifications_notifications`; retrying... +E, [2018-08-01T23:03:39.049353 #6] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:03:39.049456 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:03:39.049724 #6] ERROR -- : Connection error while trying to join group `notifications_course_change`; retrying... +W, [2018-08-01T23:03:39.394840 #6] WARN -- : Reached max fetcher queue size (100), sleeping 1s +W, [2018-08-01T23:03:39.646083 #6] WARN -- : Reached max fetcher queue size (100), sleeping 1s +I, [2018-08-01T23:03:40.051501 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-01T23:03:40.051636 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-01T23:03:40.051928 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-01T23:03:40.052067 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:03:40.058741 #6] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:03:40.059000 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:03:40.059049 #6] ERROR -- : Connection error while trying to join group `notifications_course_change`; retrying... +E, [2018-08-01T23:03:40.059112 #6] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:03:40.059437 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:03:40.059489 #6] ERROR -- : Connection error while trying to join group `notifications_notifications`; retrying... +W, [2018-08-01T23:03:40.397273 #6] WARN -- : Reached max fetcher queue size (100), sleeping 1s +W, [2018-08-01T23:03:40.646689 #6] WARN -- : Reached max fetcher queue size (100), sleeping 1s +I, [2018-08-01T23:03:41.059558 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-01T23:03:41.059728 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-01T23:03:41.060074 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-01T23:03:41.060136 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:03:41.066299 #6] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:03:41.066689 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:03:41.066782 #6] ERROR -- : Connection error while trying to join group `notifications_course_change`; retrying... +E, [2018-08-01T23:03:41.066926 #6] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:03:41.067187 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:03:41.067246 #6] ERROR -- : Connection error while trying to join group `notifications_notifications`; retrying... +W, [2018-08-01T23:03:41.398139 #6] WARN -- : Reached max fetcher queue size (100), sleeping 1s +W, [2018-08-01T23:03:41.647001 #6] WARN -- : Reached max fetcher queue size (100), sleeping 1s +I, [2018-08-01T23:03:42.067195 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-01T23:03:42.067291 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-01T23:03:42.067705 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-01T23:03:42.067760 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:03:42.071357 #6] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:03:42.071881 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:03:42.071939 #6] ERROR -- : Connection error while trying to join group `notifications_course_change`; retrying... +E, [2018-08-01T23:03:42.075458 #6] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:03:42.075606 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:03:42.076762 #6] ERROR -- : Connection error while trying to join group `notifications_notifications`; retrying... +W, [2018-08-01T23:03:43.101256 #6] WARN -- : Reached max fetcher queue size (100), sleeping 1s +I, [2018-08-01T23:03:43.101382 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-01T23:03:43.101449 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +W, [2018-08-01T23:03:43.102366 #6] WARN -- : Reached max fetcher queue size (100), sleeping 1s +I, [2018-08-01T23:03:43.105393 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-01T23:03:43.105638 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:03:43.106145 #6] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:03:43.106302 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:03:43.106359 #6] ERROR -- : Connection error while trying to join group `notifications_course_change`; retrying... +E, [2018-08-01T23:03:43.111481 #6] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:03:43.111882 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:03:43.111998 #6] ERROR -- : Connection error while trying to join group `notifications_notifications`; retrying... +W, [2018-08-01T23:03:44.101652 #6] WARN -- : Reached max fetcher queue size (100), sleeping 1s +W, [2018-08-01T23:03:44.102654 #6] WARN -- : Reached max fetcher queue size (100), sleeping 1s +I, [2018-08-01T23:03:44.107292 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-01T23:03:44.107401 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-01T23:03:44.112757 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-01T23:03:44.113144 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:03:44.121692 #6] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:03:44.122605 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:03:44.122689 #6] ERROR -- : Connection error while trying to join group `notifications_course_change`; retrying... +E, [2018-08-01T23:03:44.124191 #6] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:03:44.124337 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:03:44.124404 #6] ERROR -- : Connection error while trying to join group `notifications_notifications`; retrying... +W, [2018-08-01T23:03:45.102061 #6] WARN -- : Reached max fetcher queue size (100), sleeping 1s +W, [2018-08-01T23:03:45.102910 #6] WARN -- : Reached max fetcher queue size (100), sleeping 1s +I, [2018-08-01T23:03:45.123037 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-01T23:03:45.123153 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-01T23:03:45.124625 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-01T23:03:45.124733 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:03:45.131043 #6] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:03:45.131157 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:03:45.131190 #6] ERROR -- : Connection error while trying to join group `notifications_notifications`; retrying... +E, [2018-08-01T23:03:45.139246 #6] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:03:45.139432 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:03:45.139485 #6] ERROR -- : Connection error while trying to join group `notifications_course_change`; retrying... +W, [2018-08-01T23:03:46.102715 #6] WARN -- : Reached max fetcher queue size (100), sleeping 1s +W, [2018-08-01T23:03:46.103274 #6] WARN -- : Reached max fetcher queue size (100), sleeping 1s +I, [2018-08-01T23:03:46.131596 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-01T23:03:46.131734 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:03:46.135771 #6] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:03:46.136092 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:03:46.136248 #6] ERROR -- : Connection error while trying to join group `notifications_notifications`; retrying... +I, [2018-08-01T23:03:46.139702 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-01T23:03:46.139872 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:03:46.144513 #6] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:03:46.144762 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:03:46.144811 #6] ERROR -- : Connection error while trying to join group `notifications_course_change`; retrying... +W, [2018-08-01T23:03:47.107774 #6] WARN -- : Reached max fetcher queue size (100), sleeping 1s +W, [2018-08-01T23:03:47.118714 #6] WARN -- : Reached max fetcher queue size (100), sleeping 1s +I, [2018-08-01T23:03:47.257874 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-01T23:03:47.258229 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-01T23:03:47.386933 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-01T23:03:47.388502 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:03:47.407074 #6] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:03:47.408381 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:03:47.408545 #6] ERROR -- : Connection error while trying to join group `notifications_course_change`; retrying... +E, [2018-08-01T23:03:47.413783 #6] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:03:47.414284 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:03:47.416163 #6] ERROR -- : Connection error while trying to join group `notifications_notifications`; retrying... +W, [2018-08-01T23:03:48.126327 #6] WARN -- : Reached max fetcher queue size (100), sleeping 1s +W, [2018-08-01T23:03:48.126461 #6] WARN -- : Reached max fetcher queue size (100), sleeping 1s +I, [2018-08-01T23:03:48.485864 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-01T23:03:48.531919 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-01T23:03:48.869928 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-01T23:03:48.874281 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:03:48.876314 #6] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:03:48.876579 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:03:48.876656 #6] ERROR -- : Connection error while trying to join group `notifications_course_change`; retrying... +E, [2018-08-01T23:03:48.897193 #6] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:03:48.897902 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:03:48.898050 #6] ERROR -- : Connection error while trying to join group `notifications_notifications`; retrying... +W, [2018-08-01T23:03:49.135269 #6] WARN -- : Reached max fetcher queue size (100), sleeping 1s +W, [2018-08-01T23:03:49.135449 #6] WARN -- : Reached max fetcher queue size (100), sleeping 1s +I, [2018-08-01T23:03:49.877010 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-01T23:03:49.877145 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:03:49.882356 #6] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:03:49.882646 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:03:49.882730 #6] ERROR -- : Connection error while trying to join group `notifications_course_change`; retrying... +I, [2018-08-01T23:03:49.904719 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-01T23:03:49.904832 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:03:49.907950 #6] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:03:49.908442 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:03:49.908502 #6] ERROR -- : Connection error while trying to join group `notifications_notifications`; retrying... +W, [2018-08-01T23:03:50.135604 #6] WARN -- : Reached max fetcher queue size (100), sleeping 1s +W, [2018-08-01T23:03:50.184573 #6] WARN -- : Reached max fetcher queue size (100), sleeping 1s +I, [2018-08-01T23:03:50.883855 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-01T23:03:50.883979 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:03:50.887830 #6] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:03:50.888086 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:03:50.888208 #6] ERROR -- : Connection error while trying to join group `notifications_course_change`; retrying... +I, [2018-08-01T23:03:50.908934 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-01T23:03:50.909060 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:03:50.912245 #6] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:03:50.912735 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:03:50.912788 #6] ERROR -- : Connection error while trying to join group `notifications_notifications`; retrying... +W, [2018-08-01T23:03:51.135991 #6] WARN -- : Reached max fetcher queue size (100), sleeping 1s +W, [2018-08-01T23:03:51.185084 #6] WARN -- : Reached max fetcher queue size (100), sleeping 1s +I, [2018-08-01T23:03:51.888906 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-01T23:03:51.889230 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:03:51.897473 #6] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:03:51.897952 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:03:51.898024 #6] ERROR -- : Connection error while trying to join group `notifications_course_change`; retrying... +I, [2018-08-01T23:03:51.913649 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-01T23:03:51.913780 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:03:51.918041 #6] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:03:51.918681 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:03:51.918792 #6] ERROR -- : Connection error while trying to join group `notifications_notifications`; retrying... +W, [2018-08-01T23:03:52.140143 #6] WARN -- : Reached max fetcher queue size (100), sleeping 1s +W, [2018-08-01T23:03:52.215575 #6] WARN -- : Reached max fetcher queue size (100), sleeping 1s +I, [2018-08-01T23:03:52.898364 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-01T23:03:52.898465 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:03:52.916734 #6] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:03:52.918511 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:03:52.919297 #6] ERROR -- : Connection error while trying to join group `notifications_course_change`; retrying... +I, [2018-08-01T23:03:52.919625 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-01T23:03:52.919708 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:03:52.926095 #6] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:03:52.926616 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:03:52.926716 #6] ERROR -- : Connection error while trying to join group `notifications_notifications`; retrying... +W, [2018-08-01T23:03:53.144863 #6] WARN -- : Reached max fetcher queue size (100), sleeping 1s +W, [2018-08-01T23:03:53.215975 #6] WARN -- : Reached max fetcher queue size (100), sleeping 1s +I, [2018-08-01T23:03:53.920205 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-01T23:03:53.920354 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-01T23:03:53.927305 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-01T23:03:53.927478 #6] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:03:53.927739 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:03:53.927799 #6] ERROR -- : Connection error while trying to join group `notifications_course_change`; retrying... +I, [2018-08-01T23:03:53.927885 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:03:53.931844 #6] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:03:53.932066 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:03:53.932149 #6] ERROR -- : Connection error while trying to join group `notifications_notifications`; retrying... +W, [2018-08-01T23:03:54.145864 #6] WARN -- : Reached max fetcher queue size (100), sleeping 1s +W, [2018-08-01T23:03:54.216368 #6] WARN -- : Reached max fetcher queue size (100), sleeping 1s +I, [2018-08-01T23:03:54.933454 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-01T23:03:54.933609 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-01T23:03:54.935045 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-01T23:03:54.935648 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:03:54.937778 #6] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:03:54.938312 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:03:54.938365 #6] ERROR -- : Connection error while trying to join group `notifications_notifications`; retrying... +E, [2018-08-01T23:03:54.939333 #6] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:03:54.939548 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:03:54.939584 #6] ERROR -- : Connection error while trying to join group `notifications_course_change`; retrying... +W, [2018-08-01T23:03:55.146672 #6] WARN -- : Reached max fetcher queue size (100), sleeping 1s +W, [2018-08-01T23:03:55.216700 #6] WARN -- : Reached max fetcher queue size (100), sleeping 1s +I, [2018-08-01T23:03:55.938887 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-01T23:03:55.939464 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-01T23:03:55.964225 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-01T23:03:56.037491 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:03:55.965243 #6] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:03:56.041877 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:03:56.041962 #6] ERROR -- : Connection error while trying to join group `notifications_notifications`; retrying... +E, [2018-08-01T23:03:56.069336 #6] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:03:56.070032 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:03:56.072170 #6] ERROR -- : Connection error while trying to join group `notifications_course_change`; retrying... +W, [2018-08-01T23:03:56.148796 #6] WARN -- : Reached max fetcher queue size (100), sleeping 1s +W, [2018-08-01T23:03:56.218540 #6] WARN -- : Reached max fetcher queue size (100), sleeping 1s +I, [2018-08-01T23:03:57.042619 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-01T23:03:57.042747 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:03:57.055903 #6] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:03:57.056082 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:03:57.056157 #6] ERROR -- : Connection error while trying to join group `notifications_notifications`; retrying... +I, [2018-08-01T23:03:57.072538 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-01T23:03:57.072667 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:03:57.076797 #6] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:03:57.077395 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:03:57.077479 #6] ERROR -- : Connection error while trying to join group `notifications_course_change`; retrying... +W, [2018-08-01T23:03:57.151983 #6] WARN -- : Reached max fetcher queue size (100), sleeping 1s +W, [2018-08-01T23:03:57.218919 #6] WARN -- : Reached max fetcher queue size (100), sleeping 1s +I, [2018-08-01T23:03:58.056373 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-01T23:03:58.056477 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:03:58.060412 #6] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:03:58.060917 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:03:58.060987 #6] ERROR -- : Connection error while trying to join group `notifications_notifications`; retrying... +I, [2018-08-01T23:03:58.077732 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-01T23:03:58.079602 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:03:58.091075 #6] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:03:58.091635 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:03:58.091853 #6] ERROR -- : Connection error while trying to join group `notifications_course_change`; retrying... +W, [2018-08-01T23:03:58.160360 #6] WARN -- : Reached max fetcher queue size (100), sleeping 1s +W, [2018-08-01T23:03:58.219129 #6] WARN -- : Reached max fetcher queue size (100), sleeping 1s +I, [2018-08-01T23:03:59.101144 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-01T23:03:59.485843 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-01T23:03:59.492931 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-01T23:03:59.493107 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +W, [2018-08-01T23:03:59.510328 #6] WARN -- : Reached max fetcher queue size (100), sleeping 1s +W, [2018-08-01T23:03:59.511947 #6] WARN -- : Reached max fetcher queue size (100), sleeping 1s +E, [2018-08-01T23:03:59.527893 #6] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:03:59.528104 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:03:59.528319 #6] ERROR -- : Connection error while trying to join group `notifications_notifications`; retrying... +E, [2018-08-01T23:03:59.545695 #6] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:03:59.545867 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:03:59.548590 #6] ERROR -- : Connection error while trying to join group `notifications_course_change`; retrying... +W, [2018-08-01T23:04:00.510647 #6] WARN -- : Reached max fetcher queue size (100), sleeping 1s +W, [2018-08-01T23:04:00.512586 #6] WARN -- : Reached max fetcher queue size (100), sleeping 1s +I, [2018-08-01T23:04:00.530294 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-01T23:04:00.530436 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:04:00.540723 #6] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:04:00.541193 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:04:00.541287 #6] ERROR -- : Connection error while trying to join group `notifications_notifications`; retrying... +I, [2018-08-01T23:04:00.548791 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-01T23:04:00.548991 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:04:00.558141 #6] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:04:00.558312 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:04:00.558364 #6] ERROR -- : Connection error while trying to join group `notifications_course_change`; retrying... +W, [2018-08-01T23:04:01.510925 #6] WARN -- : Reached max fetcher queue size (100), sleeping 1s +W, [2018-08-01T23:04:01.515779 #6] WARN -- : Reached max fetcher queue size (100), sleeping 1s +I, [2018-08-01T23:04:01.541559 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-01T23:04:01.541759 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:04:01.545749 #6] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:04:01.546532 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:04:01.546616 #6] ERROR -- : Connection error while trying to join group `notifications_notifications`; retrying... +I, [2018-08-01T23:04:01.558723 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-01T23:04:01.558862 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:04:01.565063 #6] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:04:01.565575 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:04:01.565742 #6] ERROR -- : Connection error while trying to join group `notifications_course_change`; retrying... +W, [2018-08-01T23:04:02.516297 #6] WARN -- : Reached max fetcher queue size (100), sleeping 1s +W, [2018-08-01T23:04:02.516612 #6] WARN -- : Reached max fetcher queue size (100), sleeping 1s +I, [2018-08-01T23:04:02.591113 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-01T23:04:02.591265 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-01T23:04:02.591752 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-01T23:04:02.591833 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:04:02.609992 #6] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:04:02.610259 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:04:02.610422 #6] ERROR -- : Connection error while trying to join group `notifications_notifications`; retrying... +E, [2018-08-01T23:04:02.610691 #6] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:04:02.611458 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:04:02.611540 #6] ERROR -- : Connection error while trying to join group `notifications_course_change`; retrying... +W, [2018-08-01T23:04:03.516992 #6] WARN -- : Reached max fetcher queue size (100), sleeping 1s +W, [2018-08-01T23:04:03.516722 #6] WARN -- : Reached max fetcher queue size (100), sleeping 1s +I, [2018-08-01T23:04:03.613766 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-01T23:04:03.614100 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-01T23:04:03.614464 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-01T23:04:03.614536 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:04:03.633727 #6] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:04:03.633916 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:04:03.633985 #6] ERROR -- : Connection error while trying to join group `notifications_course_change`; retrying... +E, [2018-08-01T23:04:03.634164 #6] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:04:03.634437 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-08-01T23:04:03.634480 #6] ERROR -- : Connection error while trying to join group `notifications_notifications`; retrying... +W, [2018-08-01T23:04:04.517489 #6] WARN -- : Reached max fetcher queue size (100), sleeping 1s +W, [2018-08-01T23:04:04.517591 #6] WARN -- : Reached max fetcher queue size (100), sleeping 1s +I, [2018-08-01T23:04:04.675994 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-01T23:04:04.676191 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-01T23:04:04.676769 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-01T23:04:04.676836 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +W, [2018-08-01T23:04:05.597309 #6] WARN -- : Reached max fetcher queue size (100), sleeping 1s +W, [2018-08-01T23:04:05.597545 #6] WARN -- : Reached max fetcher queue size (100), sleeping 1s +W, [2018-08-01T23:04:06.598265 #6] WARN -- : Reached max fetcher queue size (100), sleeping 1s +W, [2018-08-01T23:04:06.598464 #6] WARN -- : Reached max fetcher queue size (100), sleeping 1s +E, [2018-08-01T23:04:06.812609 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-01T23:04:06.812784 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-01T23:04:06.812911 #6] ERROR -- : Connection error while trying to join group `notifications_notifications`; retrying... +E, [2018-08-01T23:04:06.814492 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-01T23:04:06.814599 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-01T23:04:06.814631 #6] ERROR -- : Connection error while trying to join group `notifications_course_change`; retrying... +W, [2018-08-01T23:04:07.598815 #6] WARN -- : Reached max fetcher queue size (100), sleeping 1s +W, [2018-08-01T23:04:07.598925 #6] WARN -- : Reached max fetcher queue size (100), sleeping 1s +I, [2018-08-01T23:04:07.813131 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-01T23:04:07.813464 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-01T23:04:07.814818 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-01T23:04:07.814952 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:04:07.816869 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-01T23:04:07.816968 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-01T23:04:07.817011 #6] ERROR -- : Connection error while trying to join group `notifications_course_change`; retrying... +E, [2018-08-01T23:04:07.817269 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-01T23:04:07.817439 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-01T23:04:07.817480 #6] ERROR -- : Connection error while trying to join group `notifications_notifications`; retrying... +W, [2018-08-01T23:04:08.602088 #6] WARN -- : Reached max fetcher queue size (100), sleeping 1s +W, [2018-08-01T23:04:08.602570 #6] WARN -- : Reached max fetcher queue size (100), sleeping 1s +I, [2018-08-01T23:04:08.824532 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-01T23:04:08.824674 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-01T23:04:08.824962 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-01T23:04:08.825015 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:04:08.826402 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-01T23:04:08.826824 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-01T23:04:08.826963 #6] ERROR -- : Connection error while trying to join group `notifications_course_change`; retrying... +E, [2018-08-01T23:04:08.830671 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-01T23:04:08.831962 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-01T23:04:08.832140 #6] ERROR -- : Connection error while trying to join group `notifications_notifications`; retrying... +W, [2018-08-01T23:04:09.569592 #6] WARN -- : Reached max fetcher queue size (100), sleeping 1s +W, [2018-08-01T23:04:09.571201 #6] WARN -- : Reached max fetcher queue size (100), sleeping 1s +I, [2018-08-01T23:04:09.792515 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-01T23:04:09.793495 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:04:09.796986 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-01T23:04:09.797658 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-01T23:04:09.797813 #6] ERROR -- : Connection error while trying to join group `notifications_course_change`; retrying... +I, [2018-08-01T23:04:09.797909 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-01T23:04:09.797979 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:04:09.801988 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-01T23:04:09.802264 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-01T23:04:09.802316 #6] ERROR -- : Connection error while trying to join group `notifications_notifications`; retrying... +W, [2018-08-01T23:04:10.593509 #6] WARN -- : Reached max fetcher queue size (100), sleeping 1s +W, [2018-08-01T23:04:10.593643 #6] WARN -- : Reached max fetcher queue size (100), sleeping 1s +I, [2018-08-01T23:04:10.799106 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-01T23:04:10.800550 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-01T23:04:10.803632 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-01T23:04:10.804419 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:04:10.807752 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-01T23:04:10.808252 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-01T23:04:10.809082 #6] ERROR -- : Connection error while trying to join group `notifications_notifications`; retrying... +E, [2018-08-01T23:04:10.809417 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-01T23:04:10.809799 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-01T23:04:10.809891 #6] ERROR -- : Connection error while trying to join group `notifications_course_change`; retrying... +W, [2018-08-01T23:04:11.594526 #6] WARN -- : Reached max fetcher queue size (100), sleeping 1s +W, [2018-08-01T23:04:11.720821 #6] WARN -- : Reached max fetcher queue size (100), sleeping 1s +I, [2018-08-01T23:04:11.809571 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-01T23:04:11.809916 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-01T23:04:11.810772 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-01T23:04:11.810851 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:04:11.818693 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-01T23:04:11.819068 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-01T23:04:11.819401 #6] ERROR -- : Connection error while trying to join group `notifications_notifications`; retrying... +E, [2018-08-01T23:04:11.820407 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-01T23:04:11.820705 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-01T23:04:11.820759 #6] ERROR -- : Connection error while trying to join group `notifications_course_change`; retrying... +W, [2018-08-01T23:04:12.594992 #6] WARN -- : Reached max fetcher queue size (100), sleeping 1s +W, [2018-08-01T23:04:12.724341 #6] WARN -- : Reached max fetcher queue size (100), sleeping 1s +I, [2018-08-01T23:04:12.820150 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-01T23:04:12.820260 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-01T23:04:12.821055 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-01T23:04:12.821345 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:04:12.823367 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-01T23:04:12.823548 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-01T23:04:12.824642 #6] ERROR -- : Connection error while trying to join group `notifications_course_change`; retrying... +E, [2018-08-01T23:04:12.825174 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-01T23:04:12.825536 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-01T23:04:12.825647 #6] ERROR -- : Connection error while trying to join group `notifications_notifications`; retrying... +W, [2018-08-01T23:04:13.598182 #6] WARN -- : Reached max fetcher queue size (100), sleeping 1s +W, [2018-08-01T23:04:13.741052 #6] WARN -- : Reached max fetcher queue size (100), sleeping 1s +I, [2018-08-01T23:04:13.826514 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-01T23:04:13.826687 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-01T23:04:13.827523 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-01T23:04:13.828262 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:04:13.829915 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-01T23:04:13.831088 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-01T23:04:13.831153 #6] ERROR -- : Connection error while trying to join group `notifications_notifications`; retrying... +E, [2018-08-01T23:04:13.831904 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-01T23:04:13.832081 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-01T23:04:13.832214 #6] ERROR -- : Connection error while trying to join group `notifications_course_change`; retrying... +W, [2018-08-01T23:04:14.632988 #6] WARN -- : Reached max fetcher queue size (100), sleeping 1s +W, [2018-08-01T23:04:14.819171 #6] WARN -- : Reached max fetcher queue size (100), sleeping 1s +I, [2018-08-01T23:04:14.831539 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-01T23:04:14.831757 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-01T23:04:14.832563 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-01T23:04:14.832701 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +W, [2018-08-01T23:04:15.660859 #6] WARN -- : Reached max fetcher queue size (100), sleeping 1s +E, [2018-08-01T23:04:15.661378 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-01T23:04:15.661588 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-01T23:04:15.662347 #6] ERROR -- : Connection error while trying to join group `notifications_notifications`; retrying... +E, [2018-08-01T23:04:15.704985 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-01T23:04:15.711436 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-01T23:04:15.726610 #6] ERROR -- : Connection error while trying to join group `notifications_course_change`; retrying... +W, [2018-08-01T23:04:15.837189 #6] WARN -- : Reached max fetcher queue size (100), sleeping 1s +W, [2018-08-01T23:04:16.663362 #6] WARN -- : Reached max fetcher queue size (100), sleeping 1s +I, [2018-08-01T23:04:16.663518 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-01T23:04:16.663644 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:04:16.673260 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-01T23:04:16.674136 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-01T23:04:16.674214 #6] ERROR -- : Connection error while trying to join group `notifications_notifications`; retrying... +I, [2018-08-01T23:04:16.727180 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-01T23:04:16.727433 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:04:16.733362 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-01T23:04:16.735297 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-01T23:04:16.735877 #6] ERROR -- : Connection error while trying to join group `notifications_course_change`; retrying... +I, [2018-08-01T23:04:34.530133 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-01T23:04:34.530306 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-01T23:04:34.554689 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-01T23:04:34.557567 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:04:34.589218 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-01T23:04:34.589662 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-01T23:04:34.595169 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-01T23:04:34.595547 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-01T23:04:39.558719 #6] 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.13:9094 +I, [2018-08-01T23:04:39.559364 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-01T23:04:39.559408 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:04:39.565062 #6] 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.13:9094 +I, [2018-08-01T23:04:39.565706 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-01T23:04:39.565752 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:04:43.428168 #6] ERROR -- : No brokers in cluster +E, [2018-08-01T23:04:43.445575 #6] ERROR -- : No brokers in cluster +E, [2018-08-01T23:04:48.428632 #6] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: + +I, [2018-08-01T23:04:48.429302 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-01T23:04:48.429346 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:04:48.446413 #6] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: + +I, [2018-08-01T23:04:48.447254 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-01T23:04:48.447301 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-01T23:04:48.637168 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-01T23:04:48.637368 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-01T23:04:48.650811 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-01T23:04:48.651080 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-01T23:04:48.754293 #6] INFO -- : Will fetch at most 1048576 bytes at a time per partition from course_change +I, [2018-08-01T23:04:48.767860 #6] INFO -- : Will fetch at most 1048576 bytes at a time per partition from section_change +I, [2018-08-01T23:04:48.768102 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-01T23:04:48.769992 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-01T23:04:48.786243 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-01T23:04:48.786414 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:04:48.789064 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-01T23:04:48.789192 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:04:49.786763 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:04:49.789713 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:04:50.787849 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:04:50.790353 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:04:51.788573 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:04:51.790883 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:04:52.789331 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:04:52.791219 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:04:53.789838 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:04:53.792151 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:04:53.835536 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-7b09f079-2717-4402-a70a-252c217936c1` +I, [2018-08-01T23:04:53.835607 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-01T23:04:53.855923 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-135433f4-0558-48bc-b6f1-8635c0881b15` +I, [2018-08-01T23:04:53.856000 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-01T23:04:54.790832 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:04:54.792760 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:04:54.836113 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-01T23:04:54.841058 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-01T23:04:54.857240 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-01T23:04:54.860461 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-01T23:04:54.964403 #6] INFO -- : Partitions assigned for `section_change`: 0 +I, [2018-08-01T23:04:54.966110 #6] INFO -- : Partitions assigned for `course_change`: 0 +I, [2018-08-01T23:04:55.791371 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-01T23:04:55.791534 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-01T23:04:55.791587 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-01T23:04:55.794023 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-01T23:04:55.794206 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-01T23:04:55.794301 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-01T23:04:55.805043 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-01T23:04:55.806894 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +E, [2018-08-01T23:05:03.574771 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- ArgumentError: message is required. +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:13:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-01T23:05:03.578548 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-01T23:05:03.732198 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- ArgumentError: message is required. +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:13:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-01T23:05:03.732299 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-01T23:05:03.873813 #6] ERROR -- : Client fetch loop error: message is required. +I, [2018-08-01T23:05:03.875588 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-01T23:05:03.890113 #6] ERROR -- : Client fetch loop error: message is required. +I, [2018-08-01T23:05:03.891127 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-01T23:05:03.892165 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-08-01T23:05:03.901919 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-01T23:05:03.959218 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:05:04.036423 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:05:04.939410 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-01T23:05:05.067404 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-01T23:05:05.104920 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:05:05.105988 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:05:05.782562 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-f5d9c3a1-fe75-4fc9-8e66-6b3849b77155` +I, [2018-08-01T23:05:05.782735 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-01T23:05:05.814853 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-b8458bdd-c93b-477c-b210-44b59ecafce4` +I, [2018-08-01T23:05:05.815160 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-01T23:05:05.816916 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-01T23:05:05.817469 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-01T23:05:05.852475 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-01T23:05:05.852979 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-01T23:05:06.181624 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:05:06.186930 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:05:07.570691 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:05:07.571128 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:05:08.580710 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:05:08.597099 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:05:09.495832 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:05:09.497382 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:05:10.497187 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:05:10.500395 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:05:11.498001 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:05:11.502168 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:05:12.498702 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:05:12.502561 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:05:13.499783 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:05:13.503723 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:05:13.926251 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-01T23:05:14.000444 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-01T23:05:14.500259 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-01T23:05:14.504471 #6] INFO -- : Seeking section_change/0 to offset 0 +E, [2018-08-01T23:05:15.938922 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- ArgumentError: message is required. +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:13:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +E, [2018-08-01T23:05:16.003873 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- ArgumentError: message is required. +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:13:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-01T23:05:16.094003 #6] INFO -- : Leaving group `notifications_course_change` +I, [2018-08-01T23:05:16.095201 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-01T23:05:16.101996 #6] ERROR -- : Client fetch loop error: message is required. +I, [2018-08-01T23:05:16.103428 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-01T23:05:16.105886 #6] ERROR -- : Client fetch loop error: message is required. +I, [2018-08-01T23:05:16.106084 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-01T23:05:16.108049 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-08-01T23:05:16.110021 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-01T23:05:16.255403 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:05:16.969980 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:05:17.111788 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-01T23:05:17.115438 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-01T23:05:17.259276 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:05:17.430035 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-849c79e0-9f1e-425a-9a65-a87210481634` +I, [2018-08-01T23:05:17.430130 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-01T23:05:17.458465 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-01T23:05:17.461189 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-01T23:05:17.477715 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-aaf9a45e-cc10-4ea9-bd67-204b94577a68` +I, [2018-08-01T23:05:17.477796 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-01T23:05:17.557486 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-01T23:05:17.558051 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-01T23:05:17.971379 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:05:18.267804 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:05:18.974594 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:05:19.268501 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:05:19.975010 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:05:20.268945 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:05:20.975647 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:05:21.270574 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:05:21.976244 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:05:22.271396 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:05:22.977806 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:05:23.274766 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:05:23.978449 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:05:24.289742 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:05:24.988232 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:05:25.651304 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:05:26.529079 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:05:26.537079 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-01T23:05:26.658543 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:05:27.531656 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:05:27.643025 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-01T23:05:27.659802 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-01T23:05:28.751949 #6] INFO -- : Seeking section_change/0 to offset 0 +E, [2018-08-01T23:05:28.992389 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- ArgumentError: message is required. +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:13:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-01T23:05:29.068254 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-01T23:05:29.336924 #6] ERROR -- : Client fetch loop error: message is required. +I, [2018-08-01T23:05:29.337830 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-01T23:05:29.350045 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-01T23:05:29.436275 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-01T23:05:29.661477 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- ArgumentError: message is required. +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:13:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-01T23:05:29.661598 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-01T23:05:30.337655 #6] ERROR -- : Client fetch loop error: message is required. +I, [2018-08-01T23:05:30.338300 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-01T23:05:30.347323 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:05:30.350526 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-01T23:05:30.351998 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-01T23:05:30.394829 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-f678cdca-f7c6-4bdd-8c94-78ed4e5ca54a` +I, [2018-08-01T23:05:30.395060 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-01T23:05:30.436827 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:05:30.446722 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-01T23:05:30.446836 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-01T23:05:31.347829 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:05:31.352403 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-01T23:05:31.411103 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-70b59383-463e-42c1-b059-d3f9d54886aa` +I, [2018-08-01T23:05:31.411193 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-01T23:05:31.437252 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:05:31.458372 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-01T23:05:31.458486 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-01T23:05:32.350038 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:05:32.437776 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:05:33.351687 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:05:33.438586 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:05:34.356557 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:05:34.439858 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:05:35.357154 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:05:35.440429 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:05:36.358737 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:05:36.442235 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:05:37.359943 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:05:37.444568 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:05:38.361445 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:05:38.447661 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:05:39.394086 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:05:39.473675 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:05:40.418518 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:05:40.474276 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:05:40.580849 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-01T23:05:41.441345 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:05:41.475182 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-01T23:05:41.532795 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-01T23:05:42.442757 #6] INFO -- : Seeking section_change/0 to offset 0 +E, [2018-08-01T23:05:43.283155 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- ArgumentError: message is required. +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:13:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-01T23:05:43.283355 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-01T23:05:43.287906 #6] ERROR -- : Client fetch loop error: message is required. +I, [2018-08-01T23:05:43.289051 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-01T23:05:43.292578 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-01T23:05:43.406144 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-01T23:05:43.563992 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- ArgumentError: message is required. +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:13:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-01T23:05:43.564061 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-01T23:05:43.571699 #6] ERROR -- : Client fetch loop error: message is required. +I, [2018-08-01T23:05:43.571873 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-01T23:05:43.577658 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-01T23:05:43.668232 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:05:44.292954 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-01T23:05:44.301121 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-6e901109-cca0-42cb-bd17-43cee7da9afd` +I, [2018-08-01T23:05:44.304154 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-01T23:05:44.337489 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-01T23:05:44.337587 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-01T23:05:44.406684 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:05:44.578014 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-01T23:05:44.585865 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-c1eeeacc-2598-4750-a89a-65b3b7c98fad` +I, [2018-08-01T23:05:44.585916 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-01T23:05:44.591724 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-01T23:05:44.591981 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-01T23:05:44.669768 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:05:45.407906 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:05:45.671031 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:05:46.409075 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:05:46.671752 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:05:47.410515 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:05:47.682317 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:05:48.414660 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:05:48.688549 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:05:49.420239 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:05:49.710287 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:05:50.422788 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:05:50.713638 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:05:51.423378 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:05:51.714914 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:05:52.427629 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:05:52.734990 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:05:53.428239 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:05:53.736056 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:05:54.429243 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:05:54.470972 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-01T23:05:54.640869 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-01T23:05:54.737585 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-01T23:05:55.429572 #6] INFO -- : Seeking course_change/0 to offset 0 +E, [2018-08-01T23:05:56.517519 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- ArgumentError: message is required. +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:13:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-01T23:05:56.517777 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-01T23:05:56.526743 #6] ERROR -- : Client fetch loop error: message is required. +I, [2018-08-01T23:05:56.529509 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-01T23:05:56.544994 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-08-01T23:05:56.650340 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- ArgumentError: message is required. +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:13:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-01T23:05:56.652404 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-01T23:05:56.667847 #6] ERROR -- : Client fetch loop error: message is required. +I, [2018-08-01T23:05:56.670863 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-01T23:05:56.727735 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-01T23:05:56.887627 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:05:56.925938 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:05:57.545600 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-01T23:05:57.570313 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-46e56c26-43e1-4a47-a306-751d3bb57de0` +I, [2018-08-01T23:05:57.570387 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-01T23:05:57.581760 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-01T23:05:57.581918 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-01T23:05:57.728334 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-01T23:05:57.733693 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-0889e153-7a39-4863-84ae-534da3af27f8` +I, [2018-08-01T23:05:57.733833 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-01T23:05:57.738270 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-01T23:05:57.738356 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-01T23:05:57.889437 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:05:57.927752 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:05:58.890364 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:05:58.928284 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:05:59.890983 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:05:59.931798 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:06:00.891584 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:06:00.932709 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:06:01.892057 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:06:01.933323 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:06:02.892539 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:06:02.933760 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:06:03.893495 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:06:03.949063 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:06:04.894922 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:06:04.987326 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:06:05.896776 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:06:05.989097 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:06:06.912921 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:06:06.989474 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:06:07.680545 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-01T23:06:07.763188 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-01T23:06:07.964688 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:06:08.006799 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-01T23:06:08.966173 #6] INFO -- : Seeking section_change/0 to offset 0 +E, [2018-08-01T23:06:09.854865 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- ArgumentError: message is required. +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:13:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-01T23:06:09.855041 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-01T23:06:09.986615 #6] ERROR -- : Client fetch loop error: message is required. +I, [2018-08-01T23:06:09.987671 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-01T23:06:09.989659 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- ArgumentError: message is required. +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:13:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-01T23:06:10.004215 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-01T23:06:10.023619 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-08-01T23:06:10.033146 #6] ERROR -- : Client fetch loop error: message is required. +I, [2018-08-01T23:06:10.035845 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-01T23:06:10.039317 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-01T23:06:10.224216 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:06:10.349818 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:06:11.024482 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-01T23:06:11.037351 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-52722b9c-237a-4b9f-9e53-f26327d04f15` +I, [2018-08-01T23:06:11.037400 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-01T23:06:11.047050 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-01T23:06:11.048142 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-01T23:06:11.048279 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-01T23:06:11.071813 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-bf3e94f0-ddad-4c78-90e0-ab7ac2d17aed` +I, [2018-08-01T23:06:11.071879 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-01T23:06:11.082236 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-01T23:06:11.082330 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-01T23:06:11.224791 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:06:11.350998 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:06:12.225455 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:06:12.351699 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:06:13.229501 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:06:13.352062 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:06:14.230363 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:06:14.352559 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:06:15.231191 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:06:15.353030 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:06:16.231889 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:06:16.353733 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:06:17.241263 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:06:17.354649 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:06:18.241565 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:06:18.355087 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:06:19.242024 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:06:19.355443 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:06:20.242460 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:06:20.356225 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:06:21.100769 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-01T23:06:21.160704 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-01T23:06:21.243776 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-01T23:06:21.356871 #6] INFO -- : Seeking course_change/0 to offset 0 +E, [2018-08-01T23:06:23.104902 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- ArgumentError: message is required. +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:13:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-01T23:06:23.104969 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-01T23:06:23.114903 #6] ERROR -- : Client fetch loop error: message is required. +I, [2018-08-01T23:06:23.115589 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-01T23:06:23.118484 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-08-01T23:06:23.167389 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- ArgumentError: message is required. +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:13:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-01T23:06:23.176573 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-01T23:06:23.183753 #6] ERROR -- : Client fetch loop error: message is required. +I, [2018-08-01T23:06:23.184042 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-01T23:06:23.201988 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-01T23:06:23.231191 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:06:23.337500 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:06:24.119391 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-01T23:06:24.124971 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-3e152a4b-6915-4214-abbe-3ec3cfffdfe0` +I, [2018-08-01T23:06:24.125020 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-01T23:06:24.127666 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-01T23:06:24.127729 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-01T23:06:24.202454 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-01T23:06:24.206272 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-b612cb96-1c57-4e09-a4c7-a91009dfc271` +I, [2018-08-01T23:06:24.206330 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-01T23:06:24.209012 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-01T23:06:24.209094 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-01T23:06:24.231792 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:06:24.338075 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:06:25.232114 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:06:25.339641 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:06:26.232804 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:06:26.340588 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:06:27.233479 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:06:27.341418 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:06:28.236967 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:06:28.342195 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:06:29.237817 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:06:29.342733 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:06:30.238201 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:06:30.343433 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:06:31.240395 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:06:31.343953 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:06:32.240805 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:06:32.344540 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:06:33.241283 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:06:33.346269 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:06:34.189824 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-01T23:06:34.215781 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-01T23:06:34.417386 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-01T23:06:34.611295 #6] INFO -- : Seeking section_change/0 to offset 0 +E, [2018-08-01T23:06:36.366073 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- ArgumentError: message is required. +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:13:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-01T23:06:36.366211 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-01T23:06:36.416929 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- ArgumentError: message is required. +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:13:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-01T23:06:36.519779 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-01T23:06:37.229085 #6] ERROR -- : Client fetch loop error: message is required. +I, [2018-08-01T23:06:37.232310 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-01T23:06:37.234958 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-01T23:06:37.239603 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-01T23:06:37.336555 #6] ERROR -- : Client fetch loop error: message is required. +I, [2018-08-01T23:06:37.336821 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-01T23:06:37.344232 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-01T23:06:37.424714 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:06:38.235315 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-01T23:06:38.241114 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:06:38.245763 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-dbee68c5-9c29-4c8e-aad4-95f1bef9dcfd` +I, [2018-08-01T23:06:38.245861 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-01T23:06:38.251194 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-01T23:06:38.251293 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-01T23:06:38.345295 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-01T23:06:38.350765 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-1676807f-b344-4f34-9d41-860db8a7b7de` +I, [2018-08-01T23:06:38.350879 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-01T23:06:38.359054 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-01T23:06:38.359144 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-01T23:06:38.429245 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:06:39.198170 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:06:39.386232 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:06:40.198736 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:06:40.386631 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:06:41.199480 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:06:41.387084 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:06:42.200152 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:06:42.387452 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:06:43.200748 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:06:43.388206 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:06:44.202897 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:06:44.389322 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:06:45.204373 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:06:45.390002 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:06:46.204775 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:06:46.390479 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:06:47.206557 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:06:47.391143 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:06:48.207512 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:06:48.232185 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-01T23:06:48.322686 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-01T23:06:48.391620 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-01T23:06:49.208028 #6] INFO -- : Seeking section_change/0 to offset 0 +E, [2018-08-01T23:06:50.239506 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- ArgumentError: message is required. +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:13:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-01T23:06:50.239594 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-01T23:06:50.244314 #6] ERROR -- : Client fetch loop error: message is required. +I, [2018-08-01T23:06:50.246814 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-01T23:06:50.253561 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-01T23:06:50.267785 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-01T23:06:50.328890 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- ArgumentError: message is required. +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:13:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-01T23:06:50.328978 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-01T23:06:50.343716 #6] ERROR -- : Client fetch loop error: message is required. +I, [2018-08-01T23:06:50.344005 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-01T23:06:50.346998 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-01T23:06:50.479896 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:06:51.254335 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-01T23:06:51.268181 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:06:51.274138 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-2647a452-6daf-4d9d-baa7-60e3b90742c8` +I, [2018-08-01T23:06:51.274614 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-01T23:06:51.298940 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-01T23:06:51.299182 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-01T23:06:51.347232 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-01T23:06:51.358835 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-c7465c6b-5d8c-422b-87ed-a37e6e3537ac` +I, [2018-08-01T23:06:51.358913 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-01T23:06:51.363390 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-01T23:06:51.363482 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-01T23:06:51.480866 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:06:52.268728 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:06:52.481434 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:06:53.269704 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:06:53.481816 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:06:54.270462 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:06:54.482139 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:06:55.271163 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:06:55.482694 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:06:56.271782 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:06:56.483296 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:06:57.272214 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:06:57.484246 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:06:58.299929 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:06:58.486429 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:06:59.303259 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:06:59.486813 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:07:00.305825 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:07:00.487760 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:07:01.860249 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:07:01.860592 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:07:01.867745 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-01T23:07:01.881587 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-01T23:07:02.861143 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-01T23:07:02.863403 #6] INFO -- : Seeking section_change/0 to offset 0 +E, [2018-08-01T23:07:03.901558 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- ArgumentError: message is required. +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:13:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-01T23:07:03.906406 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-01T23:07:03.902618 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- ArgumentError: message is required. +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:13:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-01T23:07:03.906782 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-01T23:07:03.911784 #6] ERROR -- : Client fetch loop error: message is required. +I, [2018-08-01T23:07:03.912059 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-01T23:07:03.912528 #6] ERROR -- : Client fetch loop error: message is required. +I, [2018-08-01T23:07:03.912875 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-01T23:07:03.913288 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-08-01T23:07:03.914145 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-01T23:07:04.196152 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:07:04.234272 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:07:04.913836 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-01T23:07:04.914471 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-01T23:07:04.919979 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-7c040077-da70-425f-adf5-b1bb72ef0f9a` +I, [2018-08-01T23:07:04.920047 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-01T23:07:04.932331 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-67ed0216-ded3-4196-b828-e3d855f512a7` +I, [2018-08-01T23:07:04.932384 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-01T23:07:04.935756 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-01T23:07:04.935848 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-01T23:07:04.942438 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-01T23:07:04.942524 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-01T23:07:05.196448 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:07:05.234678 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:07:06.196873 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:07:06.235042 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:07:07.197329 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:07:07.235422 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:07:08.197750 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:07:08.236149 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:07:09.172026 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:07:09.210346 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:07:10.172578 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:07:10.211135 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:07:11.173094 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:07:11.211774 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:07:12.173518 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:07:12.212219 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:07:13.174217 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:07:13.212549 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:07:14.174608 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:07:14.212926 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:07:14.922189 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-01T23:07:14.922727 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-01T23:07:15.175141 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-01T23:07:15.213410 #6] INFO -- : Seeking section_change/0 to offset 0 +E, [2018-08-01T23:07:16.925115 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- ArgumentError: message is required. +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:13:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-01T23:07:16.927603 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-01T23:07:16.928545 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- ArgumentError: message is required. +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:13:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-01T23:07:16.928599 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-01T23:07:16.933568 #6] ERROR -- : Client fetch loop error: message is required. +I, [2018-08-01T23:07:16.936434 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-01T23:07:16.937104 #6] ERROR -- : Client fetch loop error: message is required. +I, [2018-08-01T23:07:16.937328 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-01T23:07:16.941414 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-08-01T23:07:16.941654 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-01T23:07:17.019855 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:07:17.042511 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:07:17.941703 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-01T23:07:17.942172 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-01T23:07:17.948024 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-942d4ca0-98f2-4499-b4a1-b3722ad86b3b` +I, [2018-08-01T23:07:17.948190 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-01T23:07:17.951486 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-1c0fb728-0bad-41f6-8832-cb1669dce82a` +I, [2018-08-01T23:07:17.951559 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-01T23:07:17.956452 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-01T23:07:17.956607 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-01T23:07:17.957525 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-01T23:07:17.957579 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-01T23:07:18.020270 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:07:18.043056 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:07:19.020697 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:07:19.043764 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:07:20.021094 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:07:20.044574 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:07:21.021499 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:07:21.045327 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:07:22.021864 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:07:22.046610 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:07:23.022174 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:07:23.046922 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:07:24.022819 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:07:24.047544 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:07:25.023385 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:07:25.048273 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:07:26.023731 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:07:26.049275 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:07:27.024548 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:07:27.050244 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:07:27.972536 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-01T23:07:27.973846 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-01T23:07:28.025425 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-01T23:07:28.052282 #6] INFO -- : Seeking course_change/0 to offset 0 +E, [2018-08-01T23:07:29.982674 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- ArgumentError: message is required. +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:13:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-01T23:07:29.985049 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-01T23:07:29.984977 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- ArgumentError: message is required. +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:13:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-01T23:07:29.985316 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-01T23:07:29.990690 #6] ERROR -- : Client fetch loop error: message is required. +I, [2018-08-01T23:07:29.990959 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-01T23:07:29.991376 #6] ERROR -- : Client fetch loop error: message is required. +I, [2018-08-01T23:07:29.991577 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-01T23:07:29.992514 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-08-01T23:07:29.992664 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-01T23:07:30.035957 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:07:30.057021 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:07:30.992837 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-01T23:07:30.993218 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-01T23:07:30.999481 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-9b573c52-4683-4d86-8dc9-18a50e91783e` +I, [2018-08-01T23:07:30.999549 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-01T23:07:31.001010 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-a176d48b-c534-4131-abe0-a37ab03ada15` +I, [2018-08-01T23:07:31.001056 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-01T23:07:31.004282 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-01T23:07:31.005105 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-01T23:07:31.006832 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-01T23:07:31.006891 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-01T23:07:31.036293 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:07:31.057648 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:07:32.037187 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:07:32.058856 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:07:33.037536 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:07:33.059488 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:07:34.038382 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:07:34.061817 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:07:35.039578 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:07:35.062983 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:07:36.040985 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:07:36.063406 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:07:37.041398 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:07:37.063790 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:07:38.041925 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:07:38.064830 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:07:39.059649 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:07:39.071677 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:07:40.026005 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:07:40.038367 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:07:40.980333 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-01T23:07:40.980627 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-01T23:07:41.026420 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-01T23:07:41.038636 #6] INFO -- : Seeking course_change/0 to offset 0 +E, [2018-08-01T23:07:42.984940 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- ArgumentError: message is required. +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:13:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-01T23:07:42.988909 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-01T23:07:42.991210 #6] ERROR -- : Client fetch loop error: message is required. +I, [2018-08-01T23:07:42.991464 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-01T23:07:42.992954 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- ArgumentError: message is required. +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:13:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-01T23:07:42.993026 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-01T23:07:42.996564 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-08-01T23:07:42.999150 #6] ERROR -- : Client fetch loop error: message is required. +I, [2018-08-01T23:07:42.999365 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-01T23:07:43.001523 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-01T23:07:43.186893 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:07:43.215825 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:07:43.996942 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-01T23:07:44.000555 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-0bc71d56-09d6-4aee-9356-8033b0b5db4d` +I, [2018-08-01T23:07:44.000630 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-01T23:07:44.001928 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-01T23:07:44.003650 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-01T23:07:44.003713 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-01T23:07:44.013837 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-adf0e264-05eb-4790-bcd2-0f7ff111934a` +I, [2018-08-01T23:07:44.013886 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-01T23:07:44.016364 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-01T23:07:44.016424 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-01T23:07:44.187346 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:07:44.216485 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:07:45.187813 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:07:45.217446 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:07:46.188303 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:07:46.217826 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:07:47.189163 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:07:47.218390 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:07:48.189879 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:07:48.219239 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:07:49.190945 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:07:49.219766 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:07:50.191604 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:07:50.220362 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:07:51.192248 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:07:51.221398 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:07:52.193129 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:07:52.221840 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:07:53.194993 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:07:53.222149 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:07:54.014212 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-01T23:07:54.023439 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-01T23:07:54.195922 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-01T23:07:54.222493 #6] INFO -- : Seeking course_change/0 to offset 0 +E, [2018-08-01T23:07:56.018105 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- ArgumentError: message is required. +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:13:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-01T23:07:56.020269 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-01T23:07:56.024435 #6] ERROR -- : Client fetch loop error: message is required. +I, [2018-08-01T23:07:56.031598 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-01T23:07:56.037785 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-08-01T23:07:56.040415 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- ArgumentError: message is required. +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:13:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-01T23:07:56.040474 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-01T23:07:56.045771 #6] ERROR -- : Client fetch loop error: message is required. +I, [2018-08-01T23:07:56.046024 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-01T23:07:56.048740 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-01T23:07:56.110075 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:07:56.260606 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:07:57.038218 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-01T23:07:57.043018 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-9d4466e9-0231-4ec0-b314-c88d4478edd9` +I, [2018-08-01T23:07:57.043064 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-01T23:07:57.044617 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-01T23:07:57.044707 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-01T23:07:57.048993 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-01T23:07:57.054087 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-5d2418eb-2c70-4f75-b355-5e42d0cbba0c` +I, [2018-08-01T23:07:57.054141 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-01T23:07:57.058573 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-01T23:07:57.058634 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-01T23:07:57.110562 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:07:57.261427 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:07:58.111692 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:07:58.261798 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:07:59.112440 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:07:59.262541 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:08:00.114215 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:08:00.263239 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:08:01.115235 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:08:01.264151 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:08:02.116728 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:08:02.264843 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:08:03.117014 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:08:03.265923 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:08:04.117755 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:08:04.267277 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:08:05.118123 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:08:05.267744 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:08:06.118559 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:08:06.268412 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:08:07.055896 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-01T23:08:07.098794 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-01T23:08:07.119273 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-01T23:08:07.268923 #6] INFO -- : Seeking course_change/0 to offset 0 +E, [2018-08-01T23:08:09.058044 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- ArgumentError: message is required. +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:13:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-01T23:08:09.059972 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-01T23:08:09.067817 #6] ERROR -- : Client fetch loop error: message is required. +I, [2018-08-01T23:08:09.068089 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-01T23:08:09.071674 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-08-01T23:08:09.066149 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- ArgumentError: message is required. +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:13:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-01T23:08:09.066236 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-01T23:08:09.069765 #6] ERROR -- : Client fetch loop error: message is required. +I, [2018-08-01T23:08:09.070028 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-01T23:08:09.071324 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-01T23:08:09.075780 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:08:09.698725 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:08:10.037354 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-01T23:08:10.040241 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-b4168334-d9be-4250-a259-3b095aaacd2f` +I, [2018-08-01T23:08:10.040299 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-01T23:08:10.043556 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-01T23:08:10.043639 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-01T23:08:10.072247 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-01T23:08:10.076618 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-d49903a5-5870-4a97-a421-72e560f0281d` +I, [2018-08-01T23:08:10.076677 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-01T23:08:10.077116 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:08:10.080501 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-01T23:08:10.080582 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-01T23:08:10.699351 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:08:11.077649 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:08:11.699792 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:08:12.078096 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:08:12.700318 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:08:13.080359 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:08:13.702070 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:08:14.080671 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:08:14.702549 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:08:15.081035 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:08:15.704621 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:08:16.089067 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:08:16.705426 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:08:17.089512 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:08:17.705909 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:08:18.090355 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:08:18.707384 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:08:19.090877 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:08:19.708103 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:08:20.052705 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-01T23:08:20.091186 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-01T23:08:20.095327 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-01T23:08:20.708552 #6] INFO -- : Seeking section_change/0 to offset 0 +E, [2018-08-01T23:08:22.055195 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- ArgumentError: message is required. +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:13:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-01T23:08:22.057626 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-01T23:08:22.060819 #6] ERROR -- : Client fetch loop error: message is required. +I, [2018-08-01T23:08:22.061080 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-01T23:08:22.068941 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-01T23:08:22.074693 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-01T23:08:22.111447 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- ArgumentError: message is required. +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:13:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-01T23:08:22.111531 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-01T23:08:22.117027 #6] ERROR -- : Client fetch loop error: message is required. +I, [2018-08-01T23:08:22.117296 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-01T23:08:22.118309 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-01T23:08:22.340252 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:08:23.069228 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-01T23:08:23.073323 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-797c82eb-bff2-448c-878d-1704fa6cb090` +I, [2018-08-01T23:08:23.073369 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-01T23:08:23.075110 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:08:23.075294 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-01T23:08:23.075337 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-01T23:08:23.119292 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-01T23:08:23.125371 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-be30f0de-5aab-4cdc-a4dd-fc7b4001a28f` +I, [2018-08-01T23:08:23.125422 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-01T23:08:23.127795 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-01T23:08:23.128041 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-01T23:08:23.340704 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:08:24.075489 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:08:24.341123 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:08:25.075918 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:08:25.342362 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:08:26.076310 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:08:26.342851 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:08:27.077234 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:08:27.343484 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:08:28.077750 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:08:28.344019 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:08:29.080080 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:08:29.344956 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:08:30.082261 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:08:30.345351 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:08:31.091907 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:08:31.345904 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:08:32.093104 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:08:32.346644 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:08:33.092498 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-01T23:08:33.093625 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:08:33.136540 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-01T23:08:33.347147 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-01T23:08:34.094349 #6] INFO -- : Seeking course_change/0 to offset 0 +E, [2018-08-01T23:08:35.095743 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- ArgumentError: message is required. +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:13:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-01T23:08:35.097973 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-01T23:08:35.101340 #6] ERROR -- : Client fetch loop error: message is required. +I, [2018-08-01T23:08:35.101582 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-01T23:08:35.103132 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-08-01T23:08:35.139641 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- ArgumentError: message is required. +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:13:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-01T23:08:35.139695 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-01T23:08:35.145426 #6] ERROR -- : Client fetch loop error: message is required. +I, [2018-08-01T23:08:35.145623 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-01T23:08:35.147664 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-01T23:08:35.375653 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:08:35.413367 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:08:36.103732 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-01T23:08:36.106997 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-69bdc880-5f52-4b87-bd67-e8728b6d3e3d` +I, [2018-08-01T23:08:36.107043 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-01T23:08:36.109124 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-01T23:08:36.109199 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-01T23:08:36.148647 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-01T23:08:36.151666 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-d85470a5-9e09-42b0-927d-d0c94716559a` +I, [2018-08-01T23:08:36.151711 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-01T23:08:36.154103 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-01T23:08:36.154164 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-01T23:08:36.375956 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:08:36.413793 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:08:37.376554 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:08:37.414681 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:08:38.377060 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:08:38.416882 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:08:39.344734 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:08:39.384206 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:08:40.345374 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:08:40.385333 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:08:41.346141 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:08:41.386935 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:08:42.346479 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:08:42.389466 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:08:43.347338 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:08:43.390008 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:08:44.349583 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:08:44.397752 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:08:45.350192 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:08:45.398451 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:08:46.112764 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-01T23:08:46.167283 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-01T23:08:46.358823 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-01T23:08:46.399973 #6] INFO -- : Seeking course_change/0 to offset 0 +E, [2018-08-01T23:08:48.116824 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- ArgumentError: message is required. +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:13:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-01T23:08:48.123957 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-01T23:08:48.131079 #6] ERROR -- : Client fetch loop error: message is required. +I, [2018-08-01T23:08:48.131271 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-01T23:08:48.131991 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-08-01T23:08:48.173017 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- ArgumentError: message is required. +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:13:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-01T23:08:48.173078 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-01T23:08:48.175388 #6] ERROR -- : Client fetch loop error: message is required. +I, [2018-08-01T23:08:48.175571 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-01T23:08:48.176310 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-01T23:08:48.189498 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:08:48.205674 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:08:49.133086 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-01T23:08:49.139221 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-10ef9686-45df-4b3b-af6e-f3fda446f12c` +I, [2018-08-01T23:08:49.139287 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-01T23:08:49.142557 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-01T23:08:49.142620 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-01T23:08:49.177124 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-01T23:08:49.180481 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-485b40e4-e5c4-4d1e-a6f4-4c804bfe6392` +I, [2018-08-01T23:08:49.180527 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-01T23:08:49.182549 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-01T23:08:49.182791 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-01T23:08:49.189956 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:08:49.207366 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:08:50.190345 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:08:50.208143 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:08:51.190953 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:08:51.208499 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:08:52.192973 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:08:52.209097 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:08:53.195084 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:08:53.210138 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:08:54.195503 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:08:54.213839 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:08:55.200188 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:08:55.214753 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:08:56.201243 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:08:56.215517 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:08:57.201550 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:08:57.216505 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:08:58.223986 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:08:58.224625 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:08:59.156456 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-01T23:08:59.189718 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-01T23:08:59.224927 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-01T23:08:59.225518 #6] INFO -- : Seeking section_change/0 to offset 0 +E, [2018-08-01T23:09:01.166756 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- ArgumentError: message is required. +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:13:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-01T23:09:45.942486 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-01T23:09:45.942558 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-01T23:09:45.940306 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-01T23:09:45.958972 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:09:45.960365 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +E, [2018-08-01T23:09:45.960471 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +E, [2018-08-01T23:09:45.961253 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +E, [2018-08-01T23:09:45.961368 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +E, [2018-08-01T23:09:50.961182 #6] 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 +E, [2018-08-01T23:09:50.963280 #6] 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-08-01T23:09:50.998743 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-01T23:09:50.998813 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-01T23:09:51.006992 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-01T23:09:51.007091 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:09:51.016926 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +E, [2018-08-01T23:09:51.017028 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +E, [2018-08-01T23:09:51.026398 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +E, [2018-08-01T23:09:51.026505 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +E, [2018-08-01T23:09:56.018472 #6] 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-08-01T23:09:56.021154 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-01T23:09:56.021223 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:09:56.023084 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +E, [2018-08-01T23:09:56.023230 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +E, [2018-08-01T23:09:56.027169 #6] 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-08-01T23:09:56.029036 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-01T23:09:56.029107 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:09:56.033147 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +E, [2018-08-01T23:09:56.033314 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +E, [2018-08-01T23:10:01.023614 #6] 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-08-01T23:10:01.024833 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-01T23:10:01.024895 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:10:01.033765 #6] 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-08-01T23:10:01.034810 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-01T23:10:01.034870 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:10:01.760911 #6] ERROR -- : No brokers in cluster +E, [2018-08-01T23:10:01.790091 #6] ERROR -- : No brokers in cluster +E, [2018-08-01T23:10:06.761601 #6] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: + +I, [2018-08-01T23:10:06.763727 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-01T23:10:06.763850 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-01T23:10:06.769740 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-01T23:10:06.770091 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-01T23:10:06.790505 #6] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: + +I, [2018-08-01T23:10:06.791376 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-01T23:10:06.791427 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-01T23:10:06.811303 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-01T23:10:06.811459 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-01T23:10:06.866622 #6] INFO -- : Will fetch at most 1048576 bytes at a time per partition from section_change +I, [2018-08-01T23:10:06.866813 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-01T23:10:06.871961 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-01T23:10:06.872077 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:10:06.892344 #6] INFO -- : Will fetch at most 1048576 bytes at a time per partition from course_change +I, [2018-08-01T23:10:06.892518 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-01T23:10:06.901362 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-01T23:10:06.901469 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:10:06.935493 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-83bf4019-02ac-48d6-bba7-db3590cce3c5` +I, [2018-08-01T23:10:06.935564 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-01T23:10:06.991223 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-569a4d24-55a0-45a0-bae0-3f1d8e38a339` +I, [2018-08-01T23:10:06.991366 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-01T23:10:07.325054 #6] INFO -- : Partitions assigned for `section_change`: 0 +I, [2018-08-01T23:10:07.348092 #6] INFO -- : Partitions assigned for `course_change`: 0 +I, [2018-08-01T23:10:07.918995 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-01T23:10:07.919159 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-01T23:10:07.919237 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-01T23:10:07.919595 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-01T23:10:07.919666 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-01T23:10:07.919694 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-01T23:10:07.950138 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-01T23:10:07.950886 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +E, [2018-08-01T23:10:09.387712 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- ArgumentError: message is required. +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:13:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-01T23:10:09.392500 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-01T23:10:09.387983 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- ArgumentError: message is required. +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:13:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-01T23:10:09.421533 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-01T23:10:09.462167 #6] ERROR -- : Client fetch loop error: message is required. +I, [2018-08-01T23:10:09.462508 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-01T23:10:09.465251 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-08-01T23:10:09.476084 #6] ERROR -- : Client fetch loop error: message is required. +I, [2018-08-01T23:10:09.476303 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-01T23:10:09.491043 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-01T23:10:10.279565 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:10:10.348613 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:10:10.466018 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-01T23:10:10.492665 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-01T23:10:10.501758 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-96c022b6-90b6-4095-9c7b-96f7b363708b` +I, [2018-08-01T23:10:10.501842 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-01T23:10:10.512739 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-01T23:10:10.512848 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-01T23:10:10.513643 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-c2d2c25d-1389-4d9d-806b-42282bdd5a86` +I, [2018-08-01T23:10:10.513686 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-01T23:10:10.546420 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-01T23:10:10.546741 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-01T23:10:11.280591 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:10:11.349129 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:10:12.280901 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:10:12.349668 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:10:13.281778 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:10:13.350139 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:10:14.282284 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:10:14.351257 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:10:15.283424 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:10:15.365227 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:10:16.285565 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:10:16.369242 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:10:17.286494 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:10:17.370620 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:10:18.287183 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:10:18.371442 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:10:19.287541 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:10:19.371854 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:10:20.288633 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:10:20.373502 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:10:20.542570 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-01T23:10:20.563848 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-01T23:10:21.288921 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-01T23:10:21.373923 #6] INFO -- : Seeking section_change/0 to offset 0 +E, [2018-08-01T23:10:22.547422 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- ArgumentError: message is required. +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:13:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-01T23:10:22.551383 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-01T23:10:22.572198 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- ArgumentError: message is required. +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:13:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-01T23:10:22.572295 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-01T23:10:22.577521 #6] ERROR -- : Client fetch loop error: message is required. +I, [2018-08-01T23:10:22.577786 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-01T23:10:22.581236 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-08-01T23:10:22.582812 #6] ERROR -- : Client fetch loop error: message is required. +I, [2018-08-01T23:10:22.583058 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-01T23:10:22.586504 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-01T23:10:23.334716 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:10:23.451193 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:10:23.581727 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-01T23:10:23.587248 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-6e832f68-6eb7-47b5-84a6-14768cf983ca` +I, [2018-08-01T23:10:23.587306 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-01T23:10:23.588012 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-01T23:10:23.594883 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-01T23:10:23.594968 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-01T23:10:23.617017 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-17eedb8a-0dc9-482d-8db1-bfc175734d05` +I, [2018-08-01T23:10:23.617087 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-01T23:10:23.631084 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-01T23:10:23.631175 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-01T23:10:24.335803 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:10:24.451601 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:10:25.336128 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:10:25.452082 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:10:26.337170 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:10:26.452575 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:10:27.337785 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:10:27.453384 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:10:28.338738 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:10:28.454006 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:10:29.339456 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:10:29.454461 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:10:30.341614 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:10:30.455003 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:10:31.342962 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:10:31.455453 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:10:32.346172 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:10:32.456363 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:10:33.347052 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:10:33.457127 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:10:33.606379 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-01T23:10:33.638906 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-01T23:10:34.348094 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-01T23:10:34.458301 #6] INFO -- : Seeking section_change/0 to offset 0 +E, [2018-08-01T23:10:35.612173 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- ArgumentError: message is required. +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:13:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-01T23:10:35.615145 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-01T23:10:35.624133 #6] ERROR -- : Client fetch loop error: message is required. +I, [2018-08-01T23:10:35.624569 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-01T23:10:35.627391 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-08-01T23:10:35.705975 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- ArgumentError: message is required. +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:13:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-01T23:10:35.706069 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-01T23:10:35.715794 #6] ERROR -- : Client fetch loop error: message is required. +I, [2018-08-01T23:10:35.716015 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-01T23:10:35.717513 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-01T23:10:36.376245 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:10:36.507303 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:10:36.632498 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-01T23:10:36.646832 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-01f592b7-9b4d-4c47-9a22-7c17646e916f` +I, [2018-08-01T23:10:36.646889 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-01T23:10:36.649121 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-01T23:10:36.649202 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-01T23:10:36.717864 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-01T23:10:36.722992 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-1c915bd5-7ed3-4a84-be2e-883b2d9c1f35` +I, [2018-08-01T23:10:36.723051 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-01T23:10:36.744447 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-01T23:10:36.745015 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-01T23:10:37.376654 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:10:37.507813 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:10:38.378626 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:10:38.508737 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:10:39.996699 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:10:40.033220 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:10:41.003160 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:10:41.033936 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:10:42.007287 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:10:42.080731 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:10:43.009060 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:10:43.081455 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:10:44.018665 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:10:44.082073 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:10:45.019454 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:10:45.082827 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:10:46.026687 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:10:46.083187 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:10:46.787949 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-01T23:10:46.790742 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-01T23:10:47.027538 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-01T23:10:47.083484 #6] INFO -- : Seeking course_change/0 to offset 0 +E, [2018-08-01T23:10:48.853774 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- ArgumentError: message is required. +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:13:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-01T23:10:48.908894 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-01T23:10:48.912686 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- ArgumentError: message is required. +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:13:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-01T23:10:48.913173 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-01T23:10:48.946350 #6] ERROR -- : Client fetch loop error: message is required. +I, [2018-08-01T23:10:48.946690 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-01T23:10:48.950052 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-08-01T23:10:48.952222 #6] ERROR -- : Client fetch loop error: message is required. +I, [2018-08-01T23:10:48.952505 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-01T23:10:48.961881 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-01T23:10:48.965285 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:10:49.630647 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:10:49.950472 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-01T23:10:49.962412 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-01T23:10:49.963459 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-e781f45c-3667-432b-bc62-59d441ba409f` +I, [2018-08-01T23:10:49.963514 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-01T23:10:49.965802 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:10:49.968000 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-5542315f-7fb5-4912-8116-028b1c6854a3` +I, [2018-08-01T23:10:49.968044 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-01T23:10:49.976531 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-01T23:10:49.976609 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-01T23:10:49.981464 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-01T23:10:49.981536 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-01T23:10:50.631375 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:10:50.966283 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:10:51.632051 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:10:51.967712 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:10:52.633254 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:10:52.968318 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:10:53.633767 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:10:53.969921 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:10:54.634100 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:10:54.970383 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:10:55.634410 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:10:55.971334 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:10:56.634806 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:10:56.971974 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:10:57.635130 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:10:57.972978 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:10:58.635455 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:10:58.974567 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:10:59.636238 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:10:59.975041 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:10:59.990042 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-01T23:10:59.994571 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-01T23:11:00.637490 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-01T23:11:00.975838 #6] INFO -- : Seeking section_change/0 to offset 0 +E, [2018-08-01T23:11:01.994874 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- ArgumentError: message is required. +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:13:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-01T23:11:01.997028 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-01T23:11:02.005941 #6] ERROR -- : Client fetch loop error: message is required. +I, [2018-08-01T23:11:02.006164 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-01T23:11:02.008989 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- ArgumentError: message is required. +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:13:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-01T23:11:02.009041 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-01T23:11:02.009304 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-08-01T23:11:02.016131 #6] ERROR -- : Client fetch loop error: message is required. +I, [2018-08-01T23:11:02.016292 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-01T23:11:02.018442 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-01T23:11:02.127955 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:11:02.143816 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:11:03.009648 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-01T23:11:03.014900 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-e80407ed-7086-4b47-ace8-02b34ce98ce6` +I, [2018-08-01T23:11:03.014959 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-01T23:11:03.018047 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-01T23:11:03.018149 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-01T23:11:03.018758 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-01T23:11:03.039360 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-121be448-c50e-4656-a42f-76236d510fad` +I, [2018-08-01T23:11:03.039417 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-01T23:11:03.048762 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-01T23:11:03.049214 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-01T23:11:03.138762 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:11:03.144453 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:11:04.139187 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:11:04.144891 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:11:05.139812 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:11:05.145638 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:11:06.140851 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:11:06.146102 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:11:07.141579 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:11:07.146504 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:11:08.153273 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:11:08.153626 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:11:09.117954 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:11:09.118174 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:11:10.118442 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:11:10.118632 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:11:11.118927 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:11:11.119079 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:11:12.119498 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:11:12.119779 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:11:12.991782 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-01T23:11:13.022984 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-01T23:11:13.120009 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-01T23:11:13.120905 #6] INFO -- : Seeking course_change/0 to offset 0 +E, [2018-08-01T23:11:14.996510 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- ArgumentError: message is required. +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:13:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-01T23:13:22.453093 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-01T23:13:22.453168 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-01T23:13:22.455232 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-01T23:13:22.455340 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:13:22.460267 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-01T23:13:22.461562 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-01T23:13:22.465886 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-01T23:13:22.466039 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-01T23:13:27.468913 #6] 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.13:9094 +I, [2018-08-01T23:13:27.471110 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-01T23:13:27.471250 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:13:27.473037 #6] 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.13:9094 +I, [2018-08-01T23:13:27.474739 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-01T23:13:27.474816 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:13:27.496054 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-01T23:13:27.496221 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-01T23:13:27.496392 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-01T23:13:27.496467 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-01T23:13:32.497052 #6] 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.13:9094 +I, [2018-08-01T23:13:32.499173 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-01T23:13:32.499228 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:13:32.501228 #6] 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.13:9094 +I, [2018-08-01T23:13:32.504319 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-01T23:13:32.504385 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:13:32.508540 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-01T23:13:32.509966 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-01T23:13:32.515147 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-01T23:13:32.515330 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-01T23:13:37.516752 #6] 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.13:9094 +E, [2018-08-01T23:13:37.518935 #6] 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.13:9094 +I, [2018-08-01T23:13:37.523233 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-01T23:13:37.523787 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:13:37.527848 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-01T23:13:37.528069 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +I, [2018-08-01T23:13:37.528600 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-01T23:13:37.528651 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:13:37.536442 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-01T23:13:37.536832 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-01T23:13:42.497301 #6] 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.13:9094 +I, [2018-08-01T23:13:42.498055 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-01T23:13:42.498125 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:13:42.506187 #6] 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.13:9094 +I, [2018-08-01T23:13:42.507124 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-01T23:13:42.507195 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-01T23:13:42.900971 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-01T23:13:42.901201 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-01T23:13:42.970757 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-01T23:13:42.970929 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-01T23:13:43.000475 #6] INFO -- : Will fetch at most 1048576 bytes at a time per partition from section_change +I, [2018-08-01T23:13:43.000694 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-01T23:13:43.017366 #6] INFO -- : Will fetch at most 1048576 bytes at a time per partition from course_change +I, [2018-08-01T23:13:43.017530 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-01T23:13:43.033731 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-01T23:13:43.033911 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:13:43.073506 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-01T23:13:43.073639 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:13:44.034599 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:13:44.074614 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:13:45.036345 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:13:45.075107 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:13:46.036753 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:13:46.075528 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:13:47.037433 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:13:47.077086 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:13:48.046930 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:13:48.078305 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:13:49.047860 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:13:49.079322 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:13:50.048267 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:13:50.079806 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:13:50.095276 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-2aec9ab3-edfa-4dd4-a224-6cdc67d368c4` +I, [2018-08-01T23:13:50.095342 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-01T23:13:50.127288 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-499eaaf2-fe61-49e4-ac42-80215f53a44c` +I, [2018-08-01T23:13:50.127343 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-01T23:13:51.051581 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:13:51.095997 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:13:51.096408 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-01T23:13:51.105683 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-01T23:13:51.128786 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-01T23:13:51.145751 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-01T23:13:51.411467 #6] INFO -- : Partitions assigned for `course_change`: 0 +I, [2018-08-01T23:13:51.454241 #6] INFO -- : Partitions assigned for `section_change`: 0 +I, [2018-08-01T23:13:52.052064 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-01T23:13:52.052208 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-01T23:13:52.052245 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-01T23:13:52.096825 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-01T23:13:52.096980 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-01T23:13:52.097013 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-01T23:13:52.127203 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-01T23:13:52.134490 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +E, [2018-08-01T23:13:53.547530 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- ArgumentError: message is required. +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:13:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-01T23:13:53.547676 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-01T23:13:53.620620 #6] ERROR -- : Client fetch loop error: message is required. +I, [2018-08-01T23:13:53.621073 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-01T23:13:53.626684 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-01T23:13:53.755769 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:13:54.627428 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-01T23:13:54.655510 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-734cc47e-b2b0-4d7f-8f5f-568cca19627a` +I, [2018-08-01T23:13:54.655803 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-01T23:13:54.678310 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-01T23:13:54.678480 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-01T23:13:54.756512 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-01T23:13:55.587290 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- ArgumentError: message is required. +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:13:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-01T23:13:55.590764 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-01T23:13:55.613998 #6] ERROR -- : Client fetch loop error: message is required. +I, [2018-08-01T23:13:55.614286 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-01T23:13:55.626063 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-01T23:13:55.629780 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:13:55.762572 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:13:56.629677 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-01T23:13:56.631138 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:13:56.666367 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-fb722435-9b6f-43ee-a025-9b0be4094822` +I, [2018-08-01T23:13:56.666443 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-01T23:13:56.674095 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-01T23:13:56.674188 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-01T23:13:56.763227 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:13:57.633042 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:13:57.763674 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:13:58.633833 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:13:58.769872 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:13:59.634727 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:13:59.770290 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:14:00.635586 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:14:00.770978 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:14:01.654934 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:14:01.772442 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:14:03.109968 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:14:03.127972 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:14:04.114629 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:14:04.129584 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:14:05.141288 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:14:05.199914 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-01T23:14:05.209151 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:14:06.148795 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-01T23:14:06.221829 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:14:07.266182 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:14:07.477092 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +E, [2018-08-01T23:14:08.129191 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- ArgumentError: message is required. +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:13:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-01T23:14:08.130108 #6] INFO -- : Leaving group `notifications_course_change` +I, [2018-08-01T23:14:08.287624 #6] INFO -- : Seeking section_change/0 to offset 0 +E, [2018-08-01T23:14:10.536213 #6] ERROR -- : Client fetch loop error: message is required. +I, [2018-08-01T23:14:10.542790 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-01T23:14:10.569228 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- ArgumentError: message is required. +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:13:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-01T23:14:12.625542 #6] INFO -- : Leaving group `notifications_notifications` +I, [2018-08-01T23:14:10.707104 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-01T23:14:12.786392 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-08-01T23:14:12.901092 #6] ERROR -- : Client fetch loop error: message is required. +I, [2018-08-01T23:14:12.915230 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-01T23:14:12.937796 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-01T23:14:13.015016 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:14:13.630620 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:14:13.786731 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-01T23:14:13.796297 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-4d35b86c-47d3-42a1-89cf-0957a39dc874` +I, [2018-08-01T23:14:13.796521 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-01T23:14:13.803851 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-01T23:14:13.804253 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-01T23:14:13.938959 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-01T23:14:13.951025 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-554cfc1c-7fdb-4d55-b955-cc45dfa78d9d` +I, [2018-08-01T23:14:13.951092 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-01T23:14:13.971321 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-01T23:14:13.971516 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-01T23:14:14.019173 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:14:14.632698 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:14:15.020318 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:14:15.634773 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:14:16.021135 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:14:16.636288 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:14:17.022006 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:14:17.637498 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:14:18.022835 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:14:18.643812 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:14:19.023397 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:14:19.644793 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:14:20.025268 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:14:20.645285 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:14:21.025884 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:14:21.645955 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:14:21.843654 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-01T23:14:22.026252 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:14:22.646308 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-01T23:14:23.027839 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-01T23:14:23.854111 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- ArgumentError: message is required. +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:13:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-01T23:14:23.854190 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-01T23:14:23.859540 #6] ERROR -- : Client fetch loop error: message is required. +I, [2018-08-01T23:14:23.860418 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-01T23:14:23.863221 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-01T23:14:24.005364 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:14:24.028645 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:14:24.028900 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-01T23:14:24.863978 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-01T23:14:24.883251 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-466b8a46-0a92-4d48-a5b5-5bb72da4cf22` +I, [2018-08-01T23:14:24.883303 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-01T23:14:24.899758 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-01T23:14:24.900078 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-01T23:14:25.007812 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:14:25.029892 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-01T23:14:26.027741 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-01T23:14:26.046342 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- ArgumentError: message is required. +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:13:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-01T23:14:26.046433 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-01T23:14:26.058416 #6] ERROR -- : Client fetch loop error: message is required. +I, [2018-08-01T23:14:26.059111 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-01T23:14:26.067738 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-01T23:14:26.227679 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:14:27.029549 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:14:27.128506 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-01T23:14:27.228283 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:14:27.328099 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-0ef991e2-f713-425e-956f-536597f9f3af` +I, [2018-08-01T23:14:27.328606 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-01T23:14:27.334214 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-01T23:14:27.334298 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-01T23:14:28.031372 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:14:28.229342 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:14:29.032772 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:14:29.230372 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:14:30.035819 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:14:30.232402 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:14:31.037391 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:14:31.233206 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:14:32.038636 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:14:32.233716 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:14:33.039788 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:14:33.234470 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:14:34.047665 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:14:34.235142 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:14:34.960544 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-01T23:14:35.047962 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-01T23:14:35.236360 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:14:36.237129 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-01T23:14:36.967456 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- ArgumentError: message is required. +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:13:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-01T23:14:36.970473 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-01T23:14:36.995803 #6] ERROR -- : Client fetch loop error: message is required. +I, [2018-08-01T23:14:36.996926 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-01T23:14:36.998550 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-01T23:14:37.172191 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:14:37.238444 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:14:37.370433 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-01T23:14:38.000948 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-01T23:14:38.024815 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-e4b8790f-2859-452b-90c8-7f53e069be80` +I, [2018-08-01T23:14:38.024891 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-01T23:14:38.027805 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-01T23:14:38.027886 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-01T23:14:38.173991 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:14:38.238746 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-01T23:14:39.150047 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-01T23:14:39.343070 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- ArgumentError: message is required. +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:13:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-01T23:14:39.343154 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-01T23:14:39.359475 #6] ERROR -- : Client fetch loop error: message is required. +I, [2018-08-01T23:14:39.359769 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-01T23:14:39.364919 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-01T23:14:39.371200 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:14:40.150958 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:14:40.366629 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-01T23:14:40.371540 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:14:40.393752 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-da968eb6-8561-4cce-bdae-d811abe70b1e` +I, [2018-08-01T23:14:40.393828 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-01T23:14:40.438001 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-01T23:14:40.438112 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-01T23:14:41.151661 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:14:41.372683 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:14:42.152896 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:14:42.374009 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:14:43.153358 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:14:43.374457 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:14:44.154060 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:14:44.375649 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:14:45.155009 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:14:45.376583 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:14:46.156004 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:14:46.377803 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:14:47.156583 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:14:47.378649 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:14:48.012244 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-01T23:14:48.156948 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-01T23:14:48.379562 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:14:49.380395 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-01T23:14:50.020034 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- ArgumentError: message is required. +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:13:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-01T23:14:50.024432 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-01T23:14:50.030091 #6] ERROR -- : Client fetch loop error: message is required. +I, [2018-08-01T23:14:50.030340 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-01T23:14:50.032825 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-01T23:14:50.130622 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:14:50.381071 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:14:50.589277 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-01T23:14:51.033176 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-01T23:14:51.037467 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-bb28cc28-ecef-4a1b-98a4-f516a384f725` +I, [2018-08-01T23:14:51.037569 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-01T23:14:51.039988 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-01T23:14:51.040065 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-01T23:14:51.131069 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:14:51.384704 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-01T23:14:52.131422 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-01T23:14:52.591511 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- ArgumentError: message is required. +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:13:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-01T23:14:52.591574 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-01T23:14:52.595861 #6] ERROR -- : Client fetch loop error: message is required. +I, [2018-08-01T23:14:52.596256 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-01T23:14:52.597704 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-01T23:14:52.657205 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:14:53.132972 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:14:53.598658 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-01T23:14:53.602834 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-fb782050-b4b3-4a67-93d0-7c0c98cc9c49` +I, [2018-08-01T23:14:53.602905 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-01T23:14:53.606193 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-01T23:14:53.606276 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-01T23:14:53.657866 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:14:54.134021 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:14:54.658253 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:14:55.134720 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:14:55.658650 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:14:56.135406 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:14:56.659018 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:14:57.135914 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:14:57.659849 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:14:58.136317 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:14:58.660486 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:14:59.136682 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:14:59.668956 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:15:00.155841 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:15:00.669573 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:15:01.073695 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-01T23:15:01.156418 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-01T23:15:01.671623 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:15:02.672651 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-01T23:15:03.082252 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- ArgumentError: message is required. +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:13:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-01T23:15:03.086240 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-01T23:15:03.097347 #6] ERROR -- : Client fetch loop error: message is required. +I, [2018-08-01T23:15:03.097637 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-01T23:15:03.099124 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-01T23:15:03.294188 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:15:03.644276 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-01T23:15:03.673024 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-01T23:15:04.099430 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-01T23:15:04.108355 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-4b2abb18-06e7-4447-97fd-9ac87c018820` +I, [2018-08-01T23:15:04.108409 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-01T23:15:04.112766 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-01T23:15:04.112838 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-01T23:15:04.295390 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:15:05.295885 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-01T23:15:05.646745 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- ArgumentError: message is required. +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:13:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-01T23:15:05.646868 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-01T23:15:05.675897 #6] ERROR -- : Client fetch loop error: message is required. +I, [2018-08-01T23:15:05.676193 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-01T23:15:05.680114 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-01T23:15:05.869084 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:15:06.318500 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:15:06.680372 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-01T23:15:06.695785 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-fbbf7d15-39bb-4c4f-afed-638d1530aca1` +I, [2018-08-01T23:15:06.695939 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-01T23:15:06.704158 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-01T23:15:06.704233 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-01T23:15:06.869735 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:15:07.320737 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:15:07.870218 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:15:08.320994 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:15:08.831149 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:15:09.280014 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:15:09.832025 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:15:10.280569 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:15:10.832673 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:15:11.281115 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:15:11.841154 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:15:12.282179 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:15:12.842002 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:15:13.282758 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:15:13.842948 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:15:14.101929 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-01T23:15:14.285290 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-01T23:15:14.843867 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:15:15.844817 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-01T23:15:16.105620 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- ArgumentError: message is required. +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:13:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-01T23:15:16.110919 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-01T23:15:16.119377 #6] ERROR -- : Client fetch loop error: message is required. +I, [2018-08-01T23:15:16.119756 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-01T23:15:16.120777 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-01T23:15:16.266490 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:15:16.669502 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-01T23:15:16.845953 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-01T23:15:17.121047 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-01T23:15:17.124720 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-a1bcb6be-8c10-4066-8e23-ff42a481bfe0` +I, [2018-08-01T23:15:17.124766 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-01T23:15:17.126884 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-01T23:15:17.126954 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-01T23:15:17.267037 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:15:18.268547 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-01T23:15:18.672089 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- ArgumentError: message is required. +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:13:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-01T23:15:18.672152 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-01T23:15:18.674184 #6] ERROR -- : Client fetch loop error: message is required. +I, [2018-08-01T23:15:18.674452 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-01T23:15:18.675426 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-01T23:15:18.772819 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:15:19.269308 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:15:19.676158 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-01T23:15:19.679456 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-c9a45c13-630c-430d-87ad-7bc7b67edbdb` +I, [2018-08-01T23:15:19.679501 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-01T23:15:19.681164 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-01T23:15:19.681228 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-01T23:15:19.773323 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:15:20.269735 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:15:20.773851 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:15:21.270280 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:15:21.774436 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:15:22.270742 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:15:22.774943 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:15:23.271564 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:15:23.776969 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:15:24.272394 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:15:24.777513 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:15:25.272737 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:15:25.778404 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:15:26.273189 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:15:26.779864 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:15:27.137084 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-01T23:15:27.273592 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-01T23:15:27.785094 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:15:28.785782 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-01T23:15:29.143623 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- ArgumentError: message is required. +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:13:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-01T23:15:29.174327 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-01T23:15:29.184370 #6] ERROR -- : Client fetch loop error: message is required. +I, [2018-08-01T23:15:29.184630 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-01T23:15:29.188160 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-01T23:15:29.297389 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:15:29.705640 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-01T23:15:29.786239 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-01T23:15:30.188432 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-01T23:15:30.193066 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-8f0f1eca-99cc-4366-86c1-4bc485c5388b` +I, [2018-08-01T23:15:30.193121 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-01T23:15:30.195970 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-01T23:15:30.196036 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-01T23:15:30.298694 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:15:31.300373 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-01T23:15:31.720621 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- ArgumentError: message is required. +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:13:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-01T23:15:31.720828 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-01T23:15:31.729534 #6] ERROR -- : Client fetch loop error: message is required. +I, [2018-08-01T23:15:31.729812 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-01T23:15:31.751741 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-01T23:15:32.134065 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:15:32.439110 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:15:32.752902 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-01T23:15:32.773570 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-f833c342-bb3b-4666-8ef8-a7f2ffb22b25` +I, [2018-08-01T23:15:32.773653 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-01T23:15:32.786145 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-01T23:15:32.786278 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-01T23:15:33.134497 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:15:33.447434 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:15:34.135656 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:15:34.450670 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:15:35.136240 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:15:35.451490 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:15:36.136896 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:15:36.451998 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:15:37.137343 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:15:37.452803 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:15:38.138125 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:15:38.453149 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:15:39.105260 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:15:39.420376 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:15:40.108669 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:15:40.421051 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:15:40.464549 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-01T23:15:41.109274 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:15:41.421403 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-01T23:15:42.109592 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-01T23:15:42.467104 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- ArgumentError: message is required. +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:13:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-01T23:15:42.470172 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-01T23:15:42.472791 #6] ERROR -- : Client fetch loop error: message is required. +I, [2018-08-01T23:15:42.473023 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-01T23:15:42.474066 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-01T23:15:42.638606 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:15:42.762574 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-01T23:15:43.109858 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-01T23:15:43.474847 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-01T23:15:43.478140 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-15cc054e-56e5-468c-ae87-6655db7018bf` +I, [2018-08-01T23:15:43.478186 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-01T23:15:43.479968 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-01T23:15:43.480031 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-01T23:15:43.639360 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:15:44.639794 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-01T23:15:44.770616 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- ArgumentError: message is required. +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:13:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-01T23:15:44.771021 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-01T23:15:44.780963 #6] ERROR -- : Client fetch loop error: message is required. +I, [2018-08-01T23:15:44.781219 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-01T23:15:44.784857 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-01T23:15:45.099910 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:15:45.640201 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:15:45.785142 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-01T23:15:45.787999 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-a1117075-73ad-4415-9d92-4ec417d5116d` +I, [2018-08-01T23:15:45.788042 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-01T23:15:45.790477 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-01T23:15:45.790541 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-01T23:15:46.100650 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:15:46.641115 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:15:47.101502 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:15:47.642441 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:15:48.101963 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:15:48.643025 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:15:49.102869 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:15:49.643648 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:15:50.103255 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:15:50.644441 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:15:51.103634 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:15:51.644829 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:15:52.108337 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:15:52.647336 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:15:53.125475 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:15:53.531974 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-01T23:15:53.933779 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:15:54.212780 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:15:54.795090 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-01T23:15:54.984397 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-01T23:15:55.215865 #6] INFO -- : Seeking section_change/0 to offset 0 +E, [2018-08-01T23:15:56.768831 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- ArgumentError: message is required. +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:13:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-01T23:15:56.769010 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-01T23:15:56.779766 #6] ERROR -- : Client fetch loop error: message is required. +I, [2018-08-01T23:15:56.780156 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-01T23:15:56.781614 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-08-01T23:15:56.800235 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- ArgumentError: message is required. +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:13:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-01T23:15:56.800439 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-01T23:15:56.806003 #6] ERROR -- : Client fetch loop error: message is required. +I, [2018-08-01T23:15:56.806253 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-01T23:15:56.807420 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-01T23:15:56.963192 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:15:57.364444 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:15:57.782441 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-01T23:15:57.809248 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-01T23:15:57.828972 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-8466fee5-12f5-4648-b875-24fc0d380c87` +I, [2018-08-01T23:15:57.829044 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-01T23:15:57.830144 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-c3221e9a-151c-4da9-9904-917c1c602c40` +I, [2018-08-01T23:15:57.830198 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-01T23:15:57.886771 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-01T23:15:57.886949 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-01T23:15:57.897122 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-01T23:15:57.897217 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-01T23:15:57.964140 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:15:58.377581 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:15:58.965071 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:15:59.378414 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:15:59.966089 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:16:00.379099 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:16:00.966637 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:16:01.379690 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:16:01.967037 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:16:02.392744 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:16:02.967410 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:16:03.393408 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:16:03.968011 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:16:04.393800 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:16:04.968426 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:16:05.394245 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:16:05.968940 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:16:06.394733 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:16:06.969613 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:16:07.396439 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:16:07.916385 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-01T23:16:07.918424 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-01T23:16:07.970734 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-01T23:16:08.396770 #6] INFO -- : Seeking course_change/0 to offset 0 +E, [2018-08-01T23:16:09.897885 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- ArgumentError: message is required. +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:13:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-01T23:16:09.898157 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-01T23:16:09.903341 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- ArgumentError: message is required. +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:13:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-01T23:16:09.925157 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-01T23:16:09.937332 #6] ERROR -- : Client fetch loop error: message is required. +I, [2018-08-01T23:16:09.937603 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-01T23:16:09.939051 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-08-01T23:16:09.939489 #6] ERROR -- : Client fetch loop error: message is required. +I, [2018-08-01T23:16:09.939634 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-01T23:16:09.942164 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-01T23:16:10.231349 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:16:10.308498 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:16:10.939360 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-01T23:16:10.942382 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-01T23:16:10.943527 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-f3d80b1f-e42c-45c4-854d-aafc42818114` +I, [2018-08-01T23:16:10.943579 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-01T23:16:10.949292 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-01T23:16:10.949372 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-01T23:16:10.952065 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-07089d1c-2ff8-4b1e-99ec-acaa8d2dc72d` +I, [2018-08-01T23:16:10.952137 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-01T23:16:10.954459 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-01T23:16:10.954539 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-01T23:16:11.231753 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:16:11.309989 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:16:12.232283 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:16:12.310743 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:16:13.232877 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:16:13.311072 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:16:14.244644 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:16:14.311454 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:16:15.246425 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:16:15.312008 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:16:16.246899 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:16:16.312920 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:16:17.251472 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:16:17.315616 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:16:18.252183 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:16:18.316115 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:16:19.252888 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:16:19.316806 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:16:20.254751 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:16:20.317349 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:16:20.969445 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-01T23:16:21.029350 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-01T23:16:21.255109 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-01T23:16:21.317677 #6] INFO -- : Seeking course_change/0 to offset 0 +E, [2018-08-01T23:16:22.978743 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- ArgumentError: message is required. +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:13:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-01T23:16:22.978914 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-01T23:16:22.981747 #6] ERROR -- : Client fetch loop error: message is required. +I, [2018-08-01T23:16:22.981931 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-01T23:16:22.983812 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-08-01T23:16:23.062521 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- ArgumentError: message is required. +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:13:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-01T23:16:23.062609 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-01T23:16:23.111100 #6] ERROR -- : Client fetch loop error: message is required. +I, [2018-08-01T23:16:23.111399 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-01T23:16:23.113051 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-01T23:16:23.135626 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:16:23.918820 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:16:23.988245 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-01T23:16:23.991476 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-64120d81-2404-4c4f-a2bc-2dd11712d4e7` +I, [2018-08-01T23:16:23.991519 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-01T23:16:23.995470 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-01T23:16:23.995535 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-01T23:16:24.113579 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-01T23:16:24.118515 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-c9d5786a-edc1-4807-baf0-4bf4d7e8ac05` +I, [2018-08-01T23:16:24.118563 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-01T23:16:24.120819 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-01T23:16:24.120892 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-01T23:16:24.136093 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:16:24.919355 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:16:25.137175 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:16:25.920088 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:16:26.137815 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:16:26.920458 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:16:27.138292 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:16:27.921060 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:16:28.138893 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:16:28.959840 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:16:29.175329 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:16:29.960356 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:16:30.208889 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:16:30.961186 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:16:31.211837 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:16:31.962412 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:16:32.212345 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:16:32.963219 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:16:33.213729 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:16:33.965355 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:16:34.011057 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-01T23:16:34.128933 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-01T23:16:34.213963 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-01T23:16:34.966439 #6] INFO -- : Seeking course_change/0 to offset 0 +E, [2018-08-01T23:16:36.014328 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- ArgumentError: message is required. +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:13:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-01T23:16:36.016761 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-01T23:16:36.021319 #6] ERROR -- : Client fetch loop error: message is required. +I, [2018-08-01T23:16:36.022136 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-01T23:16:36.025820 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-01T23:16:36.083091 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-01T23:16:36.133473 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- ArgumentError: message is required. +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:13:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-01T23:16:36.133535 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-01T23:16:36.136001 #6] ERROR -- : Client fetch loop error: message is required. +I, [2018-08-01T23:16:36.136199 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-01T23:16:36.137727 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-01T23:16:36.356662 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:16:37.026141 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-01T23:16:37.029511 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-82e4e2ee-086a-4377-8a0a-c4320cd1a142` +I, [2018-08-01T23:16:37.029577 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-01T23:16:37.033223 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-01T23:16:37.033290 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-01T23:16:37.086350 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:16:37.138938 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-01T23:16:37.142437 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-f3e16aba-eb68-41ea-83cc-9bfa77938a09` +I, [2018-08-01T23:16:37.142492 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-01T23:16:37.146624 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-01T23:16:37.146708 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-01T23:16:37.357780 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:16:38.086729 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:16:38.358378 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:16:39.054136 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:16:39.322394 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:16:40.059696 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:16:40.323428 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:16:41.060967 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:16:41.324821 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:16:42.061668 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:16:42.325850 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:16:43.062474 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:16:43.326182 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:16:44.063270 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:16:44.326518 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:16:45.063679 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:16:45.327908 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:16:46.064171 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:16:46.328364 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:16:47.003840 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-01T23:16:47.064900 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-01T23:16:47.178986 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-01T23:16:47.328979 #6] INFO -- : Seeking course_change/0 to offset 0 +E, [2018-08-01T23:16:49.008213 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- ArgumentError: message is required. +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:13:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-01T23:16:49.011379 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-01T23:16:49.019550 #6] ERROR -- : Client fetch loop error: message is required. +I, [2018-08-01T23:16:49.019735 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-01T23:16:49.020542 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-01T23:16:49.142853 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-01T23:16:49.180834 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- ArgumentError: message is required. +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:13:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-01T23:16:49.180897 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-01T23:16:49.192172 #6] ERROR -- : Client fetch loop error: message is required. +I, [2018-08-01T23:16:49.192350 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-01T23:16:49.208327 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-01T23:16:49.546578 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:16:50.023850 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-01T23:16:50.036384 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-6e9d8990-e82c-4fa9-8879-5b5af560920b` +I, [2018-08-01T23:16:50.036439 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-01T23:16:50.045100 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-01T23:16:50.045827 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-01T23:16:50.144656 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:16:50.209413 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-01T23:16:50.258361 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-10f0464a-186c-4cb7-b476-298dac65810f` +I, [2018-08-01T23:16:50.258429 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-01T23:16:50.342141 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-01T23:16:50.342279 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-01T23:16:50.550966 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:16:51.145527 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:16:51.551480 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:16:52.145955 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:16:52.552891 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:16:53.146488 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:16:53.553510 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:16:54.147463 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:16:54.555112 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:16:55.147940 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:16:55.555971 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:16:56.148347 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:16:56.556634 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:16:57.149081 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:16:57.557032 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:16:58.149914 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:16:58.557499 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:16:59.150962 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:16:59.558150 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:17:00.051023 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-01T23:17:00.152091 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-01T23:17:00.372592 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-01T23:17:00.558758 #6] INFO -- : Seeking course_change/0 to offset 0 +E, [2018-08-01T23:17:02.054707 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- ArgumentError: message is required. +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:13:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-01T23:17:02.059191 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-01T23:17:02.062287 #6] ERROR -- : Client fetch loop error: message is required. +I, [2018-08-01T23:17:02.062548 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-01T23:17:02.063927 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-01T23:17:02.229348 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-01T23:17:02.374867 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- ArgumentError: message is required. +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:13:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-01T23:17:02.374956 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-01T23:17:02.379209 #6] ERROR -- : Client fetch loop error: message is required. +I, [2018-08-01T23:17:02.379514 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-01T23:17:02.383052 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-01T23:17:02.808179 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:17:03.064432 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-01T23:17:03.068690 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-7aa1aaec-6e81-47a3-bd2f-b2155011525b` +I, [2018-08-01T23:17:03.068747 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-01T23:17:03.071448 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-01T23:17:03.071517 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-01T23:17:03.230087 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:17:03.384181 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-01T23:17:03.390205 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-1d5fc2cb-2bc3-4148-a87f-c55abb29f5ca` +I, [2018-08-01T23:17:03.390270 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-01T23:17:03.397597 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-01T23:17:03.397674 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-01T23:17:03.808767 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:17:04.231174 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:17:04.809353 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:17:05.232201 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:17:05.810003 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:17:06.233995 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:17:06.810559 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:17:07.234570 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:17:07.811139 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:17:08.235021 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:17:08.778811 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:17:09.200590 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:17:09.779540 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:17:10.201230 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:17:10.780031 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:17:11.201829 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:17:11.780539 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:17:12.202523 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:17:12.781717 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:17:13.047566 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-01T23:17:13.203749 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-01T23:17:13.418962 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-01T23:17:13.782235 #6] INFO -- : Seeking course_change/0 to offset 0 +E, [2018-08-01T23:17:15.058428 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- ArgumentError: message is required. +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:13:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-01T23:17:15.085305 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-01T23:17:15.107592 #6] ERROR -- : Client fetch loop error: message is required. +I, [2018-08-01T23:17:15.108041 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-01T23:17:15.114424 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-01T23:17:15.428733 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-01T23:17:15.457225 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- ArgumentError: message is required. +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:13:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-01T23:17:15.457301 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-01T23:17:15.465113 #6] ERROR -- : Client fetch loop error: message is required. +I, [2018-08-01T23:17:15.465659 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-01T23:17:15.468422 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-01T23:17:16.114741 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-01T23:17:16.119424 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-820bb58d-e49f-4e2a-ba15-0530e90fb4f5` +I, [2018-08-01T23:17:16.119479 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-01T23:17:16.137204 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-01T23:17:16.137343 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-01T23:17:16.335031 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:17:16.429213 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:17:16.469844 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-01T23:17:16.473128 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-fbf870d8-8dfb-48ff-a23e-ae8fdc714d41` +I, [2018-08-01T23:17:16.473307 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-01T23:17:16.475600 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-01T23:17:16.475677 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-01T23:17:17.335937 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:17:17.429595 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:17:18.336919 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:17:18.431040 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:17:19.337238 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:17:19.431473 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:17:20.353657 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:17:20.432187 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:17:21.354397 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:17:21.432486 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:17:22.354854 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:17:22.433202 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:17:23.355438 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:17:23.433740 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:17:24.356382 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:17:24.434223 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:17:25.356997 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:17:25.435053 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:17:26.148659 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-01T23:17:26.357557 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:17:26.435339 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-01T23:17:26.482897 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-01T23:17:27.358419 #6] INFO -- : Seeking course_change/0 to offset 0 +E, [2018-08-01T23:17:28.181588 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- ArgumentError: message is required. +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:13:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-01T23:19:40.663169 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-01T23:19:40.663277 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-01T23:19:40.670166 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-01T23:19:40.670228 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:19:40.692525 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +E, [2018-08-01T23:19:40.692658 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +E, [2018-08-01T23:19:40.694426 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +E, [2018-08-01T23:19:40.694747 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +E, [2018-08-01T23:19:45.693032 #6] 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-08-01T23:19:45.693886 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-01T23:19:45.693942 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:19:45.694813 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +E, [2018-08-01T23:19:45.694910 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +E, [2018-08-01T23:19:45.695050 #6] 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-08-01T23:19:45.695868 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-01T23:19:45.695917 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:19:45.696907 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +E, [2018-08-01T23:19:45.697028 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +E, [2018-08-01T23:19:50.695657 #6] 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-08-01T23:19:50.696834 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-01T23:19:50.696886 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:19:50.699153 #6] 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-08-01T23:19:50.701081 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-01T23:19:50.701140 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:19:50.702722 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +E, [2018-08-01T23:19:50.702847 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +E, [2018-08-01T23:19:50.703070 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +E, [2018-08-01T23:19:50.703141 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +E, [2018-08-01T23:19:55.703214 #6] 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-08-01T23:19:55.704236 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-01T23:19:55.704329 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:19:55.704683 #6] 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-08-01T23:19:55.705399 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-01T23:19:55.705440 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-01T23:19:55.807438 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-01T23:19:55.807624 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-01T23:19:55.809397 #6] INFO -- : Will fetch at most 1048576 bytes at a time per partition from course_change +I, [2018-08-01T23:19:55.809521 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-01T23:19:55.810905 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-01T23:19:55.811012 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-01T23:19:55.842625 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-01T23:19:55.842748 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:19:55.916021 #6] INFO -- : Will fetch at most 1048576 bytes at a time per partition from section_change +I, [2018-08-01T23:19:55.920495 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-01T23:19:55.972122 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-01T23:19:55.972251 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:19:56.844437 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:19:56.979716 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:19:57.845207 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:19:57.980466 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:19:58.846315 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:19:58.981033 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:19:59.847280 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:19:59.982882 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:20:00.847865 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:20:00.984267 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:20:01.848724 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:20:01.984939 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:20:02.432860 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-0c6f443d-3619-4aa0-8098-9928d6d5bfd4` +I, [2018-08-01T23:20:02.432919 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-01T23:20:02.445054 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-34cdc12d-783c-4d56-926d-6bfa999803ea` +I, [2018-08-01T23:20:02.445130 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-01T23:20:02.851604 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:20:02.985824 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:20:03.433490 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-01T23:20:03.445961 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-01T23:20:03.456170 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-01T23:20:03.456956 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-01T23:20:03.563631 #6] INFO -- : Partitions assigned for `course_change`: 0 +I, [2018-08-01T23:20:03.573187 #6] INFO -- : Partitions assigned for `section_change`: 0 +I, [2018-08-01T23:20:03.852188 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-01T23:20:03.854329 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-01T23:20:03.854410 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-01T23:20:03.892428 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-01T23:20:03.987173 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-01T23:20:03.987283 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-01T23:20:03.987318 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-01T23:20:03.990087 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +E, [2018-08-01T23:20:05.664674 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- NoMethodError: undefined method `self' for EventStream:Class +Did you mean? itself +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-01T23:20:05.664813 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-01T23:20:05.671101 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- NoMethodError: undefined method `self' for EventStream:Class +Did you mean? itself +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-01T23:20:05.671200 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-01T23:20:05.734270 #6] ERROR -- : Client fetch loop error: undefined method `self' for EventStream:Class +Did you mean? itself +I, [2018-08-01T23:20:05.734452 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-01T23:20:05.736966 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-08-01T23:20:05.741939 #6] ERROR -- : Client fetch loop error: undefined method `self' for EventStream:Class +Did you mean? itself +I, [2018-08-01T23:20:05.744330 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-01T23:20:05.772653 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-01T23:20:05.783966 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:20:05.830649 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:20:06.738671 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-01T23:20:06.770839 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-6663c5a7-a7a9-486f-aca9-33e4338c2918` +I, [2018-08-01T23:20:06.770894 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-01T23:20:06.773170 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-01T23:20:06.773250 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-01T23:20:06.773486 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-01T23:20:06.784288 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:20:06.824524 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-e7f6a97b-0cbe-4b41-8702-f9ebbd771543` +I, [2018-08-01T23:20:06.824591 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-01T23:20:06.831070 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:20:06.843267 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-01T23:20:06.843361 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-01T23:20:07.784951 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:20:07.831624 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:20:08.752122 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:20:08.798055 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:20:09.754257 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:20:09.800028 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:20:10.755283 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:20:10.801141 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:20:11.755918 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:20:11.802225 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:20:12.756351 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:20:12.802984 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:20:13.756786 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:20:13.803639 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:20:14.757463 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:20:14.804083 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:20:15.757960 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:20:15.804479 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:20:16.758760 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:20:16.762184 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-01T23:20:16.804871 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-01T23:20:16.836478 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-01T23:20:17.759267 #6] INFO -- : Seeking course_change/0 to offset 0 +E, [2018-08-01T23:20:18.767633 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- NoMethodError: undefined method `self' for EventStream:Class +Did you mean? itself +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-01T23:20:18.767704 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-01T23:20:18.771594 #6] ERROR -- : Client fetch loop error: undefined method `self' for EventStream:Class +Did you mean? itself +I, [2018-08-01T23:20:18.771772 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-01T23:20:18.773663 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-01T23:20:18.843446 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-01T23:20:18.851131 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- NoMethodError: undefined method `self' for EventStream:Class +Did you mean? itself +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-01T23:20:18.853658 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-01T23:20:18.856919 #6] ERROR -- : Client fetch loop error: undefined method `self' for EventStream:Class +Did you mean? itself +I, [2018-08-01T23:20:18.857144 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-01T23:20:18.858225 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-01T23:20:18.890115 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:20:19.774021 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-01T23:20:19.782593 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-c3bfc5bb-aa1a-44c0-8922-1c042ffac0b0` +I, [2018-08-01T23:20:19.782644 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-01T23:20:19.801764 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-01T23:20:19.801851 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-01T23:20:19.844731 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:20:19.858768 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-01T23:20:19.868975 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-9cb32bd6-c101-436d-9e28-1034bf81e097` +I, [2018-08-01T23:20:19.869044 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-01T23:20:19.876871 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-01T23:20:19.876952 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-01T23:20:19.890657 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:20:20.845405 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:20:20.891975 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:20:21.846055 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:20:21.892214 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:20:22.849840 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:20:22.892569 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:20:23.850535 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:20:23.892926 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:20:24.851997 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:20:24.893661 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:20:25.853270 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:20:25.894018 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:20:26.854191 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:20:26.894528 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:20:27.859268 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:20:27.895037 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:20:28.859821 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:20:28.895469 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:20:29.814698 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-01T23:20:29.860158 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-01T23:20:29.895986 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:20:29.902168 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-01T23:20:30.896405 #6] INFO -- : Seeking course_change/0 to offset 0 +E, [2018-08-01T23:20:31.820961 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- NoMethodError: undefined method `self' for EventStream:Class +Did you mean? itself +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-01T23:20:31.821106 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-01T23:20:31.830747 #6] ERROR -- : Client fetch loop error: undefined method `self' for EventStream:Class +Did you mean? itself +I, [2018-08-01T23:20:31.831154 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-01T23:20:31.835408 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-08-01T23:20:31.929246 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- NoMethodError: undefined method `self' for EventStream:Class +Did you mean? itself +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-01T23:20:31.930943 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-01T23:20:31.978004 #6] ERROR -- : Client fetch loop error: undefined method `self' for EventStream:Class +Did you mean? itself +I, [2018-08-01T23:20:31.981953 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-01T23:20:31.997491 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-01T23:20:32.040858 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:20:32.094573 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:20:32.835950 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-01T23:20:32.839640 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-007df660-7f70-49ec-a18e-602fefe7bebf` +I, [2018-08-01T23:20:32.839733 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-01T23:20:32.842423 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-01T23:20:32.842525 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-01T23:20:32.998132 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-01T23:20:33.008333 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-c10653a8-b675-4f97-8a6b-be046d3b25ca` +I, [2018-08-01T23:20:33.008465 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-01T23:20:33.010905 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-01T23:20:33.010991 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-01T23:20:33.041367 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:20:33.095397 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:20:34.041812 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:20:34.096606 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:20:35.042361 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:20:35.097051 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:20:36.042945 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:20:36.097640 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:20:37.043313 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:20:37.098379 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:20:38.044005 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:20:38.098748 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:20:39.008867 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:20:39.063278 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:20:40.011522 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:20:40.065687 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:20:41.012134 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:20:41.067240 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:20:42.012587 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:20:42.067917 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:20:42.859879 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-01T23:20:42.988811 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-01T23:20:43.030772 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-01T23:20:43.071984 #6] INFO -- : Seeking course_change/0 to offset 0 +E, [2018-08-01T23:20:44.896904 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- NoMethodError: undefined method `self' for EventStream:Class +Did you mean? itself +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-01T23:20:44.897118 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-01T23:20:44.900087 #6] ERROR -- : Client fetch loop error: undefined method `self' for EventStream:Class +Did you mean? itself +I, [2018-08-01T23:20:44.901891 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-01T23:20:44.905960 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-08-01T23:20:45.005892 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- NoMethodError: undefined method `self' for EventStream:Class +Did you mean? itself +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-01T23:24:52.939482 #7] INFO -- : New topics added to target list: course_change +I, [2018-08-01T23:24:52.939545 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-01T23:24:52.941292 #7] INFO -- : New topics added to target list: section_change +I, [2018-08-01T23:24:52.941523 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:24:52.942753 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +E, [2018-08-01T23:24:52.947330 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +E, [2018-08-01T23:24:52.949007 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +E, [2018-08-01T23:24:52.949526 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +E, [2018-08-01T23:24:57.948903 #7] 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 +E, [2018-08-01T23:24:57.949754 #7] 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-08-01T23:24:57.952037 #7] INFO -- : New topics added to target list: section_change +I, [2018-08-01T23:24:57.952093 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-01T23:24:57.953061 #7] INFO -- : New topics added to target list: course_change +I, [2018-08-01T23:24:57.953108 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:24:57.954221 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +E, [2018-08-01T23:24:57.954807 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +E, [2018-08-01T23:24:57.955784 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +E, [2018-08-01T23:24:57.956310 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +E, [2018-08-01T23:25:02.955313 #7] 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-08-01T23:25:02.957416 #7] INFO -- : New topics added to target list: course_change +I, [2018-08-01T23:25:02.957522 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:25:02.961867 #7] 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 +E, [2018-08-01T23:25:02.969467 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +E, [2018-08-01T23:25:02.969577 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +I, [2018-08-01T23:25:02.969851 #7] INFO -- : New topics added to target list: section_change +I, [2018-08-01T23:25:02.969888 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:25:02.973935 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +E, [2018-08-01T23:25:02.974022 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +E, [2018-08-01T23:25:07.969947 #7] 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-08-01T23:25:07.970920 #7] INFO -- : New topics added to target list: course_change +I, [2018-08-01T23:25:07.971010 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:25:07.975284 #7] 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-08-01T23:25:07.975989 #7] INFO -- : New topics added to target list: section_change +I, [2018-08-01T23:25:07.976056 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-01T23:25:08.215426 #7] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-01T23:25:08.215636 #7] INFO -- : Joining group `notifications_course_change` +I, [2018-08-01T23:25:08.235146 #7] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-01T23:25:08.235318 #7] INFO -- : Joining group `notifications_notifications` +I, [2018-08-01T23:25:08.275505 #7] INFO -- : Will fetch at most 1048576 bytes at a time per partition from course_change +I, [2018-08-01T23:25:08.275700 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-01T23:25:08.287435 #7] INFO -- : Will fetch at most 1048576 bytes at a time per partition from section_change +I, [2018-08-01T23:25:08.289053 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-01T23:25:08.294001 #7] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-01T23:25:08.294101 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:25:08.309716 #7] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-01T23:25:08.309849 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:25:09.258933 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:25:09.274611 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:25:10.259312 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:25:10.275165 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:25:11.259741 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:25:11.275733 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:25:12.260766 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:25:12.277235 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:25:13.262164 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:25:13.277718 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-01T23:25:13.789367 #7] ERROR -- : Failed to find coordinator for group `notifications_course_change`; retrying... +E, [2018-08-01T23:25:13.796146 #7] ERROR -- : Failed to find coordinator for group `notifications_notifications`; retrying... +I, [2018-08-01T23:25:14.262743 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:25:14.279386 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:25:14.789547 #7] INFO -- : Joining group `notifications_course_change` +I, [2018-08-01T23:25:14.796650 #7] INFO -- : Joining group `notifications_notifications` +I, [2018-08-01T23:25:15.022802 #7] INFO -- : Joined group `notifications_course_change` with member id `notifications-0aaddd44-eb1e-4a59-92cd-65be9150322c` +I, [2018-08-01T23:25:15.022995 #7] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-01T23:25:15.061228 #7] INFO -- : Joined group `notifications_notifications` with member id `notifications-93311d51-e7ae-4730-ab80-fe7a3775c941` +I, [2018-08-01T23:25:15.061284 #7] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-01T23:25:15.263482 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:25:15.279936 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:25:16.023878 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-01T23:25:16.033941 #7] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-01T23:25:16.061711 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-01T23:25:16.108635 #7] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-01T23:25:16.196590 #7] INFO -- : Partitions assigned for `course_change`: 0 +I, [2018-08-01T23:25:16.197585 #7] INFO -- : Partitions assigned for `section_change`: 0 +I, [2018-08-01T23:25:16.263877 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:25:16.280635 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:25:17.264794 #7] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-01T23:25:17.264998 #7] INFO -- : New topics added to target list: section_change +I, [2018-08-01T23:25:17.265048 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-01T23:25:17.276879 #7] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-01T23:25:17.280884 #7] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-01T23:25:17.281193 #7] INFO -- : New topics added to target list: course_change +I, [2018-08-01T23:25:17.281231 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-01T23:25:17.337097 #7] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +E, [2018-08-01T23:25:20.368161 #7] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- ArgumentError: message is required. +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:14:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-01T23:25:20.368238 #7] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-01T23:25:20.368500 #7] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- ArgumentError: message is required. +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:14:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-01T23:25:20.371215 #7] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-01T23:25:20.414893 #7] ERROR -- : Client fetch loop error: message is required. +I, [2018-08-01T23:25:20.415188 #7] INFO -- : Joining group `notifications_course_change` +E, [2018-08-01T23:25:20.417343 #7] ERROR -- : Client fetch loop error: message is required. +I, [2018-08-01T23:25:20.417567 #7] INFO -- : Joining group `notifications_notifications` +E, [2018-08-01T23:25:20.420000 #7] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-08-01T23:25:20.424331 #7] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-01T23:25:20.480366 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:25:20.506997 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:25:21.421059 #7] INFO -- : Joining group `notifications_course_change` +I, [2018-08-01T23:25:21.424610 #7] INFO -- : Joining group `notifications_notifications` +I, [2018-08-01T23:25:21.454798 #7] INFO -- : Joined group `notifications_course_change` with member id `notifications-75d3a91b-2a18-4fd6-b787-d0ed74901d2d` +I, [2018-08-01T23:25:21.454864 #7] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-01T23:25:21.461766 #7] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-01T23:25:21.461837 #7] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-01T23:25:21.465442 #7] INFO -- : Joined group `notifications_notifications` with member id `notifications-7792be65-bd34-4803-8e9f-e25817eac83a` +I, [2018-08-01T23:25:21.465500 #7] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-01T23:25:21.480528 #7] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-01T23:25:21.480636 #7] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-01T23:25:21.481190 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:25:21.507722 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:25:22.482049 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:25:22.508186 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:25:23.482540 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:25:23.508620 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:25:24.483727 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:25:24.509029 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:25:25.484253 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:25:25.510226 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:25:26.484574 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:25:26.510720 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:25:27.485737 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:25:27.511495 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:25:28.487629 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:25:28.515673 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:25:29.490363 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:25:29.516856 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:25:30.492404 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:25:30.517647 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:25:31.481161 #7] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-01T23:25:31.494051 #7] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-01T23:25:31.518843 #7] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-01T23:25:31.519333 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:25:32.525097 #7] INFO -- : Seeking section_change/0 to offset 0 +E, [2018-08-01T23:25:33.490663 #7] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- ArgumentError: message is required. +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:14:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-01T23:25:33.490857 #7] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-01T23:25:33.503409 #7] ERROR -- : Client fetch loop error: message is required. +I, [2018-08-01T23:25:33.504147 #7] INFO -- : Joining group `notifications_course_change` +E, [2018-08-01T23:25:33.571951 #7] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- ArgumentError: message is required. +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:14:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-01T23:25:33.572049 #7] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-01T23:25:33.633844 #7] ERROR -- : Client fetch loop error: message is required. +I, [2018-08-01T23:25:33.634096 #7] INFO -- : Joining group `notifications_notifications` +E, [2018-08-01T23:25:33.636348 #7] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-08-01T23:25:33.643417 #7] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-01T23:25:33.671066 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:25:33.841997 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:25:34.637247 #7] INFO -- : Joining group `notifications_course_change` +I, [2018-08-01T23:25:34.643885 #7] INFO -- : Joining group `notifications_notifications` +I, [2018-08-01T23:25:34.644991 #7] INFO -- : Joined group `notifications_course_change` with member id `notifications-f10c96e1-cb8d-4f9c-9dec-16ca07d17d20` +I, [2018-08-01T23:25:34.645045 #7] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-01T23:25:34.655446 #7] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-01T23:25:34.655600 #7] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-01T23:25:34.660728 #7] INFO -- : Joined group `notifications_notifications` with member id `notifications-47274fa0-552c-496b-905b-bb521fe8a040` +I, [2018-08-01T23:25:34.660801 #7] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-01T23:25:34.670156 #7] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-01T23:25:34.670241 #7] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-01T23:25:34.671712 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:25:34.843089 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:25:35.674299 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:25:35.843734 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:25:36.675036 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:25:36.844276 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:25:37.675900 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:25:37.845188 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:25:38.643584 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:25:38.894515 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:25:39.861290 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:25:39.895306 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:25:40.868023 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:25:40.895986 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:25:41.868664 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:25:41.897807 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:25:42.870456 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:25:42.899149 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:25:43.870896 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:25:43.900182 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:25:44.635549 #7] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-01T23:25:44.645150 #7] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-01T23:25:44.872664 #7] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-01T23:25:44.900728 #7] INFO -- : Seeking section_change/0 to offset 0 +E, [2018-08-01T23:25:46.647404 #7] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- ArgumentError: message is required. +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:14:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-01T23:25:46.649270 #7] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-01T23:25:46.650985 #7] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- ArgumentError: message is required. +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:14:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-01T23:25:46.651041 #7] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-01T23:25:46.661533 #7] ERROR -- : Client fetch loop error: message is required. +I, [2018-08-01T23:25:46.665011 #7] INFO -- : Joining group `notifications_course_change` +E, [2018-08-01T23:25:46.664370 #7] ERROR -- : Client fetch loop error: message is required. +I, [2018-08-01T23:25:46.665538 #7] INFO -- : Joining group `notifications_notifications` +E, [2018-08-01T23:25:46.667046 #7] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-08-01T23:25:46.667376 #7] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-01T23:25:46.679037 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:25:46.714004 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:25:47.667614 #7] INFO -- : Joining group `notifications_notifications` +I, [2018-08-01T23:25:47.681735 #7] INFO -- : Joining group `notifications_course_change` +I, [2018-08-01T23:25:47.682254 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:25:47.687754 #7] INFO -- : Joined group `notifications_notifications` with member id `notifications-6112d911-78ee-41be-b8c5-a51f5e3b1570` +I, [2018-08-01T23:25:47.687817 #7] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-01T23:25:47.688665 #7] INFO -- : Joined group `notifications_course_change` with member id `notifications-2edce9bd-e28e-40d4-8ae5-d08aad27cce7` +I, [2018-08-01T23:25:47.688733 #7] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-01T23:25:47.714755 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:25:47.719246 #7] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-01T23:25:47.719358 #7] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-01T23:25:47.726483 #7] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-01T23:25:47.726592 #7] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-01T23:25:48.682684 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:25:48.715168 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:25:49.683590 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:25:49.715566 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:25:50.684792 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:25:50.716141 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:25:51.685242 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:25:51.717666 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:25:52.686144 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:25:52.718336 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:25:53.687105 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:25:53.718935 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:25:54.687957 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:25:54.720081 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:25:55.688856 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:25:55.720557 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:25:56.689684 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:25:56.721339 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:25:57.690135 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:25:57.721775 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:25:57.750996 #7] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-01T23:25:57.751495 #7] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-01T23:25:58.690500 #7] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-01T23:25:58.722106 #7] INFO -- : Seeking course_change/0 to offset 0 +E, [2018-08-01T23:25:59.754469 #7] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- ArgumentError: message is required. +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:14:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-01T23:25:59.754775 #7] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-01T23:25:59.761020 #7] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- ArgumentError: message is required. +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:14:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-01T23:25:59.761124 #7] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-01T23:25:59.789056 #7] ERROR -- : Client fetch loop error: message is required. +I, [2018-08-01T23:25:59.789392 #7] INFO -- : Joining group `notifications_notifications` +E, [2018-08-01T23:25:59.790761 #7] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-08-01T23:25:59.804465 #7] ERROR -- : Client fetch loop error: message is required. +I, [2018-08-01T23:25:59.806468 #7] INFO -- : Joining group `notifications_course_change` +E, [2018-08-01T23:25:59.811976 #7] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-01T23:25:59.825734 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:26:00.632655 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:26:00.791092 #7] INFO -- : Joining group `notifications_notifications` +I, [2018-08-01T23:26:00.800601 #7] INFO -- : Joined group `notifications_notifications` with member id `notifications-0e45b377-ef79-4974-8d28-6834a305d634` +I, [2018-08-01T23:46:56.948019 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-01T23:46:56.948104 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-01T23:46:56.954760 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-01T23:46:56.954842 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:46:56.961435 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:46:56.961973 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:46:56.962456 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:46:56.962603 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:47:01.962612 #6] 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.14:9094 +I, [2018-08-01T23:47:01.964307 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-01T23:47:01.964367 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:47:01.965029 #6] 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.14:9094 +I, [2018-08-01T23:47:01.969010 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-01T23:47:01.969066 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:47:01.969421 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:47:01.969490 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:47:01.970484 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:47:01.970560 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:47:06.973376 #6] 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.14:9094 +E, [2018-08-01T23:47:06.974251 #6] 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.14:9094 +I, [2018-08-01T23:47:06.975377 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-01T23:47:06.975428 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-01T23:47:06.976040 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-01T23:47:06.976091 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:47:06.977613 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:47:06.977729 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:47:06.978220 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:47:06.978288 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:47:11.949213 #6] 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.14:9094 +E, [2018-08-01T23:47:11.950065 #6] 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.14:9094 +I, [2018-08-01T23:47:11.950928 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-01T23:47:11.950971 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-01T23:47:11.952230 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-01T23:47:11.952293 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-01T23:47:12.140831 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-01T23:47:12.141066 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-01T23:47:12.151940 #6] INFO -- : Will fetch at most 1048576 bytes at a time per partition from course_change +I, [2018-08-01T23:47:12.152292 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-01T23:47:12.188660 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-01T23:47:12.188859 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-01T23:47:12.252063 #6] INFO -- : Will fetch at most 1048576 bytes at a time per partition from section_change +I, [2018-08-01T23:47:12.252237 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-01T23:47:12.282254 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-01T23:47:12.282394 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:47:12.373414 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-01T23:47:12.373634 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:47:13.283095 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:47:13.374402 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:47:14.283928 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:47:14.375493 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:47:15.320965 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:47:15.376555 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:47:16.322765 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:47:16.377272 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:47:16.822694 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-ae982e82-8174-4fa4-a7a9-dcdf9b3747a9` +I, [2018-08-01T23:47:16.822778 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-01T23:47:16.836164 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-0676a22c-a6a0-45c4-91cc-8b6d4c4c1a41` +I, [2018-08-01T23:47:16.836229 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-01T23:47:17.323453 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:47:17.378197 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:47:17.823607 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-01T23:47:17.836618 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-01T23:47:17.837427 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-01T23:47:17.843331 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-01T23:47:18.016646 #6] INFO -- : Partitions assigned for `section_change`: 0 +I, [2018-08-01T23:47:18.049636 #6] INFO -- : Partitions assigned for `course_change`: 0 +I, [2018-08-01T23:47:18.323813 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-01T23:47:18.323924 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-01T23:47:18.323967 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-01T23:47:18.333671 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-01T23:47:18.379177 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-01T23:47:18.379299 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-01T23:47:18.380105 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-01T23:47:18.403554 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +E, [2018-08-01T23:47:20.131743 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- ArgumentError: message is required. +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:14:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-01T23:47:20.131977 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-01T23:47:20.135160 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- ArgumentError: message is required. +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:14:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-01T23:47:20.135227 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-01T23:47:20.357417 #6] ERROR -- : Client fetch loop error: message is required. +I, [2018-08-01T23:47:20.358040 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-01T23:47:20.367026 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-08-01T23:47:20.382053 #6] ERROR -- : Client fetch loop error: message is required. +I, [2018-08-01T23:47:20.390176 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-01T23:47:20.408332 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-01T23:47:20.412230 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:47:20.437434 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:47:21.367865 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-01T23:47:21.390619 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-1fcbd4dd-0221-4f6a-ad4a-b97d61b3de27` +I, [2018-08-01T23:47:21.390689 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-01T23:47:21.398668 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-01T23:47:21.398785 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-01T23:47:21.409136 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-01T23:47:21.412907 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:47:21.432793 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-a305be66-8ac2-44e0-b493-0a64cde8b69b` +I, [2018-08-01T23:47:21.432864 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-01T23:47:21.438954 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:47:21.453444 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-01T23:47:21.453537 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-01T23:47:22.413290 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:47:22.439344 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:47:23.418534 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:47:23.439698 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:47:24.419196 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:47:24.441036 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:47:25.420405 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:47:25.441435 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:47:26.422586 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:47:26.441995 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:47:27.423425 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:47:27.442521 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:47:28.424735 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:47:28.443007 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:47:29.426273 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:47:29.443884 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:47:30.426672 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:47:30.444289 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:47:31.428247 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:47:31.432379 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-01T23:47:31.445116 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-01T23:47:31.491491 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-01T23:47:32.429501 #6] INFO -- : Seeking course_change/0 to offset 0 +E, [2018-08-01T23:47:33.445489 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- ArgumentError: message is required. +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:14:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-01T23:47:33.445602 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-01T23:47:33.451477 #6] ERROR -- : Client fetch loop error: message is required. +I, [2018-08-01T23:47:33.451889 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-01T23:47:33.454956 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-01T23:47:33.508223 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-01T23:47:33.524248 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- ArgumentError: message is required. +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:14:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-01T23:47:33.527949 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-01T23:47:33.651130 #6] ERROR -- : Client fetch loop error: message is required. +I, [2018-08-01T23:47:33.651507 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-01T23:47:33.668890 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-01T23:47:34.403467 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:47:34.455322 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-01T23:47:34.472407 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-e2af652f-aca5-4555-a79f-2bc50447c141` +I, [2018-08-01T23:47:34.472478 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-01T23:47:34.497407 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-01T23:47:34.497488 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-01T23:47:34.508714 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:47:34.670460 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-01T23:47:34.688740 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-275edfc0-0c5a-4dfd-8c9e-a1e1c72e3786` +I, [2018-08-01T23:47:34.688856 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-01T23:47:34.694925 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-01T23:47:34.694992 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-01T23:47:35.405117 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:47:35.509271 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:47:36.405769 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:47:36.509830 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:47:37.406155 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:47:37.510879 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:47:38.380794 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:47:38.481390 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:47:39.381246 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:47:39.481908 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:47:40.382202 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:47:40.483278 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:47:41.383051 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:47:41.483891 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:47:42.383667 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:47:42.484381 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:47:43.716061 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:47:43.748523 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:47:44.970302 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:47:44.979306 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:47:45.343248 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-01T23:47:45.392286 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-01T23:47:45.971010 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-01T23:47:46.018748 #6] INFO -- : Seeking section_change/0 to offset 0 +E, [2018-08-01T23:47:47.401319 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- ArgumentError: message is required. +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:14:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-01T23:47:47.401507 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-01T23:47:47.411052 #6] ERROR -- : Client fetch loop error: message is required. +I, [2018-08-01T23:47:47.411614 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-01T23:47:47.413795 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-08-01T23:47:47.826254 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- ArgumentError: message is required. +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:14:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-01T23:47:48.024387 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-01T23:47:48.151592 #6] ERROR -- : Client fetch loop error: message is required. +I, [2018-08-01T23:47:48.151928 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-01T23:47:48.188008 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-01T23:47:48.261598 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:47:48.321652 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:47:48.415632 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-01T23:47:48.509318 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-8fba8435-6917-4b25-8bb4-95dc9264a81e` +I, [2018-08-01T23:47:48.509571 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-01T23:47:48.524979 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-01T23:47:48.525126 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-01T23:47:49.189616 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-01T23:47:49.273873 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:47:49.274132 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-d510f048-1212-485b-9cde-d1114cb49c4d` +I, [2018-08-01T23:47:49.274160 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-01T23:47:49.391120 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:47:50.066776 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-01T23:47:50.066905 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-01T23:47:50.275304 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:47:50.393971 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:47:51.276841 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:47:51.396557 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:47:52.277207 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:47:52.398339 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:47:53.278654 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:47:53.398956 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:47:54.279826 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:47:54.400128 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:47:55.298756 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:47:55.407488 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:47:56.299447 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:47:56.454894 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:47:57.300346 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:47:57.455719 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:47:58.412356 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:47:58.413257 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-01T23:47:58.462959 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:47:58.739945 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-01T23:47:59.812739 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-01T23:47:59.429328 #6] INFO -- : Seeking section_change/0 to offset 0 +E, [2018-08-01T23:48:02.533729 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- ArgumentError: message is required. +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:14:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-01T23:48:02.534103 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-01T23:48:02.583768 #6] ERROR -- : Client fetch loop error: message is required. +I, [2018-08-01T23:48:02.584769 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-01T23:48:02.586961 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-01T23:48:02.941578 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-01T23:48:03.141339 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- ArgumentError: message is required. +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:14:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-01T23:48:03.175130 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-01T23:48:03.273969 #6] ERROR -- : Client fetch loop error: message is required. +I, [2018-08-01T23:48:03.275603 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-01T23:48:03.301468 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-01T23:48:03.588078 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-01T23:48:03.943018 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:48:04.181186 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-a368cb1c-727a-4217-80a8-86e73dab8e24` +I, [2018-08-01T23:48:04.183364 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-01T23:48:04.301868 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-01T23:48:04.420945 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:48:04.534231 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-01T23:48:04.534367 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-01T23:48:04.662881 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-76fa7d3f-196e-492c-bdef-b15136a5d82e` +I, [2018-08-01T23:48:04.662955 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-01T23:48:04.737877 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-01T23:48:04.738035 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-01T23:48:05.100718 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:48:05.430479 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:48:06.144295 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:48:06.436521 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:48:07.630729 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:48:07.640901 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:48:08.630097 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:48:08.630436 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:48:09.636277 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:48:09.636557 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:48:10.638789 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:48:10.651282 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:48:11.651942 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:48:11.652347 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:48:12.652714 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:48:12.652874 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:48:12.652976 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-01T23:48:13.653108 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-01T23:48:13.653916 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:48:14.654842 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-01T23:48:14.684208 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- ArgumentError: message is required. +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:14:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-01T23:48:14.701933 #6] INFO -- : Leaving group `notifications_notifications` +I, [2018-08-01T23:48:14.702789 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-01T23:48:15.789251 #6] INFO -- : Seeking course_change/0 to offset 0 +E, [2018-08-01T23:48:15.917603 #6] ERROR -- : Client fetch loop error: message is required. +I, [2018-08-01T23:48:15.918660 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-01T23:48:15.949177 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-01T23:48:15.950961 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-08-01T23:48:16.732658 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- ArgumentError: message is required. +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:14:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-01T23:48:16.778513 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-01T23:48:16.803726 #6] ERROR -- : Client fetch loop error: message is required. +I, [2018-08-01T23:48:16.805031 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-01T23:48:16.809865 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-01T23:48:16.951483 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:48:16.951730 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-01T23:48:16.973507 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-631aa62b-4eb9-49d4-aeb9-8a4212aaff57` +I, [2018-08-01T23:48:16.973739 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-01T23:48:17.028371 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:48:17.028612 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-01T23:48:17.028823 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-01T23:48:17.810511 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-01T23:48:17.832661 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-5854472d-3e4b-462a-b521-76ed7c1dd3c9` +I, [2018-08-01T23:48:17.832756 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-01T23:48:17.856308 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-01T23:48:17.856386 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-01T23:48:17.952312 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:48:18.029113 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:48:18.953254 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:48:19.029741 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:48:19.954347 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:48:20.031006 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:48:20.955191 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:48:21.031750 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:48:21.956379 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:48:22.032996 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:48:22.956886 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:48:23.034241 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:48:23.957306 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:48:24.034706 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:48:24.969130 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:48:25.035573 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:48:25.969618 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:48:26.038148 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:48:26.970111 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:48:27.039791 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:48:27.040763 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-01T23:48:27.862126 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-01T23:48:27.970499 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-01T23:48:28.041908 #6] INFO -- : Seeking course_change/0 to offset 0 +E, [2018-08-01T23:48:29.107659 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- ArgumentError: message is required. +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:14:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-01T23:48:29.107752 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-01T23:48:29.124253 #6] ERROR -- : Client fetch loop error: message is required. +I, [2018-08-01T23:48:29.124583 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-01T23:48:29.126747 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-01T23:48:29.246930 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-01T23:48:29.869049 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- ArgumentError: message is required. +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:14:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-01T23:48:29.874367 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-01T23:48:29.905471 #6] ERROR -- : Client fetch loop error: message is required. +I, [2018-08-01T23:48:29.905965 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-01T23:48:29.911757 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-01T23:48:29.998385 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:48:30.136181 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-01T23:48:30.252611 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:48:30.307496 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-fac3128e-1094-4913-952e-2d6125196859` +I, [2018-08-01T23:48:30.307577 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-01T23:48:30.398432 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-01T23:48:30.398541 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-01T23:48:30.912818 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-01T23:48:30.944668 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-cc5387e6-7828-4bf0-bd41-2099fc8dae5c` +I, [2018-08-01T23:48:30.944740 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-01T23:48:30.977946 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-01T23:48:30.978080 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-01T23:48:30.999034 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:48:31.301128 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:48:31.999567 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:48:32.301468 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:48:33.000222 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:48:33.302194 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:48:34.001881 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:48:34.302718 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:48:35.002714 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:48:35.303169 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:48:36.003533 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:48:36.303977 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:48:37.004351 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:48:37.305306 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:48:38.004852 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:48:38.330679 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:48:39.026972 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:48:39.331336 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:48:40.028917 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:48:40.331675 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:48:40.453029 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-01T23:48:41.009365 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-01T23:48:41.029302 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-01T23:48:41.332234 #6] INFO -- : Seeking section_change/0 to offset 0 +E, [2018-08-01T23:48:42.454916 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- ArgumentError: message is required. +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:14:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-01T23:48:42.454973 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-01T23:48:42.465990 #6] ERROR -- : Client fetch loop error: message is required. +I, [2018-08-01T23:48:42.466234 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-01T23:48:42.469752 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-01T23:48:42.496649 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-01T23:48:43.011205 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- ArgumentError: message is required. +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:14:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-01T23:48:43.014574 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-01T23:48:43.032783 #6] ERROR -- : Client fetch loop error: message is required. +I, [2018-08-01T23:48:43.033010 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-01T23:48:43.041685 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-01T23:48:43.251858 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:48:43.470157 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-01T23:48:43.476875 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-779cd994-483f-4416-9d3b-175461b50519` +I, [2018-08-01T23:48:43.476944 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-01T23:48:43.481622 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-01T23:48:43.481689 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-01T23:48:43.498270 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:48:44.042237 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-01T23:48:44.045187 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-1ade4ae9-412d-40d8-b61a-7d6c50c816f5` +I, [2018-08-01T23:48:44.045232 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-01T23:48:44.048926 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-01T23:48:44.049007 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-01T23:48:44.252392 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:48:44.499406 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:48:45.253025 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:48:45.500179 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:48:46.253583 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:48:46.500684 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:48:47.297590 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:48:47.501012 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:48:48.300515 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:48:48.501379 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:48:49.301669 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:48:49.501819 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:48:50.302213 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:48:50.502232 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:48:51.302673 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:48:51.503134 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:48:52.303190 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:48:52.503618 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:48:53.303705 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:48:53.494129 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-01T23:48:53.503927 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-01T23:48:54.122597 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-01T23:48:54.304502 #6] INFO -- : Seeking course_change/0 to offset 0 +E, [2018-08-01T23:48:55.502137 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- ArgumentError: message is required. +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:14:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-01T23:48:55.502285 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-01T23:48:55.509903 #6] ERROR -- : Client fetch loop error: message is required. +I, [2018-08-01T23:48:55.510175 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-01T23:48:55.511765 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-08-01T23:48:56.129255 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- ArgumentError: message is required. +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:14:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-01T23:51:19.884997 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-01T23:51:19.885093 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-01T23:51:19.906586 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-01T23:51:19.906658 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:51:19.920241 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:51:19.920962 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:51:19.922054 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:51:19.922140 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:51:24.921394 #6] 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.14:9094 +I, [2018-08-01T23:51:24.922110 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-01T23:51:24.922152 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:51:24.922753 #6] 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.14:9094 +I, [2018-08-01T23:51:24.925473 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-01T23:51:24.925523 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:51:24.927437 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:51:24.927657 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:51:24.930771 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:51:24.931217 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:51:29.928141 #6] 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.14:9094 +I, [2018-08-01T23:51:29.929901 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-01T23:51:29.929966 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:51:29.932814 #6] 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.14:9094 +I, [2018-08-01T23:51:29.934136 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-01T23:51:29.934198 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:51:29.935822 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:51:29.935942 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:51:29.936169 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:51:29.936247 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:51:34.936334 #6] 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.14:9094 +I, [2018-08-01T23:51:34.937062 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-01T23:51:34.937105 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:51:34.937610 #6] 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.14:9094 +I, [2018-08-01T23:51:34.938445 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-01T23:51:34.938491 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-01T23:51:35.077855 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-01T23:51:35.078064 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-01T23:51:35.111312 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-01T23:51:35.111448 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-01T23:51:35.140534 #6] INFO -- : Will fetch at most 1048576 bytes at a time per partition from section_change +I, [2018-08-01T23:51:35.140770 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-01T23:51:35.142085 #6] INFO -- : Will fetch at most 1048576 bytes at a time per partition from course_change +I, [2018-08-01T23:51:35.142665 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-01T23:51:35.167760 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-01T23:51:35.167913 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:51:35.168050 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-01T23:51:35.168120 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:51:36.168602 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:51:36.168713 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:51:37.178759 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:51:37.178957 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:51:38.146435 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:51:38.146623 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:51:39.148813 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:51:39.149200 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:51:40.152123 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:51:40.152275 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:51:41.152680 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:51:41.152862 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:51:41.811106 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-754b8853-4554-45ad-97b9-400dc9116a3a` +I, [2018-08-01T23:51:41.811182 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-01T23:51:41.851910 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-ac4c2bca-9b5d-4ca3-bfeb-3cd09dfc9d56` +I, [2018-08-01T23:51:41.852046 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-01T23:51:42.153626 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:51:42.154048 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:51:42.811764 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-01T23:51:42.815862 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-01T23:51:42.852473 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-01T23:51:42.862772 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-01T23:51:43.053477 #6] INFO -- : Partitions assigned for `section_change`: 0 +I, [2018-08-01T23:51:43.055236 #6] INFO -- : Partitions assigned for `course_change`: 0 +I, [2018-08-01T23:51:43.154241 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:51:43.154436 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:51:44.156455 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-01T23:51:44.157206 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-01T23:51:44.157325 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-01T23:51:44.157378 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-01T23:51:44.156855 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-01T23:51:44.159510 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-01T23:51:44.167155 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-01T23:51:44.170243 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +E, [2018-08-01T23:51:45.309734 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- NoMethodError: undefined method `write' for nil:NilClass +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:139:in `write' +/usr/src/app/app/controllers/eventstream.rb:15:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-01T23:51:45.310020 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-01T23:51:45.313842 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- NoMethodError: undefined method `write' for nil:NilClass +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:139:in `write' +/usr/src/app/app/controllers/eventstream.rb:15:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-01T23:51:45.314062 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-01T23:51:45.396467 #6] ERROR -- : Client fetch loop error: undefined method `write' for nil:NilClass +I, [2018-08-01T23:51:45.397211 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-01T23:51:45.415562 #6] ERROR -- : Client fetch loop error: undefined method `write' for nil:NilClass +I, [2018-08-01T23:51:45.415898 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-01T23:51:45.442467 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-08-01T23:51:45.446887 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-01T23:51:45.500957 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:51:45.614383 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:51:46.442822 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-01T23:51:46.447260 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-01T23:51:46.478418 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-e173e1a9-3a95-49a5-b287-9f902429907f` +I, [2018-08-01T23:51:46.478496 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-01T23:51:46.486303 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-5a2e0691-e5bf-49b3-bb75-f372063e2127` +I, [2018-08-01T23:51:46.486354 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-01T23:51:46.492913 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-01T23:51:46.492985 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-01T23:51:46.501328 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:51:46.505806 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-01T23:51:46.505870 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-01T23:51:46.615144 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:51:47.502977 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:51:47.615796 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:51:48.503330 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:51:48.616332 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:51:49.503770 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:51:49.649529 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:51:50.504585 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:51:50.651457 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:51:51.507243 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:51:51.653276 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:51:52.507611 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:51:52.654271 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:51:53.508260 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:51:53.672788 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:51:55.597049 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:51:55.769207 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:51:56.479768 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-01T23:51:56.496513 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-01T23:51:56.601427 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-01T23:51:56.775316 #6] INFO -- : Seeking course_change/0 to offset 0 +E, [2018-08-01T23:51:58.545278 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- NoMethodError: undefined method `write' for nil:NilClass +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:139:in `write' +/usr/src/app/app/controllers/eventstream.rb:15:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-01T23:51:58.545792 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-01T23:51:58.552212 #6] ERROR -- : Client fetch loop error: undefined method `write' for nil:NilClass +I, [2018-08-01T23:51:58.555111 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-01T23:51:58.558367 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-08-01T23:51:58.604526 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- NoMethodError: undefined method `write' for nil:NilClass +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:139:in `write' +/usr/src/app/app/controllers/eventstream.rb:15:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-01T23:51:58.613436 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-01T23:51:58.638993 #6] ERROR -- : Client fetch loop error: undefined method `write' for nil:NilClass +I, [2018-08-01T23:51:58.640064 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-01T23:51:58.655813 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-01T23:51:58.663319 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:51:58.765475 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:51:59.558821 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-01T23:51:59.578043 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-0e704d48-d90d-4df2-a80b-ec64dc7abd51` +I, [2018-08-01T23:51:59.578096 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-01T23:51:59.597438 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-01T23:51:59.597598 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-01T23:51:59.656563 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-01T23:51:59.665023 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:51:59.676602 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-9cd7b7a2-b48a-4206-8556-8683ad2ef1f6` +I, [2018-08-01T23:51:59.676667 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-01T23:51:59.699053 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-01T23:51:59.699238 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-01T23:51:59.766572 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:52:00.667481 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:52:00.767305 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:52:01.668225 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:52:01.768883 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:52:02.668984 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:52:02.769981 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:52:03.670466 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:52:03.777275 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:52:04.671286 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:52:04.778694 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:52:05.673260 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:52:05.788387 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:52:06.674040 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:52:06.788897 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:52:07.674972 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:52:07.789523 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:52:08.645576 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:52:08.753816 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:52:09.834053 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:52:09.862270 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-01T23:52:09.863876 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-01T23:52:09.865163 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:52:10.860663 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-01T23:52:10.866703 #6] INFO -- : Seeking section_change/0 to offset 0 +E, [2018-08-01T23:52:11.893031 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- NoMethodError: undefined method `write' for nil:NilClass +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:139:in `write' +/usr/src/app/app/controllers/eventstream.rb:15:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-01T23:52:11.893231 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-01T23:52:11.896574 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- NoMethodError: undefined method `write' for nil:NilClass +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:139:in `write' +/usr/src/app/app/controllers/eventstream.rb:15:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-01T23:52:11.903847 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-01T23:52:11.901952 #6] ERROR -- : Client fetch loop error: undefined method `write' for nil:NilClass +I, [2018-08-01T23:52:11.904786 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-01T23:52:11.917124 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-08-01T23:52:11.934193 #6] ERROR -- : Client fetch loop error: undefined method `write' for nil:NilClass +I, [2018-08-01T23:52:11.934797 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-01T23:52:11.940100 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-01T23:52:12.022621 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:52:12.025369 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:52:12.919235 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-01T23:52:12.923767 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-b819fe98-d5e2-4fc5-9fb3-7c5a41a943c2` +I, [2018-08-01T23:52:12.923883 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-01T23:52:12.939112 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-01T23:52:12.939227 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-01T23:52:12.940863 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-01T23:52:12.973218 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-a8030fb8-8d38-43ce-9e2a-e33808b8a279` +I, [2018-08-01T23:52:12.973323 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-01T23:52:12.978373 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-01T23:52:12.978496 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-01T23:52:13.023399 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:52:13.027219 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:52:14.024439 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:52:14.027543 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:52:15.024908 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:52:15.027864 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:52:16.025531 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:52:16.028405 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:52:17.026044 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:52:17.028997 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:52:18.028312 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:52:18.029328 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:52:19.028985 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:52:19.029755 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:52:20.031036 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:52:20.031147 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:52:21.031599 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:52:21.031800 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:52:22.033103 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:52:22.033648 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:52:22.993535 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-01T23:52:22.984441 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-01T23:52:23.053783 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-01T23:52:23.054400 #6] INFO -- : Seeking course_change/0 to offset 0 +E, [2018-08-01T23:52:25.022555 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- NoMethodError: undefined method `write' for nil:NilClass +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:139:in `write' +/usr/src/app/app/controllers/eventstream.rb:15:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-01T23:52:25.022671 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-01T23:52:25.027429 #6] ERROR -- : Client fetch loop error: undefined method `write' for nil:NilClass +I, [2018-08-01T23:52:25.027609 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-01T23:52:25.031217 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-08-01T23:52:25.055723 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- NoMethodError: undefined method `write' for nil:NilClass +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:139:in `write' +/usr/src/app/app/controllers/eventstream.rb:15:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-01T23:52:25.055787 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-01T23:52:25.061378 #6] ERROR -- : Client fetch loop error: undefined method `write' for nil:NilClass +I, [2018-08-01T23:52:25.061555 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-01T23:52:25.064596 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-01T23:52:25.140905 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:52:25.163339 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:52:26.267024 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:52:26.268262 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:52:26.268403 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-01T23:52:26.280611 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-01T23:52:26.570597 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-5ce8b183-36d0-4441-86b5-f8857eae9113` +I, [2018-08-01T23:52:26.570697 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-01T23:52:26.578917 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-aee5cc48-2c2a-4ca5-93fe-74480d8e2b19` +I, [2018-08-01T23:52:26.579065 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-01T23:52:26.778252 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-01T23:52:26.778505 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-01T23:52:26.779911 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-01T23:52:26.779980 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-01T23:52:27.577034 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:52:27.577326 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:52:28.578095 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:52:28.578357 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:52:29.579189 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:52:29.579349 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:52:31.111901 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:52:31.110786 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:52:32.253490 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:52:32.253643 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:52:33.254884 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:52:33.258929 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:52:34.255528 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:52:34.259433 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:52:35.111420 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-01T23:52:35.115734 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-01T23:52:35.256237 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-01T23:52:35.260192 #6] INFO -- : Seeking course_change/0 to offset 0 +E, [2018-08-01T23:52:37.155205 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- NoMethodError: undefined method `write' for nil:NilClass +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:139:in `write' +/usr/src/app/app/controllers/eventstream.rb:15:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-01T23:54:29.003832 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-01T23:54:29.003929 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-01T23:54:29.007946 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-01T23:54:29.008033 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:54:29.012775 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:54:29.012945 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:54:29.013383 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:54:29.013485 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:54:34.014021 #6] 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.14:9094 +I, [2018-08-01T23:54:34.015551 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-01T23:54:34.015632 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:54:34.013616 #6] 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.14:9094 +I, [2018-08-01T23:54:34.025101 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-01T23:54:34.025164 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:54:34.025632 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:54:34.025732 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:54:34.051425 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:54:34.051678 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:54:39.005208 #6] 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.14:9094 +I, [2018-08-01T23:54:39.008662 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-01T23:54:39.008776 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:54:39.039476 #6] 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.14:9094 +I, [2018-08-01T23:54:39.041585 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-01T23:54:39.041618 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:54:39.509957 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:54:39.510380 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:54:39.510501 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:54:39.510633 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:54:44.511332 #6] 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.14:9094 +I, [2018-08-01T23:54:44.517764 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-01T23:54:44.517892 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:54:44.523804 #6] 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.14:9094 +I, [2018-08-01T23:54:44.546074 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-01T23:54:44.546166 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:54:44.943923 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:54:44.944363 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:54:44.944868 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:54:44.944974 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:54:51.297411 #6] 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.14:9094 +E, [2018-08-01T23:54:51.497613 #6] 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.14:9094 +I, [2018-08-01T23:54:53.278795 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-01T23:54:53.281091 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-01T23:54:53.611904 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-01T23:54:53.612012 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:54:53.630342 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:54:53.630707 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:54:53.632959 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:54:53.633094 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:54:58.734147 #6] 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.14:9094 +E, [2018-08-01T23:54:58.795077 #6] 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.14:9094 +I, [2018-08-01T23:54:58.818734 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-01T23:54:58.818857 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-01T23:54:58.851165 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-01T23:54:58.851297 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:54:58.857146 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:54:58.857290 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:54:58.876820 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:54:58.877211 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:55:03.858717 #6] 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.14:9094 +I, [2018-08-01T23:55:03.874479 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-01T23:55:03.874661 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:55:03.878688 #6] 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.14:9094 +I, [2018-08-01T23:55:03.918248 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-01T23:55:03.942578 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:55:03.966532 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:55:03.966726 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:55:03.969333 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:55:03.969941 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:55:08.940467 #6] 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.14:9094 +I, [2018-08-01T23:55:08.945902 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-01T23:55:08.946150 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:55:08.946993 #6] 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.14:9094 +I, [2018-08-01T23:55:08.950504 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-01T23:55:08.950985 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:55:08.968574 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:55:08.968804 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:55:08.969219 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:55:08.969282 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-01T23:55:13.969856 #6] 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.14:9094 +I, [2018-08-01T23:55:13.972177 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-01T23:55:13.972234 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:55:13.973131 #6] 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.14:9094 +I, [2018-08-01T23:55:14.135700 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-01T23:55:14.135765 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:55:15.408422 #6] ERROR -- : No brokers in cluster +E, [2018-08-01T23:55:15.422534 #6] ERROR -- : No brokers in cluster +E, [2018-08-01T23:55:20.409965 #6] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: + +I, [2018-08-01T23:55:20.424027 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-01T23:55:20.424093 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:55:20.424229 #6] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: + +I, [2018-08-01T23:55:20.425398 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-01T23:55:20.425432 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-01T23:55:20.610965 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-01T23:55:20.611651 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-01T23:55:20.620551 #6] INFO -- : Will fetch at most 1048576 bytes at a time per partition from course_change +I, [2018-08-01T23:55:20.621044 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-01T23:55:20.635063 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-01T23:55:20.635419 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:55:20.754639 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-01T23:55:20.754806 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-01T23:55:20.827537 #6] INFO -- : Will fetch at most 1048576 bytes at a time per partition from section_change +I, [2018-08-01T23:55:20.827916 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-01T23:55:20.833394 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-01T23:55:20.833673 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:55:21.635822 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:55:21.834104 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:55:22.637468 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:55:22.875751 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:55:23.638054 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:55:23.885481 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:55:24.638636 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:55:24.886287 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:55:25.639343 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:55:25.887528 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:55:26.640410 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:55:26.888524 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:55:27.450807 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-9abccd94-d6b2-4c61-a89b-c3e938c4644f` +I, [2018-08-01T23:55:27.450915 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-01T23:55:27.492924 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-1d4ef07a-a322-43be-b5b4-7067d1c02998` +I, [2018-08-01T23:55:27.492991 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-01T23:55:27.641118 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:55:27.889143 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:55:28.464393 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-01T23:55:28.484268 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-01T23:55:28.493770 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-01T23:55:28.554761 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-01T23:55:28.641659 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:55:28.826119 #6] INFO -- : Partitions assigned for `course_change`: 0 +I, [2018-08-01T23:55:28.848212 #6] INFO -- : Partitions assigned for `section_change`: 0 +I, [2018-08-01T23:55:28.890021 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:55:29.642007 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-01T23:55:29.642123 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-01T23:55:29.642155 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-01T23:55:29.659638 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-01T23:55:29.891185 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-01T23:55:29.892887 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-01T23:55:29.893146 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-01T23:55:29.913339 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +E, [2018-08-01T23:55:33.511989 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- ArgumentError: message is required. +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:14:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-01T23:55:33.512190 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-01T23:55:33.518134 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- ArgumentError: message is required. +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:14:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-01T23:55:33.518227 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-01T23:55:33.570655 #6] ERROR -- : Client fetch loop error: message is required. +E, [2018-08-01T23:55:33.577779 #6] ERROR -- : Client fetch loop error: message is required. +I, [2018-08-01T23:55:33.578325 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-01T23:55:33.591035 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-01T23:55:33.592701 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-01T23:55:33.598588 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-01T23:55:33.622207 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:55:33.831078 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:55:34.594896 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-01T23:55:34.599261 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-01T23:55:34.721916 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:55:34.795212 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-fefdbecc-737f-46fd-81da-2c7fb8805c52` +I, [2018-08-01T23:55:34.800822 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-01T23:55:34.867489 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-93fa6e91-b2bc-4bdd-994e-0db06438887b` +I, [2018-08-01T23:55:34.867569 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-01T23:55:34.868128 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:55:34.899374 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-01T23:55:34.899469 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-01T23:55:34.928954 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-01T23:55:34.929050 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-01T23:55:35.722873 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:55:35.869358 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:55:36.743028 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:55:36.870765 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:55:37.743463 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:55:37.872062 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:55:38.705922 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:55:38.835402 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:55:39.708073 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:55:39.836674 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:55:40.709365 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:55:40.837609 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:55:41.710114 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:55:41.838809 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:55:42.712938 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:55:42.839255 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:55:43.714699 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:55:43.840462 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:55:44.715257 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:55:44.841695 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:55:44.930119 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-01T23:55:44.948980 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-01T23:55:45.715840 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-01T23:55:45.843776 #6] INFO -- : Seeking course_change/0 to offset 0 +E, [2018-08-01T23:55:46.941786 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- ArgumentError: message is required. +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:14:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-01T23:55:46.941893 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-01T23:55:46.956904 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- ArgumentError: message is required. +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:14:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-01T23:55:46.965565 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-01T23:55:46.962012 #6] ERROR -- : Client fetch loop error: message is required. +I, [2018-08-01T23:55:46.966208 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-01T23:55:46.976187 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-01T23:55:46.980442 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-01T23:55:46.985402 #6] ERROR -- : Client fetch loop error: message is required. +I, [2018-08-01T23:55:46.985801 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-01T23:55:46.991438 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-01T23:55:47.030519 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:55:47.976628 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-01T23:55:47.980993 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:55:47.991845 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-01T23:55:47.999766 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-a3babfab-3fc2-4e7f-87e3-abcbeecc2a9d` +I, [2018-08-01T23:55:48.000404 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-01T23:55:48.018051 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-09fe27ab-2788-4132-9c33-c53e79a95bcf` +I, [2018-08-01T23:55:48.018117 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-01T23:55:48.025327 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-01T23:55:48.025410 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-01T23:55:48.031489 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:55:48.047157 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-01T23:55:48.047353 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-01T23:55:48.981554 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:55:49.032080 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:55:49.982849 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:55:50.032942 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:55:50.983906 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:55:51.033417 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:55:51.986378 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:55:52.033923 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:55:52.987089 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:55:53.034949 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:55:53.988591 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:55:54.039042 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:55:55.006807 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:55:55.045753 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:55:56.016859 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:55:56.046892 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:55:57.019218 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:55:57.056877 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:55:58.022859 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:55:58.063087 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:55:58.083651 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-01T23:55:58.084783 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-01T23:55:59.024067 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-01T23:55:59.064893 #6] INFO -- : Seeking section_change/0 to offset 0 +E, [2018-08-01T23:56:00.090256 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- ArgumentError: message is required. +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:14:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-01T23:56:00.090333 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-01T23:56:00.091510 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- ArgumentError: message is required. +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:14:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-01T23:56:00.095159 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-01T23:56:00.099853 #6] ERROR -- : Client fetch loop error: message is required. +I, [2018-08-01T23:56:00.100261 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-01T23:56:00.100998 #6] ERROR -- : Client fetch loop error: message is required. +I, [2018-08-01T23:56:00.101199 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-01T23:56:00.101917 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-08-01T23:56:00.102490 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-01T23:56:00.106362 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:56:00.236142 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:56:01.266715 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-01T23:56:01.317657 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-01T23:56:01.362939 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:56:01.363742 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:56:02.056026 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-74ee3faa-7b5c-4edb-aa30-f51837cc452e` +I, [2018-08-01T23:56:02.056101 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-01T23:56:02.081628 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-7e0ee280-d1f4-4e4c-9725-beae3c27e2d9` +I, [2018-08-01T23:56:02.081688 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-01T23:56:02.083870 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-01T23:56:02.083976 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-01T23:56:02.128558 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-01T23:56:02.128878 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-01T23:56:02.364863 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:56:02.365062 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:56:03.437691 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:56:03.589569 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:56:04.438690 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:56:04.590025 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:56:05.439188 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:56:05.590647 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:56:06.439944 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:56:06.591091 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:56:07.440464 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:56:07.592306 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:56:08.567446 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:56:08.607416 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:56:09.568864 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:56:09.611099 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:56:10.218231 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-01T23:56:10.263240 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-01T23:56:10.569205 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-01T23:56:10.618715 #6] INFO -- : Seeking section_change/0 to offset 0 +E, [2018-08-01T23:56:12.225522 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- ArgumentError: message is required. +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:14:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-01T23:56:12.239622 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-01T23:56:12.248705 #6] ERROR -- : Client fetch loop error: message is required. +I, [2018-08-01T23:56:12.249450 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-01T23:56:12.258161 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-08-01T23:56:12.267140 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- ArgumentError: message is required. +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:14:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-01T23:56:12.267342 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-01T23:56:12.287780 #6] ERROR -- : Client fetch loop error: message is required. +I, [2018-08-01T23:56:12.357352 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-01T23:56:12.362819 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-01T23:56:12.450624 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:56:12.630355 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:56:13.258540 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-01T23:56:13.267904 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-6a0102d2-0ec8-4f98-955d-d2ce94b1f581` +I, [2018-08-01T23:56:13.267971 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-01T23:56:13.271343 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-01T23:56:13.271573 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-01T23:56:13.364019 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-01T23:56:13.369166 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-a36641a7-98f3-4455-a0eb-621b64d07d2f` +I, [2018-08-01T23:56:13.369260 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-01T23:56:13.371256 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-01T23:56:13.371320 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-01T23:56:13.452510 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:56:13.638667 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:56:14.452914 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:56:14.651413 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:56:15.455002 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:56:15.652378 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:56:16.455592 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:56:16.652788 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:56:17.456568 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:56:17.657895 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:56:18.457884 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:56:18.658382 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:56:19.459529 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:56:19.659758 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:56:20.459987 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:56:20.660585 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:56:21.460394 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:56:21.661019 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:56:22.462885 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:56:22.672532 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:56:23.279849 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-01T23:56:23.378634 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-01T23:56:23.463959 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-01T23:56:23.735712 #6] INFO -- : Seeking course_change/0 to offset 0 +E, [2018-08-01T23:56:25.299775 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- ArgumentError: message is required. +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:14:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-01T23:56:25.302211 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-01T23:56:25.310986 #6] ERROR -- : Client fetch loop error: message is required. +I, [2018-08-01T23:56:25.311284 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-01T23:56:25.314567 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-01T23:56:25.359695 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-01T23:56:25.391965 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- ArgumentError: message is required. +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:14:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-01T23:56:25.392027 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-01T23:56:25.396518 #6] ERROR -- : Client fetch loop error: message is required. +I, [2018-08-01T23:56:25.396811 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-01T23:56:25.397694 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-01T23:56:25.477907 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:56:26.315052 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-01T23:56:26.322110 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-b0f92291-e499-4f20-a1ce-14ea6eb59f5c` +I, [2018-08-01T23:56:26.322172 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-01T23:56:26.324215 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-01T23:56:26.324275 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-01T23:56:26.360169 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:56:26.397974 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-01T23:56:26.405372 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-11e405db-ed40-4a62-b478-fc93f789efd8` +I, [2018-08-01T23:56:26.405437 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-01T23:56:26.409060 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-01T23:56:26.409140 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-01T23:56:26.478229 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:56:27.403379 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:56:27.480015 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:56:28.403838 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:56:28.480805 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:56:29.404704 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:56:29.482707 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:56:30.405105 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:56:30.498205 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:56:31.406224 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:56:31.499967 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:56:32.406862 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:56:32.500545 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:56:33.407569 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:56:33.502180 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:56:34.413334 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:56:34.503212 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:56:35.459668 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:56:35.506929 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:56:36.393744 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-01T23:56:36.435974 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-01T23:56:36.467930 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-01T23:56:36.508165 #6] INFO -- : Seeking section_change/0 to offset 0 +E, [2018-08-01T23:56:38.421347 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- ArgumentError: message is required. +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:14:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-01T23:56:38.477217 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-01T23:56:38.440459 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- ArgumentError: message is required. +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:14:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-01T23:56:38.478016 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-01T23:56:38.535820 #6] ERROR -- : Client fetch loop error: message is required. +I, [2018-08-01T23:56:38.563653 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-01T23:56:38.565077 #6] ERROR -- : Client fetch loop error: message is required. +I, [2018-08-01T23:56:38.565313 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-01T23:56:38.567925 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-08-01T23:56:38.568210 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-01T23:56:38.733792 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:56:38.825313 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:56:39.569035 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-01T23:56:39.570410 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-01T23:56:39.609998 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-8e912da8-d3f3-44c3-899c-bdfe19f201b4` +I, [2018-08-01T23:56:39.610054 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-01T23:56:39.614417 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-01T23:56:39.614480 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-01T23:56:39.671068 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-a9168982-9692-45d6-a0ae-431f00cebb1e` +I, [2018-08-01T23:56:39.671151 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-01T23:56:39.680433 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-01T23:56:39.680539 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-01T23:56:39.734531 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:56:39.829647 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:56:40.734945 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:56:40.832383 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:56:41.947698 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:56:41.947844 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:56:42.948330 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:56:42.948896 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:56:43.950282 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:56:43.950529 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:56:44.970852 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:56:44.971113 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:56:45.973269 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:56:45.974005 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:56:46.974317 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:56:46.974608 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:56:47.979538 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:56:47.979939 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:56:48.979905 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:56:48.980229 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:56:49.980852 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:56:49.981280 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:56:49.984530 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-01T23:56:49.986131 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-01T23:56:50.981874 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-01T23:56:50.982533 #6] INFO -- : Seeking section_change/0 to offset 0 +E, [2018-08-01T23:56:51.998587 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- ArgumentError: message is required. +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:14:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-01T23:56:51.998748 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-01T23:56:51.999681 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- ArgumentError: message is required. +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:14:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-01T23:56:51.999767 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-01T23:56:52.004214 #6] ERROR -- : Client fetch loop error: message is required. +I, [2018-08-01T23:56:52.004585 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-01T23:56:52.008412 #6] ERROR -- : Client fetch loop error: message is required. +I, [2018-08-01T23:56:52.008645 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-01T23:56:52.009042 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-08-01T23:56:52.009732 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-01T23:56:52.043496 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:56:52.069201 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:56:53.009275 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-01T23:56:53.010985 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-01T23:56:53.019515 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-39f0926b-5531-4c0a-b08c-6e9e1844c23c` +I, [2018-08-01T23:56:53.019576 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-01T23:56:53.044404 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:56:53.048438 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-01T23:56:53.048532 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-01T23:56:53.056519 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-4070305a-238b-4cf8-b71d-692655a7faee` +I, [2018-08-01T23:56:53.056626 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-01T23:56:53.069742 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:56:53.070433 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-01T23:56:53.070721 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-01T23:56:54.046188 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:56:54.070248 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:56:55.046713 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:56:55.071060 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:56:56.047284 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:56:56.071661 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:56:57.047706 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:56:57.072552 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:56:58.049385 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:56:58.073278 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:56:59.049926 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:56:59.073642 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:57:00.050417 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:57:00.074213 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:57:01.051720 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:57:01.075493 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:57:02.052433 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:57:02.076052 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:57:03.053485 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:57:03.054055 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-01T23:57:03.076496 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-01T23:57:03.111743 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-01T23:57:04.053791 #6] INFO -- : Seeking section_change/0 to offset 0 +E, [2018-08-01T23:57:05.067544 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- ArgumentError: message is required. +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:14:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-01T23:57:05.067598 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-01T23:57:05.070222 #6] ERROR -- : Client fetch loop error: message is required. +I, [2018-08-01T23:57:05.070494 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-01T23:57:05.071857 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-08-01T23:57:05.142635 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- ArgumentError: message is required. +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:14:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-01T23:57:05.147679 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-01T23:57:05.150465 #6] ERROR -- : Client fetch loop error: message is required. +I, [2018-08-01T23:57:05.153082 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-01T23:57:05.154158 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-01T23:57:05.189960 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:57:05.205667 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:57:06.072099 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-01T23:57:06.076014 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-eaa06d61-dcac-4cc2-b1c0-f1403c0b9831` +I, [2018-08-01T23:57:06.076058 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-01T23:57:06.078518 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-01T23:57:06.078578 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-01T23:57:06.154775 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-01T23:57:06.162048 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-45252555-c26e-4913-a780-828f22373311` +I, [2018-08-01T23:57:06.162116 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-01T23:57:06.167897 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-01T23:57:06.167984 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-01T23:57:06.190324 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:57:06.207390 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:57:07.191035 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:57:07.208138 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:57:08.155654 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:57:08.173163 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:57:09.189522 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:57:09.190412 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:57:10.264837 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:57:10.265060 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:57:11.265635 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:57:11.266207 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:57:12.339874 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:57:12.385628 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:57:13.380710 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:57:14.613208 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:57:14.032040 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:57:15.624134 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:57:16.022796 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:57:16.587128 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-01T23:57:16.600642 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-01T23:57:16.633037 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-01T23:57:17.256572 #6] INFO -- : Seeking section_change/0 to offset 0 +E, [2018-08-01T23:57:18.712294 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- ArgumentError: message is required. +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:14:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-01T23:57:18.712723 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-01T23:57:18.715574 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- ArgumentError: message is required. +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:14:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-01T23:57:18.720958 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-01T23:57:18.742117 #6] ERROR -- : Client fetch loop error: message is required. +I, [2018-08-01T23:57:18.743124 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-01T23:57:18.762608 #6] ERROR -- : Client fetch loop error: message is required. +I, [2018-08-01T23:57:18.764396 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-01T23:57:18.769231 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-08-01T23:57:18.782936 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-01T23:57:19.325068 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:57:19.352285 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:57:19.769507 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-01T23:57:19.775998 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-022e533f-b654-45d6-a7ea-2c8e3879818b` +I, [2018-08-01T23:57:19.776068 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-01T23:57:19.780042 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-01T23:57:19.780238 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-01T23:57:19.783238 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-01T23:57:19.792063 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-4e129c6e-83eb-483a-afec-affda9ddaee1` +I, [2018-08-01T23:57:19.792109 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-01T23:57:19.799746 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-01T23:57:19.799810 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-01T23:57:20.326640 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:57:20.353547 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:57:21.327312 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:57:21.355385 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:57:22.328494 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:57:22.356200 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:57:23.330205 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:57:23.357972 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:57:24.331134 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:57:24.358641 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:57:25.331612 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:57:25.359316 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:57:26.332697 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:57:26.360415 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:57:27.333397 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:57:27.361314 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:57:28.334018 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:57:28.362346 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:57:29.336616 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:57:29.402803 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:57:29.807785 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-01T23:57:29.813786 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-01T23:57:30.337151 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-01T23:57:30.403331 #6] INFO -- : Seeking course_change/0 to offset 0 +E, [2018-08-01T23:57:31.827865 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- ArgumentError: message is required. +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:14:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-01T23:57:31.827966 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-01T23:57:31.832524 #6] ERROR -- : Client fetch loop error: message is required. +I, [2018-08-01T23:57:31.832716 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-01T23:57:31.834196 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- ArgumentError: message is required. +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:14:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-01T23:57:31.841646 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-01T23:57:31.836555 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-08-01T23:57:31.845646 #6] ERROR -- : Client fetch loop error: message is required. +I, [2018-08-01T23:57:31.845833 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-01T23:57:31.847702 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-01T23:57:31.965807 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:57:32.563212 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:57:32.842690 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-01T23:57:32.846195 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-6afc1db1-fb71-4e40-9e0b-6cc2709c254f` +I, [2018-08-01T23:57:32.846240 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-01T23:57:32.848001 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-01T23:57:32.851877 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-01T23:57:32.851999 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-01T23:57:32.855528 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-41b95588-d63f-4944-8e9b-4c2705d8b881` +I, [2018-08-01T23:57:32.855579 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-01T23:57:32.858019 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-01T23:57:32.858090 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-01T23:57:32.966461 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:57:33.563701 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:57:33.966943 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:57:34.565270 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:57:34.967539 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:57:35.565966 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:57:35.967987 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:57:36.566625 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:57:36.968370 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:57:37.570010 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:57:37.990645 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:57:38.639681 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:57:39.059633 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:57:39.645118 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:57:40.060481 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:57:40.648507 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:57:41.097026 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:57:41.657207 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:57:42.108558 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:57:42.663693 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-01T23:57:42.953702 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-01T23:57:42.973916 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-01T23:57:43.109111 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-01T23:57:43.664897 #6] INFO -- : Seeking course_change/0 to offset 0 +E, [2018-08-01T23:57:45.074160 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- ArgumentError: message is required. +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:14:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-01T23:57:45.074293 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-01T23:57:45.077228 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- ArgumentError: message is required. +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:14:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-01T23:59:40.841057 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-01T23:59:40.842269 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-01T23:59:40.843899 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-01T23:59:40.843957 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:59:40.845421 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-01T23:59:40.845536 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-01T23:59:40.845798 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-01T23:59:40.845863 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-01T23:59:45.845953 #6] 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.13:9094 +I, [2018-08-01T23:59:45.847234 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-01T23:59:45.847321 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:59:45.847823 #6] 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.13:9094 +I, [2018-08-01T23:59:45.853102 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-01T23:59:45.853169 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:59:45.859720 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-01T23:59:45.859858 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-01T23:59:45.860355 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-01T23:59:45.860461 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-01T23:59:50.860546 #6] 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.13:9094 +E, [2018-08-01T23:59:50.862025 #6] 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.13:9094 +I, [2018-08-01T23:59:50.863241 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-01T23:59:50.863398 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-01T23:59:50.872811 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-01T23:59:50.876247 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:59:50.900784 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-01T23:59:50.900988 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-01T23:59:50.901402 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-01T23:59:50.901511 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-01T23:59:56.289651 #6] 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.13:9094 +I, [2018-08-01T23:59:56.352889 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-01T23:59:56.353047 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:59:56.353857 #6] 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.13:9094 +I, [2018-08-01T23:59:56.354818 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-01T23:59:56.354867 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-01T23:59:56.378108 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-01T23:59:56.378710 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-01T23:59:56.397690 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-01T23:59:56.397875 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-02T00:00:01.379332 #6] 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.13:9094 +I, [2018-08-02T00:00:01.380644 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-02T00:00:01.380701 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-02T00:00:01.398221 #6] 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.13:9094 +I, [2018-08-02T00:00:01.399017 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-02T00:00:01.399057 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-02T00:00:01.544313 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-02T00:00:01.544635 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-02T00:00:01.600907 #6] INFO -- : Will fetch at most 1048576 bytes at a time per partition from course_change +I, [2018-08-02T00:00:01.601194 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-02T00:00:01.684324 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-02T00:00:01.684584 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-02T00:00:01.732444 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-02T00:00:01.732664 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:00:01.783311 #6] INFO -- : Will fetch at most 1048576 bytes at a time per partition from section_change +I, [2018-08-02T00:00:01.783823 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-02T00:00:01.820167 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-02T00:00:01.820294 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:00:02.733274 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:00:02.823722 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:00:03.760954 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:00:03.827214 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:00:04.762179 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:00:04.828252 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:00:05.762819 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:00:05.829255 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:00:06.763499 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:00:06.830051 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:00:07.764096 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:00:07.833935 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:00:08.350146 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-3b58c40f-63d2-47a0-be42-7e4b5ac43f83` +I, [2018-08-02T00:00:08.356746 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-23977f81-eb58-4a99-8fd7-4cf119bbf8ec` +I, [2018-08-02T00:00:08.362146 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-02T00:00:08.362010 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-02T00:00:08.731613 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:00:08.800371 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:00:09.329930 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-02T00:00:09.332844 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-02T00:00:09.397072 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-02T00:00:09.398218 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-02T00:00:09.439401 #6] INFO -- : Partitions assigned for `section_change`: 0 +I, [2018-08-02T00:00:09.503298 #6] INFO -- : Partitions assigned for `course_change`: 0 +I, [2018-08-02T00:00:09.732389 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-02T00:00:09.732608 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-02T00:00:09.732666 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-02T00:00:09.740183 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-02T00:00:09.800790 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-02T00:00:09.801012 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-02T00:00:09.801067 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-02T00:00:09.885088 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +E, [2018-08-02T00:00:11.615746 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- ArgumentError: message is required. +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:14:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T00:00:11.615863 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-02T00:00:11.620376 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- ArgumentError: message is required. +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:14:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T00:00:11.622450 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-02T00:00:11.778444 #6] ERROR -- : Client fetch loop error: message is required. +I, [2018-08-02T00:00:11.778831 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-02T00:00:11.781032 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-08-02T00:00:11.784543 #6] ERROR -- : Client fetch loop error: message is required. +I, [2018-08-02T00:00:11.785973 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-02T00:00:11.791446 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-02T00:00:11.896670 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-02T00:00:12.225133 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:00:12.781652 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-02T00:00:12.791887 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:00:12.807810 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-6d71d8d6-c427-4cc1-ad33-c2996780c251` +I, [2018-08-02T00:00:12.807886 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-02T00:00:12.825833 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-02T00:00:12.825943 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-02T00:00:12.898939 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-02T00:00:13.033021 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-8642840a-04b3-42a3-99d9-311a80cafc40` +I, [2018-08-02T00:00:13.033092 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-02T00:00:13.045512 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-02T00:00:13.045631 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-02T00:00:13.225892 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:00:13.792204 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:00:14.226250 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:00:14.792684 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:00:15.226697 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:00:15.793296 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:00:16.227610 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:00:16.793696 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:00:17.228498 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:00:17.794012 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:00:18.229360 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:00:18.794577 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:00:19.229746 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:00:19.795069 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:00:20.230316 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:00:20.969317 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:00:21.457965 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:00:22.598474 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:00:22.599590 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:00:23.286063 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-02T00:00:23.506683 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-02T00:00:23.717750 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-02T00:00:23.727389 #6] INFO -- : Seeking section_change/0 to offset 0 +E, [2018-08-02T00:00:25.311361 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- ArgumentError: message is required. +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:14:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T00:00:25.311513 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-02T00:00:25.438582 #6] ERROR -- : Client fetch loop error: message is required. +I, [2018-08-02T00:00:25.440760 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-02T00:00:25.582499 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- ArgumentError: message is required. +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:14:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T00:00:26.347422 #6] INFO -- : Leaving group `notifications_course_change` +I, [2018-08-02T00:00:26.340408 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-02T00:00:26.423484 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-08-02T00:00:26.475706 #6] ERROR -- : Client fetch loop error: message is required. +I, [2018-08-02T00:00:26.478946 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-02T00:00:26.511577 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-02T00:00:26.535877 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:00:27.351235 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:00:27.423829 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-02T00:00:27.533872 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-02T00:00:27.544885 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:00:28.492312 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:00:28.557589 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:00:28.979197 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-57b0fc4a-fb52-446a-8065-ac2b8450de24` +I, [2018-08-02T00:00:28.979272 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-02T00:00:29.146070 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-02T00:00:29.146435 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-02T00:00:29.207951 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-c02a49a2-d492-42e8-9776-8ae3ccdea311` +I, [2018-08-02T00:00:29.208027 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-02T00:00:29.326310 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-02T00:00:29.326414 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-02T00:00:29.512068 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:00:29.570850 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:00:30.512562 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:00:30.571459 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:00:31.515036 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:00:31.572643 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:00:32.617742 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:00:32.618014 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:00:33.618159 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:00:33.618405 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:00:34.619666 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:00:34.619844 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:00:35.620067 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:00:35.620236 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:00:36.620527 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:00:36.620665 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:00:37.254750 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-02T00:00:37.396382 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-02T00:00:37.621056 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-02T00:00:37.621306 #6] INFO -- : Seeking section_change/0 to offset 0 +E, [2018-08-02T00:00:39.227040 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- ArgumentError: message is required. +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:14:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T00:00:39.227346 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-02T00:00:39.237068 #6] ERROR -- : Client fetch loop error: message is required. +I, [2018-08-02T00:00:39.237658 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-02T00:00:39.239998 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-02T00:00:39.295060 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-02T00:00:39.377980 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- ArgumentError: message is required. +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:14:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T00:00:39.378070 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-02T00:00:39.387603 #6] ERROR -- : Client fetch loop error: message is required. +I, [2018-08-02T00:00:39.387971 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-02T00:00:39.403111 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-02T00:00:39.458915 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:00:40.240357 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-02T00:00:40.248202 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-ca37f4d7-1790-45df-913e-2176943a6974` +I, [2018-08-02T00:00:40.248270 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-02T00:00:40.262171 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-02T00:00:40.262267 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-02T00:00:40.308996 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:00:40.403956 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-02T00:00:40.411301 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-866c6547-5b5f-486a-a684-5ef71f75d60e` +I, [2018-08-02T00:00:40.411363 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-02T00:00:40.416344 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-02T00:00:40.416416 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-02T00:00:40.460999 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:00:41.388991 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:00:41.580291 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:00:42.393956 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:00:42.583422 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:00:43.394955 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:00:43.593017 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:00:44.801501 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:00:44.834431 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:00:45.802330 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:00:45.835942 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:00:46.803324 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:00:46.837045 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:00:47.803713 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:00:47.837546 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:00:48.804385 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:00:48.846249 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:00:49.805218 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:00:49.846811 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:00:50.806466 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:00:50.847611 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:00:50.863932 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-02T00:00:50.882831 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-02T00:00:51.808104 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-02T00:00:51.878726 #6] INFO -- : Seeking section_change/0 to offset 0 +E, [2018-08-02T00:00:52.897021 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- ArgumentError: message is required. +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:14:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T00:00:52.900011 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-02T00:00:52.917513 #6] ERROR -- : Client fetch loop error: message is required. +I, [2018-08-02T00:00:52.917820 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-02T00:00:52.918452 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- ArgumentError: message is required. +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:14:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T00:00:52.918498 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-02T00:00:52.920593 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-08-02T00:00:52.924687 #6] ERROR -- : Client fetch loop error: message is required. +I, [2018-08-02T00:00:52.924898 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-02T00:00:52.928628 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-02T00:00:52.936135 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:00:53.167944 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:00:53.932016 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-02T00:00:53.932452 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-02T00:00:53.936838 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:00:53.974277 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-4c7ab87b-911f-4931-b18c-f892afbfe828` +I, [2018-08-02T00:00:53.974346 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-02T00:00:54.000346 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-02T00:00:54.000490 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-02T00:00:54.008705 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-884f807e-abe0-4535-9f1e-40924735a3e7` +I, [2018-08-02T00:00:54.008822 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-02T00:00:54.042346 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-02T00:00:54.042484 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-02T00:00:54.169960 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:00:54.938214 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:00:55.172126 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:00:55.943977 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:00:56.172599 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:00:56.944494 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:00:57.173487 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:00:57.945151 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:00:58.174268 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:00:58.947744 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:00:59.176284 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:00:59.948094 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:01:00.176872 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:01:00.949664 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:01:01.177418 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:01:01.950486 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:01:02.180826 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:01:02.950819 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:01:03.181576 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:01:03.951972 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:01:04.024210 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-02T00:01:04.063602 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-02T00:01:04.182391 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-02T00:01:04.953277 #6] INFO -- : Seeking course_change/0 to offset 0 +E, [2018-08-02T00:01:06.029153 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- ArgumentError: message is required. +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:14:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T00:01:06.035710 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-02T00:01:06.047235 #6] ERROR -- : Client fetch loop error: message is required. +I, [2018-08-02T00:01:06.047626 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-02T00:01:06.049290 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-08-02T00:01:06.069390 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- ArgumentError: message is required. +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:14:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T00:01:06.069453 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-02T00:01:06.072116 #6] ERROR -- : Client fetch loop error: message is required. +I, [2018-08-02T00:01:06.072440 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-02T00:01:06.073562 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-02T00:01:06.075613 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:01:06.107624 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:01:07.049922 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-02T00:01:07.061971 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-bb47f36d-eb19-483e-9f93-3e6ef593264c` +I, [2018-08-02T00:01:07.062023 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-02T00:01:07.071252 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-02T00:01:07.071320 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-02T00:01:07.074999 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-02T00:01:07.076136 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:01:07.095826 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-a424d02e-daf6-4eee-abd5-6596d903489b` +I, [2018-08-02T00:01:07.095928 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-02T00:01:07.106343 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-02T00:01:07.106465 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-02T00:01:07.110738 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:01:08.234562 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:01:08.237476 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:01:09.184245 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:01:09.184444 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:01:10.184700 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:01:10.184850 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:01:11.185065 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:01:11.185184 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:01:12.185898 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:01:12.186028 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:01:13.186318 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:01:13.186637 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:01:14.187963 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:01:14.188516 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:01:15.188344 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:01:15.188735 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:01:16.189108 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:01:16.189489 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:01:17.040218 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-02T00:01:17.069433 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-02T00:01:17.189445 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-02T00:01:17.189817 #6] INFO -- : Seeking course_change/0 to offset 0 +E, [2018-08-02T00:01:19.046029 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- ArgumentError: message is required. +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:14:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T00:05:23.240029 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-02T00:05:23.240226 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-02T00:05:23.271490 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-02T00:05:23.271584 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-02T00:05:23.281738 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-02T00:05:23.282481 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-02T00:05:23.288113 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-02T00:05:23.288211 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-02T00:05:28.282865 #6] 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.14:9094 +I, [2018-08-02T00:05:28.284314 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-02T00:05:28.284389 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-02T00:05:28.285501 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-02T00:05:28.288155 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-02T00:05:28.288518 #6] 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.14:9094 +I, [2018-08-02T00:05:28.309991 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-02T00:05:28.310055 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-02T00:05:28.311135 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-02T00:05:28.311221 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-02T00:05:33.289373 #6] 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.14:9094 +I, [2018-08-02T00:05:33.290863 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-02T00:05:33.290936 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-02T00:05:33.295044 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-02T00:05:33.295480 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-02T00:05:33.315861 #6] 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.14:9094 +I, [2018-08-02T00:05:33.317859 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-02T00:05:33.317928 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-02T00:05:33.348762 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-02T00:05:33.348918 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-02T00:05:38.296375 #6] 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.14:9094 +I, [2018-08-02T00:05:38.314577 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-02T00:05:38.314703 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-02T00:05:38.318316 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-02T00:05:38.318468 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-02T00:05:38.361810 #6] 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.14:9094 +I, [2018-08-02T00:05:38.398532 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-02T00:05:38.398624 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-02T00:05:38.404239 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-02T00:05:38.404502 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-02T00:05:43.311539 #6] 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.14:9094 +I, [2018-08-02T00:05:43.313619 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-02T00:05:43.313690 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-02T00:05:43.327148 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-02T00:05:43.327378 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-02T00:05:43.390728 #6] 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.14:9094 +I, [2018-08-02T00:05:43.429291 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-02T00:05:43.429380 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-02T00:05:43.486177 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-02T00:05:43.486512 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-02T00:05:48.328965 #6] 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.14:9094 +I, [2018-08-02T00:05:48.332578 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-02T00:05:48.332653 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-02T00:05:48.339684 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-02T00:05:48.339948 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-02T00:05:48.491239 #6] 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.14:9094 +I, [2018-08-02T00:05:48.492090 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-02T00:05:48.492153 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-02T00:05:48.497325 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-02T00:05:48.504036 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-02T00:05:53.340591 #6] 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.14:9094 +I, [2018-08-02T00:05:53.341835 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-02T00:05:53.341897 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-02T00:05:53.343954 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-02T00:05:53.344461 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-02T00:05:53.531513 #6] 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.14:9094 +I, [2018-08-02T00:05:53.535027 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-02T00:05:53.535153 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-02T00:05:53.539353 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-02T00:05:53.539807 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-02T00:05:58.346044 #6] 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.14:9094 +E, [2018-08-02T00:05:58.630899 #6] 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.14:9094 +I, [2018-08-02T00:05:58.633694 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-02T00:05:58.633819 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-02T00:05:58.673682 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-02T00:05:58.693573 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-02T00:05:58.693827 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-02T00:05:58.693953 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-02T00:05:58.705173 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-02T00:05:58.705328 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-02T00:06:03.694747 #6] 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.14:9094 +I, [2018-08-02T00:06:03.696990 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-02T00:06:03.697046 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-02T00:06:03.698578 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-02T00:06:03.698871 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-02T00:06:03.705790 #6] 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.14:9094 +I, [2018-08-02T00:06:03.720507 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-02T00:06:03.720586 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-02T00:06:03.722935 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-02T00:06:03.724134 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-02T00:06:08.700247 #6] 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.14:9094 +I, [2018-08-02T00:06:08.738128 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-02T00:06:08.738215 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-02T00:06:08.738441 #6] 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.14:9094 +I, [2018-08-02T00:06:08.740072 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-02T00:06:08.740121 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-02T00:06:09.601560 #6] ERROR -- : No brokers in cluster +E, [2018-08-02T00:06:09.601847 #6] ERROR -- : No brokers in cluster +E, [2018-08-02T00:06:14.610414 #6] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: + +I, [2018-08-02T00:06:14.612120 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-02T00:06:14.612196 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-02T00:06:14.612410 #6] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: + +I, [2018-08-02T00:06:14.614870 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-02T00:06:14.614931 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-02T00:06:14.818780 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-02T00:06:14.819172 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-02T00:06:14.838731 #6] INFO -- : Will fetch at most 1048576 bytes at a time per partition from course_change +I, [2018-08-02T00:06:14.839656 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-02T00:06:14.960136 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-02T00:06:14.960285 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:06:15.010851 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-02T00:06:15.011030 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-02T00:06:15.045312 #6] INFO -- : Will fetch at most 1048576 bytes at a time per partition from section_change +I, [2018-08-02T00:06:15.045457 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-02T00:06:15.117739 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-02T00:06:15.117883 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:06:16.003978 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:06:16.119010 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:06:17.004884 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:06:18.621770 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:06:18.622777 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:06:20.112650 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:06:20.112845 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:06:21.140177 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:06:21.140474 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:06:22.142428 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:06:22.142652 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:06:23.143863 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:06:23.144052 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:06:24.234316 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:06:24.237154 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:06:25.240127 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:06:25.240296 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:06:26.241060 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:06:26.241748 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:06:27.241903 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:06:27.242313 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:06:28.249564 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:06:28.284082 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:06:29.250803 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:06:29.284750 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:06:30.251358 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:06:30.285233 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:06:31.257355 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:06:31.285762 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:06:32.258089 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:06:32.286120 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:06:32.816896 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-bd98c718-7aa1-4cf9-baf1-7741ee2787ed` +I, [2018-08-02T00:06:32.816967 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-02T00:06:32.899233 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-4306f368-8189-418f-a6fc-5e99f2f30f34` +I, [2018-08-02T00:06:32.899404 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-02T00:06:33.308377 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:06:33.308526 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:06:33.817609 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-02T00:06:33.842807 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-02T00:06:33.900261 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-02T00:06:33.921076 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-02T00:06:34.069296 #6] INFO -- : Partitions assigned for `section_change`: 0 +I, [2018-08-02T00:06:34.120999 #6] INFO -- : Partitions assigned for `course_change`: 0 +I, [2018-08-02T00:06:34.313823 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-02T00:06:34.314018 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-02T00:06:34.314071 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-02T00:06:34.314639 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-02T00:06:34.319340 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-02T00:06:34.319400 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-02T00:06:34.350125 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-02T00:06:34.350994 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +E, [2018-08-02T00:06:38.407025 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- TypeError: wrong argument type String (expected Hash) +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:14:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T00:06:38.407153 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-02T00:06:39.013410 #6] ERROR -- : Client fetch loop error: wrong argument type String (expected Hash) +I, [2018-08-02T00:06:39.013765 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-02T00:06:39.034114 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-02T00:06:39.398232 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:06:40.009510 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-02T00:06:40.051817 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-1e0684fc-94d4-416b-83e4-9c9ebce18dc6` +I, [2018-08-02T00:06:40.051887 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-02T00:06:40.110660 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-02T00:06:40.110770 #6] WARN -- : Not fetching from course_change/0 due to pause +E, [2018-08-02T00:06:40.242374 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- TypeError: wrong argument type String (expected Hash) +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:14:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T00:06:40.245489 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-02T00:06:40.281965 #6] ERROR -- : Client fetch loop error: wrong argument type String (expected Hash) +I, [2018-08-02T00:06:40.282392 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-02T00:06:40.301409 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-02T00:06:40.391000 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:06:40.399687 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:06:41.302622 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-02T00:06:41.385932 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-f97ee028-c1d7-432a-b551-da8089c1ecde` +I, [2018-08-02T00:06:41.385996 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-02T00:06:41.391859 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:06:41.397705 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-02T00:06:41.397799 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-02T00:06:41.401081 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:06:42.396080 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:06:42.416429 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:06:43.396481 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:06:43.416891 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:06:44.398139 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:06:44.417435 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:06:45.401497 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:06:45.419036 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:06:46.404203 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:06:46.419517 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:06:47.409252 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:06:47.421766 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:06:48.410886 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:06:48.423440 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:06:49.411756 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:06:49.424126 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:06:50.185738 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-02T00:06:50.412557 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:06:50.427303 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-02T00:06:51.413042 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:06:51.523223 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +E, [2018-08-02T00:06:52.191201 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- TypeError: wrong argument type String (expected Hash) +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:14:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T00:06:52.191261 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-02T00:06:52.204550 #6] ERROR -- : Client fetch loop error: wrong argument type String (expected Hash) +I, [2018-08-02T00:06:52.204860 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-02T00:06:52.208071 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-02T00:06:52.414699 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-02T00:06:52.757087 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:06:53.208536 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-02T00:06:53.244070 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-ec57f188-97b3-4b5d-96bf-745fbb09436d` +I, [2018-08-02T00:06:53.244146 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-02T00:06:53.250319 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-02T00:06:53.250434 #6] WARN -- : Not fetching from course_change/0 due to pause +E, [2018-08-02T00:06:53.528811 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- TypeError: wrong argument type String (expected Hash) +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:14:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T00:06:53.547017 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-02T00:06:53.601893 #6] ERROR -- : Client fetch loop error: wrong argument type String (expected Hash) +I, [2018-08-02T00:06:53.605344 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-02T00:06:53.615257 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-02T00:06:53.615623 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:06:53.759070 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:06:54.615633 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-02T00:06:54.616034 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:06:54.624114 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-1c6f791c-e86e-4792-9527-28c3ce2d946a` +I, [2018-08-02T00:06:54.624186 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-02T00:06:54.642601 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-02T00:06:54.642691 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-02T00:06:54.759443 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:06:55.618360 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:06:55.760381 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:06:56.624973 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:06:56.761674 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:06:57.635482 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:06:57.763766 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:06:58.636863 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:06:58.765432 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:06:59.657100 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:06:59.766371 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:07:00.657855 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:07:00.766900 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:07:01.658677 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:07:01.767781 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:07:02.659247 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:07:02.768484 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:07:03.262262 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-02T00:07:03.659818 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:07:03.768826 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-02T00:07:04.660993 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:07:04.961998 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +E, [2018-08-02T00:07:05.361891 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- TypeError: wrong argument type String (expected Hash) +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:14:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T00:07:05.362006 #6] INFO -- : Leaving group `notifications_course_change` +I, [2018-08-02T00:07:05.862355 #6] INFO -- : Seeking section_change/0 to offset 0 +E, [2018-08-02T00:07:06.264035 #6] ERROR -- : Client fetch loop error: wrong argument type String (expected Hash) +I, [2018-08-02T00:07:06.264635 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-02T00:07:06.303655 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-02T00:07:07.245892 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:07:07.834962 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-02T00:07:08.315237 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-02T00:07:08.493374 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- TypeError: wrong argument type String (expected Hash) +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:14:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T00:07:10.124403 #6] INFO -- : Leaving group `notifications_notifications` +I, [2018-08-02T00:07:10.087545 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:07:11.133338 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:07:11.381054 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-e8eda5fb-3e5a-4085-a0fe-94090557fc43` +I, [2018-08-02T00:07:11.381308 #6] INFO -- : Chosen as leader of group `notifications_course_change` +E, [2018-08-02T00:07:11.633942 #6] ERROR -- : Client fetch loop error: wrong argument type String (expected Hash) +I, [2018-08-02T00:07:11.655763 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-02T00:07:11.655853 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-02T00:07:11.670472 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-02T00:07:11.776694 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-02T00:07:11.789899 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-02T00:07:12.141560 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:07:12.777914 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:07:12.805127 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-02T00:07:13.096621 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-864c6c3b-82d5-429e-911d-3e199b28f20b` +I, [2018-08-02T00:07:13.096678 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-02T00:07:13.104088 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-02T00:07:13.104200 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-02T00:07:13.610923 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:07:13.779119 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:07:14.647383 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:07:14.782079 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:07:15.678966 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:07:15.784525 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:07:16.679364 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:07:16.813866 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:07:17.708586 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:07:17.806513 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-02T00:07:17.816473 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:07:18.740331 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-02T00:07:18.820219 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:07:19.824160 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-02T00:07:19.848808 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- TypeError: wrong argument type String (expected Hash) +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:14:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T00:07:19.848907 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-02T00:07:19.854474 #6] ERROR -- : Client fetch loop error: wrong argument type String (expected Hash) +I, [2018-08-02T00:07:19.854852 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-02T00:07:19.862118 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-02T00:07:20.388953 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:07:20.824849 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:07:20.862374 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-02T00:07:20.902110 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-f3ad5d41-b09b-4815-acfe-1735b059948d` +I, [2018-08-02T00:07:20.902184 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-02T00:07:20.912843 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-02T00:07:20.912933 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-02T00:07:21.414558 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:07:21.841391 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:07:22.415633 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:07:22.912114 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:07:23.143098 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-02T00:07:23.421433 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:07:24.027228 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-02T00:07:24.422708 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-02T00:07:25.156829 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- TypeError: wrong argument type String (expected Hash) +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:14:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T00:07:25.156961 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-02T00:07:25.405010 #6] ERROR -- : Client fetch loop error: wrong argument type String (expected Hash) +I, [2018-08-02T00:07:25.405942 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-02T00:07:25.425970 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-02T00:07:25.439089 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:07:25.510682 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:07:26.426781 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-02T00:07:26.439536 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:07:26.516205 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:07:26.558268 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-2e68d99e-d53a-4f4a-9df6-fae279958b83` +I, [2018-08-02T00:07:26.558342 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-02T00:07:26.562047 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-02T00:07:26.562138 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-02T00:07:27.441515 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:07:27.517640 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:07:28.442702 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:07:28.518067 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:07:29.445172 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:07:29.518940 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:07:30.559590 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:07:30.457995 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:07:31.034050 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-02T00:07:31.561770 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-02T00:07:31.563155 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:07:32.564260 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-02T00:07:33.428770 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- TypeError: wrong argument type String (expected Hash) +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:14:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T00:07:33.545152 #6] INFO -- : Leaving group `notifications_course_change` +I, [2018-08-02T00:07:33.646869 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-02T00:07:34.454139 #6] ERROR -- : Client fetch loop error: wrong argument type String (expected Hash) +I, [2018-08-02T00:07:34.459741 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-02T00:07:34.590195 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-02T00:07:34.614245 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-02T00:07:34.647573 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:07:35.591414 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:07:35.615324 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-02T00:07:35.649089 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:07:35.792211 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-f31de98d-8be0-46e5-badc-a2fed9c8f400` +I, [2018-08-02T00:07:35.792298 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-02T00:07:35.802732 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-02T00:07:35.802856 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-02T00:07:36.652512 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:07:37.289383 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-02T00:07:37.291313 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:07:37.653110 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-02T00:07:38.291771 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:07:39.310080 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-02T00:07:39.434471 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- TypeError: wrong argument type String (expected Hash) +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:14:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T00:07:39.395919 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-02T00:07:39.474471 #6] ERROR -- : Client fetch loop error: wrong argument type String (expected Hash) +I, [2018-08-02T00:07:39.477523 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-02T00:07:39.542730 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-02T00:07:40.106407 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:07:42.353188 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-02T00:07:42.429363 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:07:42.434715 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:07:43.436255 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:07:43.436744 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:07:43.893054 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-0cdf5968-8bbc-48a0-8a9d-27acf4472df3` +I, [2018-08-02T00:07:43.893628 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-02T00:07:44.398086 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-02T00:07:44.398511 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-02T00:07:44.454594 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:07:44.459715 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:07:44.778126 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-02T00:07:45.457054 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-02T00:07:45.460061 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:07:46.480312 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-02T00:07:46.805411 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- TypeError: wrong argument type String (expected Hash) +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:14:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T00:07:46.841134 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-02T00:07:46.961225 #6] ERROR -- : Client fetch loop error: wrong argument type String (expected Hash) +I, [2018-08-02T00:07:46.961684 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-02T00:07:46.970554 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-02T00:07:47.064782 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:07:47.486456 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:07:47.985528 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-02T00:07:48.086429 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:07:48.120648 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-852b8b88-5d8f-4b4f-af70-49c75dda39a9` +I, [2018-08-02T00:07:48.120718 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-02T00:07:48.260788 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-02T00:07:48.260901 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-02T00:07:48.487747 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:07:49.091425 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:07:49.492357 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:07:50.092500 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:07:50.440199 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-02T00:07:50.493168 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-02T00:07:51.094517 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:07:52.095435 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-02T00:07:52.447969 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- TypeError: wrong argument type String (expected Hash) +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:14:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T00:07:52.448047 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-02T00:07:52.494674 #6] ERROR -- : Client fetch loop error: wrong argument type String (expected Hash) +I, [2018-08-02T00:07:52.495122 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-02T00:07:52.510844 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-02T00:07:52.884185 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:07:53.095722 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:07:53.516701 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-02T00:07:53.550059 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-08da5518-b76c-4b9d-a30f-8f5448c19763` +I, [2018-08-02T00:07:53.550115 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-02T00:07:53.557924 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-02T00:07:53.558002 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-02T00:07:53.936996 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:07:54.113967 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:07:54.941417 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:07:55.155715 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:07:55.945092 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:07:56.156233 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:07:56.945865 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:07:57.156574 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:07:57.946316 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:07:58.156991 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:07:58.292096 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-02T00:07:58.953353 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:07:59.158140 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-02T00:07:59.965497 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-02T00:08:00.345082 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- TypeError: wrong argument type String (expected Hash) +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:14:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T00:08:00.347466 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-02T00:08:00.618689 #6] ERROR -- : Client fetch loop error: wrong argument type String (expected Hash) +I, [2018-08-02T00:08:00.619942 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-02T00:08:00.633349 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-02T00:08:00.634030 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-02T00:08:00.978071 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:08:01.740482 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:08:01.814380 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-02T00:08:02.137201 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:08:02.212788 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-ddfb5f8b-977b-47cf-82ec-59c52ef502de` +I, [2018-08-02T00:08:02.212863 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-02T00:08:02.241135 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-02T00:08:02.242984 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-02T00:08:02.809747 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:08:03.142928 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:08:03.814326 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:08:04.115979 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-02T00:08:04.143486 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-02T00:08:04.964827 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:08:05.965832 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-02T00:08:06.132003 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- TypeError: wrong argument type String (expected Hash) +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:14:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T00:08:06.132090 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-02T00:08:06.157163 #6] ERROR -- : Client fetch loop error: wrong argument type String (expected Hash) +I, [2018-08-02T00:08:06.157769 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-02T00:08:06.163246 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-02T00:08:06.204196 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:08:06.993085 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:08:07.164217 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-02T00:08:07.174636 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-ad1fea42-fcf1-4a0b-93e5-02726db34063` +I, [2018-08-02T00:08:07.174705 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-02T00:08:07.178618 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-02T00:08:07.178916 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-02T00:08:07.205358 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:08:07.993610 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:08:08.207962 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:08:08.995207 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:08:09.208653 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:08:09.956928 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:08:10.200875 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:08:10.960715 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:08:11.216118 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:08:11.965436 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:08:12.218605 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:08:12.265981 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-02T00:08:12.997055 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-02T00:08:13.288529 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:08:14.290554 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-02T00:08:14.315607 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- TypeError: wrong argument type String (expected Hash) +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:14:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T00:08:14.321550 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-02T00:08:14.329788 #6] ERROR -- : Client fetch loop error: wrong argument type String (expected Hash) +I, [2018-08-02T00:08:14.330007 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-02T00:08:14.331521 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-02T00:08:14.516231 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:08:15.319462 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:08:15.331938 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-02T00:08:15.383933 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-23b5b4e0-4017-4241-a2f1-5674af9b697a` +I, [2018-08-02T00:08:15.384031 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-02T00:08:15.406071 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-02T00:08:15.406175 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-02T00:08:15.517401 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:08:16.320239 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:08:16.517773 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:08:17.239731 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-02T00:08:17.320583 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-02T00:08:17.519357 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:08:18.519851 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-02T00:08:19.253583 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- TypeError: wrong argument type String (expected Hash) +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:14:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T00:08:19.257824 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-02T00:08:19.276713 #6] ERROR -- : Client fetch loop error: wrong argument type String (expected Hash) +I, [2018-08-02T00:08:19.277058 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-02T00:08:19.280526 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-02T00:08:19.341646 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:08:19.520474 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:08:20.283131 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-02T00:08:20.302183 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-9724f63d-da39-44f5-93b8-b71cdad20c7b` +I, [2018-08-02T00:08:20.302251 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-02T00:08:20.354549 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:08:20.448847 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-02T00:08:20.448952 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-02T00:08:20.521532 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:08:21.355104 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:08:21.522402 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:08:22.355881 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:08:22.523668 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:08:23.356366 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:08:23.524215 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:08:24.356942 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:08:24.526182 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:08:25.357465 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:08:25.439404 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-02T00:08:25.526616 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-02T00:08:26.368891 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:08:27.371175 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-02T00:08:27.479743 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- TypeError: wrong argument type String (expected Hash) +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:14:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T00:08:27.479843 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-02T00:08:27.490082 #6] ERROR -- : Client fetch loop error: wrong argument type String (expected Hash) +I, [2018-08-02T00:08:27.509706 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-02T00:08:27.527213 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-02T00:08:27.584903 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:08:28.371959 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:08:28.527668 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-02T00:08:28.543715 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-74015b69-ce76-477d-a463-b849bcb2d653` +I, [2018-08-02T00:08:28.543804 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-02T00:08:28.561923 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-02T00:08:28.562018 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-02T00:08:28.587484 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:08:29.372459 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:08:29.588845 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:08:30.373388 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:08:30.549743 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-02T00:08:30.589605 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:08:31.374080 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-02T00:08:31.591063 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:08:32.608834 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-02T00:08:32.617917 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- TypeError: wrong argument type String (expected Hash) +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:14:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T00:08:32.728842 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-02T00:08:32.737264 #6] ERROR -- : Client fetch loop error: wrong argument type String (expected Hash) +I, [2018-08-02T00:08:32.737547 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-02T00:08:32.738912 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-02T00:08:32.922713 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:08:33.729371 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:08:33.740509 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-02T00:08:33.765763 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-1d258cb2-28bc-4668-9738-2c00f80684ae` +I, [2018-08-02T00:08:33.765836 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-02T00:08:33.782557 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-02T00:08:33.783178 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-02T00:08:33.923444 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:08:34.729731 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:08:34.925263 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:08:35.735699 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:08:35.933083 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:08:36.841131 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:08:36.934298 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:08:37.843793 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:08:37.935131 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:08:38.634866 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-02T00:08:38.844664 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-02T00:08:38.937228 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:08:39.917815 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-02T00:08:40.623026 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- TypeError: wrong argument type String (expected Hash) +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:14:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T00:08:40.626667 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-02T00:08:40.635333 #6] ERROR -- : Client fetch loop error: wrong argument type String (expected Hash) +I, [2018-08-02T00:08:40.635694 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-02T00:08:40.636720 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-02T00:08:40.713644 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:08:40.918945 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:08:41.637330 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-02T00:08:41.644655 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-aad42527-81fe-40e8-ba7b-15befee8b525` +I, [2018-08-02T00:08:41.644719 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-02T00:08:41.668360 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-02T00:08:41.668456 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-02T00:08:41.714561 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:08:41.919434 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:08:42.768051 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:08:43.051765 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:08:44.899108 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-02T00:08:44.962381 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:08:44.962570 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:08:46.087490 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-02T00:08:46.088428 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:08:47.088991 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-02T00:08:47.353568 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- TypeError: wrong argument type String (expected Hash) +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:14:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T00:08:47.353637 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-02T00:08:47.361824 #6] ERROR -- : Client fetch loop error: wrong argument type String (expected Hash) +I, [2018-08-02T00:08:47.362357 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-02T00:08:47.365816 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-02T00:08:47.532350 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:08:48.089818 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:08:48.366210 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-02T00:08:48.384637 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-51114916-aa22-45f0-bd61-146883fbc3ed` +I, [2018-08-02T00:08:48.384827 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-02T00:08:48.390895 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-02T00:08:48.421287 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-02T00:08:48.533537 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:08:49.090811 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:08:49.534098 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:08:50.092560 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:08:50.535120 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:08:51.093912 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:08:51.360210 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-02T00:08:51.537333 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:08:52.094774 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-02T00:08:52.540420 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-02T00:08:53.531684 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- TypeError: wrong argument type String (expected Hash) +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:14:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T00:08:53.598552 #6] INFO -- : Leaving group `notifications_course_change` +I, [2018-08-02T00:08:53.562411 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:08:54.607922 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:08:56.357433 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-02T00:08:56.927548 #6] ERROR -- : Client fetch loop error: wrong argument type String (expected Hash) +I, [2018-08-02T00:08:56.933084 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-02T00:08:57.648235 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:08:57.648535 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-02T00:08:57.710941 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-02T00:08:58.773305 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-02T00:08:58.843967 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-02T00:08:58.875854 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:08:58.876149 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:08:59.287253 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-91bb2db5-0530-426a-8c92-96cb184a03b0` +I, [2018-08-02T00:08:59.287458 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-02T00:08:59.345450 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-02T00:08:59.345571 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-02T00:09:00.380895 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-02T00:09:00.381733 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:09:01.471873 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-02T00:09:01.785910 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- TypeError: wrong argument type String (expected Hash) +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:14:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T00:09:01.786010 #6] INFO -- : Leaving group `notifications_notifications` +I, [2018-08-02T00:09:02.580633 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-02T00:09:02.612143 #6] ERROR -- : Client fetch loop error: wrong argument type String (expected Hash) +I, [2018-08-02T00:09:02.612637 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-02T00:09:02.614553 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-02T00:09:02.917476 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-02T00:09:03.884088 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:09:03.937094 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:09:04.010123 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-02T00:09:05.148263 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:09:05.166770 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:09:05.167026 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-c4b69f3b-fa4c-4d6c-bda5-2c18bb0d5120` +I, [2018-08-02T00:09:05.167058 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-02T00:09:05.182166 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-02T00:09:05.182246 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-02T00:09:06.371541 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:09:06.372386 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:09:07.373900 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:09:07.374133 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:09:08.154165 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-02T00:09:08.659679 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-02T00:09:08.661809 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:09:09.629009 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-02T00:09:10.191383 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- TypeError: wrong argument type String (expected Hash) +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:14:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T00:09:10.321830 #6] INFO -- : Leaving group `notifications_course_change` +I, [2018-08-02T00:09:10.764354 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-02T00:09:10.863633 #6] ERROR -- : Client fetch loop error: wrong argument type String (expected Hash) +I, [2018-08-02T00:09:10.863976 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-02T00:09:10.870149 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-02T00:09:11.730054 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:09:11.764828 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:09:11.870529 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-02T00:09:11.903924 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-53b4e876-8019-44bf-9a67-323fbf5cafa1` +I, [2018-08-02T00:09:11.903997 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-02T00:09:12.032847 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-02T00:09:12.032950 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-02T00:09:12.732382 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:09:12.803413 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:09:13.390817 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-02T00:09:13.733671 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:09:13.805074 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-02T00:09:14.734756 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-02T00:09:15.399205 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- TypeError: wrong argument type String (expected Hash) +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:14:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T00:09:15.399321 #6] INFO -- : Leaving group `notifications_notifications` +I, [2018-08-02T00:09:15.768334 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-02T00:09:15.792391 #6] ERROR -- : Client fetch loop error: wrong argument type String (expected Hash) +I, [2018-08-02T00:09:15.792856 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-02T00:09:15.796997 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-02T00:09:15.804921 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:09:16.769530 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:09:16.798907 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-02T00:09:16.806664 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:09:16.867342 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-dd1a1454-31d8-477e-a2ea-ace72d31ea32` +I, [2018-08-02T00:09:16.867413 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-02T00:09:16.891926 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-02T00:09:16.892000 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-02T00:09:17.772105 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:09:17.814146 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:09:18.809151 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:09:18.829180 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:09:19.809845 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:09:19.832403 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:09:20.822163 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:09:20.833851 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:09:21.824792 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:09:21.835785 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:09:22.103860 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-02T00:09:22.825610 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-02T00:09:22.884081 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:09:23.884627 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-02T00:09:24.106764 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- TypeError: wrong argument type String (expected Hash) +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:14:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T00:09:24.111263 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-02T00:09:24.246203 #6] ERROR -- : Client fetch loop error: wrong argument type String (expected Hash) +I, [2018-08-02T00:09:24.246421 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-02T00:09:24.277669 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-02T00:09:24.573368 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:09:24.886658 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:09:25.281900 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-02T00:09:25.344794 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-f38a18ca-d7f0-43a5-b343-82f7d6d592e0` +I, [2018-08-02T00:09:25.346234 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-02T00:09:25.416017 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-02T00:09:25.416113 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-02T00:09:25.574502 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:09:25.908388 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:09:26.575905 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:09:26.910456 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:09:26.913448 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-02T00:09:27.576234 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:09:27.910750 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-02T00:09:28.577102 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-02T00:09:28.915863 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- TypeError: wrong argument type String (expected Hash) +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:14:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T00:09:28.915921 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-02T00:09:28.936044 #6] ERROR -- : Client fetch loop error: wrong argument type String (expected Hash) +I, [2018-08-02T00:09:28.936288 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-02T00:09:29.012320 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-02T00:09:29.054088 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:09:29.580764 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:09:30.012945 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-02T00:09:30.228865 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:09:30.282800 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-e5082c80-ebd4-4338-9c88-ed15d4c92231` +I, [2018-08-02T00:09:30.282876 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-02T00:09:30.298734 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-02T00:09:30.298810 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-02T00:09:30.595791 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:09:31.245059 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:09:31.613412 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:09:32.246406 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:09:32.619439 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:09:33.248237 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:09:33.621477 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:09:34.257477 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:09:34.627530 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:09:35.259051 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:09:35.501296 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-02T00:09:35.636126 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-02T00:09:36.259915 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:09:37.292164 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-02T00:09:37.817883 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- TypeError: wrong argument type String (expected Hash) +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:14:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T00:09:37.906285 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-02T00:09:38.111137 #6] ERROR -- : Client fetch loop error: wrong argument type String (expected Hash) +I, [2018-08-02T00:09:38.111416 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-02T00:09:38.112922 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-02T00:09:38.343301 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:09:38.812154 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:09:39.115964 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-02T00:09:39.286128 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-0a39611f-b13f-4424-b63a-6ae4b4cf7e83` +I, [2018-08-02T00:09:39.294189 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-02T00:09:39.329152 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-02T00:09:39.329284 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-02T00:09:39.343768 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:09:39.936117 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:09:40.427502 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:09:40.428285 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-02T00:09:41.528176 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:09:41.707894 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:09:42.529246 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-02T00:09:42.710540 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:09:43.731432 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-02T00:09:43.787163 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- TypeError: wrong argument type String (expected Hash) +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:14:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T00:09:43.787255 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-02T00:09:43.853394 #6] ERROR -- : Client fetch loop error: wrong argument type String (expected Hash) +I, [2018-08-02T00:09:43.854015 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-02T00:09:43.860005 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-02T00:09:43.931874 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:09:44.738029 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:09:44.862461 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-02T00:09:44.879438 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-497a4a31-f5de-4eba-a84a-f1c3d9bcb1a5` +I, [2018-08-02T00:09:44.879746 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-02T00:09:44.892619 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-02T00:09:44.892733 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-02T00:09:44.932469 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:09:45.740514 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:09:45.933434 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:09:46.785293 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:09:46.941333 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:09:47.785910 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:09:47.942277 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:09:48.786697 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:09:48.943576 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:09:49.787401 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:09:49.842400 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-02T00:09:49.944860 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:09:50.787675 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-02T00:09:50.945761 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-02T00:09:51.852456 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- TypeError: wrong argument type String (expected Hash) +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:14:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T00:09:51.857509 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-02T00:09:51.877317 #6] ERROR -- : Client fetch loop error: wrong argument type String (expected Hash) +I, [2018-08-02T00:09:51.877693 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-02T00:09:51.880338 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-02T00:09:51.946639 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:09:51.950561 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:09:52.880872 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-02T00:09:52.885757 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-3f1c0c01-2b05-4cb1-92d8-b185d31ce138` +I, [2018-08-02T00:09:52.885814 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-02T00:09:52.892477 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-02T00:09:52.892546 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-02T00:09:52.947463 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:09:52.951006 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:09:53.998950 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:09:53.999539 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:09:54.900363 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-02T00:09:55.050201 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:09:55.051359 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:09:56.051186 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-02T00:09:56.051808 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:09:57.052741 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-02T00:09:57.091880 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- TypeError: wrong argument type String (expected Hash) +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:14:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T00:09:57.091979 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-02T00:09:57.096259 #6] ERROR -- : Client fetch loop error: wrong argument type String (expected Hash) +I, [2018-08-02T00:09:57.097439 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-02T00:09:57.104565 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-02T00:09:57.262416 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:09:58.080814 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:09:58.106528 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-02T00:09:58.264597 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:09:58.298825 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-ee3b032d-2bad-46e0-be24-1c3b50b79e85` +I, [2018-08-02T00:09:58.298894 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-02T00:09:58.480032 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-02T00:09:58.480138 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-02T00:09:59.084565 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:09:59.283909 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:10:00.085148 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:10:00.296982 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:10:01.086446 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:10:01.297689 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:10:02.087013 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:10:02.298683 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:10:02.937432 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-02T00:10:03.090224 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-02T00:10:03.299234 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:10:04.299990 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-02T00:10:05.021301 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- TypeError: wrong argument type String (expected Hash) +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:14:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T00:10:05.094883 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-02T00:10:05.105508 #6] ERROR -- : Client fetch loop error: wrong argument type String (expected Hash) +I, [2018-08-02T00:10:05.105779 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-02T00:10:05.108033 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-02T00:10:05.292590 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:10:05.303219 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:10:06.121077 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-02T00:10:06.153826 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-b4aded3f-c3c8-46f3-a395-2622d63743c8` +I, [2018-08-02T00:10:06.153896 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-02T00:10:06.160617 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-02T00:10:06.160709 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-02T00:10:06.297759 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:10:06.303830 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:10:07.298301 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:10:07.304957 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:10:08.299564 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:10:08.307487 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:10:08.724504 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-02T00:10:09.306071 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:10:09.321423 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-02T00:10:10.283345 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-02T00:10:10.722510 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- TypeError: wrong argument type String (expected Hash) +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:14:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T00:10:10.722717 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-02T00:10:10.747754 #6] ERROR -- : Client fetch loop error: wrong argument type String (expected Hash) +I, [2018-08-02T00:10:10.748044 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-02T00:10:10.750166 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-02T00:10:10.911058 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:10:11.288136 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:10:11.754506 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-02T00:10:11.762983 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-347968da-4e2b-4321-9fb7-669757986279` +I, [2018-08-02T00:10:11.763042 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-02T00:10:11.774258 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-02T00:10:11.774686 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-02T00:10:11.911669 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:10:12.289247 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:10:12.914795 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:10:13.289700 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:10:13.917531 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:10:14.295798 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:10:14.920101 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:10:15.296897 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:10:15.921503 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:10:16.300103 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:10:16.307753 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-02T00:10:17.553532 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:10:18.306087 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-02T00:10:18.554258 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:10:19.568584 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-02T00:10:20.449494 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- TypeError: wrong argument type String (expected Hash) +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:14:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T00:10:20.449566 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-02T00:10:20.459867 #6] ERROR -- : Client fetch loop error: wrong argument type String (expected Hash) +I, [2018-08-02T00:10:20.460212 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-02T00:10:20.501684 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-02T00:10:20.569300 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:10:21.278504 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:10:21.502662 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-02T00:10:21.509084 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-8c0d3c27-49fe-4c8e-ac25-49c6bbd7a0c4` +I, [2018-08-02T00:10:21.509163 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-02T00:10:21.511887 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-02T00:10:21.512001 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-02T00:10:21.572650 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:10:22.295754 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:10:22.341854 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-02T00:10:22.574071 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-02T00:10:23.296551 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:10:24.298502 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-02T00:10:24.361801 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- TypeError: wrong argument type String (expected Hash) +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:14:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T00:10:24.364911 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-02T00:10:24.378047 #6] ERROR -- : Client fetch loop error: wrong argument type String (expected Hash) +I, [2018-08-02T00:10:24.378653 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-02T00:10:24.380211 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-02T00:10:24.467065 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:10:25.299408 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:10:25.381091 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-02T00:10:25.400603 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-74fe3a37-a944-4a7d-bedb-fe510aea6f7d` +I, [2018-08-02T00:10:25.400731 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-02T00:10:25.404321 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-02T00:10:25.404695 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-02T00:10:25.470350 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:10:26.300121 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:10:26.472257 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:10:27.302512 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:10:27.476483 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:10:28.302940 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:10:28.477807 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:10:29.304122 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:10:29.488073 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:10:30.325480 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:10:30.489094 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:10:31.326366 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:10:31.492586 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:10:31.538111 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-02T00:10:32.327898 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-02T00:10:32.493410 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:10:33.500144 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-02T00:10:33.549322 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- TypeError: wrong argument type String (expected Hash) +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:14:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T00:10:33.549425 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-02T00:10:33.559594 #6] ERROR -- : Client fetch loop error: wrong argument type String (expected Hash) +I, [2018-08-02T00:10:33.560041 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-02T00:10:33.563169 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-02T00:10:34.036080 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:10:34.755470 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-02T00:10:34.773872 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:10:34.821399 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-5fb8e761-c02c-4962-9828-04f832d71397` +I, [2018-08-02T00:10:34.821476 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-02T00:10:34.832042 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-02T00:10:34.833649 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-02T00:10:35.083823 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:10:35.467501 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-02T00:10:35.812228 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-02T00:10:36.084921 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:10:37.085726 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-02T00:10:37.495938 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- TypeError: wrong argument type String (expected Hash) +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:14:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T00:10:37.628030 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-02T00:10:37.657921 #6] ERROR -- : Client fetch loop error: wrong argument type String (expected Hash) +I, [2018-08-02T00:10:37.658462 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-02T00:10:37.728417 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-02T00:10:37.795388 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:10:38.153854 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:10:38.744302 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-02T00:10:39.050460 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:10:39.058406 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-74fc2d53-e734-4219-aa00-0ff278ffcd63` +I, [2018-08-02T00:10:39.058559 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-02T00:10:39.091194 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-02T00:10:39.091752 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-02T00:10:39.179396 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:10:40.012875 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:10:40.141952 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:10:41.015520 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:10:41.144502 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:10:42.156968 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:10:42.172752 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:10:43.182539 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:10:43.185922 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:10:44.183337 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:10:44.200838 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:10:46.115052 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-02T00:10:46.138508 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:10:46.140282 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:10:47.172715 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-02T00:10:47.177152 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:10:48.141857 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-02T00:10:48.178852 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-02T00:10:48.181847 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- TypeError: wrong argument type String (expected Hash) +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:14:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T00:10:48.181962 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-02T00:10:48.260792 #6] ERROR -- : Client fetch loop error: wrong argument type String (expected Hash) +I, [2018-08-02T00:10:48.261164 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-02T00:10:48.291714 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-02T00:10:48.343273 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:10:49.179395 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-02T00:10:49.293249 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-02T00:10:49.368198 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:10:49.391127 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-5311ab8e-ebe5-4c2f-a960-58f5e3f2633b` +I, [2018-08-02T00:10:49.396911 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-02T00:10:49.445839 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-02T00:10:49.445948 #6] WARN -- : Not fetching from course_change/0 due to pause +E, [2018-08-02T00:10:50.335096 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- TypeError: wrong argument type String (expected Hash) +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:14:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T00:27:06.480005 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-02T00:27:06.480930 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-02T00:27:06.556684 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-02T00:27:06.556889 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-02T00:27:06.603134 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-02T00:27:06.615462 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-02T00:27:06.726623 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-02T00:27:06.726945 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-02T00:27:11.619555 #6] 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.13:9094 +I, [2018-08-02T00:27:11.623248 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-02T00:27:11.623431 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-02T00:27:11.647112 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-02T00:27:11.671689 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-02T00:27:11.733388 #6] 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.13:9094 +I, [2018-08-02T00:27:11.773551 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-02T00:27:11.773704 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-02T00:27:11.814059 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-02T00:27:11.814601 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-02T00:27:16.852208 #6] 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.13:9094 +E, [2018-08-02T00:27:17.019677 #6] 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.13:9094 +I, [2018-08-02T00:27:17.024215 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-02T00:27:17.025064 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-02T00:27:17.080509 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-02T00:27:17.080723 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-02T00:27:17.240980 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-02T00:27:17.241192 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-02T00:27:17.241585 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-02T00:27:17.241753 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-02T00:27:22.211603 #6] 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.13:9094 +I, [2018-08-02T00:27:22.433020 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-02T00:27:22.433189 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-02T00:27:22.490033 #6] 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.13:9094 +I, [2018-08-02T00:27:22.522602 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-02T00:27:22.523807 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-02T00:27:22.560998 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-02T00:27:22.561207 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-02T00:27:22.565519 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-02T00:27:22.565894 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-02T00:27:27.561990 #6] 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.13:9094 +I, [2018-08-02T00:27:27.567413 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-02T00:27:27.567565 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-02T00:27:27.567924 #6] 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.13:9094 +I, [2018-08-02T00:27:27.573776 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-02T00:27:27.573945 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-02T00:27:27.642093 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-02T00:27:27.643894 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-02T00:27:27.649363 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-02T00:27:27.649674 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-02T00:27:32.704895 #6] 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.13:9094 +I, [2018-08-02T00:27:32.707152 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-02T00:27:32.707309 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-02T00:27:32.787577 #6] 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.13:9094 +I, [2018-08-02T00:27:32.791071 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-02T00:27:32.791208 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-02T00:27:32.845948 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-02T00:27:32.846203 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-02T00:27:32.933444 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-02T00:27:32.933811 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-02T00:27:38.479107 #6] 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.13:9094 +I, [2018-08-02T00:27:38.539690 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-02T00:27:38.539846 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-02T00:27:38.541283 #6] 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.13:9094 +I, [2018-08-02T00:27:38.631168 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-02T00:27:38.663469 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-02T00:27:38.851309 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-02T00:27:38.851769 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-02T00:27:39.142730 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-02T00:27:39.142995 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-02T00:27:44.846837 #6] 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.13:9094 +E, [2018-08-02T00:27:45.811604 #6] 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.13:9094 +I, [2018-08-02T00:27:46.149218 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-02T00:27:46.149392 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-02T00:27:46.420466 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-02T00:27:46.420632 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-02T00:27:46.490884 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-02T00:27:46.491181 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-02T00:27:46.511774 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-02T00:27:46.528922 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-02T00:27:51.437094 #6] 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.13:9094 +I, [2018-08-02T00:27:51.439112 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-02T00:27:51.439259 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-02T00:27:51.454195 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-02T00:27:51.621091 #6] 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.13:9094 +I, [2018-08-02T00:27:51.842288 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-02T00:27:51.844627 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-02T00:27:51.898690 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-02T00:27:52.397994 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-02T00:27:52.398266 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-02T00:27:57.315362 #6] 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.13:9094 +I, [2018-08-02T00:27:57.334550 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-02T00:27:57.334703 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-02T00:27:57.427301 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-02T00:27:57.427663 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-02T00:27:57.438708 #6] 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.13:9094 +I, [2018-08-02T00:27:57.522683 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-02T00:27:57.523439 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-02T00:27:57.617028 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-02T00:27:57.618239 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-02T00:28:03.392708 #6] 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.13:9094 +E, [2018-08-02T00:28:03.452287 #6] 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.13:9094 +I, [2018-08-02T00:28:03.475298 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-02T00:28:03.476575 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-02T00:28:03.481238 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-02T00:28:03.481390 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-02T00:28:03.503475 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-02T00:28:03.503776 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-02T00:28:03.527573 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-02T00:28:03.527884 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-02T00:28:08.517906 #6] 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.13:9094 +I, [2018-08-02T00:28:08.534439 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-02T00:28:08.534574 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-02T00:28:08.576275 #6] 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.13:9094 +I, [2018-08-02T00:28:08.586740 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-02T00:28:08.588711 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-02T00:28:08.625954 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-02T00:28:08.630754 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-02T00:28:10.099874 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-02T00:28:10.101908 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-02T00:28:13.632045 #6] 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.13:9094 +I, [2018-08-02T00:28:13.633965 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-02T00:28:13.637552 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-02T00:28:13.952308 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-02T00:28:13.954908 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-02T00:28:15.168284 #6] 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.13:9094 +I, [2018-08-02T00:28:15.206659 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-02T00:28:15.209163 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-02T00:28:15.217204 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-02T00:28:15.219211 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-02T00:28:19.025493 #6] 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.13:9094 +I, [2018-08-02T00:28:19.719748 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-02T00:28:19.743073 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-02T00:28:20.052272 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-02T00:28:20.052558 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-02T00:28:20.222382 #6] 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.13:9094 +I, [2018-08-02T00:28:20.259497 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-02T00:28:20.259654 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-02T00:28:20.283053 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-02T00:28:20.283320 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-02T00:28:24.994212 #6] 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.13:9094 +E, [2018-08-02T00:28:25.370278 #6] 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.13:9094 +I, [2018-08-02T00:28:25.374767 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-02T00:28:25.374899 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-02T00:28:25.406774 #6] INFO -- : New topics added to target list: course_change +E, [2018-08-02T00:28:25.493646 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-02T00:28:25.493858 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +I, [2018-08-02T00:28:25.799099 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-02T00:28:26.044130 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-02T00:28:26.044399 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-02T00:28:30.545271 #6] 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.13:9094 +I, [2018-08-02T00:28:30.556616 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-02T00:28:30.562023 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-02T00:28:30.962291 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-02T00:28:30.963755 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-02T00:28:31.129936 #6] 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.13:9094 +I, [2018-08-02T00:28:31.163660 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-02T00:28:31.163756 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-02T00:28:31.260485 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-02T00:28:31.264722 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-02T00:28:35.980275 #6] 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.13:9094 +I, [2018-08-02T00:28:35.982667 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-02T00:28:35.982740 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-02T00:28:35.995190 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-02T00:28:35.995333 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-02T00:28:36.279598 #6] 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.13:9094 +I, [2018-08-02T00:28:36.323666 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-02T00:28:36.323752 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-02T00:28:36.371699 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-02T00:28:36.374386 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-02T00:28:41.025077 #6] 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.13:9094 +I, [2018-08-02T00:28:41.047549 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-02T00:28:41.047725 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-02T00:28:41.050448 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-02T00:28:41.050632 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-02T00:28:41.382236 #6] 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.13:9094 +I, [2018-08-02T00:28:41.457850 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-02T00:28:41.457938 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-02T00:28:41.460282 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-02T00:28:41.465412 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-02T00:28:46.060788 #6] 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.13:9094 +I, [2018-08-02T00:28:46.062208 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-02T00:28:46.062312 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-02T00:28:46.262487 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-02T00:28:46.262662 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-02T00:28:46.473804 #6] 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.13:9094 +I, [2018-08-02T00:28:46.534646 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-02T00:28:46.615872 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-02T00:28:47.615972 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-02T00:28:47.616948 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-02T00:28:51.281811 #6] 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.13:9094 +I, [2018-08-02T00:28:51.286335 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-02T00:28:51.286535 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-02T00:28:51.299711 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-02T00:28:51.299855 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-02T00:28:52.640670 #6] 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.13:9094 +I, [2018-08-02T00:28:52.643478 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-02T00:28:52.643550 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-02T00:28:52.652905 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-02T00:28:52.673355 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-02T00:28:56.302008 #6] 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.13:9094 +I, [2018-08-02T00:28:56.309600 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-02T00:28:56.309671 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-02T00:28:56.320101 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-02T00:28:56.320361 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-02T00:28:57.686346 #6] 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.13:9094 +I, [2018-08-02T00:28:57.740761 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-02T00:28:57.740864 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-02T00:28:57.743488 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-02T00:28:57.743903 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-02T00:29:01.323480 #6] 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.13:9094 +I, [2018-08-02T00:29:01.407638 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-02T00:29:01.407702 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-02T00:29:01.414814 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-02T00:29:01.415000 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-02T00:29:02.745695 #6] 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.13:9094 +I, [2018-08-02T00:29:02.746913 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-02T00:29:02.746987 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-02T00:29:02.751439 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-02T00:29:02.755035 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-02T00:29:06.415576 #6] 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.13:9094 +I, [2018-08-02T00:29:06.416657 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-02T00:29:06.416742 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-02T00:29:06.418986 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-02T00:29:06.419225 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-02T00:29:07.756974 #6] 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.13:9094 +I, [2018-08-02T00:29:07.758435 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-02T00:29:07.758529 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-02T00:29:07.761859 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-02T00:29:07.762982 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-02T00:29:11.427092 #6] 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.13:9094 +I, [2018-08-02T00:29:11.427902 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-02T00:29:11.428029 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-02T00:29:12.763498 #6] 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.13:9094 +I, [2018-08-02T00:29:12.765085 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-02T00:29:12.766377 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-02T00:29:13.608086 #6] ERROR -- : No brokers in cluster +E, [2018-08-02T00:29:13.616686 #6] ERROR -- : No brokers in cluster +E, [2018-08-02T00:29:18.613095 #6] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: + +I, [2018-08-02T00:29:18.615967 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-02T00:29:18.616203 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-02T00:29:18.617616 #6] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: + +I, [2018-08-02T00:29:18.619649 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-02T00:29:18.619772 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-02T00:29:18.883827 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-02T00:29:18.884075 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-02T00:29:18.924315 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-02T00:29:18.924523 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-02T00:29:19.030490 #6] INFO -- : Will fetch at most 1048576 bytes at a time per partition from course_change +I, [2018-08-02T00:29:19.030697 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-02T00:29:19.060155 #6] INFO -- : Will fetch at most 1048576 bytes at a time per partition from section_change +I, [2018-08-02T00:29:19.060371 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-02T00:29:19.106129 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-02T00:29:19.106285 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:29:19.123888 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-02T00:29:19.145562 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:29:20.111276 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:29:20.149540 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:29:21.115783 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:29:21.153872 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:29:22.087151 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:29:22.158301 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:29:23.094877 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:29:23.158821 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:29:24.095835 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:29:24.160226 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:29:25.096791 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:29:25.162243 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:29:26.106018 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:29:26.171852 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:29:27.109490 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:29:27.172486 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:29:28.112244 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:29:28.175117 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:29:28.972144 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-04ee4c03-25b2-4b8a-943d-4eab8b3e2682` +I, [2018-08-02T00:29:28.972285 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-02T00:29:29.043959 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-31253623-8a8f-4bdd-8d51-096ddffefa1e` +I, [2018-08-02T00:29:29.044057 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-02T00:29:29.113208 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:29:29.180200 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:29:30.009984 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-02T00:29:30.045027 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-02T00:29:30.098206 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-02T00:29:30.107893 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-02T00:29:30.113739 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:29:30.181286 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:29:30.791962 #6] INFO -- : Partitions assigned for `course_change`: 0 +I, [2018-08-02T00:29:30.810491 #6] INFO -- : Partitions assigned for `section_change`: 0 +I, [2018-08-02T00:29:31.115633 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:29:31.181928 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:29:32.116907 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-02T00:29:32.117020 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-02T00:29:32.117052 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-02T00:29:32.131280 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-02T00:29:32.182237 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-02T00:29:32.182394 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-02T00:29:32.182687 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-02T00:29:32.210782 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +E, [2018-08-02T00:29:37.706090 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- ArgumentError: message is required. +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:14:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T00:29:37.827510 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-02T00:29:38.417869 #6] ERROR -- : Client fetch loop error: message is required. +I, [2018-08-02T00:29:38.464129 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-02T00:29:38.521485 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-02T00:29:38.628864 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-02T00:29:39.269956 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- ArgumentError: message is required. +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:14:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T00:29:39.271556 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-02T00:29:39.393108 #6] ERROR -- : Client fetch loop error: message is required. +I, [2018-08-02T00:29:39.393404 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-02T00:29:39.523158 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-02T00:29:39.635267 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:29:39.636786 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:29:39.637125 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-d86b4f32-42dd-4bbe-bfd4-ff0e93169d17` +I, [2018-08-02T00:29:39.637192 #6] INFO -- : Chosen as leader of group `notifications_course_change` +E, [2018-08-02T00:29:39.958671 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-02T00:29:40.061986 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-02T00:29:40.062295 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-02T00:29:40.635576 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:29:40.637449 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:29:40.959677 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-02T00:29:41.443216 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-e4d9a014-9e4b-4ccb-9d25-059719cbe5f1` +I, [2018-08-02T00:29:41.443300 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-02T00:29:41.478957 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-02T00:29:41.479078 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-02T00:29:41.636361 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:29:41.642224 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:29:42.637769 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:29:42.644784 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:29:43.646759 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:29:43.646925 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:29:44.650951 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:29:44.651426 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:29:45.651707 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:29:45.655987 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:29:46.652601 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:29:46.656631 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:29:47.653447 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:29:47.659865 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:29:48.653952 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:29:48.660695 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:29:49.647710 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-02T00:29:49.654469 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:29:49.661251 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:29:50.315477 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-02T00:29:50.657251 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-02T00:29:50.669064 #6] INFO -- : Seeking course_change/0 to offset 0 +E, [2018-08-02T00:29:51.810461 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- ArgumentError: message is required. +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:14:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T00:29:51.816362 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-02T00:29:51.907615 #6] ERROR -- : Client fetch loop error: message is required. +I, [2018-08-02T00:29:51.907926 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-02T00:29:51.915969 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-02T00:29:51.921115 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-02T00:29:52.531280 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- ArgumentError: message is required. +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:14:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T00:29:52.532149 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-02T00:29:52.579298 #6] ERROR -- : Client fetch loop error: message is required. +I, [2018-08-02T00:29:52.581887 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-02T00:29:52.585040 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-02T00:29:52.587615 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:29:52.918580 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-02T00:29:52.927616 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:29:53.589469 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-02T00:29:53.591714 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:29:53.671860 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-3a8768e4-3bf6-4e91-a672-7b343db87f44` +I, [2018-08-02T00:29:53.671934 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-02T00:29:53.903299 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-02T00:29:53.903387 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-02T00:29:53.924474 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-bb205ed9-aa4a-4735-9bda-64ee900abf58` +I, [2018-08-02T00:29:53.924544 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-02T00:29:54.006809 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:29:54.007480 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-02T00:29:54.007558 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-02T00:29:54.592577 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:29:55.008043 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:29:55.594810 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:29:56.010588 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:29:56.596512 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:29:57.017733 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:29:58.795004 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:29:58.799246 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:29:59.797502 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:29:59.800431 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:30:00.797969 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:30:00.847887 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:30:01.798361 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:30:01.849062 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:30:03.163750 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:30:03.228744 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:30:03.255171 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-02T00:30:03.261415 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-02T00:30:04.386538 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-02T00:30:04.508444 #6] INFO -- : Seeking course_change/0 to offset 0 +E, [2018-08-02T00:30:05.286678 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- ArgumentError: message is required. +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:14:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T00:30:05.354239 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-02T00:30:05.414027 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- ArgumentError: message is required. +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:14:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T00:30:05.691668 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-02T00:30:05.711986 #6] ERROR -- : Client fetch loop error: message is required. +I, [2018-08-02T00:30:05.712196 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-02T00:30:05.732559 #6] ERROR -- : Client fetch loop error: message is required. +I, [2018-08-02T00:30:05.733610 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-02T00:30:05.740230 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-08-02T00:30:05.740814 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-02T00:30:05.760431 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:30:05.866801 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:30:06.740794 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-02T00:30:06.741415 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-02T00:30:06.761600 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:30:06.788048 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-0f6f1822-6844-420b-95cf-ea6ffb8f470d` +I, [2018-08-02T00:30:06.788151 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-02T00:30:06.813663 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-02T00:30:06.813779 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-02T00:30:06.815042 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-fedc148c-6a90-4b34-b6eb-88c40cabd8ea` +I, [2018-08-02T00:30:06.815095 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-02T00:30:06.847662 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-02T00:30:06.847807 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-02T00:30:06.867556 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:30:07.763278 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:30:07.870402 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:30:08.786505 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:30:08.871032 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:30:09.788286 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:30:09.872760 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:30:10.942997 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:30:11.875369 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:30:12.072492 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:30:12.884792 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:30:13.074316 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:30:13.932982 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:30:14.089312 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:30:14.945312 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:30:15.114523 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:30:15.879319 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-02T00:30:15.907210 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-02T00:30:15.947688 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-02T00:30:16.117918 #6] INFO -- : Seeking section_change/0 to offset 0 +E, [2018-08-02T00:30:17.932222 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- ArgumentError: message is required. +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:14:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T00:30:18.104963 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-02T00:30:18.164781 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- ArgumentError: message is required. +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:14:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T00:30:18.175755 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-02T00:30:18.434922 #6] ERROR -- : Client fetch loop error: message is required. +I, [2018-08-02T00:30:18.435332 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-02T00:30:18.577090 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-02T00:30:18.607584 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-08-02T00:30:18.793451 #6] ERROR -- : Client fetch loop error: message is required. +I, [2018-08-02T00:30:18.863455 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-02T00:30:18.884923 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-02T00:30:18.890108 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:30:19.577877 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:30:19.608013 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-02T00:30:19.721547 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-87438acb-bd6d-445b-a132-4c9167e0a886` +I, [2018-08-02T00:30:19.721620 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-02T00:30:19.760449 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-02T00:30:19.760548 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-02T00:30:19.949827 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:30:19.966531 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-02T00:30:19.982289 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-92fd722e-e6d1-4d53-982f-0be023cca628` +I, [2018-08-02T00:30:19.982374 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-02T00:30:20.043079 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-02T00:30:20.043161 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-02T00:30:20.590099 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:30:21.072991 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:30:21.679240 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:30:22.113924 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:30:22.686226 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:30:23.174935 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:30:23.687598 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:30:24.175622 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:30:24.689633 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:30:25.177896 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:30:25.736620 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:30:26.178747 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:30:26.737161 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:30:30.797693 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:30:30.867403 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-02T00:30:30.868264 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-02T00:30:31.064284 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:30:31.929846 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-02T00:30:32.468039 #6] INFO -- : Seeking section_change/0 to offset 0 +E, [2018-08-02T00:30:33.603503 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- ArgumentError: message is required. +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:14:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T00:30:33.604357 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-02T00:30:33.818235 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- ArgumentError: message is required. +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:14:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T00:30:33.848403 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-02T00:30:34.359499 #6] ERROR -- : Client fetch loop error: message is required. +I, [2018-08-02T00:30:34.519918 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-02T00:30:35.132514 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-08-02T00:30:35.484285 #6] ERROR -- : Client fetch loop error: message is required. +I, [2018-08-02T00:30:35.484738 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-02T00:30:35.485248 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-02T00:30:35.531192 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-02T00:30:36.028176 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:30:36.190527 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-02T00:30:36.488523 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:30:36.534710 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-02T00:30:36.604660 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-8e599062-1f26-436f-b58b-b6af092960f1` +I, [2018-08-02T00:30:36.610475 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-02T00:30:36.648471 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-f0f758a0-ad44-4c0c-a80d-50381965f06f` +I, [2018-08-02T00:30:36.648564 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-02T00:30:36.720043 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-02T00:30:36.720134 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-02T00:30:36.918938 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-02T00:30:36.919045 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-02T00:30:37.028677 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:30:37.490973 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:30:38.057223 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:30:38.501441 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:30:39.063094 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:30:39.621822 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:30:40.416088 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:30:41.113880 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:30:41.476666 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:30:42.240582 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:30:42.693229 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:30:43.241727 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:30:43.695285 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:30:44.242792 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:30:45.674863 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-02T00:30:45.752949 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:30:45.753103 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:30:45.753267 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-02T00:30:46.777330 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-02T00:30:46.913561 #6] INFO -- : Seeking section_change/0 to offset 0 +E, [2018-08-02T00:30:48.102080 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- ArgumentError: message is required. +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:14:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T00:30:48.102334 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-02T00:30:48.499502 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- ArgumentError: message is required. +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:14:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T00:30:48.636460 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-02T00:30:48.751465 #6] ERROR -- : Client fetch loop error: message is required. +I, [2018-08-02T00:30:48.752228 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-02T00:30:48.896026 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-02T00:30:48.909034 #6] ERROR -- : Client fetch loop error: message is required. +I, [2018-08-02T00:30:48.909341 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-02T00:30:48.911087 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-08-02T00:30:48.920006 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-02T00:30:48.951689 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:30:49.903127 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:30:49.912655 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-02T00:30:49.920662 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-02T00:30:49.953076 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:30:49.961147 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-d758880b-312d-458e-b177-4ca00ba18173` +I, [2018-08-02T00:30:49.961205 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-02T00:30:50.004380 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-1440ea01-8a3b-4255-9e87-36cad707bfef` +I, [2018-08-02T00:30:50.004784 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-02T00:30:50.064196 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-02T00:30:50.064393 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-02T00:30:50.102707 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-02T00:30:50.102843 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-02T00:30:50.905013 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:30:50.956021 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:30:51.872683 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:30:51.928631 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:30:52.974887 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:30:52.975115 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:30:54.212348 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:30:54.239858 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:30:56.835950 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:30:57.191558 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:30:58.066359 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:30:58.192138 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:30:59.069849 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:30:59.192748 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:30:59.211449 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-02T00:30:59.217869 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-02T00:31:00.070802 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-02T00:31:00.193525 #6] INFO -- : Seeking course_change/0 to offset 0 +E, [2018-08-02T00:31:02.011781 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- ArgumentError: message is required. +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:14:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T00:31:02.192816 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-02T00:31:03.165127 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- ArgumentError: message is required. +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:14:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T00:31:03.462637 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-02T00:31:03.848593 #6] ERROR -- : Client fetch loop error: message is required. +I, [2018-08-02T00:31:03.849707 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-02T00:31:03.889186 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-02T00:31:04.023827 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-08-02T00:31:04.251625 #6] ERROR -- : Client fetch loop error: message is required. +I, [2018-08-02T00:31:04.252672 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-02T00:31:04.328712 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-02T00:31:04.357449 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:31:04.890453 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:31:05.051281 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-02T00:31:05.329332 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-02T00:31:05.358313 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:31:05.748658 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-8797ef33-7f7d-4798-b037-d4697f436ac9` +I, [2018-08-02T00:31:05.748744 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-02T00:31:05.775222 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-009bf0d8-b49c-4d26-af41-e54d532906ee` +I, [2018-08-02T00:31:05.775326 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-02T00:31:05.787978 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-02T00:31:05.788098 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-02T00:31:05.881953 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-02T00:31:05.882087 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-02T00:31:05.891643 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:31:06.375535 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:31:06.896279 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:31:07.382941 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:31:07.934059 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:31:08.392044 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:31:08.947186 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:31:09.419789 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:31:09.947736 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:31:10.423180 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:31:10.948473 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:31:12.070003 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:31:12.184874 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:31:13.344155 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:31:13.344495 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:31:14.469871 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:31:14.486964 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:31:15.183390 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-02T00:31:15.673405 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:31:15.673778 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:31:16.314607 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-02T00:31:16.675398 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-02T00:31:16.678026 #6] INFO -- : Seeking course_change/0 to offset 0 +E, [2018-08-02T00:31:17.764906 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- ArgumentError: message is required. +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:14:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T00:31:17.765072 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-02T00:31:17.944443 #6] ERROR -- : Client fetch loop error: message is required. +I, [2018-08-02T00:31:17.944827 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-02T00:31:18.102345 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-02T00:31:18.137503 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-02T00:31:18.511832 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- ArgumentError: message is required. +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:14:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T00:31:18.511926 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-02T00:31:18.527698 #6] ERROR -- : Client fetch loop error: message is required. +I, [2018-08-02T00:31:18.528190 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-02T00:31:18.555968 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-02T00:31:18.755330 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:31:19.108364 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-02T00:31:19.147991 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:31:19.546714 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-5513cba8-398b-4fae-b694-f2e50ac2bf8f` +I, [2018-08-02T00:31:19.546782 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-02T00:31:19.576122 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-02T00:31:19.580951 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-02T00:31:19.581054 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-02T00:31:19.756054 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:31:19.839526 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-ac968ea4-6b53-4539-89ba-d8546ac74a2b` +I, [2018-08-02T00:31:19.839598 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-02T00:31:19.865923 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-02T00:31:19.866022 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-02T00:31:20.168345 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:31:20.836393 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:31:21.168891 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:31:21.805066 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:31:22.173934 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:31:22.823273 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:31:23.207066 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:31:23.835750 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:31:24.207699 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:31:24.905819 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:31:25.238441 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:31:25.906775 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:31:26.238966 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:31:26.910207 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:31:27.242270 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:31:27.916052 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:31:28.260818 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:31:28.916965 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:31:29.334959 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:31:29.879966 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-02T00:31:29.887405 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-02T00:31:29.918933 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-02T00:31:30.336373 #6] INFO -- : Seeking course_change/0 to offset 0 +E, [2018-08-02T00:31:31.936531 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- ArgumentError: message is required. +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:14:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T00:31:31.982071 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-02T00:31:32.207650 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- ArgumentError: message is required. +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:14:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T00:31:32.207727 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-02T00:31:32.209300 #6] ERROR -- : Client fetch loop error: message is required. +I, [2018-08-02T00:31:32.209594 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-02T00:31:32.379136 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-08-02T00:31:32.447626 #6] ERROR -- : Client fetch loop error: message is required. +I, [2018-08-02T00:31:32.515790 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-02T00:31:32.557803 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-02T00:31:32.777082 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:31:33.009048 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:31:33.380308 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-02T00:31:33.418544 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-98b07b26-9da7-4fa5-a45d-7d4481b74989` +I, [2018-08-02T00:31:33.418625 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-02T00:31:33.558186 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-02T00:31:33.613896 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-9074d3da-16af-4864-9316-18e08ab1bae4` +I, [2018-08-02T00:31:33.613969 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-02T00:31:33.630557 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-02T00:31:33.630707 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-02T00:31:33.654113 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-02T00:31:33.654188 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-02T00:31:33.778536 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:31:34.017159 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:31:34.790903 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:31:35.017639 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:31:35.792282 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:31:36.019309 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:31:36.792902 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:31:37.021110 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:31:37.863463 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:31:38.022369 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:31:38.864215 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:31:39.027609 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:31:39.873261 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:31:40.043800 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:31:40.879035 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:31:41.044182 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:31:41.879758 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:31:42.063107 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:31:42.920810 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:31:43.064332 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:31:43.777770 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-02T00:31:43.945148 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:31:44.038900 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-02T00:31:44.072111 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-02T00:31:44.946582 #6] INFO -- : Seeking section_change/0 to offset 0 +E, [2018-08-02T00:31:45.782733 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- ArgumentError: message is required. +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:14:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T00:31:45.933723 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-02T00:31:45.944658 #6] ERROR -- : Client fetch loop error: message is required. +I, [2018-08-02T00:31:45.944916 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-02T00:31:45.970773 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-08-02T00:31:46.075355 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- ArgumentError: message is required. +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:14:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T00:31:46.075413 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-02T00:31:46.094708 #6] ERROR -- : Client fetch loop error: message is required. +I, [2018-08-02T00:31:46.097288 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-02T00:31:46.100178 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-02T00:31:46.612710 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:31:46.964466 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:31:46.971174 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-02T00:31:46.976491 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-7a8776f2-81fe-4736-b96b-152554eb1fb9` +I, [2018-08-02T00:31:46.976545 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-02T00:31:47.004403 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-02T00:31:47.004559 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-02T00:31:47.100927 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-02T00:31:47.189217 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-03781033-284d-463c-b35c-e515121776e7` +I, [2018-08-02T00:31:47.189287 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-02T00:31:47.219732 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-02T00:31:47.219812 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-02T00:31:47.613309 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:31:47.965152 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:31:48.615353 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:31:49.001821 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:31:49.620960 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:31:50.003235 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:31:50.621946 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:31:51.007739 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:31:51.590442 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:31:51.977442 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:31:52.591929 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:31:52.980432 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:31:53.592417 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:31:54.024878 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:31:54.716701 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:31:55.025298 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:31:55.717257 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:31:56.025897 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:31:56.719785 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:31:58.360098 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:31:58.364179 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:31:58.546310 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-02T00:31:58.587366 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-02T00:31:59.361435 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-02T00:31:59.365110 #6] INFO -- : Seeking course_change/0 to offset 0 +E, [2018-08-02T00:32:00.619819 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- ArgumentError: message is required. +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:14:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T00:32:00.679862 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-02T00:32:00.757945 #6] ERROR -- : Client fetch loop error: message is required. +I, [2018-08-02T00:32:00.758264 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-02T00:32:00.761007 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-08-02T00:32:00.794586 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- ArgumentError: message is required. +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:14:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T00:32:00.811755 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-02T00:32:00.888651 #6] ERROR -- : Client fetch loop error: message is required. +I, [2018-08-02T00:32:00.889010 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-02T00:32:00.921269 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-02T00:32:00.952441 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-02T00:32:01.133397 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:32:01.762129 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-02T00:32:01.813790 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-a881f352-3f0e-425a-89ae-c8570cf31db7` +I, [2018-08-02T00:32:01.813879 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-02T00:32:01.834547 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-02T00:32:01.834712 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-02T00:32:01.948888 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:32:01.954689 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-02T00:32:02.176502 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:32:02.188205 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-f13efd33-2227-4651-ba6c-49a1e5aa0239` +I, [2018-08-02T00:32:02.188276 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-02T00:32:02.223615 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-02T00:32:02.223739 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-02T00:32:02.950091 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:32:03.192078 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:32:03.954428 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:32:04.199032 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:32:04.960936 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:32:05.201619 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:32:05.968959 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:32:06.225116 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:32:06.971086 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:32:07.240070 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:32:07.971645 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:32:08.243992 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:32:08.995165 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:32:09.244581 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:32:09.998745 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:32:10.262678 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:32:11.008324 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:32:11.267804 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:32:12.098866 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-02T00:32:12.105163 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:32:12.274221 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-02T00:32:12.286250 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-02T00:32:13.171403 #6] INFO -- : Seeking section_change/0 to offset 0 +E, [2018-08-02T00:32:14.137906 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- ArgumentError: message is required. +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:14:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T00:36:50.230815 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-02T00:36:50.230926 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-02T00:36:50.239752 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-02T00:36:50.239970 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +I, [2018-08-02T00:36:50.242921 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-02T00:36:50.242976 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-02T00:36:50.244084 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-02T00:36:50.244174 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-02T00:36:55.210173 #6] 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.13:9094 +E, [2018-08-02T00:36:55.267667 #6] 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.13:9094 +I, [2018-08-02T00:36:55.281213 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-02T00:36:55.281320 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-02T00:36:55.285578 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-02T00:36:55.285638 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-02T00:36:55.311274 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-02T00:36:55.312527 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-02T00:36:55.316058 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-02T00:36:55.321336 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-02T00:37:00.315108 #6] 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.13:9094 +E, [2018-08-02T00:37:00.324315 #6] 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.13:9094 +I, [2018-08-02T00:37:00.330879 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-02T00:37:00.330986 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-02T00:37:00.321083 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-02T00:37:00.331707 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-02T00:37:00.333443 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-02T00:37:00.333606 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-02T00:37:00.334971 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-02T00:37:00.335063 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-02T00:37:05.334705 #6] 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.13:9094 +I, [2018-08-02T00:37:05.335904 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-02T00:37:05.335966 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-02T00:37:05.337444 #6] 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.13:9094 +I, [2018-08-02T00:37:05.347402 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-02T00:37:05.347802 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-02T00:37:05.349835 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-02T00:37:05.349950 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-02T00:37:05.352054 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-02T00:37:05.352178 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-02T00:37:10.350268 #6] 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.13:9094 +I, [2018-08-02T00:37:10.351188 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-02T00:37:10.351258 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-02T00:37:10.352853 #6] 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.13:9094 +I, [2018-08-02T00:37:10.358011 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-02T00:37:10.358824 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-02T00:37:10.506260 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-02T00:37:10.506550 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-02T00:37:10.521757 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-02T00:37:10.521922 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-02T00:37:10.568098 #6] INFO -- : Will fetch at most 1048576 bytes at a time per partition from course_change +I, [2018-08-02T00:37:10.568369 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-02T00:37:10.569081 #6] INFO -- : Will fetch at most 1048576 bytes at a time per partition from section_change +I, [2018-08-02T00:37:10.570565 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-02T00:37:10.581279 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-02T00:37:10.581447 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:37:10.585087 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-02T00:37:10.585197 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:37:11.582089 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:37:11.586670 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:37:12.582504 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:37:12.587047 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:37:13.583095 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:37:13.587806 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:37:14.583850 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:37:14.588204 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:37:15.584347 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:37:15.588927 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:37:16.585703 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:37:16.591939 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:37:17.586357 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:37:17.602656 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:37:18.173491 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-b019c7dd-cd82-4eb2-a653-8020a8191c3b` +I, [2018-08-02T00:37:18.173571 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-02T00:37:18.217314 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-427ce501-9d31-4bb0-a160-424e7eb421a7` +I, [2018-08-02T00:37:18.217386 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-02T00:37:18.590336 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:37:18.603910 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:37:19.174525 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-02T00:37:19.182204 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-02T00:37:19.218803 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-02T00:37:19.232471 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-02T00:37:19.386605 #6] INFO -- : Partitions assigned for `section_change`: 0 +I, [2018-08-02T00:37:19.426621 #6] INFO -- : Partitions assigned for `course_change`: 0 +I, [2018-08-02T00:37:19.590652 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-02T00:37:19.590764 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-02T00:37:19.590799 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-02T00:37:19.598844 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-02T00:37:19.604552 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-02T00:37:19.604680 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-02T00:37:19.604711 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-02T00:37:19.628254 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +E, [2018-08-02T00:37:21.505700 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- TypeError: wrong argument type Hash (expected String) +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:14:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T00:37:21.505801 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-02T00:37:21.523350 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- TypeError: wrong argument type Hash (expected String) +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:14:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T00:37:21.532580 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-02T00:37:21.576225 #6] ERROR -- : Client fetch loop error: wrong argument type Hash (expected String) +I, [2018-08-02T00:37:21.576449 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-02T00:37:21.577692 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-08-02T00:37:21.579020 #6] ERROR -- : Client fetch loop error: wrong argument type Hash (expected String) +I, [2018-08-02T00:37:21.579222 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-02T00:37:21.586487 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-02T00:37:21.629387 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:37:22.429157 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:37:22.579601 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-02T00:37:22.587710 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-02T00:37:22.638264 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:37:22.697265 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-d5202314-900f-42fe-a882-8a68ce881c25` +I, [2018-08-02T00:37:22.697344 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-02T00:37:22.728443 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-02T00:37:22.728545 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-02T00:37:22.752103 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-3b0cba3c-a085-4de7-8214-e77fa044fddb` +I, [2018-08-02T00:37:22.752161 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-02T00:37:22.758278 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-02T00:37:22.758470 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-02T00:37:23.435847 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:37:23.638996 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:37:24.438477 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:37:24.639567 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:37:25.440722 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:37:25.640457 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:37:26.441366 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:37:26.640915 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:37:27.441946 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:37:27.641478 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:37:28.442473 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:37:28.642014 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:37:29.443666 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:37:29.642749 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:37:30.446283 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:37:30.643571 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:37:31.447694 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:37:31.644537 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:37:32.448794 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:37:32.644910 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:37:32.778111 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-02T00:37:32.786361 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-02T00:37:33.449196 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-02T00:37:33.645154 #6] INFO -- : Seeking section_change/0 to offset 0 +E, [2018-08-02T00:37:34.788386 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- TypeError: wrong argument type Hash (expected String) +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:14:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T00:37:34.788501 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-02T00:37:34.790158 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- TypeError: wrong argument type Hash (expected String) +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:14:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T00:37:34.793343 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-02T00:37:34.797381 #6] ERROR -- : Client fetch loop error: wrong argument type Hash (expected String) +I, [2018-08-02T00:37:34.797593 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-02T00:37:34.802584 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-08-02T00:37:34.804203 #6] ERROR -- : Client fetch loop error: wrong argument type Hash (expected String) +I, [2018-08-02T00:37:34.804443 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-02T00:37:34.807628 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-02T00:37:34.821724 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:37:34.860860 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:37:35.802973 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-02T00:37:35.807919 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-02T00:37:35.819426 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-4ec1176d-791b-43c6-a7fe-ce148675abf0` +I, [2018-08-02T00:37:35.819516 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-02T00:37:35.821998 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:37:35.828641 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-02T00:37:35.828997 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-02T00:37:35.838829 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-fa1138fd-93c5-4470-bd0a-8c550fa1ceda` +I, [2018-08-02T00:37:35.838893 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-02T00:37:35.845833 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-02T00:37:35.845977 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-02T00:37:35.867620 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:37:36.822681 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:37:36.869299 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:37:37.823074 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:37:37.870980 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:37:38.823782 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:37:38.871923 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:37:39.824190 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:37:39.872484 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:37:40.825425 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:37:40.873246 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:37:41.826397 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:37:41.874357 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:37:42.826947 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:37:42.875232 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:37:43.827361 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:37:43.875544 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:37:44.828872 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:37:44.876103 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:37:45.829113 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:37:45.850210 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-02T00:37:45.852490 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-02T00:37:45.877963 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:37:46.829596 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-02T00:37:46.881471 #6] INFO -- : Seeking course_change/0 to offset 0 +E, [2018-08-02T00:37:47.887247 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- TypeError: wrong argument type Hash (expected String) +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:14:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T00:37:47.887336 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-02T00:37:47.890802 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- TypeError: wrong argument type Hash (expected String) +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:14:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T00:37:47.898432 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-02T00:37:47.956845 #6] ERROR -- : Client fetch loop error: wrong argument type Hash (expected String) +I, [2018-08-02T00:37:47.957348 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-02T00:37:47.960839 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-08-02T00:37:48.151059 #6] ERROR -- : Client fetch loop error: wrong argument type Hash (expected String) +I, [2018-08-02T00:37:48.167664 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-02T00:37:48.234667 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-02T00:37:48.415377 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:37:48.543730 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:37:48.961951 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-02T00:37:48.973172 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-a592a826-1a3e-448c-9fdd-ba1f511d8a63` +I, [2018-08-02T00:37:48.973230 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-02T00:37:48.977625 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-02T00:37:48.977740 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-02T00:37:49.235049 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-02T00:37:49.261498 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-ba4d8515-faf2-4905-92bf-01b2b038bb58` +I, [2018-08-02T00:37:49.261571 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-02T00:37:49.268013 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-02T00:37:49.268132 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-02T00:37:49.417079 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:37:49.544704 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:37:50.417922 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:37:50.545121 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:37:51.419352 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:37:51.512714 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:37:52.387785 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:37:52.513603 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:37:53.388266 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:37:53.514208 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:37:54.448538 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:37:54.551201 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:37:55.640478 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:37:55.654756 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:37:56.643229 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:37:56.671345 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:37:57.685815 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:37:57.685947 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:37:58.687206 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:37:58.687422 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:37:59.690202 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:37:59.693126 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:37:59.851807 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-02T00:38:00.083577 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-02T00:38:00.736289 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-02T00:38:01.055627 #6] INFO -- : Seeking section_change/0 to offset 0 +E, [2018-08-02T00:38:02.093949 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- TypeError: wrong argument type Hash (expected String) +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:14:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T00:38:02.099405 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-02T00:38:02.143989 #6] ERROR -- : Client fetch loop error: wrong argument type Hash (expected String) +I, [2018-08-02T00:38:02.144438 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-02T00:38:02.153908 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-02T00:38:02.265295 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:38:03.155666 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-02T00:38:03.182730 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-f0776c88-7134-45e5-834a-a2ef2cd341e9` +I, [2018-08-02T00:38:03.182812 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-02T00:38:03.243111 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-02T00:38:03.243199 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-02T00:38:03.269500 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-02T00:38:03.881769 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- TypeError: wrong argument type Hash (expected String) +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:14:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T00:38:03.881839 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-02T00:38:03.903581 #6] ERROR -- : Client fetch loop error: wrong argument type Hash (expected String) +I, [2018-08-02T00:38:03.903765 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-02T00:38:03.906725 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-02T00:38:04.070280 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:38:04.269999 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:38:04.907202 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-02T00:38:04.914673 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-2a5b4383-5f35-46b2-b214-9903cd3d3db0` +I, [2018-08-02T00:38:04.914744 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-02T00:38:04.957862 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-02T00:38:04.957971 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-02T00:38:05.070691 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:38:05.272072 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:38:06.071573 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:38:06.272595 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:38:07.072812 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:38:07.272998 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:38:08.083528 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:38:08.273529 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:38:09.085595 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:38:09.274060 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:38:10.086242 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:38:10.274540 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:38:11.120164 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:38:11.275138 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:38:12.120779 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:38:12.276046 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:38:13.123743 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:38:13.256755 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-02T00:38:13.276719 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-02T00:38:14.124098 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:38:14.970332 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-02T00:38:15.124836 #6] INFO -- : Seeking section_change/0 to offset 0 +E, [2018-08-02T00:38:15.259300 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- TypeError: wrong argument type Hash (expected String) +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:14:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T00:38:15.261063 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-02T00:38:15.264407 #6] ERROR -- : Client fetch loop error: wrong argument type Hash (expected String) +I, [2018-08-02T00:38:15.264738 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-02T00:38:15.270381 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-02T00:38:15.545862 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:38:16.273087 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-02T00:38:16.276754 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-d36a1a97-69b6-4b93-aa0a-1b20afe650f5` +I, [2018-08-02T00:38:16.276802 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-02T00:38:16.278951 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-02T00:38:16.279010 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-02T00:38:16.546337 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-02T00:38:16.974930 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- TypeError: wrong argument type Hash (expected String) +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:14:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T00:38:16.974990 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-02T00:38:16.984675 #6] ERROR -- : Client fetch loop error: wrong argument type Hash (expected String) +I, [2018-08-02T00:38:16.984920 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-02T00:38:16.989759 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-02T00:38:17.117066 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:38:17.546683 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:38:17.990168 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-02T00:38:17.994037 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-8e7406c7-3009-415f-a550-0710b6568a7c` +I, [2018-08-02T00:38:17.994095 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-02T00:38:17.997279 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-02T00:38:17.997349 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-02T00:38:18.117545 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:38:18.547726 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:38:19.117811 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:38:19.548210 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:38:20.118146 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:38:20.548573 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:38:21.118465 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:38:21.514243 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:38:22.083966 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:38:22.514665 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:38:23.084770 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:38:23.515462 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:38:24.085663 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:38:24.516388 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:38:25.086314 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:38:25.517404 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:38:26.090773 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:38:26.252473 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-02T00:38:26.518740 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-02T00:38:27.091475 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:38:27.979492 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-02T00:38:28.092539 #6] INFO -- : Seeking section_change/0 to offset 0 +E, [2018-08-02T00:38:28.258115 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- TypeError: wrong argument type Hash (expected String) +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:14:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T00:38:28.263047 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-02T00:38:28.293392 #6] ERROR -- : Client fetch loop error: wrong argument type Hash (expected String) +I, [2018-08-02T00:38:28.294108 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-02T00:38:28.298287 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-02T00:38:28.309571 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:38:29.307547 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-02T00:38:29.309935 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:38:29.315246 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-54e97277-4694-4216-b18d-bdedfa5f79f4` +I, [2018-08-02T00:38:29.315539 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-02T00:38:29.338234 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-02T00:38:29.338584 #6] WARN -- : Not fetching from course_change/0 due to pause +E, [2018-08-02T00:38:30.257413 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- TypeError: wrong argument type Hash (expected String) +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:14:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T00:38:30.257749 #6] INFO -- : Leaving group `notifications_notifications` +I, [2018-08-02T00:38:30.311748 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-02T00:38:30.319793 #6] ERROR -- : Client fetch loop error: wrong argument type Hash (expected String) +I, [2018-08-02T00:38:30.320091 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-02T00:38:30.321504 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-02T00:38:30.387908 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:38:31.312782 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:38:31.331938 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-02T00:38:31.393590 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:38:31.434211 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-79b67650-a8c2-4b4f-9845-f0b402e556a3` +I, [2018-08-02T00:38:31.434287 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-02T00:38:31.523203 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-02T00:38:31.524246 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-02T00:38:32.318080 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:38:32.394642 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:38:33.511179 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:38:33.607777 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:38:34.611536 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:38:34.955217 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:38:36.148498 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:38:36.155101 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:38:37.156389 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:38:37.157020 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:38:38.157131 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:38:38.157391 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:38:39.172714 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:38:39.173142 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:38:40.354922 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:38:40.355808 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-02T00:38:40.354136 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:38:41.503748 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:38:41.505772 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:38:41.507740 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-02T00:38:42.677862 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-02T00:38:42.898684 #6] INFO -- : Seeking course_change/0 to offset 0 +E, [2018-08-02T00:38:43.625995 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- TypeError: wrong argument type Hash (expected String) +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:14:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T00:38:43.752959 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-02T00:38:43.779847 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- TypeError: wrong argument type Hash (expected String) +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:14:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T00:38:43.782750 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-02T00:38:43.922771 #6] ERROR -- : Client fetch loop error: wrong argument type Hash (expected String) +I, [2018-08-02T00:38:43.923666 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-02T00:38:43.927249 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-08-02T00:38:43.981103 #6] ERROR -- : Client fetch loop error: wrong argument type Hash (expected String) +I, [2018-08-02T00:38:43.987202 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-02T00:38:44.026205 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-02T00:38:44.103674 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:38:44.505999 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:38:44.929220 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-02T00:38:45.285571 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:38:45.285732 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-02T00:38:45.551120 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:38:45.589476 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-e1204e55-84c9-406c-a35e-d16fbfec8d2e` +I, [2018-08-02T00:38:45.589549 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-02T00:38:45.669093 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-e4cc6e88-913d-4c4c-8e51-4f4fcad9b7f3` +I, [2018-08-02T00:38:45.669182 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-02T00:38:45.682887 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-02T00:38:45.683157 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-02T00:38:45.725238 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-02T00:38:45.725364 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-02T00:38:46.336621 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:38:46.577683 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:38:47.337248 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:38:47.596023 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:38:48.344096 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:38:48.670323 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:38:49.344783 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:38:49.782876 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:38:50.345546 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:38:50.783506 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:38:51.346650 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:38:51.749761 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:38:52.313010 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:38:54.543677 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-02T00:38:55.198053 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-02T00:38:55.201710 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:38:55.262412 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:38:56.202648 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-02T00:38:56.301579 #6] INFO -- : Seeking section_change/0 to offset 0 +E, [2018-08-02T00:38:57.282682 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- TypeError: wrong argument type Hash (expected String) +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:14:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T00:38:57.282988 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-02T00:38:57.292283 #6] ERROR -- : Client fetch loop error: wrong argument type Hash (expected String) +I, [2018-08-02T00:38:57.293243 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-02T00:38:57.294818 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-08-02T00:38:57.389343 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- TypeError: wrong argument type Hash (expected String) +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:14:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T00:38:57.392865 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-02T00:38:57.415580 #6] ERROR -- : Client fetch loop error: wrong argument type Hash (expected String) +I, [2018-08-02T00:38:57.416481 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-02T00:38:57.417760 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-02T00:38:57.461195 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:38:57.531193 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:38:58.295225 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-02T00:38:58.305538 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-97171047-a39f-43cd-abea-7df79a8ea5cf` +I, [2018-08-02T00:38:58.305627 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-02T00:38:58.333707 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-02T00:38:58.333819 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-02T00:38:58.422696 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-02T00:38:58.450934 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-a09635ed-f428-43a2-9ee5-87e6810bcb6b` +I, [2018-08-02T00:38:58.450996 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-02T00:38:58.461700 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:38:58.467986 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-02T00:38:58.468082 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-02T00:38:58.532278 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:38:59.462285 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:38:59.532739 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:39:00.465425 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:39:00.536571 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:39:01.466836 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:39:01.537242 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:39:02.534390 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:39:02.543098 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:39:03.535094 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:39:03.555211 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:39:04.541973 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:39:04.557572 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:39:05.543512 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:39:05.572217 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:39:06.580736 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:39:06.585938 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:39:07.581629 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:39:07.800879 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:39:08.387045 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-02T00:39:08.582580 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:39:08.622513 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-02T00:39:08.805214 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-02T00:39:09.612835 #6] INFO -- : Seeking section_change/0 to offset 0 +E, [2018-08-02T00:39:10.404555 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- TypeError: wrong argument type Hash (expected String) +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:14:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T00:39:10.405167 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-02T00:39:10.487529 #6] ERROR -- : Client fetch loop error: wrong argument type Hash (expected String) +I, [2018-08-02T00:39:10.488561 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-02T00:39:10.492876 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-02T00:39:10.516462 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-02T00:39:10.782945 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- TypeError: wrong argument type Hash (expected String) +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:14:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T00:39:10.783020 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-02T00:39:10.794182 #6] ERROR -- : Client fetch loop error: wrong argument type Hash (expected String) +I, [2018-08-02T00:39:10.794425 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-02T00:39:10.798769 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-02T00:39:10.890758 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:39:11.494488 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-02T00:39:11.506579 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-4154b6e4-2df4-4b81-9bf6-80e2b8d1b8bd` +I, [2018-08-02T00:39:11.507242 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-02T00:39:11.512453 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-02T00:39:11.512523 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-02T00:39:11.535118 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:39:11.799555 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-02T00:39:11.880498 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-6f6f9e14-420a-4569-aac4-bcca5e452324` +I, [2018-08-02T00:39:11.880568 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-02T00:39:11.900335 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:39:11.901101 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-02T00:39:11.901171 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-02T00:39:12.536117 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:39:12.901971 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:39:13.539168 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:39:13.908041 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:39:14.539989 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:39:14.908736 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:39:15.540456 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:39:15.909366 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:39:16.541219 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:39:16.910240 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:39:17.544093 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:39:17.910907 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:39:18.544950 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:39:18.916881 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:39:19.545966 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:39:19.917393 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:39:20.546585 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:39:20.917808 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:39:21.511294 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-02T00:39:21.513972 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:39:21.884606 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:39:21.891582 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-02T00:39:22.514294 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-02T00:39:22.886380 #6] INFO -- : Seeking section_change/0 to offset 0 +E, [2018-08-02T00:39:23.515284 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- TypeError: wrong argument type Hash (expected String) +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:14:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T00:39:23.519295 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-02T00:39:23.535760 #6] ERROR -- : Client fetch loop error: wrong argument type Hash (expected String) +I, [2018-08-02T00:39:23.536157 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-02T00:39:23.537825 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-02T00:39:23.551777 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-02T00:39:23.894023 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- TypeError: wrong argument type Hash (expected String) +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:14:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T00:39:23.894082 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-02T00:39:23.901054 #6] ERROR -- : Client fetch loop error: wrong argument type Hash (expected String) +I, [2018-08-02T00:39:23.901265 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-02T00:39:23.902241 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-02T00:39:24.030731 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:39:24.538196 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-02T00:39:24.546829 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-9b29afdf-8c25-42ea-a12b-42b3a8e10fd6` +I, [2018-08-02T00:39:24.546916 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-02T00:39:24.549745 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-02T00:39:24.549812 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-02T00:39:24.552266 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:39:24.902829 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-02T00:39:24.915292 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-30b79c0f-6d56-4584-a5da-570cc3fff8a9` +I, [2018-08-02T00:39:24.915362 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-02T00:39:24.935014 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-02T00:39:24.935254 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-02T00:39:25.031178 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:39:25.552774 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:39:26.032040 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:39:26.552999 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:39:27.032442 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:39:27.553487 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:39:28.033177 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:39:28.557400 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:39:29.034624 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:39:29.558427 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:39:30.035338 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:39:30.558993 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:39:31.035768 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:39:31.559524 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:39:32.036679 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:39:32.560331 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:39:33.037220 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:39:33.560857 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:39:34.037880 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:39:34.562051 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:39:34.567845 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-02T00:39:34.940562 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-02T00:39:35.038249 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-02T00:39:35.562513 #6] INFO -- : Seeking course_change/0 to offset 0 +E, [2018-08-02T00:39:36.572585 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- TypeError: wrong argument type Hash (expected String) +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:14:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T00:39:36.595327 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-02T00:39:36.602060 #6] ERROR -- : Client fetch loop error: wrong argument type Hash (expected String) +I, [2018-08-02T00:39:36.602291 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-02T00:39:36.609699 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-02T00:39:36.737710 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-02T00:39:36.943595 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- TypeError: wrong argument type Hash (expected String) +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:14:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T00:39:36.943687 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-02T00:39:36.949463 #6] ERROR -- : Client fetch loop error: wrong argument type Hash (expected String) +I, [2018-08-02T00:39:36.949654 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-02T00:39:36.951517 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-02T00:39:37.128177 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:39:37.610391 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-02T00:39:37.615014 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-8e76f36a-3869-4dc8-8e10-18ef35e53bc6` +I, [2018-08-02T00:39:37.615075 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-02T00:39:37.619365 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-02T00:39:37.619432 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-02T00:39:37.738280 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:39:37.951907 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-02T00:39:37.955405 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-338acc8e-5d9c-40dd-8a50-bfb228047490` +I, [2018-08-02T00:39:37.955450 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-02T00:39:37.958609 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-02T00:39:37.958682 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-02T00:39:38.128976 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:39:38.739592 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:39:39.129521 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:39:39.740666 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:39:40.130122 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:39:40.742128 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:39:41.131036 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:39:41.742976 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:39:42.133105 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:39:42.743378 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:39:43.133647 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:39:43.743910 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:39:44.134026 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:39:44.744295 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:39:45.134504 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:39:45.745169 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:39:46.134864 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:39:46.746028 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:39:47.135527 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:39:47.629649 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-02T00:39:47.746780 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-02T00:39:47.964234 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-02T00:39:48.135909 #6] INFO -- : Seeking section_change/0 to offset 0 +E, [2018-08-02T00:39:49.632025 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- TypeError: wrong argument type Hash (expected String) +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:14:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T00:39:49.634901 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-02T00:39:49.648351 #6] ERROR -- : Client fetch loop error: wrong argument type Hash (expected String) +I, [2018-08-02T00:39:49.648649 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-02T00:39:49.650434 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-02T00:39:49.771516 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-02T00:39:49.969603 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- TypeError: wrong argument type Hash (expected String) +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:14:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T00:39:49.969681 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-02T00:39:49.977357 #6] ERROR -- : Client fetch loop error: wrong argument type Hash (expected String) +I, [2018-08-02T00:39:49.977585 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-02T00:39:49.978939 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-02T00:39:50.083351 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:39:50.652277 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-02T00:39:50.661353 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-379abab4-c93b-4dae-99f7-b093ad3569ec` +I, [2018-08-02T00:39:50.661422 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-02T00:39:50.699538 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-02T00:39:50.699662 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-02T00:39:50.772362 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:39:50.979764 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-02T00:39:50.989152 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-72219b1c-8869-46fd-a994-cbcde709d12b` +I, [2018-08-02T00:39:50.989220 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-02T00:39:51.014627 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-02T00:39:51.014705 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-02T00:39:51.083857 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:39:51.737396 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:39:52.144922 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:39:52.739303 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:39:53.146444 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:39:53.740253 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:39:54.146911 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:39:54.740890 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:39:55.147480 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:39:55.741474 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:39:56.147928 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:39:56.742057 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:39:57.148462 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:39:57.742581 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:39:58.148888 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:39:58.743107 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:39:59.149429 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:39:59.744142 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:40:00.149756 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:40:00.678028 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-02T00:40:00.745207 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-02T00:40:00.997234 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-02T00:40:01.150267 #6] INFO -- : Seeking section_change/0 to offset 0 +E, [2018-08-02T00:40:02.749000 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- TypeError: wrong argument type Hash (expected String) +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:14:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T00:40:02.802307 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-02T00:40:02.809157 #6] ERROR -- : Client fetch loop error: wrong argument type Hash (expected String) +I, [2018-08-02T00:40:02.809432 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-02T00:40:02.812242 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-08-02T00:40:03.003806 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- TypeError: wrong argument type Hash (expected String) +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:14:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T00:40:03.003909 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-02T00:40:03.043210 #6] ERROR -- : Client fetch loop error: wrong argument type Hash (expected String) +I, [2018-08-02T00:40:03.043857 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-02T00:40:03.169258 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:40:03.199441 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-02T00:40:03.200005 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-02T00:40:03.813411 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-02T00:40:03.842130 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-a73f4bc5-a04c-4c1d-b521-9e8dc46ed8fd` +I, [2018-08-02T00:40:03.842206 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-02T00:40:03.846011 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-02T00:40:03.846093 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-02T00:40:04.170057 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:40:04.200269 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-02T00:40:04.202007 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:40:04.250800 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-ee0a10c9-d84b-434c-a39c-01f4b6d3ecf7` +I, [2018-08-02T00:40:04.250874 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-02T00:40:04.253592 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-02T00:40:04.253671 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-02T00:40:05.172875 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:40:05.204070 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:40:06.173888 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:40:06.204585 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:40:07.239618 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:40:07.194767 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:40:08.243547 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:40:08.244081 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:40:09.248819 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:40:09.253819 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:40:10.373328 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:40:10.405175 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:40:11.427929 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:40:11.429074 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:40:12.453852 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:40:12.536897 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:40:13.627681 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:40:13.548737 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:40:14.183882 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-02T00:40:14.442102 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-02T00:40:14.634407 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-02T00:40:14.637512 #6] INFO -- : Seeking course_change/0 to offset 0 +E, [2018-08-02T00:40:16.211046 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- TypeError: wrong argument type Hash (expected String) +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:14:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T00:40:16.246603 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-02T00:40:16.284671 #6] ERROR -- : Client fetch loop error: wrong argument type Hash (expected String) +I, [2018-08-02T00:40:16.284977 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-02T00:40:16.299458 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-08-02T00:40:16.468490 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- TypeError: wrong argument type Hash (expected String) +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:14:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T00:40:16.468587 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-02T00:40:16.474437 #6] ERROR -- : Client fetch loop error: wrong argument type Hash (expected String) +I, [2018-08-02T00:40:16.474695 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-02T00:40:16.476051 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-02T00:40:16.484479 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:40:16.836361 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:40:17.299805 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-02T00:40:17.304554 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-5bf8f625-fea2-413c-bf07-70c873d40c1c` +I, [2018-08-02T00:40:17.304623 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-02T00:40:17.310016 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-02T00:40:17.310140 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-02T00:40:17.477097 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-02T00:40:17.482633 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-967ac84e-28e8-43bb-854b-87fe55761bce` +I, [2018-08-02T00:40:17.482729 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-02T00:40:17.485802 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-02T00:40:17.485884 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-02T00:40:17.486261 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:40:17.836756 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:40:18.486950 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:40:18.837256 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:40:19.487499 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:40:19.837924 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:40:20.488471 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:40:20.838546 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:40:21.457054 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:40:21.810141 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:40:22.457924 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:40:22.866895 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:40:23.537615 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:40:23.887093 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:40:24.551377 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:40:24.892217 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:40:25.551855 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:40:25.892781 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:40:26.552623 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:40:26.894555 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:40:27.539692 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-02T00:40:27.553387 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-02T00:40:27.808848 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-02T00:40:27.895319 #6] INFO -- : Seeking section_change/0 to offset 0 +E, [2018-08-02T00:40:29.552428 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- TypeError: wrong argument type Hash (expected String) +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:14:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T00:40:29.559970 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-02T00:40:29.563504 #6] ERROR -- : Client fetch loop error: wrong argument type Hash (expected String) +I, [2018-08-02T00:40:29.563808 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-02T00:40:29.572779 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-08-02T00:40:29.833448 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- TypeError: wrong argument type Hash (expected String) +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:14:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T00:40:29.833551 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-02T00:40:29.840098 #6] ERROR -- : Client fetch loop error: wrong argument type Hash (expected String) +I, [2018-08-02T00:40:29.840628 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-02T00:40:29.847239 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-02T00:40:29.871319 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:40:30.138746 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:40:30.573169 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-02T00:40:30.578488 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-7ad74142-62e5-4001-a0af-3c8699039fb2` +I, [2018-08-02T00:40:30.578559 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-02T00:40:30.581833 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-02T00:40:30.581919 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-02T00:40:30.848063 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-02T00:40:30.868540 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-0b06eae6-df2d-4166-9136-6aca97def503` +I, [2018-08-02T00:40:30.868708 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-02T00:40:30.873195 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:40:30.874395 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-02T00:40:30.874481 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-02T00:40:31.139370 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:40:31.874023 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:40:32.139893 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:40:32.874396 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:40:33.141047 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:40:33.875417 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:40:34.142380 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:40:34.875874 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:40:35.143149 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:40:35.876293 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:40:36.219559 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:40:36.879444 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:40:37.222474 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:40:37.880418 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:40:38.223601 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:40:38.920350 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:40:39.224051 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:40:39.920786 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:40:40.224512 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:40:40.623611 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-02T00:40:40.905978 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-02T00:40:40.921150 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-02T00:40:41.225227 #6] INFO -- : Seeking course_change/0 to offset 0 +E, [2018-08-02T00:40:42.632087 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- TypeError: wrong argument type Hash (expected String) +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:14:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T00:40:42.635786 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-02T00:40:42.642290 #6] ERROR -- : Client fetch loop error: wrong argument type Hash (expected String) +I, [2018-08-02T00:40:42.642651 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-02T00:40:42.644304 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-08-02T00:40:42.911556 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- TypeError: wrong argument type Hash (expected String) +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:14:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T00:40:42.911635 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-02T00:40:42.918198 #6] ERROR -- : Client fetch loop error: wrong argument type Hash (expected String) +I, [2018-08-02T00:40:42.918480 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-02T00:40:42.919392 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-02T00:40:42.957898 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:40:42.974925 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:40:43.644686 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-02T00:40:43.648467 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-361af1b1-2804-4101-8213-801f4e6a14da` +I, [2018-08-02T00:40:43.648526 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-02T00:40:43.650540 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-02T00:40:43.650624 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-02T00:40:43.920024 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-02T00:40:43.923722 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-68f0a7ca-8943-40c7-a40e-838dd7e83188` +I, [2018-08-02T00:40:43.923773 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-02T00:40:43.926323 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-02T00:40:43.926393 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-02T00:40:43.960063 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:40:43.975467 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:40:44.960569 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:40:44.975956 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:40:45.961620 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:40:45.976440 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:40:46.962108 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:40:46.976823 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:40:47.968235 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:40:48.024807 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:40:48.968931 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:40:49.025578 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:40:49.969434 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:40:50.025897 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:40:50.969918 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:40:51.027397 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:40:51.935091 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:40:51.992335 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:40:52.935714 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:40:52.993115 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:40:53.630543 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-02T00:40:53.918454 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-02T00:40:53.936475 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-02T00:40:53.993441 #6] INFO -- : Seeking course_change/0 to offset 0 +E, [2018-08-02T00:40:55.633035 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- TypeError: wrong argument type Hash (expected String) +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:14:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T00:40:55.637956 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-02T00:40:55.642606 #6] ERROR -- : Client fetch loop error: wrong argument type Hash (expected String) +I, [2018-08-02T00:40:55.642863 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-02T00:40:55.643908 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-08-02T00:40:55.921437 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- TypeError: wrong argument type Hash (expected String) +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:14:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T00:40:55.921609 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-02T00:40:55.926275 #6] ERROR -- : Client fetch loop error: wrong argument type Hash (expected String) +I, [2018-08-02T00:40:55.926555 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-02T00:40:55.935784 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-02T00:40:56.084048 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:40:56.215660 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:40:56.644196 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-02T00:40:56.647029 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-b66254e7-4de9-4a28-9463-d5083563fd4f` +I, [2018-08-02T00:40:56.647078 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-02T00:40:56.658101 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-02T00:40:56.658225 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-02T00:40:56.936269 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-02T00:40:56.943052 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-8f9fb507-606b-46da-8011-767f9bbc489b` +I, [2018-08-02T00:40:56.943112 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-02T00:40:56.945631 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-02T00:40:56.945701 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-02T00:40:57.084551 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:40:57.216378 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:40:58.084979 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:40:58.216835 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:40:59.085431 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:40:59.217401 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:41:00.086181 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:41:00.217862 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:41:01.086598 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:41:01.218921 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:41:02.087130 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:41:02.219591 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:41:03.087709 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:41:03.220725 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:41:04.088055 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:41:04.221015 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:41:05.088485 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:41:05.221487 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:41:06.089057 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:41:06.222145 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:41:06.671020 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-02T00:41:06.951079 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-02T00:41:07.089397 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-02T00:41:07.223108 #6] INFO -- : Seeking course_change/0 to offset 0 +E, [2018-08-02T00:41:08.679211 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- TypeError: wrong argument type Hash (expected String) +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:14:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T00:41:08.682847 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-02T00:41:08.689291 #6] ERROR -- : Client fetch loop error: wrong argument type Hash (expected String) +I, [2018-08-02T00:41:08.689764 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-02T00:41:08.692226 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-08-02T00:41:08.954506 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- TypeError: wrong argument type Hash (expected String) +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:14:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T00:41:08.954569 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-02T00:41:08.961116 #6] ERROR -- : Client fetch loop error: wrong argument type Hash (expected String) +I, [2018-08-02T00:41:08.961322 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-02T00:41:08.962407 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-02T00:41:09.087942 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:41:09.125327 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:41:09.692498 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-02T00:41:09.701196 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-3cc88c02-92ea-4042-a441-7186ca17c6f9` +I, [2018-08-02T00:41:09.701293 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-02T00:41:09.705293 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-02T00:41:09.705362 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-02T00:41:09.968636 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-02T00:41:10.017512 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-ec48592a-146e-4f84-bbd2-8096cc23cfa9` +I, [2018-08-02T00:41:10.017603 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-02T00:41:10.034817 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-02T00:41:10.035040 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-02T00:41:10.088512 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:41:10.125950 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:41:11.089082 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:41:11.126374 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:41:12.089671 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:41:12.127482 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:41:13.090097 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:41:13.128297 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:41:14.090624 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:41:14.128709 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:41:15.091655 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:41:15.129138 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:41:16.092238 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:41:16.129769 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:41:17.093249 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:41:17.130482 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:41:18.094815 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:41:18.131172 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:41:19.095854 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:41:19.131789 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:41:19.716537 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-02T00:41:20.046407 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-02T00:41:20.096913 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-02T00:41:20.134238 #6] INFO -- : Seeking course_change/0 to offset 0 +E, [2018-08-02T00:41:21.683764 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- TypeError: wrong argument type Hash (expected String) +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:14:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T00:41:21.686632 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-02T00:41:21.688870 #6] ERROR -- : Client fetch loop error: wrong argument type Hash (expected String) +I, [2018-08-02T00:41:21.689626 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-02T00:41:21.690857 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-08-02T00:41:22.018297 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- TypeError: wrong argument type Hash (expected String) +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:14:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T00:41:22.018939 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-02T00:41:22.024409 #6] ERROR -- : Client fetch loop error: wrong argument type Hash (expected String) +I, [2018-08-02T00:41:22.026259 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-02T00:41:22.027621 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-02T00:41:22.155988 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:41:22.435824 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:41:22.691311 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-02T00:41:22.694596 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-ba420ee2-fb69-45c4-b5c6-d44859a66e91` +I, [2018-08-02T00:41:22.694655 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-02T00:41:22.696861 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-02T00:41:22.696924 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-02T00:41:23.028369 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-02T00:41:23.033770 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-73f2d38f-8780-4ea9-ac04-8cab914b4679` +I, [2018-08-02T00:41:23.033821 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-02T00:41:23.036959 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-02T00:41:23.037024 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-02T00:41:23.156446 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:41:23.437127 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:41:24.157262 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:41:24.438236 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:41:25.157719 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:41:25.438569 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:41:26.158133 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:41:26.439098 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:41:27.158953 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:41:27.439392 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:41:28.159773 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:41:28.441068 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:41:29.160290 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:41:29.442936 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:41:30.160852 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:41:30.444594 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:41:31.162195 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:41:31.445021 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:41:32.162871 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:41:32.448035 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:41:32.702738 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-02T00:41:33.044279 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-02T00:41:33.163198 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-02T00:41:33.448636 #6] INFO -- : Seeking course_change/0 to offset 0 +E, [2018-08-02T00:41:34.706588 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- TypeError: wrong argument type Hash (expected String) +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:14:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T00:41:34.709888 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-02T00:41:34.712999 #6] ERROR -- : Client fetch loop error: wrong argument type Hash (expected String) +I, [2018-08-02T00:41:34.713208 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-02T00:41:34.714254 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-02T00:41:34.737786 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-02T00:41:35.047217 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- TypeError: wrong argument type Hash (expected String) +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:14:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T00:41:35.047277 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-02T00:41:35.049776 #6] ERROR -- : Client fetch loop error: wrong argument type Hash (expected String) +I, [2018-08-02T00:41:35.049984 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-02T00:41:35.050795 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-02T00:41:35.064307 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:41:35.715266 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-02T00:41:35.727366 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-d9b0e58a-f9f0-4dce-8bd0-effdbf5d13d2` +I, [2018-08-02T00:41:35.727435 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-02T00:41:35.729731 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-02T00:41:35.729809 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-02T00:41:35.738191 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:41:36.051228 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-02T00:41:36.056745 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-3df3238c-483c-4ad0-aa6a-1044f9ccf219` +I, [2018-08-02T00:41:36.056797 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-02T00:41:36.059122 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-02T00:41:36.059193 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-02T00:41:36.064749 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:41:36.738727 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:41:37.065908 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:41:37.739370 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:41:38.066632 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:41:38.740050 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:41:39.067296 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:41:39.740493 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:41:40.067911 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:41:40.741634 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:41:41.068585 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:41:41.742444 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:41:42.069182 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:41:42.743035 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:41:43.069978 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:41:43.743464 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:41:44.070346 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:41:44.744579 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:41:45.070962 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:41:45.738373 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-02T00:41:45.744936 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-02T00:41:46.071952 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:41:46.072136 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-02T00:41:47.072362 #6] INFO -- : Seeking section_change/0 to offset 0 +E, [2018-08-02T00:41:47.741159 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- TypeError: wrong argument type Hash (expected String) +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:14:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T00:41:47.744995 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-02T00:41:47.749018 #6] ERROR -- : Client fetch loop error: wrong argument type Hash (expected String) +I, [2018-08-02T00:41:47.749272 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-02T00:41:47.750483 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-08-02T00:41:48.074696 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- TypeError: wrong argument type Hash (expected String) +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:14:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T00:41:48.074758 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-02T00:41:48.083051 #6] ERROR -- : Client fetch loop error: wrong argument type Hash (expected String) +I, [2018-08-02T00:41:48.083257 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-02T00:41:48.084044 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-02T00:41:48.162648 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:41:48.199277 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:41:48.751992 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-02T00:41:48.754864 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-7a118270-df58-46c1-b428-48c433c1b4d7` +I, [2018-08-02T00:41:48.754911 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-02T00:41:48.757529 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-02T00:41:48.757593 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-02T00:41:49.084276 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-02T00:41:49.089357 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-106c6e05-7fd0-4628-8812-24fab01b4baf` +I, [2018-08-02T00:41:49.089405 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-02T00:41:49.091547 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-02T00:41:49.091612 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-02T00:41:49.164753 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:41:49.199991 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:41:50.166953 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:41:50.200341 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:41:51.167884 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:41:51.200733 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:41:52.134692 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:41:52.168218 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:41:53.135097 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:41:53.168750 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:41:54.136101 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:41:54.170420 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:41:55.136679 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:41:55.171440 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:41:56.137142 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:41:56.171931 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:41:57.138017 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:41:57.256966 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:41:58.138424 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:41:58.264954 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:41:58.733063 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-02T00:41:59.063478 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-02T00:41:59.139185 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-02T00:41:59.265337 #6] INFO -- : Seeking course_change/0 to offset 0 +E, [2018-08-02T00:42:00.736465 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- TypeError: wrong argument type Hash (expected String) +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:14:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T00:42:00.740982 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-02T00:42:00.753703 #6] ERROR -- : Client fetch loop error: wrong argument type Hash (expected String) +I, [2018-08-02T00:42:00.753973 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-02T00:42:00.755448 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-08-02T00:42:01.066160 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- TypeError: wrong argument type Hash (expected String) +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:14:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T00:42:01.066245 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-02T00:42:01.074590 #6] ERROR -- : Client fetch loop error: wrong argument type Hash (expected String) +I, [2018-08-02T00:42:01.074837 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-02T00:42:01.075624 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-02T00:42:01.192373 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:42:01.296196 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:42:01.755885 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-02T00:42:01.762255 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-5acd40a7-0e15-4a09-be09-5bdf4ef053a1` +I, [2018-08-02T00:42:01.762311 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-02T00:42:01.766086 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-02T00:42:01.766169 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-02T00:42:02.075992 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-02T00:42:02.081200 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-e24335fe-0b63-44ac-a03a-cdb04a804048` +I, [2018-08-02T00:42:02.081252 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-02T00:42:02.083890 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-02T00:42:02.083998 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-02T00:42:02.192933 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:42:02.296713 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:42:03.193277 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:42:03.297376 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:42:04.193643 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:42:04.297938 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:42:05.193988 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:42:05.298649 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:42:06.194432 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:42:06.299565 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:42:07.195113 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:42:07.300170 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:42:08.195491 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:42:08.300531 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:42:09.195979 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:42:09.301832 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:42:10.197387 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:42:10.302276 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:42:11.197876 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:42:11.302827 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:42:11.772415 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-02T00:42:12.099906 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-02T00:42:12.198670 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-02T00:42:12.303198 #6] INFO -- : Seeking course_change/0 to offset 0 +E, [2018-08-02T00:42:13.776939 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- TypeError: wrong argument type Hash (expected String) +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:14:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T00:42:13.781175 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-02T00:42:13.786212 #6] ERROR -- : Client fetch loop error: wrong argument type Hash (expected String) +I, [2018-08-02T00:42:13.787130 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-02T00:42:13.788321 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-08-02T00:42:14.104857 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- TypeError: wrong argument type Hash (expected String) +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:14:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T00:42:14.104929 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-02T00:42:14.109175 #6] ERROR -- : Client fetch loop error: wrong argument type Hash (expected String) +I, [2018-08-02T00:42:14.110188 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-02T00:42:14.119489 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-02T00:42:14.204880 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:42:14.244448 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:42:14.788754 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-02T00:42:14.793475 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-ee0add17-9dcb-456a-a62a-6d34a255b628` +I, [2018-08-02T00:42:14.793527 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-02T00:42:14.796813 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-02T00:42:14.796882 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-02T00:42:15.119773 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-02T00:42:15.123181 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-7186c882-f132-49fe-a642-34f8ee2f821d` +I, [2018-08-02T00:42:15.123231 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-02T00:42:15.126328 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-02T00:42:15.126392 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-02T00:42:15.206099 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:42:15.245198 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:42:16.206641 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:42:16.245913 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:42:17.208452 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:42:17.247669 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:42:18.208913 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:42:18.248095 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:42:19.209848 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:42:19.248674 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:42:20.217101 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:42:20.249254 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:42:21.217421 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:42:21.249956 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:42:22.183184 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:42:22.215718 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:42:23.183585 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:42:23.216180 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:42:24.185527 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:42:24.216716 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:42:24.766661 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-02T00:42:25.096264 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-02T00:42:25.185962 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-02T00:42:25.217297 #6] INFO -- : Seeking section_change/0 to offset 0 +E, [2018-08-02T00:42:26.769194 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- TypeError: wrong argument type Hash (expected String) +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:14:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T00:42:26.770177 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-02T00:42:26.779482 #6] ERROR -- : Client fetch loop error: wrong argument type Hash (expected String) +I, [2018-08-02T00:42:26.779909 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-02T00:42:26.781613 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-08-02T00:42:27.100721 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- TypeError: wrong argument type Hash (expected String) +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:14:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T00:42:27.100783 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-02T00:42:27.103687 #6] ERROR -- : Client fetch loop error: wrong argument type Hash (expected String) +I, [2018-08-02T00:42:27.103857 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-02T00:42:27.104645 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-02T00:42:27.107655 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:42:27.138815 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:42:27.782777 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-02T00:42:27.786641 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-9f302bb5-aa38-4e9c-b050-997fb647bce5` +I, [2018-08-02T00:42:27.786723 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-02T00:42:27.790617 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-02T00:42:27.790779 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-02T00:42:28.107305 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-02T00:42:28.108286 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:42:28.110557 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-920d6ccc-7392-4ffe-9599-b1848c0e90da` +I, [2018-08-02T00:42:28.110611 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-02T00:42:28.112924 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-02T00:42:28.113008 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-02T00:42:28.139156 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:42:29.109804 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:42:29.139840 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:42:30.283065 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:42:30.316494 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:42:31.290132 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:42:31.317295 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:42:32.290531 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:42:32.317806 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:42:33.291020 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:42:33.318682 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:42:34.291417 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:42:34.319987 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:42:35.291842 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:42:35.320839 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:42:36.292856 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:42:36.321229 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:42:37.293216 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:42:37.332332 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:42:38.293665 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:42:38.332634 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:42:38.482385 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-02T00:42:38.482862 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-02T00:42:39.302015 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-02T00:42:39.333603 #6] INFO -- : Seeking course_change/0 to offset 0 +E, [2018-08-02T00:42:40.488219 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- TypeError: wrong argument type Hash (expected String) +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:14:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T00:42:40.488338 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-02T00:42:40.492371 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- TypeError: wrong argument type Hash (expected String) +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:14:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T00:42:40.492451 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-02T00:42:40.497172 #6] ERROR -- : Client fetch loop error: wrong argument type Hash (expected String) +I, [2018-08-02T00:42:40.497399 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-02T00:42:40.498253 #6] ERROR -- : Client fetch loop error: wrong argument type Hash (expected String) +I, [2018-08-02T00:42:40.498464 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-02T00:42:40.499630 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-08-02T00:42:40.500361 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-02T00:42:40.610269 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:42:41.430936 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:42:41.499836 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-02T00:44:56.555056 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-02T00:44:56.556252 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-02T00:44:56.570771 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-02T00:44:56.570831 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-02T00:44:56.578620 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.6:9094 +E, [2018-08-02T00:44:56.578749 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.6:9094 +E, [2018-08-02T00:44:56.578951 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.6:9094 +E, [2018-08-02T00:44:56.579006 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.6:9094 +E, [2018-08-02T00:45:01.580375 #6] 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.6:9094 +I, [2018-08-02T00:45:01.585986 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-02T00:45:01.586197 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-02T00:45:01.586734 #6] 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.6:9094 +E, [2018-08-02T00:45:01.629065 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.6:9094 +E, [2018-08-02T00:45:01.630559 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.6:9094 +I, [2018-08-02T00:45:01.639370 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-02T00:45:01.640692 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-02T00:45:01.650249 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.6:9094 +E, [2018-08-02T00:45:01.654006 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.6:9094 +E, [2018-08-02T00:45:06.632634 #6] 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.6:9094 +I, [2018-08-02T00:45:06.634633 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-02T00:45:06.635045 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-02T00:45:06.638033 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.6:9094 +E, [2018-08-02T00:45:06.638434 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.6:9094 +E, [2018-08-02T00:45:06.660238 #6] 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.6:9094 +I, [2018-08-02T00:45:06.665059 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-02T00:45:06.665645 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-02T00:45:06.672766 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.6:9094 +E, [2018-08-02T00:45:06.672909 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.6:9094 +E, [2018-08-02T00:45:11.639390 #6] 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.6:9094 +I, [2018-08-02T00:45:11.641183 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-02T00:45:11.641253 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-02T00:45:11.673249 #6] 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.6:9094 +I, [2018-08-02T00:45:11.674009 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-02T00:45:11.674068 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-02T00:45:11.803325 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-02T00:45:11.803775 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-02T00:45:11.815628 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-02T00:45:11.815858 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-02T00:45:11.850343 #6] INFO -- : Will fetch at most 1048576 bytes at a time per partition from course_change +I, [2018-08-02T00:45:11.850545 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-02T00:45:11.878243 #6] INFO -- : Will fetch at most 1048576 bytes at a time per partition from section_change +I, [2018-08-02T00:45:11.878411 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-02T00:45:11.908182 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-02T00:45:11.908340 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:45:11.920254 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-02T00:45:11.920345 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:45:12.909348 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:45:12.921746 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:45:13.910361 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:45:13.926923 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:45:14.911166 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:45:14.929632 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:45:15.912155 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:45:15.933046 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:45:16.915467 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:45:16.933493 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-02T00:45:17.473914 #6] ERROR -- : Failed to find coordinator for group `notifications_notifications`; retrying... +I, [2018-08-02T00:45:17.916106 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:45:17.933849 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:45:18.474327 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-02T00:45:18.598227 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-cb8d5ffb-eb40-4ed7-81cb-e0ff92ee9220` +I, [2018-08-02T00:45:18.598304 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-02T00:45:18.637344 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-0eaa28e3-94ef-449b-be11-b7b2632d041f` +I, [2018-08-02T00:45:18.637427 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-02T00:45:18.917344 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:45:18.934379 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:45:19.599125 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-02T00:45:19.613323 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-02T00:45:19.637873 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-02T00:45:19.640436 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-02T00:45:19.816204 #6] INFO -- : Partitions assigned for `course_change`: 0 +I, [2018-08-02T00:45:19.816826 #6] INFO -- : Partitions assigned for `section_change`: 0 +I, [2018-08-02T00:45:19.918725 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:45:19.934649 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-02T00:45:19.934743 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-02T00:45:19.934775 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-02T00:45:19.943402 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-02T00:45:20.919616 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-02T00:45:20.919831 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-02T00:45:20.919870 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-02T00:45:20.947002 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +E, [2018-08-02T00:45:22.039335 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- NoMethodError: undefined method `to_str' for # +Did you mean? to_set + to_s +/usr/src/app/app/controllers/eventstream.rb:13:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T00:45:22.039428 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-02T00:45:22.171416 #6] ERROR -- : Client fetch loop error: undefined method `to_str' for # +Did you mean? to_set + to_s +I, [2018-08-02T00:45:22.171656 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-02T00:45:22.176160 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-02T00:45:22.195716 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:45:23.176600 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-02T00:45:23.196789 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:45:23.199738 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-ace6500a-afa1-4aeb-aae7-6133485708b5` +I, [2018-08-02T00:45:23.199783 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-02T00:45:23.202111 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-02T00:45:23.202207 #6] WARN -- : Not fetching from course_change/0 due to pause +E, [2018-08-02T00:45:23.916496 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- NoMethodError: undefined method `to_str' for # +Did you mean? to_set + to_s +/usr/src/app/app/controllers/eventstream.rb:13:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T00:45:23.919430 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-02T00:45:23.939492 #6] ERROR -- : Client fetch loop error: undefined method `to_str' for # +Did you mean? to_set + to_s +I, [2018-08-02T00:45:23.939928 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-02T00:45:23.941068 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-02T00:45:23.972811 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:45:24.197626 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:45:24.942246 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-02T00:45:24.948391 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-b9842303-21f5-4dfd-9e86-a90e00738ef8` +I, [2018-08-02T00:45:24.948452 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-02T00:45:24.957717 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-02T00:45:24.957900 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-02T00:45:24.974320 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:45:25.198209 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:45:25.976362 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:45:26.199280 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:45:26.976760 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:45:27.201142 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:45:27.977538 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:45:28.201819 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:45:28.984021 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:45:29.202324 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:45:29.984721 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:45:30.202915 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:45:30.985519 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:45:31.203864 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:45:31.986451 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:45:32.205349 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:45:32.987251 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:45:33.205716 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:45:33.211125 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-02T00:45:33.989623 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:45:34.206710 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-02T00:45:34.986693 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-02T00:45:34.996004 #6] INFO -- : Seeking section_change/0 to offset 0 +E, [2018-08-02T00:45:35.221341 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- NoMethodError: undefined method `to_str' for # +Did you mean? to_set + to_s +/usr/src/app/app/controllers/eventstream.rb:13:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T00:45:35.221421 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-02T00:45:35.227578 #6] ERROR -- : Client fetch loop error: undefined method `to_str' for # +Did you mean? to_set + to_s +I, [2018-08-02T00:45:35.227777 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-02T00:45:35.229646 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-02T00:45:35.660490 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:45:36.229911 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-02T00:45:36.239382 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-44a83da8-3366-491f-a4fe-c8be6b0eb117` +I, [2018-08-02T00:45:36.239480 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-02T00:45:36.252126 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-02T00:45:36.252195 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-02T00:45:36.660850 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-02T00:45:36.994851 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- NoMethodError: undefined method `to_str' for # +Did you mean? to_set + to_s +/usr/src/app/app/controllers/eventstream.rb:13:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T00:45:36.995059 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-02T00:45:37.014120 #6] ERROR -- : Client fetch loop error: undefined method `to_str' for # +Did you mean? to_set + to_s +I, [2018-08-02T00:45:37.014324 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-02T00:45:37.018418 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-02T00:45:37.107037 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:45:37.665115 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:45:38.018829 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-02T00:45:38.035363 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-b8beacae-fecb-454e-9746-5a14ba4420ad` +I, [2018-08-02T00:45:38.035438 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-02T00:45:38.058400 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-02T00:45:38.058600 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-02T00:45:38.111629 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:45:38.670130 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:45:39.113758 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:45:39.670616 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:45:40.114486 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:45:40.671279 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:45:41.116012 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:45:41.671790 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:45:42.117685 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:45:42.673342 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:45:43.118576 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:45:43.674671 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:45:44.152902 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:45:44.682941 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:45:45.161004 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:45:45.684393 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:45:46.161488 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:45:46.585465 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-02T00:45:46.684869 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-02T00:45:47.161777 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:45:48.168156 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:45:48.588683 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +E, [2018-08-02T00:45:48.593872 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- NoMethodError: undefined method `to_str' for # +Did you mean? to_set + to_s +/usr/src/app/app/controllers/eventstream.rb:13:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T00:45:48.599988 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-02T00:45:48.638603 #6] ERROR -- : Client fetch loop error: undefined method `to_str' for # +Did you mean? to_set + to_s +I, [2018-08-02T00:45:48.645387 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-02T00:45:48.650859 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-02T00:45:49.204710 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-02T00:45:49.206463 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:45:49.660097 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-02T00:45:49.704484 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-74d91402-a289-4859-aeac-17aa4ef9da20` +I, [2018-08-02T00:45:49.704598 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-02T00:45:49.787638 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-02T00:45:49.787802 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-02T00:45:50.210011 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-02T00:45:50.623444 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- NoMethodError: undefined method `to_str' for # +Did you mean? to_set + to_s +/usr/src/app/app/controllers/eventstream.rb:13:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T00:45:50.623522 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-02T00:45:50.631170 #6] ERROR -- : Client fetch loop error: undefined method `to_str' for # +Did you mean? to_set + to_s +I, [2018-08-02T00:45:50.631412 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-02T00:45:50.633889 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-02T00:45:50.728525 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:45:51.265935 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:45:51.609413 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-02T00:45:51.697700 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:45:53.550875 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:45:53.552830 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:45:53.849498 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-e19ac45b-7098-44c2-9392-c38579cade2d` +I, [2018-08-02T00:45:53.850311 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-02T00:45:53.910462 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-02T00:45:53.911046 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-02T00:45:54.552383 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:45:54.553762 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:45:55.554620 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:45:55.554764 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:45:56.555346 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:45:56.555589 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:45:57.556298 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:45:57.556739 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:45:58.556778 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:45:58.560913 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:45:59.558570 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:45:59.562146 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:45:59.795176 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-02T00:46:00.559942 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-02T00:46:00.562928 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:46:01.563365 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-02T00:46:01.804017 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- NoMethodError: undefined method `to_str' for # +Did you mean? to_set + to_s +/usr/src/app/app/controllers/eventstream.rb:13:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T00:46:01.806018 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-02T00:46:01.810304 #6] ERROR -- : Client fetch loop error: undefined method `to_str' for # +Did you mean? to_set + to_s +I, [2018-08-02T00:46:01.812513 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-02T00:46:01.815355 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-02T00:46:01.936086 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-02T00:46:02.522746 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:46:02.564190 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-02T00:46:02.815858 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-02T00:46:02.835797 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-edb54b7a-22fe-4c28-9e6d-0374c81d5caf` +I, [2018-08-02T00:46:02.835961 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-02T00:46:02.847553 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-02T00:46:02.847640 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-02T00:46:03.523547 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-02T00:46:03.943117 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- NoMethodError: undefined method `to_str' for # +Did you mean? to_set + to_s +/usr/src/app/app/controllers/eventstream.rb:13:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T00:46:03.943649 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-02T00:46:03.956917 #6] ERROR -- : Client fetch loop error: undefined method `to_str' for # +Did you mean? to_set + to_s +I, [2018-08-02T00:46:03.957349 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-02T00:46:03.962353 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-02T00:46:04.030589 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:46:04.524224 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:46:04.963519 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-02T00:46:04.986083 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-4012dc41-b777-4693-91ff-2296a7a1ef8e` +I, [2018-08-02T00:46:04.986154 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-02T00:46:04.994487 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-02T00:46:04.994580 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-02T00:46:05.032644 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:46:05.525231 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:46:06.033109 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:46:06.526073 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:46:07.034291 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:46:07.526606 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:46:08.035331 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:46:08.526926 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:46:09.035999 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:46:09.558975 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:46:10.036676 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:46:10.560038 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:46:11.036996 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:46:11.561072 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:46:12.040120 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:46:12.564086 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:46:12.857754 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-02T00:46:13.040797 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:46:13.564322 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-02T00:46:14.041569 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-02T00:46:14.866548 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- NoMethodError: undefined method `to_str' for # +Did you mean? to_set + to_s +/usr/src/app/app/controllers/eventstream.rb:13:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T00:48:25.177038 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-02T00:48:25.177196 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-02T00:48:25.193216 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-02T00:48:25.193280 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-02T00:48:25.198432 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-02T00:48:25.198666 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-02T00:48:25.261005 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-02T00:48:25.261174 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-02T00:48:30.200048 #6] 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.13:9094 +I, [2018-08-02T00:48:30.201506 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-02T00:48:30.201570 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-02T00:48:30.204415 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-02T00:48:30.204662 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-02T00:48:30.262861 #6] 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.13:9094 +I, [2018-08-02T00:48:30.269613 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-02T00:48:30.269688 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-02T00:48:30.271458 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-02T00:48:30.272612 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-02T00:48:35.205206 #6] 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.13:9094 +I, [2018-08-02T00:48:35.207428 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-02T00:48:35.207499 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-02T00:48:35.209177 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-02T00:48:35.209331 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-02T00:48:35.273753 #6] 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.13:9094 +I, [2018-08-02T00:48:35.274785 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-02T00:48:35.275047 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-02T00:48:35.276475 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-02T00:48:35.276596 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-02T00:48:40.210725 #6] 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.13:9094 +I, [2018-08-02T00:48:40.213638 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-02T00:48:40.213710 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-02T00:48:40.215872 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-02T00:48:40.216086 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-02T00:48:40.277524 #6] 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.13:9094 +I, [2018-08-02T00:48:40.279493 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-02T00:48:40.279661 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-02T00:48:40.283287 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-02T00:48:40.283790 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-02T00:48:45.238372 #6] 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.13:9094 +I, [2018-08-02T00:48:45.242029 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-02T00:48:45.242256 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-02T00:48:45.284538 #6] 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.13:9094 +I, [2018-08-02T00:48:45.289488 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-02T00:48:45.290106 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-02T00:48:47.640442 #6] ERROR -- : No brokers in cluster +E, [2018-08-02T00:48:47.654999 #6] ERROR -- : No brokers in cluster +E, [2018-08-02T00:48:52.608439 #6] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: + +I, [2018-08-02T00:48:52.612483 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-02T00:48:52.612684 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-02T00:48:52.627563 #6] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: + +I, [2018-08-02T00:48:52.629765 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-02T00:48:52.629832 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-02T00:48:53.069119 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-02T00:48:53.069444 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-02T00:48:53.069926 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-02T00:48:53.070102 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-02T00:48:53.143350 #6] INFO -- : Will fetch at most 1048576 bytes at a time per partition from course_change +I, [2018-08-02T00:48:53.144314 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-02T00:48:53.144736 #6] INFO -- : Will fetch at most 1048576 bytes at a time per partition from section_change +I, [2018-08-02T00:48:53.144829 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-02T00:48:53.163320 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-02T00:48:53.163520 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:48:53.183976 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-02T00:48:53.184128 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:48:54.164170 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:48:54.186340 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:48:55.172693 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:48:55.189441 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:48:56.177420 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:48:56.189937 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:48:57.180762 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:48:57.195656 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:48:58.184658 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:48:58.198836 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:48:59.186116 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:48:59.200497 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:49:00.186982 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:49:00.202706 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:49:00.770657 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-25fb775b-8618-4366-bb35-32575dd6ebe4` +I, [2018-08-02T00:49:00.770729 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-02T00:49:00.777079 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-8a714c03-c880-46cc-b87e-93e18b978295` +I, [2018-08-02T00:49:00.777139 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-02T00:49:01.189083 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:49:01.203091 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:49:01.775763 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-02T00:49:01.777909 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-02T00:49:01.782940 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-02T00:49:01.791917 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-02T00:49:01.986605 #6] INFO -- : Partitions assigned for `section_change`: 0 +I, [2018-08-02T00:49:02.002067 #6] INFO -- : Partitions assigned for `course_change`: 0 +I, [2018-08-02T00:49:02.189895 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-02T00:49:02.190663 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-02T00:49:02.190702 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-02T00:49:02.196430 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-02T00:49:02.203427 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-02T00:49:02.203516 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-02T00:49:02.203547 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-02T00:49:02.240682 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +E, [2018-08-02T00:49:06.104685 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- TypeError: wrong argument type Hash (expected String) +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:14:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T00:49:06.104758 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-02T00:49:06.144541 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- TypeError: wrong argument type Hash (expected String) +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:14:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T00:49:06.147090 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-02T00:49:06.186291 #6] ERROR -- : Client fetch loop error: wrong argument type Hash (expected String) +I, [2018-08-02T00:49:06.188033 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-02T00:49:06.197042 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-08-02T00:49:06.207180 #6] ERROR -- : Client fetch loop error: wrong argument type Hash (expected String) +I, [2018-08-02T00:49:06.207522 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-02T00:49:06.212575 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-02T00:49:06.285375 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:49:06.383296 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:49:07.201204 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-02T00:49:07.213307 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-02T00:49:07.230969 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-70ebac5d-4072-4c46-a09d-feb86135d519` +I, [2018-08-02T00:49:07.231034 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-02T00:49:07.250045 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-0d8cc2e5-5e12-4d07-9f4c-5c00c6246dc5` +I, [2018-08-02T00:49:07.250118 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-02T00:49:07.251936 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-02T00:49:07.252044 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-02T00:49:07.259516 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-02T00:49:07.259608 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-02T00:49:07.287238 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:49:07.387017 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:49:08.287883 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:49:08.387699 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:49:09.288945 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:49:09.389004 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:49:10.289853 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:49:10.390140 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:49:11.290604 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:49:11.390647 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:49:12.291218 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:49:12.391266 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:49:13.292251 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:49:13.391966 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:49:14.292994 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:49:14.392413 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:49:15.298389 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:49:15.393413 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:49:16.298981 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:49:16.394102 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:49:17.299637 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:49:17.312059 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-02T00:49:17.312728 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-02T00:49:17.394579 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-02T00:49:18.300277 #6] INFO -- : Seeking section_change/0 to offset 0 +E, [2018-08-02T00:49:19.317887 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- TypeError: wrong argument type Hash (expected String) +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:14:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T00:49:19.317953 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-02T00:49:19.318522 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- TypeError: wrong argument type Hash (expected String) +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:14:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T00:49:19.323617 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-02T00:49:19.328260 #6] ERROR -- : Client fetch loop error: wrong argument type Hash (expected String) +I, [2018-08-02T00:49:19.328510 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-02T00:49:19.329630 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-08-02T00:49:19.331415 #6] ERROR -- : Client fetch loop error: wrong argument type Hash (expected String) +I, [2018-08-02T00:49:19.331725 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-02T00:49:19.333926 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-02T00:49:19.478866 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:49:19.516195 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:49:20.331160 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-02T00:49:20.334731 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-02T00:49:20.346740 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-f78d5d23-409c-48b8-b185-36e16be8b009` +I, [2018-08-02T00:49:20.346814 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-02T00:49:20.380912 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-4c76e744-b94b-4901-a8c9-d83eb0ae79cb` +I, [2018-08-02T00:49:20.381017 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-02T00:49:20.399283 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-02T00:49:20.399400 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-02T00:49:20.444590 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-02T00:49:20.444698 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-02T00:49:20.479208 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:49:20.518023 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:49:21.444902 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:49:21.483772 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:49:22.445636 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:49:22.858430 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:49:23.447236 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:49:23.891888 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:49:24.770117 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:49:25.305555 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:49:25.772767 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:49:26.333300 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:49:26.773178 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:49:27.334385 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:49:27.773679 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:49:28.341563 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:49:28.774997 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:49:29.342299 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:49:29.527892 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-02T00:49:29.595982 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-02T00:49:29.775580 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-02T00:49:30.343054 #6] INFO -- : Seeking course_change/0 to offset 0 +E, [2018-08-02T00:49:31.546421 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- TypeError: wrong argument type Hash (expected String) +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:14:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T00:49:31.546576 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-02T00:49:31.578336 #6] ERROR -- : Client fetch loop error: wrong argument type Hash (expected String) +I, [2018-08-02T00:49:31.578786 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-02T00:49:31.581874 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-08-02T00:49:31.610257 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- TypeError: wrong argument type Hash (expected String) +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:14:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T00:49:31.629864 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-02T00:49:31.636412 #6] ERROR -- : Client fetch loop error: wrong argument type Hash (expected String) +I, [2018-08-02T00:49:31.636920 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-02T00:49:31.641891 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-02T00:49:31.644549 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:49:31.946412 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:49:32.582353 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-02T00:49:32.623578 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-0d6d8929-fbe5-47ee-b995-0850b44d0122` +I, [2018-08-02T00:49:32.624209 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-02T00:49:32.629614 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-02T00:49:32.629811 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-02T00:49:32.643112 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-02T00:49:32.646784 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:49:32.663727 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-b48fb4af-f6b8-402f-a7d7-24a42baaf1d6` +I, [2018-08-02T00:49:32.663787 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-02T00:49:32.677740 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-02T00:49:32.677835 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-02T00:49:32.947480 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:49:33.647869 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:49:33.949708 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:49:34.649122 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:49:34.950230 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:49:35.649749 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:49:35.950712 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:49:36.651851 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:49:36.951765 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:49:37.654796 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:49:37.974754 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:49:38.658175 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:49:38.990563 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:49:39.668460 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:49:39.992341 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:49:40.669401 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:49:40.995365 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:49:41.684852 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:49:41.996226 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:49:42.685593 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:49:42.689457 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-02T00:49:42.838229 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-02T00:49:42.996670 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-02T00:49:43.686026 #6] INFO -- : Seeking course_change/0 to offset 0 +E, [2018-08-02T00:49:44.702208 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- TypeError: wrong argument type Hash (expected String) +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:14:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T00:49:44.702291 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-02T00:49:44.707132 #6] ERROR -- : Client fetch loop error: wrong argument type Hash (expected String) +I, [2018-08-02T00:49:44.708123 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-02T00:49:44.710348 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-08-02T00:49:44.852030 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- TypeError: wrong argument type Hash (expected String) +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:14:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T00:49:44.866346 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-02T00:49:44.878904 #6] ERROR -- : Client fetch loop error: wrong argument type Hash (expected String) +I, [2018-08-02T00:49:44.880190 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-02T00:49:44.883657 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-02T00:49:44.932203 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:49:45.311097 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:49:45.715680 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-02T00:49:45.728423 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-3b01798c-719c-4e63-b9fb-c142c67f3c48` +I, [2018-08-02T00:49:45.728551 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-02T00:49:45.735690 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-02T00:49:45.735790 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-02T00:49:45.884125 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-02T00:49:45.890652 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-5b67d125-3da8-425a-b8a2-b663cd2b8721` +I, [2018-08-02T00:49:45.890700 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-02T00:49:45.901914 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-02T00:49:45.902015 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-02T00:49:45.932599 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:49:46.313319 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:49:46.933014 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:49:47.313836 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:49:47.933746 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:49:48.314177 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:49:48.934499 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:49:49.315336 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:49:49.935206 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:49:50.316697 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:49:50.935951 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:49:51.314902 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:49:52.152128 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:49:52.316061 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:49:53.153377 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:49:53.316517 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:49:54.154454 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:49:54.316996 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:49:55.155612 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:49:55.317383 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:49:56.081873 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-02T00:49:56.155605 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-02T00:49:56.156392 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:49:56.319460 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-02T00:49:57.157310 #6] INFO -- : Seeking section_change/0 to offset 0 +E, [2018-08-02T00:49:58.147357 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- TypeError: wrong argument type Hash (expected String) +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:14:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T00:49:58.147432 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-02T00:49:58.164303 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- TypeError: wrong argument type Hash (expected String) +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:14:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T00:52:20.894587 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-02T00:52:20.895322 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-02T00:52:20.895856 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-02T00:52:20.895889 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-02T00:52:20.918906 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-02T00:52:20.919086 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-02T00:52:20.926588 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-02T00:52:20.927164 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-02T00:52:25.887624 #6] 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.13:9094 +E, [2018-08-02T00:52:25.899546 #6] 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.13:9094 +I, [2018-08-02T00:52:25.948955 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-02T00:52:25.949080 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-02T00:52:25.981705 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-02T00:52:25.982354 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-02T00:52:26.074679 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-02T00:52:26.085197 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-02T00:52:26.091973 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-02T00:52:26.092100 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-02T00:52:31.767906 #6] 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.13:9094 +I, [2018-08-02T00:52:31.774683 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-02T00:52:31.774796 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-02T00:52:31.786035 #6] 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.13:9094 +I, [2018-08-02T00:52:31.787356 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-02T00:52:31.787438 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-02T00:52:31.798792 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-02T00:52:31.798957 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-02T00:52:31.802080 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-02T00:52:31.802221 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-02T00:52:36.805072 #6] 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.13:9094 +I, [2018-08-02T00:52:36.810160 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-02T00:52:36.810260 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-02T00:52:36.811763 #6] 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.13:9094 +I, [2018-08-02T00:52:36.821415 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-02T00:52:36.821506 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-02T00:52:36.842213 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-02T00:52:36.842586 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-02T00:52:36.855381 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-02T00:52:36.856397 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-02T00:52:41.843356 #6] 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.13:9094 +I, [2018-08-02T00:52:41.873476 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-02T00:52:41.873613 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-02T00:52:41.873906 #6] 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.13:9094 +I, [2018-08-02T00:52:41.879919 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-02T00:52:41.880841 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-02T00:52:41.892943 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-02T00:52:41.894603 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-02T00:52:41.928996 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-02T00:52:41.929864 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-02T00:52:46.903962 #6] 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.13:9094 +I, [2018-08-02T00:52:46.921734 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-02T00:52:46.921863 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-02T00:52:46.935484 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-02T00:52:46.935750 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-02T00:52:46.935886 #6] 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.13:9094 +I, [2018-08-02T00:52:46.937056 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-02T00:52:46.937115 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-02T00:52:46.945112 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-02T00:52:46.948350 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-02T00:52:51.903295 #6] 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.13:9094 +I, [2018-08-02T00:52:51.911421 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-02T00:52:51.912213 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-02T00:52:51.926221 #6] 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.13:9094 +I, [2018-08-02T00:52:51.963626 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-02T00:52:51.983625 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-02T00:52:55.347143 #6] ERROR -- : No brokers in cluster +E, [2018-08-02T00:52:55.352627 #6] ERROR -- : No brokers in cluster +E, [2018-08-02T00:53:00.348270 #6] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: + +I, [2018-08-02T00:53:00.351981 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-02T00:53:00.352063 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-02T00:53:00.352990 #6] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: + +I, [2018-08-02T00:53:00.354621 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-02T00:53:00.354682 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-02T00:53:00.423665 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-02T00:53:00.425001 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-02T00:53:00.452630 #6] INFO -- : Will fetch at most 1048576 bytes at a time per partition from course_change +I, [2018-08-02T00:53:00.453151 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-02T00:53:00.490759 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-02T00:53:00.490951 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:53:00.566499 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-02T00:53:00.566671 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-02T00:53:00.659638 #6] INFO -- : Will fetch at most 1048576 bytes at a time per partition from section_change +I, [2018-08-02T00:53:00.659821 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-02T00:53:00.666199 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-02T00:53:00.666358 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:53:01.495256 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:53:01.667454 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:53:02.495999 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:53:02.668788 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:53:03.496818 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:53:03.695534 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:53:04.497249 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:53:04.697611 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:53:05.507692 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:53:05.698770 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:53:06.508508 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:53:06.699398 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:53:07.038339 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-bea65131-d2a7-4b51-b14b-8fc7b522f745` +I, [2018-08-02T00:53:07.038413 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-02T00:53:07.058816 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-6b5d9046-8f33-4e85-a73a-4411e93c94bb` +I, [2018-08-02T00:53:07.058996 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-02T00:53:07.509299 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:53:07.703753 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:53:08.041550 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-02T00:53:08.055792 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-02T00:53:08.060079 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-02T00:53:08.099275 #6] INFO -- : Partitions assigned for `course_change`: 0 +I, [2018-08-02T00:53:08.101359 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-02T00:53:08.152500 #6] INFO -- : Partitions assigned for `section_change`: 0 +I, [2018-08-02T00:53:08.510309 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-02T00:53:08.510458 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-02T00:53:08.510492 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-02T00:53:08.515698 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-02T00:53:08.704509 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-02T00:53:08.704660 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-02T00:53:08.704711 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-02T00:53:08.713684 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +E, [2018-08-02T00:53:10.145131 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- TypeError: wrong argument type Hash (expected String) +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:16:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T00:53:10.159175 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-02T00:53:10.205656 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- TypeError: wrong argument type Hash (expected String) +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:16:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T00:53:10.205812 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-02T00:53:10.268330 #6] ERROR -- : Client fetch loop error: wrong argument type Hash (expected String) +I, [2018-08-02T00:53:10.272918 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-02T00:53:10.275471 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-02T00:53:10.281509 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-08-02T00:53:10.293848 #6] ERROR -- : Client fetch loop error: wrong argument type Hash (expected String) +I, [2018-08-02T00:53:10.294622 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-02T00:53:10.332364 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-02T00:53:10.899917 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:53:11.275836 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:53:11.281767 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-02T00:53:11.297345 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-204306a9-19aa-4d3e-9424-bece33483cff` +I, [2018-08-02T00:53:11.297428 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-02T00:53:11.300310 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-02T00:53:11.300425 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-02T00:53:11.333689 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-02T00:53:11.357156 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-0a5ce071-96af-4bbc-9517-035b00f63d64` +I, [2018-08-02T00:53:11.357232 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-02T00:53:11.369121 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-02T00:53:11.369194 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-02T00:53:11.900384 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:53:12.276455 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:53:12.901174 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:53:13.278655 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:53:13.901740 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:53:14.279057 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:53:14.903028 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:53:15.279600 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:53:15.911722 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:53:16.280991 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:53:16.912318 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:53:17.281741 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:53:17.913004 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:53:18.283282 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:53:18.914974 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:53:19.284108 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:53:19.915831 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:53:20.284794 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:53:20.916306 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:53:21.249981 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:53:21.278498 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-02T00:53:21.359007 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-02T00:53:21.881438 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-02T00:53:22.250234 #6] INFO -- : Seeking section_change/0 to offset 0 +E, [2018-08-02T00:53:23.287611 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- TypeError: wrong argument type Hash (expected String) +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:16:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T00:53:23.293171 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-02T00:53:23.310671 #6] ERROR -- : Client fetch loop error: wrong argument type Hash (expected String) +I, [2018-08-02T00:53:23.312847 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-02T00:53:23.341541 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-02T00:53:23.353126 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-08-02T00:53:23.371350 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- TypeError: wrong argument type Hash (expected String) +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:16:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T00:53:23.371488 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-02T00:53:23.374846 #6] ERROR -- : Client fetch loop error: wrong argument type Hash (expected String) +I, [2018-08-02T00:53:23.375070 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-02T00:53:23.376736 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-02T00:53:23.388502 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:53:24.341934 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:53:24.353696 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-02T00:53:24.372924 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-81b15214-762b-4de0-b3f0-2f5b17079e2d` +I, [2018-08-02T00:53:24.372977 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-02T00:53:24.377223 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-02T00:53:24.389010 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:53:24.395634 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-02T00:53:24.395736 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-02T00:53:24.397134 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-b9b8c920-4f47-4dcf-b9ed-2183aa21eef6` +I, [2018-08-02T00:53:24.397291 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-02T00:53:24.402889 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-02T00:53:24.402983 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-02T00:53:25.343303 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:53:25.389479 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:53:26.343948 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:53:26.389881 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:53:27.346641 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:53:27.393032 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:53:28.346957 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:53:28.393765 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:53:29.347507 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:53:29.394908 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:53:30.348036 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:53:30.395500 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:53:31.348617 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:53:31.395975 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:53:32.349175 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:53:32.396966 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:53:33.350130 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:53:33.397341 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:53:34.521933 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:53:34.522099 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:53:34.576832 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-02T00:53:34.577776 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-02T00:53:35.522348 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-02T00:53:35.524828 #6] INFO -- : Seeking section_change/0 to offset 0 +E, [2018-08-02T00:53:36.592125 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- TypeError: wrong argument type Hash (expected String) +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:16:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T00:53:36.592183 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-02T00:53:36.593554 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- TypeError: wrong argument type Hash (expected String) +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:16:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T00:53:36.593598 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-02T00:53:36.603733 #6] ERROR -- : Client fetch loop error: wrong argument type Hash (expected String) +I, [2018-08-02T00:53:36.603965 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-02T00:53:36.605012 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-08-02T00:53:36.613076 #6] ERROR -- : Client fetch loop error: wrong argument type Hash (expected String) +I, [2018-08-02T00:53:36.613514 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-02T00:53:36.619044 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-02T00:53:36.821240 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:53:37.038752 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:53:37.605322 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-02T00:53:37.619689 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-02T00:53:37.628953 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-f20a7534-d654-4671-a666-6592ac0ec8be` +I, [2018-08-02T00:53:37.629010 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-02T00:53:37.652884 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-02T00:53:37.652981 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-02T00:53:37.662807 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-17281230-fe74-4a7c-a684-4de718db4749` +I, [2018-08-02T00:53:37.662871 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-02T00:53:37.671529 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-02T00:53:37.671662 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-02T00:53:37.821648 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:53:38.040766 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:53:38.824448 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:53:39.117417 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:53:39.831608 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:53:40.118133 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:53:40.832089 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:53:41.119616 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:53:41.833257 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:53:42.120079 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:53:42.833973 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:53:43.353294 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:53:44.517380 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:53:44.519657 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:53:45.518191 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:53:45.520484 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:53:46.518630 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:53:46.524522 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:53:47.519192 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:53:47.529106 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:53:47.662959 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-02T00:53:47.681501 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-02T00:53:48.519827 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-02T00:53:48.531810 #6] INFO -- : Seeking course_change/0 to offset 0 +E, [2018-08-02T00:53:49.670215 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- TypeError: wrong argument type Hash (expected String) +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:16:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T00:53:49.670328 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-02T00:53:49.678833 #6] ERROR -- : Client fetch loop error: wrong argument type Hash (expected String) +I, [2018-08-02T00:53:49.679143 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-02T00:53:49.681785 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-08-02T00:53:49.686791 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- TypeError: wrong argument type Hash (expected String) +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:16:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T00:53:49.693255 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-02T00:53:49.701772 #6] ERROR -- : Client fetch loop error: wrong argument type Hash (expected String) +I, [2018-08-02T00:53:49.702065 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-02T00:53:49.706663 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-02T00:53:49.829356 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:53:49.851630 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:53:50.682076 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-02T00:53:50.689337 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-06d899e1-5c1d-428c-831e-784e146b838c` +I, [2018-08-02T00:53:50.689386 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-02T00:53:50.697329 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-02T00:53:50.697394 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-02T00:53:50.707075 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-02T00:53:50.718838 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-d6e5f1c3-a2bf-4f67-8bef-ebe22ee0d339` +I, [2018-08-02T00:53:50.718909 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-02T00:53:50.721890 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-02T00:53:50.721974 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-02T00:53:50.829893 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:53:50.851905 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:53:51.798202 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:53:51.820245 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:53:52.799259 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:53:52.820837 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:53:53.799612 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:53:53.821537 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:53:54.800195 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:53:54.822378 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:53:55.800878 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:53:55.823980 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:53:56.802197 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:53:56.824808 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:53:57.804919 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:53:57.826610 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:53:58.806762 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:53:58.826940 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:53:59.808937 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:53:59.828476 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:54:00.685685 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-02T00:54:00.699463 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-02T00:54:00.809571 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-02T00:54:00.829320 #6] INFO -- : Seeking course_change/0 to offset 0 +E, [2018-08-02T00:54:02.690146 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- TypeError: wrong argument type Hash (expected String) +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:16:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T00:54:02.690234 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-02T00:54:02.697257 #6] ERROR -- : Client fetch loop error: wrong argument type Hash (expected String) +I, [2018-08-02T00:54:02.698238 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-02T00:54:02.702211 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-08-02T00:54:02.703246 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- TypeError: wrong argument type Hash (expected String) +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:16:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T00:54:02.714414 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-02T00:54:02.730883 #6] ERROR -- : Client fetch loop error: wrong argument type Hash (expected String) +I, [2018-08-02T00:54:02.731234 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-02T00:54:02.733475 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-02T00:54:03.042362 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:54:03.066062 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:54:03.703552 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-02T00:54:03.711737 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-765678c6-ae73-441e-80b6-453abe568d5b` +I, [2018-08-02T00:54:03.711803 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-02T00:54:03.721772 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-02T00:54:03.721898 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-02T00:54:03.734550 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-02T00:54:03.743256 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-96ce878e-ff62-4ae5-b6b6-a61df5bde48b` +I, [2018-08-02T00:54:03.743323 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-02T00:54:03.746372 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-02T00:54:03.746451 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-02T00:54:04.057142 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:54:04.066804 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:54:05.066140 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:54:05.067491 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:54:06.547875 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:54:06.550640 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:54:07.549704 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:54:07.551304 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:54:08.550208 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:54:08.551638 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:54:09.550725 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:54:09.552316 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:54:10.551258 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:54:10.552714 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:54:11.551892 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:54:11.553315 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:54:12.552462 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:54:12.553958 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:54:13.557375 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:54:13.557514 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:54:14.559193 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:54:14.559342 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:54:14.611548 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-02T00:54:14.619105 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-02T00:54:15.559549 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-02T00:54:15.560383 #6] INFO -- : Seeking course_change/0 to offset 0 +E, [2018-08-02T00:54:16.616014 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- TypeError: wrong argument type Hash (expected String) +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:16:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T00:54:16.616091 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-02T00:54:16.618909 #6] ERROR -- : Client fetch loop error: wrong argument type Hash (expected String) +I, [2018-08-02T00:54:16.619273 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-02T00:54:16.621556 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-02T00:57:13.976370 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-02T00:57:13.978103 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-02T00:57:14.012831 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-02T00:57:14.012912 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-02T00:57:14.022297 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.4:9094 +E, [2018-08-02T00:57:14.022653 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.4:9094 +E, [2018-08-02T00:57:14.023431 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.4:9094 +E, [2018-08-02T00:57:14.024606 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.4:9094 +E, [2018-08-02T00:57:19.400834 #6] 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.4:9094 +E, [2018-08-02T00:57:20.431338 #6] 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.4:9094 +I, [2018-08-02T00:57:20.896909 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-02T00:57:20.897029 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-02T00:57:20.897787 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-02T00:57:20.897868 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-02T00:57:20.922585 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.4:9094 +E, [2018-08-02T00:57:20.922841 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.4:9094 +E, [2018-08-02T00:57:20.923234 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.4:9094 +E, [2018-08-02T00:57:20.923331 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.4:9094 +E, [2018-08-02T00:57:25.890866 #6] 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.4:9094 +I, [2018-08-02T00:57:25.892646 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-02T00:57:25.892725 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-02T00:57:25.894955 #6] 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.4:9094 +I, [2018-08-02T00:57:25.912474 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-02T00:57:25.912584 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-02T00:57:25.915438 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.4:9094 +E, [2018-08-02T00:57:25.915702 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.4:9094 +E, [2018-08-02T00:57:25.916269 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.4:9094 +E, [2018-08-02T00:57:25.916405 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.4:9094 +E, [2018-08-02T00:57:30.916989 #6] 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.4:9094 +I, [2018-08-02T00:57:30.919531 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-02T00:57:30.919749 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-02T00:57:30.922346 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.4:9094 +E, [2018-08-02T00:57:30.922675 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.4:9094 +E, [2018-08-02T00:57:30.927727 #6] 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.4:9094 +I, [2018-08-02T00:57:30.931268 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-02T00:57:30.931537 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-02T00:57:30.933339 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.4:9094 +E, [2018-08-02T00:57:30.933527 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.4:9094 +E, [2018-08-02T00:57:35.935175 #6] 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.4:9094 +E, [2018-08-02T00:57:35.944753 #6] 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.4:9094 +I, [2018-08-02T00:57:35.947316 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-02T00:57:35.947388 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-02T00:57:35.982653 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-02T00:57:35.982744 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-02T00:57:35.984785 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.4:9094 +E, [2018-08-02T00:57:35.984968 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.4:9094 +E, [2018-08-02T00:57:36.010135 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.4:9094 +E, [2018-08-02T00:57:36.010323 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.4:9094 +E, [2018-08-02T00:57:40.988265 #6] 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.4:9094 +I, [2018-08-02T00:57:40.996569 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-02T00:57:40.996663 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-02T00:57:41.012821 #6] 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.4:9094 +I, [2018-08-02T00:57:41.014354 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-02T00:57:41.014428 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-02T00:57:44.155770 #6] ERROR -- : No brokers in cluster +E, [2018-08-02T00:57:44.156240 #6] ERROR -- : No brokers in cluster +E, [2018-08-02T00:57:49.158465 #6] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: + +I, [2018-08-02T00:57:49.159369 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-02T00:57:49.159416 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-02T00:57:49.160994 #6] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: + +I, [2018-08-02T00:57:49.167750 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-02T00:57:49.167806 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-02T00:57:49.276323 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-02T00:57:49.285887 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-02T00:57:49.286298 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-02T00:57:49.286703 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-02T00:57:49.361376 #6] INFO -- : Will fetch at most 1048576 bytes at a time per partition from course_change +I, [2018-08-02T00:57:49.365137 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-02T00:57:49.369020 #6] INFO -- : Will fetch at most 1048576 bytes at a time per partition from section_change +I, [2018-08-02T00:57:49.369169 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-02T00:57:49.378222 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-02T00:57:49.396949 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:57:49.397417 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-02T00:57:49.397491 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:57:50.397403 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:57:50.397774 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:57:51.370193 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:57:51.371688 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:57:52.371374 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:57:52.375625 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:57:53.385423 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:57:53.394074 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:57:54.390545 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:57:54.395195 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:57:55.391083 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:57:55.395902 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:57:56.212391 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-a481a1aa-8f66-41fd-860f-eeae81c86dcc` +I, [2018-08-02T00:57:56.213087 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-02T00:57:56.273634 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-852d9c64-95fc-40e8-8a77-3c41d6126ed2` +I, [2018-08-02T00:57:56.273692 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-02T00:57:56.392915 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:57:56.396261 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:57:57.215252 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-02T00:57:57.221830 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-02T00:57:57.274250 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-02T00:57:57.279514 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-02T00:57:57.380265 #6] INFO -- : Partitions assigned for `course_change`: 0 +I, [2018-08-02T00:57:57.381449 #6] INFO -- : Partitions assigned for `section_change`: 0 +I, [2018-08-02T00:57:57.394312 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:57:57.397392 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:57:58.395708 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-02T00:57:58.395838 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-02T00:57:58.395896 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-02T00:57:58.398223 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-02T00:57:58.398753 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-02T00:57:58.399046 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-02T00:57:58.405625 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-02T00:57:58.408691 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +E, [2018-08-02T00:57:59.519335 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- TypeError: wrong argument type Hash (expected String) +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:16:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T00:57:59.519956 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-02T00:57:59.533548 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- TypeError: wrong argument type Hash (expected String) +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:16:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T00:57:59.537756 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-02T00:57:59.642704 #6] ERROR -- : Client fetch loop error: wrong argument type Hash (expected String) +I, [2018-08-02T00:57:59.643151 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-02T00:57:59.666074 #6] ERROR -- : Client fetch loop error: wrong argument type Hash (expected String) +I, [2018-08-02T00:57:59.666413 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-02T00:57:59.669121 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-08-02T00:57:59.678871 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-02T00:57:59.698150 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:58:00.499623 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:58:00.669846 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-02T00:58:00.679452 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-02T00:58:00.698764 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:58:00.712604 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-37e518ab-af9e-4fb3-8f44-6f5fb9f3ba7d` +I, [2018-08-02T00:58:00.712844 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-02T00:58:00.718965 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-02T00:58:00.719070 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-02T00:58:00.769532 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-5c987a8d-69eb-4419-920c-2f673d877862` +I, [2018-08-02T00:58:00.769600 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-02T00:58:00.785205 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-02T00:58:00.785350 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-02T00:58:01.500303 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:58:01.699201 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:58:02.501144 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:58:02.702677 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:58:03.503056 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:58:03.703093 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:58:04.504195 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:58:04.703774 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:58:05.505596 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:58:05.706734 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:58:06.507706 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:58:06.707463 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:58:07.564457 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:58:07.777228 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:58:08.565467 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:58:08.777691 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:58:09.566352 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:58:09.815975 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:58:10.791805 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:58:10.817429 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:58:10.832906 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-02T00:58:10.845504 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-02T00:58:11.792667 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-02T00:58:11.819122 #6] INFO -- : Seeking section_change/0 to offset 0 +E, [2018-08-02T00:58:12.836223 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- TypeError: wrong argument type Hash (expected String) +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:16:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T00:58:12.836328 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-02T00:58:12.849917 #6] ERROR -- : Client fetch loop error: wrong argument type Hash (expected String) +I, [2018-08-02T00:58:12.852530 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-02T00:58:12.865725 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- TypeError: wrong argument type Hash (expected String) +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:16:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T00:58:12.865814 #6] INFO -- : Leaving group `notifications_notifications` +I, [2018-08-02T00:58:12.866460 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-02T00:58:12.963593 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-08-02T00:58:13.045474 #6] ERROR -- : Client fetch loop error: wrong argument type Hash (expected String) +I, [2018-08-02T00:58:13.045833 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-02T00:58:13.080029 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-02T00:58:13.262538 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:58:13.866941 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:58:13.968121 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-02T00:58:13.994203 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-f8231ac2-d95b-4bdb-ba3a-d0f9ed74f22b` +I, [2018-08-02T00:58:13.994265 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-02T00:58:14.051263 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-02T00:58:14.051356 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-02T00:58:14.081178 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-02T00:58:14.133020 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-d26ae23e-1cd8-4c5b-9cf2-7c7487ed0a71` +I, [2018-08-02T00:58:14.133122 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-02T00:58:14.165062 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-02T00:58:14.165177 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-02T00:58:14.268821 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:58:14.867750 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:58:15.269350 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:58:15.868229 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:58:16.512399 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:58:16.869292 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:58:17.514055 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:58:17.869700 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:58:18.531711 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:58:18.870601 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:58:19.532590 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:58:19.871663 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:58:20.533879 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:58:20.872608 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:58:21.499811 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:58:21.838064 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:58:22.500442 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:58:22.851950 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:58:24.796490 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:58:24.801873 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-02T00:58:24.599157 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:58:24.959018 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-02T00:58:25.884640 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-02T00:58:26.031853 #6] INFO -- : Seeking section_change/0 to offset 0 +E, [2018-08-02T00:58:26.938772 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- TypeError: wrong argument type Hash (expected String) +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:16:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T00:58:26.946989 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-02T00:58:26.963796 #6] ERROR -- : Client fetch loop error: wrong argument type Hash (expected String) +I, [2018-08-02T00:58:26.964559 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-02T00:58:26.967302 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-08-02T00:58:26.987935 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- TypeError: wrong argument type Hash (expected String) +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:16:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T00:58:26.988021 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-02T00:58:26.991297 #6] ERROR -- : Client fetch loop error: wrong argument type Hash (expected String) +I, [2018-08-02T00:58:26.991586 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-02T00:58:26.993161 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-02T00:58:27.063903 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:58:27.160123 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:58:27.967519 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-02T00:58:27.972631 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-9a8c32f1-3a27-453f-8929-fef9f6f662f8` +I, [2018-08-02T00:58:27.972689 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-02T00:58:27.975820 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-02T00:58:27.976364 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-02T00:58:27.993516 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-02T00:58:27.997308 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-3b3abac4-88f4-41d2-9e68-34f1ed6f9a71` +I, [2018-08-02T00:58:27.997354 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-02T00:58:28.006589 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-02T00:58:28.006739 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-02T00:58:28.070256 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:58:28.160810 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:58:29.090018 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:58:29.168633 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:58:30.093172 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:58:30.171703 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:58:31.093624 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:58:31.172200 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:58:32.094362 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:58:32.172665 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:58:33.094696 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:58:33.173057 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:58:34.095126 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:58:34.173509 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:58:35.095528 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:58:35.173977 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:58:36.096240 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:58:36.174317 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:58:37.096780 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:58:37.175441 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:58:38.034873 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-02T00:58:38.045401 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-02T00:58:38.100780 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-02T00:58:38.186237 #6] INFO -- : Seeking section_change/0 to offset 0 +E, [2018-08-02T00:58:40.040388 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- TypeError: wrong argument type Hash (expected String) +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:16:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T00:58:40.058704 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-02T00:58:40.049472 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- TypeError: wrong argument type Hash (expected String) +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:16:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T00:58:40.061719 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-02T00:58:40.338089 #6] ERROR -- : Client fetch loop error: wrong argument type Hash (expected String) +E, [2018-08-02T00:58:40.384157 #6] ERROR -- : Client fetch loop error: wrong argument type Hash (expected String) +I, [2018-08-02T00:58:40.384518 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-02T00:58:40.390369 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:58:40.390719 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-02T00:58:40.420603 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-08-02T00:58:40.426799 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-02T00:58:40.459563 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:58:41.391761 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:58:41.426120 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-02T00:58:41.554952 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-02T00:58:41.583541 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:58:41.674752 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-805fe0e8-7df5-4a84-8698-88ef63aac697` +I, [2018-08-02T00:58:41.674820 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-02T00:58:41.695473 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-02T00:58:41.695588 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-02T00:58:41.708997 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-b26d213c-918f-403e-bd43-5e18e1958921` +I, [2018-08-02T00:58:41.709066 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-02T00:58:41.713913 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-02T00:58:41.714035 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-02T00:58:42.397683 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:58:42.651136 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:58:43.400153 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:58:43.651618 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:58:44.400644 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:58:44.654715 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:58:45.401271 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:58:45.660728 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:58:46.402336 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:58:46.662048 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:58:47.411733 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:58:47.665867 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:58:48.418821 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:58:48.676921 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:58:49.419370 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:58:49.684558 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:58:50.579012 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:58:50.688248 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:58:51.541020 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:58:51.656693 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:58:51.796652 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-02T00:58:52.141920 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-02T00:58:52.545342 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-02T00:58:52.776813 #6] INFO -- : Seeking section_change/0 to offset 0 +E, [2018-08-02T00:58:54.201433 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- TypeError: wrong argument type Hash (expected String) +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:16:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T00:58:54.201659 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-02T00:58:56.212192 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- TypeError: wrong argument type Hash (expected String) +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:16:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T00:58:56.212690 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-02T00:58:56.749395 #6] ERROR -- : Client fetch loop error: wrong argument type Hash (expected String) +I, [2018-08-02T00:58:56.751454 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-02T00:58:57.189903 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:58:58.201533 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-02T00:58:59.093708 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-02T00:58:59.214744 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-02T00:58:59.285268 #6] ERROR -- : Client fetch loop error: wrong argument type Hash (expected String) +I, [2018-08-02T00:58:59.348948 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-02T00:58:59.379472 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-02T00:58:59.464721 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:59:00.287106 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:59:00.287711 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-02T00:59:00.465524 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:59:00.465993 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-02T00:59:01.534499 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:59:01.534643 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:59:01.548494 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-86bfb45e-8abd-4613-8d56-2ab555a954fb` +I, [2018-08-02T00:59:01.548599 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-02T00:59:01.556226 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-f7bf4362-2774-4da7-bb6d-aa754a45999a` +I, [2018-08-02T00:59:01.556297 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-02T00:59:01.573579 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-02T00:59:01.574055 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-02T00:59:01.579100 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-02T00:59:01.579277 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-02T00:59:02.537663 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:59:02.538276 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:59:03.566468 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:59:03.799783 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:59:04.792994 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:59:04.800700 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:59:05.801471 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:59:05.918594 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:59:07.406994 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-02T00:59:07.630668 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:59:07.644730 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:59:08.828628 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:59:08.840265 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-02T00:59:09.831839 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:59:10.868183 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-02T00:59:10.870949 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-02T00:59:10.872378 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- TypeError: wrong argument type Hash (expected String) +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:16:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T00:59:10.875295 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-02T00:59:10.954941 #6] ERROR -- : Client fetch loop error: wrong argument type Hash (expected String) +I, [2018-08-02T00:59:10.957021 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-02T00:59:11.098951 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-02T00:59:11.668385 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:59:11.920363 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-02T00:59:12.113091 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-02T00:59:12.815101 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:59:13.815755 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:59:14.623423 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-084514d0-7afe-4728-9849-3d1bc8b648ef` +I, [2018-08-02T00:59:14.623498 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-02T00:59:14.778504 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-02T00:59:14.778629 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-02T00:59:14.832542 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-02T00:59:15.189910 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- TypeError: wrong argument type Hash (expected String) +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:16:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T00:59:15.195029 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-02T00:59:15.266750 #6] ERROR -- : Client fetch loop error: wrong argument type Hash (expected String) +I, [2018-08-02T00:59:15.267097 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-02T00:59:15.274526 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-02T00:59:15.391630 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:59:16.192628 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:59:16.279425 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-02T00:59:16.428886 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:59:16.535165 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-714edfae-5c0f-4766-839a-b4ba825a7641` +I, [2018-08-02T00:59:16.535255 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-02T00:59:17.199784 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:59:17.201828 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-02T00:59:17.201914 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-02T00:59:17.453408 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:59:18.445545 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:59:18.456221 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:59:19.457679 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:59:19.458534 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:59:20.459390 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:59:20.462012 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:59:21.405864 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-02T00:59:21.432308 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-02T00:59:21.435562 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:59:22.446913 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-02T00:59:23.413454 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- TypeError: wrong argument type Hash (expected String) +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:16:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T00:59:23.413758 #6] INFO -- : Leaving group `notifications_course_change` +I, [2018-08-02T00:59:23.457024 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-02T00:59:23.512727 #6] ERROR -- : Client fetch loop error: wrong argument type Hash (expected String) +I, [2018-08-02T00:59:23.513263 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-02T00:59:23.541357 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-02T00:59:23.728044 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:59:24.457667 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:59:24.542308 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-02T00:59:24.571288 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-bd0c73ea-8d68-43af-ba6f-6a577ed94c9e` +I, [2018-08-02T00:59:24.571416 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-02T00:59:24.578802 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-02T00:59:24.578896 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-02T00:59:24.732780 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:59:26.687111 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:59:26.690333 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-02T00:59:26.874186 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T00:59:27.692052 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-02T00:59:27.898484 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-02T00:59:28.900800 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- TypeError: wrong argument type Hash (expected String) +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:16:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T01:04:09.349566 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-02T01:04:09.349667 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-02T01:04:09.364454 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-02T01:04:09.364518 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-02T01:04:09.378371 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.9:9094 +E, [2018-08-02T01:04:09.378570 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.9:9094 +E, [2018-08-02T01:04:09.388877 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.9:9094 +E, [2018-08-02T01:04:09.389059 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.9:9094 +E, [2018-08-02T01:04:14.379068 #6] 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.9:9094 +I, [2018-08-02T01:04:14.380184 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-02T01:04:14.380246 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-02T01:04:14.381737 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.9:9094 +E, [2018-08-02T01:04:14.381862 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.9:9094 +E, [2018-08-02T01:04:14.390073 #6] 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.9:9094 +I, [2018-08-02T01:04:14.397813 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-02T01:04:14.398343 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-02T01:04:14.400545 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.9:9094 +E, [2018-08-02T01:04:14.400729 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.9:9094 +E, [2018-08-02T01:04:19.382311 #6] 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.9:9094 +I, [2018-08-02T01:04:19.384043 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-02T01:04:19.384098 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-02T01:04:19.385430 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.9:9094 +E, [2018-08-02T01:04:19.385518 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.9:9094 +E, [2018-08-02T01:04:19.401250 #6] 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.9:9094 +I, [2018-08-02T01:04:19.402748 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-02T01:04:19.402873 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-02T01:04:19.405905 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.9:9094 +E, [2018-08-02T01:04:19.406084 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.9:9094 +E, [2018-08-02T01:04:24.356461 #6] 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.9:9094 +I, [2018-08-02T01:04:24.357102 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-02T01:04:24.357141 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-02T01:04:24.377442 #6] 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.9:9094 +I, [2018-08-02T01:04:24.378243 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-02T01:04:24.378383 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-02T01:04:24.892412 #6] ERROR -- : No brokers in cluster +E, [2018-08-02T01:04:24.929771 #6] ERROR -- : No brokers in cluster +E, [2018-08-02T01:04:29.895417 #6] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: + +I, [2018-08-02T01:04:29.905691 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-02T01:04:29.906323 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-02T01:04:29.930353 #6] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: + +I, [2018-08-02T01:04:29.935058 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-02T01:04:29.935137 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-02T01:04:30.390241 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-02T01:04:30.391534 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-02T01:04:30.486482 #6] INFO -- : Will fetch at most 1048576 bytes at a time per partition from course_change +I, [2018-08-02T01:04:30.488816 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-02T01:04:30.519150 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-02T01:04:30.519333 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:04:30.525793 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-02T01:04:30.526041 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-02T01:04:30.588061 #6] INFO -- : Will fetch at most 1048576 bytes at a time per partition from section_change +I, [2018-08-02T01:04:30.603823 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-02T01:04:30.674191 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-02T01:04:30.674346 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:04:31.521593 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:04:31.674849 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:04:32.522173 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:04:32.675710 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:04:33.522721 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:04:33.676890 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:04:33.753710 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-debb3b3e-67be-4d50-a6a4-89830bd709e2` +I, [2018-08-02T01:04:33.753974 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-02T01:04:33.789209 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-d3d6876a-78dd-49b2-b673-b7ff1d1e11f4` +I, [2018-08-02T01:04:33.789281 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-02T01:04:34.523539 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:04:34.677377 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:04:34.755833 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-02T01:04:34.765763 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-02T01:04:34.795281 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-02T01:04:34.859940 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-02T01:04:34.914183 #6] INFO -- : Partitions assigned for `section_change`: 0 +I, [2018-08-02T01:04:34.925664 #6] INFO -- : Partitions assigned for `course_change`: 0 +I, [2018-08-02T01:04:35.523966 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-02T01:04:35.524096 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-02T01:04:35.524135 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-02T01:04:35.528204 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-02T01:04:35.677859 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-02T01:04:35.678072 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-02T01:04:35.678108 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-02T01:04:35.684288 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +E, [2018-08-02T01:04:37.086960 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- TypeError: no implicit conversion of Karafka::Params::Params into String +/usr/local/lib/ruby/2.5.0/json/common.rb:156:in `initialize' +/usr/local/lib/ruby/2.5.0/json/common.rb:156:in `new' +/usr/local/lib/ruby/2.5.0/json/common.rb:156:in `parse' +/usr/src/app/app/controllers/eventstream.rb:16:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T01:04:37.087063 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-02T01:04:37.249949 #6] ERROR -- : Client fetch loop error: no implicit conversion of Karafka::Params::Params into String +I, [2018-08-02T01:04:37.250951 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-02T01:04:37.260413 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-02T01:04:37.403117 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:04:38.261068 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-02T01:04:38.291283 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-7a0273de-3816-41e0-8af3-d5980466342e` +I, [2018-08-02T01:04:38.291332 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-02T01:04:38.305160 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-02T01:04:38.305235 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-02T01:04:38.404448 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-02T01:04:39.068607 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- TypeError: no implicit conversion of Karafka::Params::Params into String +/usr/local/lib/ruby/2.5.0/json/common.rb:156:in `initialize' +/usr/local/lib/ruby/2.5.0/json/common.rb:156:in `new' +/usr/local/lib/ruby/2.5.0/json/common.rb:156:in `parse' +/usr/src/app/app/controllers/eventstream.rb:16:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T01:04:39.070855 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-02T01:04:39.104417 #6] ERROR -- : Client fetch loop error: no implicit conversion of Karafka::Params::Params into String +I, [2018-08-02T01:04:39.104750 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-02T01:04:39.107287 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-02T01:04:39.119052 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:04:39.405234 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:04:40.107886 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-02T01:04:40.119594 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:04:40.137656 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-f18f16ce-ab8a-424a-bac4-53acdef09745` +I, [2018-08-02T01:04:40.137726 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-02T01:04:40.152915 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-02T01:04:40.153022 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-02T01:04:40.406237 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:04:41.120549 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:04:41.407536 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:04:42.120940 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:04:42.408231 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:04:43.121493 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:04:43.408545 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:04:44.122280 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:04:44.409680 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:04:45.123418 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:04:45.410295 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:04:46.127015 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:04:46.411125 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:04:47.128044 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:04:47.411671 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:04:48.131139 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:04:48.329025 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-02T01:04:48.412268 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-02T01:04:49.140100 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:04:50.140507 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:04:50.217236 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +E, [2018-08-02T01:04:50.342686 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- TypeError: no implicit conversion of Karafka::Params::Params into String +/usr/local/lib/ruby/2.5.0/json/common.rb:156:in `initialize' +/usr/local/lib/ruby/2.5.0/json/common.rb:156:in `new' +/usr/local/lib/ruby/2.5.0/json/common.rb:156:in `parse' +/usr/src/app/app/controllers/eventstream.rb:16:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T01:04:50.342770 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-02T01:04:50.346860 #6] ERROR -- : Client fetch loop error: no implicit conversion of Karafka::Params::Params into String +I, [2018-08-02T01:04:50.347086 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-02T01:04:50.350699 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-02T01:04:50.365319 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:04:51.140890 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-02T01:04:51.350954 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-02T01:04:51.366067 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:04:51.341332 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-54559388-aa4d-45af-9d0b-bccbae7de16e` +I, [2018-08-02T01:04:51.341404 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-02T01:04:51.382506 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-02T01:04:51.382599 #6] WARN -- : Not fetching from course_change/0 due to pause +E, [2018-08-02T01:04:52.183016 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- TypeError: no implicit conversion of Karafka::Params::Params into String +/usr/local/lib/ruby/2.5.0/json/common.rb:156:in `initialize' +/usr/local/lib/ruby/2.5.0/json/common.rb:156:in `new' +/usr/local/lib/ruby/2.5.0/json/common.rb:156:in `parse' +/usr/src/app/app/controllers/eventstream.rb:16:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T01:04:52.183142 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-02T01:04:52.189854 #6] ERROR -- : Client fetch loop error: no implicit conversion of Karafka::Params::Params into String +I, [2018-08-02T01:04:52.190135 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-02T01:04:52.190667 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-02T01:04:52.191807 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-02T01:04:52.330095 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:04:53.191340 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:04:53.192166 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-02T01:04:53.197571 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-3ea42c32-f43f-431d-9049-36bb211dac56` +I, [2018-08-02T01:04:53.197619 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-02T01:04:53.201097 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-02T01:04:53.201169 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-02T01:04:53.331190 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:04:54.191755 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:04:54.331848 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:04:55.192684 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:04:55.334983 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:04:56.193293 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:04:56.337953 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:04:57.193648 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:04:57.338401 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:04:58.194167 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:04:58.341163 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:04:59.195242 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:04:59.341755 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:05:00.195631 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:05:00.342305 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:05:01.196343 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:05:01.350737 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:05:01.399148 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-02T01:05:02.197027 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:05:02.352095 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-02T01:05:03.197531 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:05:03.218884 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +E, [2018-08-02T01:05:03.411793 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- TypeError: no implicit conversion of Karafka::Params::Params into String +/usr/local/lib/ruby/2.5.0/json/common.rb:156:in `initialize' +/usr/local/lib/ruby/2.5.0/json/common.rb:156:in `new' +/usr/local/lib/ruby/2.5.0/json/common.rb:156:in `parse' +/usr/src/app/app/controllers/eventstream.rb:16:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T01:06:45.015375 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-02T01:06:45.015529 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-02T01:06:45.016966 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-02T01:06:45.017019 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-02T01:06:45.023865 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.9:9094 +E, [2018-08-02T01:06:45.024000 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.9:9094 +E, [2018-08-02T01:06:45.024301 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.9:9094 +E, [2018-08-02T01:06:45.024450 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.9:9094 +E, [2018-08-02T01:06:50.024919 #6] 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.9:9094 +E, [2018-08-02T01:06:50.027928 #6] 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.9:9094 +I, [2018-08-02T01:06:50.066670 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-02T01:06:50.066749 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-02T01:06:50.066956 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-02T01:06:50.067283 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-02T01:06:50.069375 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.9:9094 +E, [2018-08-02T01:06:50.069475 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.9:9094 +E, [2018-08-02T01:06:50.069969 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.9:9094 +E, [2018-08-02T01:06:50.070417 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.9:9094 +E, [2018-08-02T01:06:55.035376 #6] 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.9:9094 +E, [2018-08-02T01:06:55.036018 #6] 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.9:9094 +I, [2018-08-02T01:06:55.038751 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-02T01:06:55.038896 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-02T01:06:55.040496 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-02T01:06:55.040571 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-02T01:06:55.043711 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.9:9094 +E, [2018-08-02T01:06:55.044558 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.9:9094 +E, [2018-08-02T01:06:55.051064 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.9:9094 +E, [2018-08-02T01:06:55.051948 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.9:9094 +E, [2018-08-02T01:07:00.045420 #6] 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.9:9094 +I, [2018-08-02T01:07:00.047090 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-02T01:07:00.047177 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-02T01:07:00.052368 #6] 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.9:9094 +I, [2018-08-02T01:07:00.054782 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-02T01:07:00.054926 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-02T01:07:00.529498 #6] ERROR -- : No brokers in cluster +E, [2018-08-02T01:07:00.529755 #6] ERROR -- : No brokers in cluster +E, [2018-08-02T01:07:05.530306 #6] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: + +I, [2018-08-02T01:07:05.531310 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-02T01:07:05.531360 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-02T01:07:05.531592 #6] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: + +I, [2018-08-02T01:07:05.534097 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-02T01:07:05.534248 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-02T01:07:05.797931 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-02T01:07:05.798866 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-02T01:07:05.808688 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-02T01:07:05.808876 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-02T01:07:05.839610 #6] INFO -- : Will fetch at most 1048576 bytes at a time per partition from course_change +I, [2018-08-02T01:07:05.839875 #6] INFO -- : Will fetch at most 1048576 bytes at a time per partition from section_change +I, [2018-08-02T01:07:05.839947 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-02T01:07:05.840047 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-02T01:07:05.845305 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-02T01:07:05.845413 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:07:05.867446 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-02T01:07:05.867556 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:07:06.846388 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:07:06.867902 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:07:07.850416 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:07:07.869086 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:07:08.852309 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:07:08.872318 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:07:09.853514 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:07:09.873182 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:07:10.460725 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-58408de9-ba20-4aa4-a3ff-96845d0e9eea` +I, [2018-08-02T01:07:10.460814 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-02T01:07:10.550899 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-749f84f6-4c64-434c-8f98-c4480928806b` +I, [2018-08-02T01:07:10.550974 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-02T01:07:10.855023 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:07:10.875368 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:07:11.461427 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-02T01:07:11.481713 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-02T01:07:11.518118 #6] INFO -- : Partitions assigned for `course_change`: 0 +I, [2018-08-02T01:07:11.554760 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-02T01:07:11.561634 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-02T01:07:11.584889 #6] INFO -- : Partitions assigned for `section_change`: 0 +I, [2018-08-02T01:07:11.855331 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-02T01:07:11.855443 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-02T01:07:11.855477 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-02T01:07:11.865787 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-02T01:07:11.875998 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-02T01:07:11.876216 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-02T01:07:11.876253 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-02T01:07:11.905615 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +E, [2018-08-02T01:07:13.532430 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- TypeError: wrong argument type Hash (expected String) +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:18:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T01:07:13.532571 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-02T01:07:13.626357 #6] ERROR -- : Client fetch loop error: wrong argument type Hash (expected String) +I, [2018-08-02T01:07:13.626710 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-02T01:07:13.647791 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- TypeError: wrong argument type Hash (expected String) +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:18:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T01:07:13.651314 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-02T01:07:13.754873 #6] ERROR -- : Client fetch loop error: wrong argument type Hash (expected String) +I, [2018-08-02T01:07:13.755176 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-02T01:07:13.763067 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-08-02T01:07:13.782690 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-02T01:07:13.942361 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:07:13.979726 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:07:14.764787 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-02T01:07:14.783169 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-02T01:07:14.901538 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-85a96f9c-1a4d-4382-abce-2121d7b63768` +I, [2018-08-02T01:07:14.901611 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-02T01:07:14.902764 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-269c1774-15b9-4757-a041-08629a96934d` +I, [2018-08-02T01:07:14.902814 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-02T01:07:14.916240 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-02T01:07:14.916353 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-02T01:07:14.919935 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-02T01:07:14.920250 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-02T01:07:14.944026 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:07:14.980831 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:07:15.944614 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:07:15.981718 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:07:16.946135 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:07:16.983292 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:07:17.947279 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:07:17.984765 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:07:18.947731 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:07:18.985140 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:07:19.948994 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:07:19.985553 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:07:20.949641 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:07:20.987530 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:07:21.914828 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:07:21.952620 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:07:22.915274 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:07:22.953046 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:07:23.931446 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:07:23.962962 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:07:24.906751 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-02T01:07:24.910373 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-02T01:07:24.933387 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-02T01:07:24.966457 #6] INFO -- : Seeking course_change/0 to offset 0 +E, [2018-08-02T01:07:26.929129 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- TypeError: wrong argument type Hash (expected String) +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:18:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T01:07:26.929324 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-02T01:07:26.930514 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- TypeError: wrong argument type Hash (expected String) +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:18:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T01:07:26.936327 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-02T01:07:27.029534 #6] ERROR -- : Client fetch loop error: wrong argument type Hash (expected String) +I, [2018-08-02T01:07:27.029833 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-02T01:07:27.030110 #6] ERROR -- : Client fetch loop error: wrong argument type Hash (expected String) +I, [2018-08-02T01:07:27.030290 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-02T01:07:27.053581 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-02T01:07:27.054286 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-02T01:07:27.055707 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-02T01:07:27.184004 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:07:28.054262 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-02T01:07:28.055125 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:07:28.057198 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-02T01:07:28.067533 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-fa09fa69-8cf8-477c-9239-becdf0f0a7c4` +I, [2018-08-02T01:07:28.067609 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-02T01:07:28.084158 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-02T01:07:28.084263 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-02T01:07:28.106295 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-9be36d40-1630-41ec-9284-80af6acff914` +I, [2018-08-02T01:07:28.106364 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-02T01:07:28.121144 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-02T01:07:28.121245 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-02T01:07:28.186350 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:07:29.055981 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:07:29.186867 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:07:30.056665 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:07:30.187320 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:07:31.057286 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:07:31.187836 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:07:32.167788 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:07:32.214889 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:07:33.169281 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:07:33.215851 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:07:34.169877 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:07:34.216299 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:07:35.170460 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:07:35.216623 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:07:36.171442 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:07:36.217018 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:07:37.172465 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:07:37.217967 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:07:38.172859 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:07:38.218314 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:07:38.222676 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-02T01:07:38.237255 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-02T01:07:39.173383 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-02T01:07:39.219300 #6] INFO -- : Seeking course_change/0 to offset 0 +E, [2018-08-02T01:07:40.234155 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- TypeError: wrong argument type Hash (expected String) +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:18:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T01:07:40.234284 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-02T01:07:40.253159 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- TypeError: wrong argument type Hash (expected String) +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:18:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T01:07:40.254086 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-02T01:07:40.326425 #6] ERROR -- : Client fetch loop error: wrong argument type Hash (expected String) +I, [2018-08-02T01:07:40.356151 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-02T01:07:40.400672 #6] ERROR -- : Client fetch loop error: wrong argument type Hash (expected String) +I, [2018-08-02T01:07:40.401369 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-02T01:07:40.407042 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-08-02T01:07:40.408626 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-02T01:07:40.496563 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:07:40.594666 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:07:41.407839 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-02T01:07:41.409017 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-02T01:07:41.418643 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-d5ddcb24-8a31-4236-a85d-99c0f6cbafc3` +I, [2018-08-02T01:07:41.418724 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-02T01:07:41.422431 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-02T01:07:41.422512 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-02T01:07:41.423959 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-443c13be-d304-407f-9d5a-6850c546f810` +I, [2018-08-02T01:07:41.424003 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-02T01:07:41.429653 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-02T01:07:41.429718 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-02T01:07:41.497247 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:07:41.595097 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:07:42.498304 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:07:42.609733 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:07:43.504939 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:07:43.610401 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:07:44.505761 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:07:44.610807 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:07:45.506377 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:07:45.612163 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:07:46.507838 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:07:46.612538 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:07:47.508177 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:07:47.613048 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:07:48.509182 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:07:48.613551 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:07:49.553607 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:07:49.614468 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:07:50.554360 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:07:50.619431 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:07:51.402781 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-02T01:07:51.519885 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-02T01:07:51.520475 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:07:51.585192 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-02T01:07:52.521403 #6] INFO -- : Seeking course_change/0 to offset 0 +E, [2018-08-02T01:07:53.420440 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- TypeError: wrong argument type Hash (expected String) +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:18:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T01:07:53.436769 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-02T01:07:53.454467 #6] ERROR -- : Client fetch loop error: wrong argument type Hash (expected String) +I, [2018-08-02T01:07:53.455367 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-02T01:07:53.459338 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-02T01:07:53.470309 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-02T01:07:53.526210 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- TypeError: wrong argument type Hash (expected String) +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:18:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T01:07:53.526304 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-02T01:07:53.540381 #6] ERROR -- : Client fetch loop error: wrong argument type Hash (expected String) +I, [2018-08-02T01:07:53.540819 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-02T01:07:53.569648 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-02T01:07:54.396653 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:07:54.497154 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:07:54.497310 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-02T01:07:54.578594 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-02T01:07:54.958938 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-541c6ffd-eb9a-4a30-be91-a3b5a8289570` +I, [2018-08-02T01:07:54.959018 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-02T01:07:54.973712 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-02T01:07:54.973882 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-02T01:07:55.311295 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-2972de09-de46-4929-84af-78d3e029ff2f` +I, [2018-08-02T01:07:55.311491 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-02T01:07:55.389651 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-02T01:07:55.391113 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-02T01:07:55.415237 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:07:55.498010 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:07:56.415722 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:07:56.499497 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:07:57.416319 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:07:57.500281 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:07:58.417475 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:07:58.501382 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:07:59.419053 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:07:59.502082 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:08:00.419520 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:08:00.502836 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:08:01.422326 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:08:01.505218 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:08:02.422748 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:08:02.506144 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:08:03.424055 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:08:03.506624 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:08:04.425933 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:08:04.507537 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:08:05.005586 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-02T01:08:05.424893 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-02T01:08:05.426230 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-02T01:08:05.508732 #6] INFO -- : Seeking section_change/0 to offset 0 +E, [2018-08-02T01:08:07.048404 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- TypeError: wrong argument type Hash (expected String) +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:18:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T01:08:07.056303 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-02T01:08:07.096246 #6] ERROR -- : Client fetch loop error: wrong argument type Hash (expected String) +I, [2018-08-02T01:08:07.096651 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-02T01:08:07.099386 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-02T01:08:07.307785 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-02T01:08:07.428528 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- TypeError: wrong argument type Hash (expected String) +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:18:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T01:08:07.428593 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-02T01:08:07.433180 #6] ERROR -- : Client fetch loop error: wrong argument type Hash (expected String) +I, [2018-08-02T01:08:07.433466 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-02T01:08:07.434714 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-02T01:08:07.594860 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:08:08.099723 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-02T01:08:08.105661 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-126f77ca-6e41-4f2e-b3ed-84fe28404c99` +I, [2018-08-02T01:08:08.105764 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-02T01:08:08.112367 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-02T01:08:08.112449 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-02T01:08:08.308410 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:08:08.435519 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-02T01:08:08.440250 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-d031797e-24d9-4c2c-875f-afd1f4eee4d6` +I, [2018-08-02T01:08:08.440333 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-02T01:08:08.442553 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-02T01:08:08.442625 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-02T01:08:08.595339 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:08:09.308960 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:08:09.595861 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:08:10.309402 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:08:10.596416 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:08:11.309803 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:08:11.597191 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:08:12.310653 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:08:12.597861 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:08:13.311083 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:08:13.598242 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:08:14.312304 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:08:14.598784 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:08:15.312998 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:08:15.599507 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:08:16.314682 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:08:16.600199 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:08:17.315251 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:08:17.600836 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:08:18.122120 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-02T01:08:18.315543 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-02T01:08:18.452277 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-02T01:08:18.601242 #6] INFO -- : Seeking section_change/0 to offset 0 +E, [2018-08-02T01:08:20.126268 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- TypeError: wrong argument type Hash (expected String) +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:18:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T01:08:20.131275 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-02T01:08:20.141049 #6] ERROR -- : Client fetch loop error: wrong argument type Hash (expected String) +I, [2018-08-02T01:08:20.141305 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-02T01:08:20.143014 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-02T01:08:20.244884 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-02T01:08:20.455019 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- TypeError: wrong argument type Hash (expected String) +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:18:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T01:08:20.455086 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-02T01:08:20.458251 #6] ERROR -- : Client fetch loop error: wrong argument type Hash (expected String) +I, [2018-08-02T01:08:20.458449 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-02T01:08:20.459316 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-02T01:08:20.581882 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:08:21.143364 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-02T01:08:21.147341 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-bbe63e49-2ca5-4c49-a9a5-052190c6f156` +I, [2018-08-02T01:08:21.147416 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-02T01:08:21.149869 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-02T01:08:21.149933 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-02T01:08:21.212726 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:08:21.426536 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-02T01:08:21.430704 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-11385069-2278-430a-8f74-b99369d11768` +I, [2018-08-02T01:08:21.430753 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-02T01:08:21.434656 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-02T01:08:21.434719 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-02T01:08:21.549091 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:08:22.216479 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:08:22.950335 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:08:23.232672 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:08:25.225505 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:08:25.226446 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:08:26.258442 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:08:26.234838 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:08:27.259417 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:08:27.259987 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:08:28.261419 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:08:28.261942 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:08:29.264074 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:08:29.264187 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:08:30.264995 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:08:30.265139 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:08:31.254211 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-02T01:08:31.265626 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:08:31.265795 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:08:31.590098 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-02T01:08:32.266172 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-02T01:08:32.268335 #6] INFO -- : Seeking section_change/0 to offset 0 +E, [2018-08-02T01:08:33.271012 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- TypeError: wrong argument type Hash (expected String) +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:18:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T01:08:33.276396 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-02T01:08:33.295335 #6] ERROR -- : Client fetch loop error: wrong argument type Hash (expected String) +I, [2018-08-02T01:08:33.296059 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-02T01:08:33.298782 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-08-02T01:08:33.596742 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- TypeError: wrong argument type Hash (expected String) +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:18:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T01:08:33.596805 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-02T01:08:33.599125 #6] ERROR -- : Client fetch loop error: wrong argument type Hash (expected String) +I, [2018-08-02T01:08:33.599317 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-02T01:08:33.600213 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-02T01:08:33.621014 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:08:33.833995 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:08:34.299267 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-02T01:08:34.350993 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-e1bb6b10-6c7a-4532-8e63-878e05d7af03` +I, [2018-08-02T01:08:34.351065 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-02T01:08:34.356919 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-02T01:08:34.357012 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-02T01:08:34.600434 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-02T01:08:34.605300 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-bfa1760d-2729-4e1a-99a5-7a55ee4c24ec` +I, [2018-08-02T01:08:34.605351 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-02T01:08:34.607686 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-02T01:08:34.607747 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-02T01:08:34.621610 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:08:34.836139 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:08:35.622948 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:08:35.836737 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:08:36.623430 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:08:36.837175 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:08:37.624037 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:08:37.838057 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:08:38.625530 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:08:38.838487 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:08:39.626078 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:08:39.838890 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:08:40.626516 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:08:40.839458 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:08:41.627253 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:08:41.841239 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:08:42.627713 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:08:42.847545 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:08:43.628248 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:08:43.848231 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:08:44.937948 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:08:44.939357 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:08:44.992180 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-02T01:08:44.997432 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-02T01:08:45.938535 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-02T01:08:45.941625 #6] INFO -- : Seeking section_change/0 to offset 0 +E, [2018-08-02T01:08:47.000251 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- TypeError: wrong argument type Hash (expected String) +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:18:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T01:08:47.000374 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-02T01:08:47.007548 #6] ERROR -- : Client fetch loop error: wrong argument type Hash (expected String) +I, [2018-08-02T01:08:47.007816 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-02T01:08:47.008692 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-08-02T01:08:47.033990 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- TypeError: wrong argument type Hash (expected String) +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:18:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T01:08:47.034131 #6] INFO -- : Leaving group `notifications_course_change` +I, [2018-08-02T01:08:47.112407 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-02T01:08:47.121150 #6] ERROR -- : Client fetch loop error: wrong argument type Hash (expected String) +I, [2018-08-02T01:08:47.121436 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-02T01:08:47.146254 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-02T01:08:47.225553 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:08:48.009535 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-02T01:16:05.478362 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-02T01:16:05.478434 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-02T01:16:05.483668 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-02T01:16:05.483754 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-02T01:16:05.486353 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-02T01:16:05.486511 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-02T01:16:05.486839 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-02T01:16:05.486941 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-02T01:16:10.492020 #6] 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.13:9094 +I, [2018-08-02T01:16:10.492765 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-02T01:16:10.492808 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-02T01:16:10.493666 #6] 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.13:9094 +I, [2018-08-02T01:16:10.497537 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-02T01:16:10.497590 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-02T01:16:10.498276 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-02T01:16:10.498400 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-02T01:16:10.498602 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-02T01:16:10.498652 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-02T01:16:15.499369 #6] 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.13:9094 +I, [2018-08-02T01:16:15.502515 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-02T01:16:15.502625 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-02T01:16:15.502840 #6] 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.13:9094 +I, [2018-08-02T01:16:15.504679 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-02T01:16:15.504782 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-02T01:16:15.508391 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-02T01:16:15.508883 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-02T01:16:15.510430 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-02T01:16:15.510706 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-02T01:16:20.509665 #6] 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.13:9094 +I, [2018-08-02T01:16:20.510362 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-02T01:16:20.510403 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-02T01:16:20.511202 #6] 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.13:9094 +I, [2018-08-02T01:16:20.512095 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-02T01:16:20.512156 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-02T01:16:21.847263 #6] ERROR -- : No brokers in cluster +E, [2018-08-02T01:16:21.955461 #6] ERROR -- : No brokers in cluster +E, [2018-08-02T01:16:26.848909 #6] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: + +I, [2018-08-02T01:16:26.914684 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-02T01:16:26.916205 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-02T01:16:27.298210 #6] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: + +I, [2018-08-02T01:16:27.300677 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-02T01:16:27.300775 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-02T01:16:29.266149 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-02T01:16:29.270167 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-02T01:16:29.290892 #6] INFO -- : Will fetch at most 1048576 bytes at a time per partition from course_change +I, [2018-08-02T01:16:29.291831 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-02T01:16:29.301022 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-02T01:16:29.301584 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:16:29.480443 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-02T01:16:29.480801 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-02T01:16:29.496193 #6] INFO -- : Will fetch at most 1048576 bytes at a time per partition from section_change +I, [2018-08-02T01:16:29.496514 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-02T01:16:29.514841 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-02T01:16:29.515149 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:16:30.302803 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:16:30.600350 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:16:31.305866 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:16:31.602384 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:16:32.316121 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:16:32.640991 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:16:33.317502 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:16:33.641658 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:16:34.319493 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:16:34.642308 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:16:35.320030 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:16:35.644810 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:16:36.321161 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:16:36.646852 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:16:37.321710 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:16:37.647606 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:16:38.323265 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:16:38.648998 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:16:39.324494 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:16:39.651111 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:16:40.397538 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-44aeddec-f25c-486e-8923-ed5de3e6176c` +I, [2018-08-02T01:16:40.397999 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-02T01:16:40.446693 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-ae8acec7-72a6-4a6e-8aa1-19bf0b9f3239` +I, [2018-08-02T01:16:40.446766 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-02T01:16:41.337467 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:16:41.337624 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:16:41.401633 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-02T01:16:41.407905 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-02T01:16:41.449487 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-02T01:16:41.453350 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-02T01:16:41.654127 #6] INFO -- : Partitions assigned for `course_change`: 0 +I, [2018-08-02T01:16:41.665066 #6] INFO -- : Partitions assigned for `section_change`: 0 +I, [2018-08-02T01:16:42.339899 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-02T01:16:42.340685 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-02T01:16:42.340747 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-02T01:16:42.341808 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-02T01:16:42.343188 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-02T01:16:42.343339 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-02T01:16:42.356156 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-02T01:16:42.364578 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +E, [2018-08-02T01:16:45.903206 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- TypeError: wrong argument type Hash (expected String) +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T01:16:45.903625 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-02T01:16:45.904485 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- TypeError: wrong argument type Hash (expected String) +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T01:16:45.906231 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-02T01:16:46.016506 #6] ERROR -- : Client fetch loop error: wrong argument type Hash (expected String) +I, [2018-08-02T01:16:46.017478 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-02T01:16:46.017839 #6] ERROR -- : Client fetch loop error: wrong argument type Hash (expected String) +I, [2018-08-02T01:16:46.021833 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-02T01:16:46.040959 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-08-02T01:16:46.061156 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-02T01:16:46.074059 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:16:46.580088 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:16:47.046395 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-02T01:16:47.061636 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-02T01:16:47.075353 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:16:47.089767 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-08646672-9f92-43a0-9ec4-b1b5994d1655` +I, [2018-08-02T01:16:47.089838 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-02T01:16:47.098286 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-02T01:16:47.098447 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-02T01:16:47.102960 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-1219bbd8-41ac-4961-b82d-e7c7d0060981` +I, [2018-08-02T01:16:47.103117 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-02T01:16:47.113101 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-02T01:16:47.113191 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-02T01:16:47.582095 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:16:48.083393 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:16:48.582751 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:16:49.084055 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:16:49.587418 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:16:50.084961 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:16:50.588452 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:16:51.104848 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:16:51.547398 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:16:52.062030 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:16:52.555494 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:16:53.062632 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:16:53.558147 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:16:55.209006 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:16:56.093650 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:16:56.094502 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-02T01:16:56.536638 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:16:57.098747 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:16:57.538929 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:16:57.964002 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-02T01:16:58.229893 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:16:58.554350 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:16:59.235052 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-02T01:16:59.912360 #6] INFO -- : Seeking section_change/0 to offset 0 +E, [2018-08-02T01:17:00.462065 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- TypeError: wrong argument type Hash (expected String) +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T01:17:00.462304 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-02T01:17:00.596742 #6] ERROR -- : Client fetch loop error: wrong argument type Hash (expected String) +I, [2018-08-02T01:17:00.600215 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-02T01:17:00.603209 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-02T01:17:00.672417 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-02T01:17:00.846963 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- TypeError: wrong argument type Hash (expected String) +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T01:17:00.847063 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-02T01:17:00.869894 #6] ERROR -- : Client fetch loop error: wrong argument type Hash (expected String) +I, [2018-08-02T01:17:00.870269 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-02T01:17:00.873281 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-02T01:17:00.985667 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:17:01.603870 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-02T01:17:01.645467 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-816afe1e-c388-406d-94ff-578299ab0d57` +I, [2018-08-02T01:17:01.645544 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-02T01:17:01.649762 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-02T01:17:01.649887 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-02T01:17:01.673178 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:17:01.873556 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-02T01:17:01.934514 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-74a27ba9-1aba-462c-b35b-54e267d9fd44` +I, [2018-08-02T01:17:01.934589 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-02T01:17:01.963176 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-02T01:17:01.963276 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-02T01:17:01.986330 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:17:02.675544 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:17:02.986734 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:17:03.676587 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:17:03.987607 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:17:04.677240 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:17:04.988009 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:17:05.677925 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:17:05.988684 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:17:06.678393 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:17:06.989023 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:17:07.679311 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:17:07.990797 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:17:08.680607 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:17:08.992224 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:17:09.681606 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:17:09.992828 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:17:10.685928 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:17:10.993722 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:17:11.686185 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-02T01:17:11.686353 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:17:11.974059 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-02T01:17:12.011240 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:17:12.688533 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-02T01:17:13.011698 #6] INFO -- : Seeking section_change/0 to offset 0 +E, [2018-08-02T01:17:13.735760 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- TypeError: wrong argument type Hash (expected String) +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T01:17:13.741214 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-02T01:17:13.775478 #6] ERROR -- : Client fetch loop error: wrong argument type Hash (expected String) +I, [2018-08-02T01:17:13.775715 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-02T01:17:13.784526 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-02T01:17:13.839552 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-02T01:17:14.015854 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- TypeError: wrong argument type Hash (expected String) +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T01:17:14.015914 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-02T01:17:14.018508 #6] ERROR -- : Client fetch loop error: wrong argument type Hash (expected String) +I, [2018-08-02T01:17:14.018760 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-02T01:17:14.020283 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-02T01:17:14.041684 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:17:14.792299 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-02T01:17:14.801925 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-c583198b-fcf7-4aea-9b2d-2899714dd2fe` +I, [2018-08-02T01:17:14.801992 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-02T01:17:14.804512 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-02T01:17:14.804579 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-02T01:17:14.840237 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:17:15.020711 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-02T01:17:15.042156 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:17:15.075133 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-54f10666-b990-4409-a820-498a74010a2c` +I, [2018-08-02T01:17:15.075219 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-02T01:17:15.090281 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-02T01:17:15.090371 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-02T01:17:15.840906 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:17:16.042625 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:17:16.841411 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:17:17.043113 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:17:17.842845 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:17:18.043657 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:17:19.252610 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:17:19.403140 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:17:20.297371 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:17:20.506882 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:17:21.285472 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:17:21.480119 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:17:23.344457 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:17:23.603007 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:17:24.551437 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:17:24.645228 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:17:26.284147 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:17:26.298251 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:17:27.314607 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:17:27.584862 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:17:28.443441 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:17:28.683684 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:17:28.942028 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-02T01:17:29.255549 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-02T01:17:29.804272 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-02T01:17:29.478720 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:17:30.814651 #6] INFO -- : Seeking course_change/0 to offset 0 +E, [2018-08-02T01:17:31.259547 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- TypeError: wrong argument type Hash (expected String) +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T01:17:31.260225 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-02T01:17:32.248931 #6] ERROR -- : Client fetch loop error: wrong argument type Hash (expected String) +I, [2018-08-02T01:17:32.252036 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-02T01:17:32.488023 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-02T01:17:32.513452 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-02T01:17:33.515970 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-02T01:17:33.518137 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-02T01:17:34.127952 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- TypeError: wrong argument type Hash (expected String) +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T01:17:34.128041 #6] INFO -- : Leaving group `notifications_course_change` +I, [2018-08-02T01:17:34.519101 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-02T01:17:34.684183 #6] ERROR -- : Client fetch loop error: wrong argument type Hash (expected String) +I, [2018-08-02T01:17:34.734426 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-02T01:17:34.907604 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-02T01:17:34.941877 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-02T01:17:35.169904 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-9c2fff92-594f-4222-a718-0a26bf3ccf37` +I, [2018-08-02T01:17:35.170187 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-02T01:17:35.414240 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-02T01:17:35.414477 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-02T01:17:35.807778 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:17:36.150406 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:17:36.223273 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-02T01:17:36.694581 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-eba64821-fd27-4cab-a492-4343ba70a3b5` +I, [2018-08-02T01:17:36.694661 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-02T01:17:37.049484 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:17:37.069862 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-02T01:17:37.069958 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-02T01:17:37.265698 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:17:38.282481 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:17:38.284780 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:17:39.328853 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:17:39.409479 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:17:40.330697 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:17:40.493727 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:17:41.332322 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:17:41.502338 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:17:42.333567 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:17:42.505845 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:17:43.334259 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:17:43.506545 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:17:44.015607 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-02T01:17:44.335804 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:17:44.507033 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-02T01:17:45.207628 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-02T01:17:45.336306 #6] INFO -- : Seeking course_change/0 to offset 0 +E, [2018-08-02T01:17:46.025115 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- TypeError: wrong argument type Hash (expected String) +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T01:17:46.025225 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-02T01:17:46.056024 #6] ERROR -- : Client fetch loop error: wrong argument type Hash (expected String) +I, [2018-08-02T01:17:46.056542 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-02T01:17:46.062042 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-02T01:17:46.075710 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:17:47.062431 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-02T01:17:47.076401 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:17:47.083636 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-f30dba3f-583f-40cd-ad85-0aa7f0f79f7a` +I, [2018-08-02T01:17:47.083711 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-02T01:17:47.087649 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-02T01:17:47.087813 #6] WARN -- : Not fetching from section_change/0 due to pause +E, [2018-08-02T01:17:47.214668 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- TypeError: wrong argument type Hash (expected String) +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T01:17:47.214949 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-02T01:17:47.312006 #6] ERROR -- : Client fetch loop error: wrong argument type Hash (expected String) +I, [2018-08-02T01:17:47.312544 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-02T01:17:47.374055 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-02T01:17:48.008755 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:17:48.076983 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:17:48.374351 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-02T01:17:48.412396 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-8073557a-4ce5-45b1-9792-213a4b5471f8` +I, [2018-08-02T01:17:48.412452 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-02T01:17:48.438666 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-02T01:17:48.438884 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-02T01:17:49.009075 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:17:49.079977 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:17:50.010618 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:17:50.080730 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:17:51.011217 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:17:51.134331 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:17:51.977902 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:17:52.101373 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:17:53.132874 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:17:53.141553 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:17:54.395311 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:17:54.421654 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:17:55.452973 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:17:55.453904 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:17:56.935730 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:17:56.937697 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:17:58.063921 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-02T01:17:58.079225 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-02T01:17:58.134145 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:17:58.156602 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:17:59.204532 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-02T01:17:59.226845 #6] INFO -- : Seeking course_change/0 to offset 0 +E, [2018-08-02T01:18:00.984158 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- TypeError: wrong argument type Hash (expected String) +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T01:18:01.061118 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-02T01:18:02.398019 #6] ERROR -- : Client fetch loop error: wrong argument type Hash (expected String) +I, [2018-08-02T01:18:02.399066 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-02T01:18:02.411769 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-02T01:18:02.449069 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-02T01:18:02.671991 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- TypeError: wrong argument type Hash (expected String) +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T01:18:02.672089 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-02T01:18:02.684568 #6] ERROR -- : Client fetch loop error: wrong argument type Hash (expected String) +I, [2018-08-02T01:18:02.684875 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-02T01:18:02.686276 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-02T01:18:02.998080 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:18:03.412262 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-02T01:18:03.461223 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:18:03.687311 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-02T01:18:04.064428 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:18:04.413176 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-c3fb6307-c415-4df4-a6e7-73a4e7cc2ca8` +I, [2018-08-02T01:18:04.413966 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-02T01:18:04.492663 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:18:05.065541 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:18:05.503942 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:18:05.621760 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-02T01:18:05.621974 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-02T01:18:05.896887 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-c2e975dc-221a-4e10-bbe6-5e9224524297` +I, [2018-08-02T01:18:05.896997 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-02T01:18:05.965470 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-02T01:18:05.965605 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-02T01:18:06.127298 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:18:06.506775 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:18:07.128040 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:18:07.507740 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:18:08.132481 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:18:08.511687 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:18:09.166308 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:18:09.549371 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:18:10.240157 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:18:10.552494 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:18:11.371283 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:18:11.560514 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:18:12.378198 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:18:12.562157 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:18:13.380758 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:18:13.651397 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:18:13.979082 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-02T01:18:14.169895 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-02T01:18:14.390580 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-02T01:18:14.695859 #6] INFO -- : Seeking section_change/0 to offset 0 +E, [2018-08-02T01:18:16.003596 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- TypeError: wrong argument type Hash (expected String) +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T01:18:16.012048 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-02T01:18:16.018370 #6] ERROR -- : Client fetch loop error: wrong argument type Hash (expected String) +I, [2018-08-02T01:18:16.019242 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-02T01:18:16.023220 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-02T01:18:16.166518 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-02T01:18:16.178354 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- TypeError: wrong argument type Hash (expected String) +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T01:18:16.178442 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-02T01:18:16.191736 #6] ERROR -- : Client fetch loop error: wrong argument type Hash (expected String) +I, [2018-08-02T01:18:16.192109 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-02T01:18:16.193261 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-02T01:18:16.994413 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:18:17.023642 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-02T01:18:17.040098 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-68f7872f-5236-4c3f-8f4b-7b6592ca25ce` +I, [2018-08-02T01:18:17.040166 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-02T01:18:17.048130 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-02T01:18:17.048265 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-02T01:18:17.167732 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:18:17.193471 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-02T01:18:17.205008 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-3f48437e-3108-41ab-85ef-4c22aab52b24` +I, [2018-08-02T01:18:17.205072 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-02T01:18:17.211971 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-02T01:18:17.212049 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-02T01:18:17.995056 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:18:18.168148 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:18:18.995407 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:18:19.168902 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:18:19.996808 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:18:20.169398 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:18:20.998001 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:18:21.169828 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:18:21.965709 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:18:22.137164 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:18:22.966098 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:18:23.138207 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:18:23.966448 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:18:24.138614 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:18:24.966921 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:18:25.139825 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:18:25.967445 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:18:26.140358 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:18:26.968280 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:18:27.034787 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-02T01:18:27.141006 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-02T01:18:27.208596 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-02T01:18:27.969114 #6] INFO -- : Seeking course_change/0 to offset 0 +E, [2018-08-02T01:18:29.037807 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- TypeError: wrong argument type Hash (expected String) +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T01:18:29.046738 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-02T01:18:29.052919 #6] ERROR -- : Client fetch loop error: wrong argument type Hash (expected String) +I, [2018-08-02T01:18:29.053121 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-02T01:18:29.054032 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-02T01:18:29.100909 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-02T01:18:29.235269 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- TypeError: wrong argument type Hash (expected String) +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T01:18:29.235371 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-02T01:18:29.238389 #6] ERROR -- : Client fetch loop error: wrong argument type Hash (expected String) +I, [2018-08-02T01:18:29.238625 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-02T01:18:29.239495 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-02T01:18:29.328606 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:18:30.054320 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-02T01:18:30.058937 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-2b2b9327-925e-4511-bb75-5c239bc91940` +I, [2018-08-02T01:18:30.058998 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-02T01:18:30.061403 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-02T01:18:30.061508 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-02T01:18:30.101510 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:18:30.240931 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-02T01:18:30.244377 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-8329de05-1b06-489d-976e-bca47cd6621a` +I, [2018-08-02T01:18:30.244423 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-02T01:18:30.246755 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-02T01:18:30.246818 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-02T01:18:30.328967 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:18:31.101892 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:18:31.330118 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:18:32.103150 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:18:32.330912 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:18:33.104174 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:18:33.430166 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:18:34.104765 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:18:34.430922 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:18:35.105510 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:18:35.431632 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:18:36.105950 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:18:36.435447 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:18:37.106347 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:18:37.435969 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:18:38.106876 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:18:38.436497 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:18:39.107423 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:18:39.446539 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:18:40.068120 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-02T01:18:40.108143 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-02T01:18:40.351936 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-02T01:18:40.446871 #6] INFO -- : Seeking course_change/0 to offset 0 +E, [2018-08-02T01:18:42.070405 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- TypeError: wrong argument type Hash (expected String) +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T01:18:42.074082 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-02T01:18:42.077302 #6] ERROR -- : Client fetch loop error: wrong argument type Hash (expected String) +I, [2018-08-02T01:18:42.077605 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-02T01:18:42.080847 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-02T01:18:42.170842 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-02T01:18:42.354225 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- TypeError: wrong argument type Hash (expected String) +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T01:18:42.354288 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-02T01:18:42.357403 #6] ERROR -- : Client fetch loop error: wrong argument type Hash (expected String) +I, [2018-08-02T01:18:42.357596 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-02T01:18:42.358373 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-02T01:18:42.370263 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:18:43.082009 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-02T01:18:43.086516 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-9aadc81b-2553-4202-ac96-a34ebb00d2a5` +I, [2018-08-02T01:18:43.086578 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-02T01:18:43.089581 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-02T01:18:43.089660 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-02T01:18:43.171313 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:18:43.358607 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-02T01:18:43.361812 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-4e2dad4e-5529-4351-9f2d-47da361146b3` +I, [2018-08-02T01:18:43.361857 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-02T01:18:43.369016 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-02T01:18:43.369079 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-02T01:18:43.370994 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:18:44.172635 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:18:44.372006 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:18:45.172912 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:18:45.372329 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:18:46.173462 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:18:46.372873 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:18:47.174206 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:18:47.373801 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:18:48.175200 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:18:48.374215 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:18:49.175537 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:18:49.374607 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:18:50.176110 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:18:50.376007 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:18:51.140644 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:18:51.340669 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:18:52.141406 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:18:52.341151 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:18:53.061227 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-02T01:18:53.141727 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-02T01:18:53.339458 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-02T01:18:53.341566 #6] INFO -- : Seeking course_change/0 to offset 0 +E, [2018-08-02T01:18:55.065212 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- TypeError: wrong argument type Hash (expected String) +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T01:18:55.068318 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-02T01:18:55.071963 #6] ERROR -- : Client fetch loop error: wrong argument type Hash (expected String) +I, [2018-08-02T01:18:55.072313 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-02T01:18:55.073761 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-02T01:18:55.163066 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-02T01:18:55.341656 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- TypeError: wrong argument type Hash (expected String) +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T01:18:55.341721 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-02T01:18:55.347320 #6] ERROR -- : Client fetch loop error: wrong argument type Hash (expected String) +I, [2018-08-02T01:18:55.347499 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-02T01:18:55.350491 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-02T01:18:55.797229 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:18:56.074107 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-02T01:18:56.081268 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-08acb3ec-ac4f-44f0-83ae-c43d1b94ee8b` +I, [2018-08-02T01:18:56.081314 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-02T01:18:56.085627 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-02T01:18:56.085695 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-02T01:18:56.163596 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:18:56.358096 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-02T01:18:56.361280 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-5a20af32-b295-46ca-967b-b8844e6b3a17` +I, [2018-08-02T01:18:56.361332 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-02T01:18:56.367489 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-02T01:18:56.367554 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-02T01:18:56.797736 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:18:57.164161 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:18:57.798473 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:18:58.164536 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:18:58.798735 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:18:59.164929 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:18:59.799124 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:19:00.165403 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:19:00.799630 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:19:01.166023 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:19:01.800073 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:19:02.166506 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:19:02.800643 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:19:03.167290 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:19:03.801363 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:19:04.167667 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:19:04.801712 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:19:05.168312 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:19:05.802790 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:19:06.090940 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-02T01:19:06.168751 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-02T01:19:06.373165 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-02T01:19:06.804265 #6] INFO -- : Seeking course_change/0 to offset 0 +E, [2018-08-02T01:19:08.093329 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- TypeError: wrong argument type Hash (expected String) +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T01:19:08.095715 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-02T01:19:08.099230 #6] ERROR -- : Client fetch loop error: wrong argument type Hash (expected String) +I, [2018-08-02T01:19:08.099527 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-02T01:19:08.101513 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-02T01:19:08.169006 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-02T01:19:08.377224 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- TypeError: wrong argument type Hash (expected String) +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T01:19:08.377285 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-02T01:19:08.379953 #6] ERROR -- : Client fetch loop error: wrong argument type Hash (expected String) +I, [2018-08-02T01:19:08.380380 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-02T01:19:08.381234 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-02T01:19:08.498662 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:19:09.101730 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-02T01:19:09.105912 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-d89b8ed2-b9e6-4977-9cf8-124bca3ed485` +I, [2018-08-02T01:19:09.105959 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-02T01:19:09.108262 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-02T01:19:09.108353 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-02T01:19:09.169506 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:19:09.382017 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-02T01:19:09.388034 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-56f92252-9043-4e59-8f70-345cb92b44e3` +I, [2018-08-02T01:19:09.388095 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-02T01:19:09.391243 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-02T01:19:09.391307 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-02T01:19:09.499511 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:19:10.169921 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:19:10.500260 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:19:11.170420 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:19:11.500852 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:19:12.171189 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:19:12.501364 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:19:13.171620 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:19:13.501718 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:19:14.171939 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:19:14.502352 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:19:15.173088 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:19:15.503388 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:19:16.174214 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:19:16.503706 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:19:17.175217 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:19:17.504190 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:19:18.175777 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:19:18.504663 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:19:19.114278 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-02T01:19:19.176610 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-02T01:19:19.407505 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-02T01:19:19.505220 #6] INFO -- : Seeking course_change/0 to offset 0 +E, [2018-08-02T01:19:21.122950 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- TypeError: wrong argument type Hash (expected String) +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T01:19:21.091751 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-02T01:19:21.100753 #6] ERROR -- : Client fetch loop error: wrong argument type Hash (expected String) +I, [2018-08-02T01:19:21.101599 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-02T01:19:21.103462 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-02T01:19:21.249676 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-02T01:19:21.376273 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- TypeError: wrong argument type Hash (expected String) +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T01:19:21.376363 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-02T01:19:21.378838 #6] ERROR -- : Client fetch loop error: wrong argument type Hash (expected String) +I, [2018-08-02T01:19:21.379154 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-02T01:19:21.380062 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-02T01:19:21.499192 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:19:22.103896 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-02T01:19:22.107324 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-a9ace4a2-d3ab-4435-b5f3-8a245e9f1bd5` +I, [2018-08-02T01:19:22.107380 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-02T01:19:22.110559 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-02T01:19:22.110644 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-02T01:19:22.250168 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:19:22.380387 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-02T01:19:22.383647 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-10b96afc-6db8-4085-a3a0-b89c4b0747e9` +I, [2018-08-02T01:19:22.383692 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-02T01:19:22.385806 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-02T01:19:22.385872 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-02T01:19:22.499498 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:19:23.250791 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:19:23.500984 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:19:24.251349 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:19:24.501717 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:19:25.251699 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:19:25.502081 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:19:26.252091 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:19:26.503742 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:19:27.252775 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:19:27.504142 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:19:28.253824 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:19:28.504590 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:19:29.254403 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:19:29.504988 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:19:30.254843 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:19:30.505640 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:19:31.255577 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:19:31.506442 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:19:32.116578 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-02T01:19:32.255953 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-02T01:19:32.393244 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-02T01:19:32.506921 #6] INFO -- : Seeking course_change/0 to offset 0 +E, [2018-08-02T01:19:34.121364 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- TypeError: wrong argument type Hash (expected String) +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T01:19:34.980794 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-02T01:19:34.395984 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- TypeError: wrong argument type Hash (expected String) +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T01:19:34.981190 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-02T01:19:34.985424 #6] ERROR -- : Client fetch loop error: wrong argument type Hash (expected String) +I, [2018-08-02T01:19:34.985677 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-02T01:19:34.992002 #6] ERROR -- : Client fetch loop error: wrong argument type Hash (expected String) +I, [2018-08-02T01:19:34.992264 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-02T01:19:34.992595 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-08-02T01:19:34.994112 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-02T01:19:35.092602 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:19:35.114222 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:19:35.992872 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-02T01:19:35.994699 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-02T01:19:35.998159 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-f4b52bcf-a60a-49ae-a1e1-65511452d07f` +I, [2018-08-02T01:19:35.998218 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-02T01:19:36.002852 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-02T01:19:36.002929 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-02T01:19:36.006198 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-7103cd6a-dfb6-43e1-a1a3-00b09d981d73` +I, [2018-08-02T01:19:36.006242 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-02T01:19:36.008537 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-02T01:19:36.008600 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-02T01:19:36.092954 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:19:36.114759 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:19:37.093360 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:19:37.115529 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:19:38.093894 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:19:38.116407 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:19:39.094526 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:19:39.117659 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:19:40.094871 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:19:40.117926 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:19:41.095189 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:19:41.119073 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:19:42.095546 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:19:42.120458 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:19:43.096389 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:19:43.121422 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:19:44.097537 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:19:44.121790 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:19:45.098291 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:19:45.122131 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:19:46.009536 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-02T01:19:46.018168 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-02T01:19:46.099015 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-02T01:19:46.131173 #6] INFO -- : Seeking course_change/0 to offset 0 +E, [2018-08-02T01:19:48.013841 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- TypeError: wrong argument type Hash (expected String) +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T01:19:48.015621 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-02T01:19:48.019037 #6] ERROR -- : Client fetch loop error: wrong argument type Hash (expected String) +I, [2018-08-02T01:19:48.019300 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-02T01:19:48.021677 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- TypeError: wrong argument type Hash (expected String) +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T01:19:48.021801 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-02T01:19:48.022716 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-08-02T01:19:48.025288 #6] ERROR -- : Client fetch loop error: wrong argument type Hash (expected String) +I, [2018-08-02T01:19:48.025529 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-02T01:19:48.026800 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-02T01:19:48.073850 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:19:48.097610 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:19:49.022964 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-02T01:19:49.027240 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-02T01:19:49.028659 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-5c8bdebf-338d-48c1-b202-59a3daf3008a` +I, [2018-08-02T01:19:49.028703 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-02T01:19:49.031561 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-6b093fb0-5c9b-4387-b47c-9ddd42d09a11` +I, [2018-08-02T01:19:49.031669 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-02T01:19:49.033697 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-02T01:19:49.033781 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-02T01:19:49.035070 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-02T01:19:49.035129 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-02T01:19:49.074306 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:19:49.098514 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:19:50.074559 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:19:50.098989 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:19:51.075351 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:19:51.100711 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:19:52.056416 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:19:52.081777 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:19:53.057045 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:19:53.082557 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:19:54.058535 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:19:54.084748 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:19:55.059662 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:19:55.085567 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:19:56.060253 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:19:56.086366 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:19:57.060585 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:19:57.086880 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:19:58.061031 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:19:58.087674 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:19:59.019452 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-02T01:19:59.027987 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-02T01:19:59.061509 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-02T01:19:59.087948 #6] INFO -- : Seeking course_change/0 to offset 0 +E, [2018-08-02T01:20:01.022185 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- TypeError: wrong argument type Hash (expected String) +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T01:20:01.024763 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-02T01:20:01.028364 #6] ERROR -- : Client fetch loop error: wrong argument type Hash (expected String) +I, [2018-08-02T01:20:01.028787 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-02T01:20:01.030383 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- TypeError: wrong argument type Hash (expected String) +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T01:20:01.030462 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-02T01:20:01.034724 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-08-02T01:20:01.035102 #6] ERROR -- : Client fetch loop error: wrong argument type Hash (expected String) +I, [2018-08-02T01:20:01.035360 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-02T01:20:01.036238 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-02T01:20:01.200140 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:20:01.214082 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:20:02.035134 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-02T01:20:02.036824 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-02T01:20:02.040702 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-7a3393ba-802f-473e-99db-dce793d95c13` +I, [2018-08-02T01:20:02.040795 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-02T01:20:02.043178 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-201a8aeb-10df-499c-bf69-65c4a8887e22` +I, [2018-08-02T01:20:02.043244 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-02T01:20:02.045036 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-02T01:20:02.045121 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-02T01:20:02.050595 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-02T01:20:02.050661 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-02T01:20:02.200729 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:20:02.214712 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:20:03.201957 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:20:03.215667 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:20:04.203058 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:20:04.216024 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:20:05.203482 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:20:05.216526 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:20:06.204050 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:20:06.216906 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:20:07.204784 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:20:07.217255 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:20:08.205845 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:20:08.218529 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:20:09.207225 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:20:09.219274 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:20:10.207809 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:20:10.219983 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:20:11.208234 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:20:11.220479 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:20:12.055720 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-02T01:20:12.057481 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-02T01:20:12.209156 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-02T01:20:12.221842 #6] INFO -- : Seeking course_change/0 to offset 0 +E, [2018-08-02T01:20:14.059956 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- TypeError: wrong argument type Hash (expected String) +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T01:20:14.065085 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-02T01:20:14.062933 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- TypeError: wrong argument type Hash (expected String) +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T01:20:14.065349 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-02T01:20:14.069424 #6] ERROR -- : Client fetch loop error: wrong argument type Hash (expected String) +I, [2018-08-02T01:20:14.069639 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-02T01:20:14.072675 #6] ERROR -- : Client fetch loop error: wrong argument type Hash (expected String) +I, [2018-08-02T01:20:14.072896 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-02T01:20:14.073704 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-08-02T01:20:14.073928 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-02T01:20:14.205234 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:20:14.268603 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:20:15.073967 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-02T01:20:15.074329 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-02T01:20:15.080069 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-0e55b041-594c-4f7a-893e-0617d68ac204` +I, [2018-08-02T01:20:15.080129 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-02T01:20:15.083080 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-02T01:20:15.083189 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-02T01:20:15.083393 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-95f9cd3f-def7-4259-a6a4-dea1dce4bb48` +I, [2018-08-02T01:20:15.083433 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-02T01:20:15.085994 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-02T01:20:15.086073 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-02T01:20:15.205984 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:20:15.269223 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:20:16.207123 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:20:16.269989 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:20:17.207523 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:20:17.270526 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:20:18.208548 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:20:18.271098 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:20:19.208910 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:20:19.272332 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:20:20.210307 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:20:20.272682 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:20:21.162334 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:20:21.224669 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:20:22.162992 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:20:22.225095 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:20:23.164210 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:20:23.225449 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:20:24.164565 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:20:24.226151 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:20:25.040753 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-02T01:20:25.044346 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-02T01:20:25.165348 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-02T01:20:25.226453 #6] INFO -- : Seeking course_change/0 to offset 0 +E, [2018-08-02T01:20:27.044070 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- TypeError: wrong argument type Hash (expected String) +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T01:20:27.047864 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-02T01:20:27.047374 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- TypeError: wrong argument type Hash (expected String) +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T01:20:27.048076 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-02T01:20:27.051302 #6] ERROR -- : Client fetch loop error: wrong argument type Hash (expected String) +I, [2018-08-02T01:20:27.051588 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-02T01:20:27.052173 #6] ERROR -- : Client fetch loop error: wrong argument type Hash (expected String) +I, [2018-08-02T01:20:27.052370 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-02T01:20:27.055297 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-08-02T01:20:27.056547 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-02T01:20:27.213443 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:20:27.916211 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:20:28.055831 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-02T01:20:28.057968 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-02T01:20:28.059217 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-953f3df4-1cb7-47de-a425-f38017b0bd81` +I, [2018-08-02T01:20:28.059274 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-02T01:20:28.062122 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-02T01:20:28.062204 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-02T01:20:28.062501 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-b4966c44-0fd0-4f3e-ab3b-a31fd2f5c0f1` +I, [2018-08-02T01:20:28.062533 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-02T01:20:28.066209 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-02T01:20:28.066288 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-02T01:20:28.214884 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:20:28.916759 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:20:29.215268 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:20:29.917391 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:20:30.215840 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:20:30.918072 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:20:31.216545 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:20:31.919254 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:20:32.216872 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:20:32.919618 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:20:33.217848 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:20:33.920180 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:20:34.218135 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:20:34.920783 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:20:35.219143 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:20:35.922112 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:20:36.219631 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:20:36.922490 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:20:37.219963 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:20:37.923069 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:20:38.078309 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-02T01:20:38.079289 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-02T01:20:38.220203 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-02T01:20:38.923545 #6] INFO -- : Seeking course_change/0 to offset 0 +E, [2018-08-02T01:20:40.083458 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- TypeError: wrong argument type Hash (expected String) +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T01:20:40.086744 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-02T01:20:40.085934 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- TypeError: wrong argument type Hash (expected String) +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T01:20:40.086923 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-02T01:20:40.089957 #6] ERROR -- : Client fetch loop error: wrong argument type Hash (expected String) +I, [2018-08-02T01:20:40.090367 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-02T01:20:40.092107 #6] ERROR -- : Client fetch loop error: wrong argument type Hash (expected String) +I, [2018-08-02T01:20:40.092305 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-02T01:20:40.093948 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-08-02T01:20:40.094278 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-02T01:20:40.291855 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:20:40.842986 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:20:41.094356 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-02T01:20:41.094621 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-02T01:20:41.097744 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-51e5369c-07fc-4662-9e7f-7af61f41f536` +I, [2018-08-02T01:20:41.097800 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-02T01:20:41.100623 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-02T01:20:41.100688 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-02T01:20:41.101802 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-5b5e9061-b1a1-491c-a17c-ae7d236ca652` +I, [2018-08-02T01:20:41.101845 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-02T01:20:41.103677 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-02T01:20:41.103736 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-02T01:20:41.292819 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:20:41.843873 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:20:42.293299 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:20:42.844433 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:20:43.294214 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:20:43.844821 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:20:44.294678 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:20:44.845093 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:20:45.294997 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:20:45.846041 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:20:46.296873 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:20:46.846851 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:20:47.297553 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:20:47.847316 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:20:48.298466 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:20:48.847649 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:20:49.298942 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:20:49.848101 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:20:50.300375 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:20:50.849213 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:20:51.078661 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-02T01:20:51.079433 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-02T01:20:51.271144 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-02T01:20:51.819289 #6] INFO -- : Seeking course_change/0 to offset 0 +E, [2018-08-02T01:20:53.081185 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- TypeError: wrong argument type Hash (expected String) +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T01:20:53.084857 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-02T01:20:53.083595 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- TypeError: wrong argument type Hash (expected String) +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T01:20:53.085117 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-02T01:20:53.091297 #6] ERROR -- : Client fetch loop error: wrong argument type Hash (expected String) +I, [2018-08-02T01:20:53.091541 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-02T01:20:53.093703 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-08-02T01:20:53.096758 #6] ERROR -- : Client fetch loop error: wrong argument type Hash (expected String) +I, [2018-08-02T01:20:53.096961 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-02T01:20:53.100300 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-02T01:20:53.266453 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:20:53.283357 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:20:54.094737 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-02T01:20:54.099671 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-60a941bf-14c3-4727-aba8-ce65467ae2a9` +I, [2018-08-02T01:20:54.099718 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-02T01:20:54.101170 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-02T01:20:54.106322 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-02T01:20:54.106408 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-02T01:20:54.107041 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-4dbf33d7-d949-4586-8c40-8a48ee1c03dc` +I, [2018-08-02T01:20:54.107093 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-02T01:20:54.109421 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-02T01:20:54.109483 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-02T01:20:54.266900 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:20:54.283717 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:20:55.267431 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:20:55.284223 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:20:56.268148 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:20:56.284765 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:20:57.268586 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:20:57.285197 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:20:58.269060 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:20:58.285721 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:20:59.269756 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:20:59.286815 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:21:00.270800 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:21:00.287179 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:21:01.271560 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:21:01.288311 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:21:02.272173 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:21:02.288706 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:21:03.272670 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:21:03.289430 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:21:04.115203 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-02T01:21:04.115601 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-02T01:21:04.272979 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-02T01:21:04.289971 #6] INFO -- : Seeking course_change/0 to offset 0 +E, [2018-08-02T01:21:06.117840 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- TypeError: wrong argument type Hash (expected String) +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T01:21:06.121983 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-02T01:21:06.118761 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- TypeError: wrong argument type Hash (expected String) +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T01:21:06.122408 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-02T01:21:06.129994 #6] ERROR -- : Client fetch loop error: wrong argument type Hash (expected String) +I, [2018-08-02T01:21:06.130425 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-02T01:21:06.132459 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-08-02T01:21:06.135428 #6] ERROR -- : Client fetch loop error: wrong argument type Hash (expected String) +I, [2018-08-02T01:21:06.135630 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-02T01:21:06.139089 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-02T01:21:06.491790 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:21:06.497585 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:21:07.134117 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-02T01:21:07.139307 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-02T01:21:07.141917 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-9a013699-bce6-43fb-aa56-699e31de767f` +I, [2018-08-02T01:21:07.141975 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-02T01:21:07.153468 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-02T01:21:07.153537 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-02T01:21:07.157885 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-b14c368f-3032-4288-b6ab-649d4417d527` +I, [2018-08-02T01:21:07.157945 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-02T01:21:07.162461 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-02T01:21:07.162616 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-02T01:21:07.492448 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:21:07.498744 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:21:08.493377 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:21:08.499045 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:21:09.493961 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:21:09.500155 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:21:10.494179 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:21:10.500910 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:21:11.494515 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:21:11.501723 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:21:12.495070 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:21:12.502619 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:21:13.495659 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:21:13.503792 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:21:14.496559 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:21:14.504253 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:21:15.497043 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:21:15.505029 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:21:16.497439 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:21:16.505491 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:21:17.165071 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-02T01:21:17.180272 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-02T01:21:17.497784 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-02T01:21:17.506160 #6] INFO -- : Seeking course_change/0 to offset 0 +E, [2018-08-02T01:21:19.166953 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- TypeError: wrong argument type Hash (expected String) +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T01:21:19.168873 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-02T01:21:19.171507 #6] ERROR -- : Client fetch loop error: wrong argument type Hash (expected String) +I, [2018-08-02T01:21:19.171698 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-02T01:21:19.172701 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-08-02T01:21:19.183352 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- TypeError: wrong argument type Hash (expected String) +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T01:21:19.183404 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-02T01:21:19.185648 #6] ERROR -- : Client fetch loop error: wrong argument type Hash (expected String) +I, [2018-08-02T01:21:19.185829 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-02T01:21:19.186496 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-02T01:21:19.516404 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:21:19.633651 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:21:20.172990 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-02T01:21:20.175991 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-c2f9ea61-c365-475d-949c-f2987c8c893f` +I, [2018-08-02T01:21:20.176037 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-02T01:21:20.185284 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-02T01:21:20.185349 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-02T01:21:20.187437 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-02T01:21:20.190607 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-0454a730-0ef1-497c-af63-961ab12451a1` +I, [2018-08-02T01:21:20.190651 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-02T01:21:20.192303 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-02T01:21:20.192372 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-02T01:21:20.516820 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:21:20.635100 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:21:21.487575 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:21:21.605345 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:21:22.488805 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:21:22.606140 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:21:23.489999 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:21:23.606573 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:21:24.491366 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:21:24.607346 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:21:25.491850 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:21:25.607976 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:21:26.492244 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:21:26.608407 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:21:27.493903 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:21:27.608886 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:21:28.494267 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:21:28.609906 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:21:29.495518 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:21:29.610423 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:21:30.161200 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-02T01:21:30.167050 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-02T01:21:30.495779 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-02T01:21:30.610945 #6] INFO -- : Seeking course_change/0 to offset 0 +E, [2018-08-02T01:21:32.164927 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- TypeError: wrong argument type Hash (expected String) +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T01:21:32.167393 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-02T01:21:32.169444 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- TypeError: wrong argument type Hash (expected String) +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T01:21:32.169502 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-02T01:21:32.172649 #6] ERROR -- : Client fetch loop error: wrong argument type Hash (expected String) +I, [2018-08-02T01:21:32.173135 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-02T01:21:32.173605 #6] ERROR -- : Client fetch loop error: wrong argument type Hash (expected String) +I, [2018-08-02T01:21:32.173795 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-02T01:21:32.174316 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-08-02T01:21:32.175072 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-02T01:21:32.440739 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:21:32.637878 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:21:33.174546 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-02T01:21:33.175317 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-02T01:21:33.178763 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-e2371e81-1429-4e3a-8922-e2edcb10ea99` +I, [2018-08-02T01:21:33.178811 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-02T01:21:33.180204 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-fb4c41d0-46f2-4275-9b81-f7e147dee6b3` +I, [2018-08-02T01:21:33.180249 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-02T01:21:33.182096 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-02T01:21:33.182181 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-02T01:21:33.183611 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-02T01:21:33.183670 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-02T01:21:33.442201 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:21:33.638472 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:21:34.443293 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:21:34.639135 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:21:35.444204 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:21:35.639693 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:21:36.444583 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:21:36.640471 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:21:37.444957 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:21:37.640933 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:21:38.445693 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:21:38.641323 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:21:39.446421 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:21:39.642009 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:21:40.447010 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:21:40.643853 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:21:41.448090 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:21:41.644220 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:21:42.448501 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:21:42.644639 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:21:43.188295 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-02T01:21:43.191413 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-02T01:21:43.448929 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-02T01:21:43.645075 #6] INFO -- : Seeking course_change/0 to offset 0 +E, [2018-08-02T01:21:45.192238 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- TypeError: wrong argument type Hash (expected String) +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T01:21:45.194298 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-02T01:21:45.197536 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- TypeError: wrong argument type Hash (expected String) +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T01:21:45.197610 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-02T01:21:45.200399 #6] ERROR -- : Client fetch loop error: wrong argument type Hash (expected String) +I, [2018-08-02T01:21:45.200644 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-02T01:21:45.200962 #6] ERROR -- : Client fetch loop error: wrong argument type Hash (expected String) +I, [2018-08-02T01:21:45.201110 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-02T01:21:45.202728 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-08-02T01:21:45.202917 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-02T01:21:45.229449 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:21:45.247161 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:21:46.202993 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-02T01:21:46.203460 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-02T01:21:46.212111 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-54e8edc1-18cf-4aff-b979-d6fee27adfe9` +I, [2018-08-02T01:21:46.212191 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-02T01:21:46.218887 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-3a6276fe-78fd-4e73-ac88-2ceb9b3b4bac` +I, [2018-08-02T01:21:46.218944 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-02T01:21:46.219613 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-02T01:21:46.219667 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-02T01:21:46.227879 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-02T01:21:46.227972 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-02T01:21:46.230195 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:21:46.248568 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:21:47.231154 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:21:47.249754 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:21:48.232172 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:21:48.250345 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:21:49.232588 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:21:49.251021 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:21:50.233205 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:21:50.251677 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:21:51.199086 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:21:51.217517 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:21:52.199702 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:21:52.217813 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:21:53.200064 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:21:53.218519 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:21:54.200629 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:21:54.218965 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:21:55.201058 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:21:55.219499 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:21:56.189265 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-02T01:21:56.199002 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-02T01:21:56.201430 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-02T01:21:56.234682 #6] INFO -- : Seeking course_change/0 to offset 0 +E, [2018-08-02T01:21:58.191922 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- TypeError: wrong argument type Hash (expected String) +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T01:21:58.194860 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-02T01:21:58.199652 #6] ERROR -- : Client fetch loop error: wrong argument type Hash (expected String) +I, [2018-08-02T01:21:58.200089 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-02T01:21:58.201546 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- TypeError: wrong argument type Hash (expected String) +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T01:21:58.201599 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-02T01:21:58.201882 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-08-02T01:21:58.203573 #6] ERROR -- : Client fetch loop error: wrong argument type Hash (expected String) +I, [2018-08-02T01:21:58.204410 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-02T01:21:58.205167 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-02T01:21:58.513618 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:21:58.723331 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:21:59.202228 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-02T01:21:59.205884 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-02T01:21:59.206371 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-352ab1fd-6edf-4c35-9de7-fd68f508ba92` +I, [2018-08-02T01:21:59.206405 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-02T01:21:59.210294 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-02T01:21:59.210358 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-02T01:21:59.211626 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-d42520c1-6202-4038-8bee-eb8431f51fff` +I, [2018-08-02T01:21:59.211670 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-02T01:21:59.213626 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-02T01:21:59.213685 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-02T01:21:59.514745 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:21:59.723704 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:22:00.515154 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:22:00.725175 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:22:01.515984 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:22:01.726110 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:22:02.517491 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:22:02.726604 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:22:03.518055 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:22:03.727528 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:22:04.518430 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:22:04.728084 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:22:05.518786 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:22:05.728414 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:22:06.519163 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:22:06.728749 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:22:07.519541 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:22:07.729921 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:22:08.520246 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:22:08.731115 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:22:09.219078 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-02T01:22:09.233415 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-02T01:22:09.521136 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-02T01:22:09.731530 #6] INFO -- : Seeking course_change/0 to offset 0 +E, [2018-08-02T01:22:11.221436 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- TypeError: wrong argument type Hash (expected String) +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T01:22:11.223557 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-02T01:22:11.226552 #6] ERROR -- : Client fetch loop error: wrong argument type Hash (expected String) +I, [2018-08-02T01:22:11.226834 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-02T01:22:11.228021 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-08-02T01:22:11.236818 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- TypeError: wrong argument type Hash (expected String) +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T01:22:11.236901 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-02T01:22:11.238989 #6] ERROR -- : Client fetch loop error: wrong argument type Hash (expected String) +I, [2018-08-02T01:22:11.239259 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-02T01:22:11.240313 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-02T01:22:11.511716 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:22:11.527391 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:22:12.228353 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-02T01:22:12.234387 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-399f96c3-394f-4ce8-b36b-8d92297fd6a3` +I, [2018-08-02T01:22:12.234435 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-02T01:22:12.236171 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-02T01:22:12.236235 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-02T01:22:12.240531 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-02T01:22:12.246164 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-1b47a534-f56e-457b-bf57-62450e545574` +I, [2018-08-02T01:22:12.246227 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-02T01:22:12.248941 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-02T01:22:12.249013 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-02T01:22:12.512824 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:22:12.527967 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:22:13.514274 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:22:13.529484 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:22:14.515584 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:22:14.529850 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:22:15.516518 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:22:15.530185 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:22:16.517586 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:22:16.530718 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:22:17.518734 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:22:17.531466 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:22:18.519135 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:22:18.532346 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:22:19.519425 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:22:19.532694 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:22:20.519935 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:22:20.533086 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:22:21.486400 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:22:21.500154 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:22:22.213139 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-02T01:22:22.219373 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-02T01:22:22.486750 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-02T01:22:22.500794 #6] INFO -- : Seeking course_change/0 to offset 0 +E, [2018-08-02T01:22:24.215652 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- TypeError: wrong argument type Hash (expected String) +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T01:22:24.217712 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-02T01:22:24.220237 #6] ERROR -- : Client fetch loop error: wrong argument type Hash (expected String) +I, [2018-08-02T01:22:24.220480 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-02T01:22:24.221400 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-08-02T01:22:24.221846 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- TypeError: wrong argument type Hash (expected String) +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T01:22:24.221892 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-02T01:22:24.223578 #6] ERROR -- : Client fetch loop error: wrong argument type Hash (expected String) +I, [2018-08-02T01:22:24.223885 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-02T01:22:24.225024 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-02T01:22:24.424536 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:22:24.440124 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:22:25.221740 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-02T01:22:25.225034 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-3ca48652-e39f-4c95-95e6-736e5833bfe2` +I, [2018-08-02T01:22:25.225094 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-02T01:22:25.225382 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-02T01:22:25.228573 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-02T01:22:25.228652 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-02T01:22:25.229987 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-1ed5e53e-7a17-48d5-96e6-67abde500443` +I, [2018-08-02T01:22:25.230032 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-02T01:22:25.231579 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-02T01:22:25.231638 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-02T01:22:25.425025 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:22:25.440460 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:22:26.425634 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:22:26.440767 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:22:27.426005 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:22:27.441975 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:22:28.426652 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:22:28.442423 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:22:29.427293 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:22:29.442780 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:22:30.427648 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:22:30.443230 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:22:31.428180 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:22:31.443556 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:22:32.428858 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:22:32.444991 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:22:33.429185 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:22:33.445449 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:22:34.430393 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:22:34.446104 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:22:35.238260 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-02T01:22:35.241716 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-02T01:22:35.430713 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-02T01:22:35.446456 #6] INFO -- : Seeking course_change/0 to offset 0 +E, [2018-08-02T01:22:37.241016 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- TypeError: wrong argument type Hash (expected String) +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T01:22:37.243689 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-02T01:22:37.249137 #6] ERROR -- : Client fetch loop error: wrong argument type Hash (expected String) +I, [2018-08-02T01:22:37.249439 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-02T01:22:37.250210 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- TypeError: wrong argument type Hash (expected String) +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T01:22:37.250263 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-02T01:22:37.251855 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-08-02T01:22:37.254911 #6] ERROR -- : Client fetch loop error: wrong argument type Hash (expected String) +I, [2018-08-02T01:22:37.255063 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-02T01:22:37.255954 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-02T01:22:37.486856 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:22:37.506424 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:22:38.254044 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-02T01:22:38.256422 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-02T01:22:38.257249 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-d2110f76-0c06-4955-a3c5-a027635d6fbc` +I, [2018-08-02T01:22:38.257299 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-02T01:22:38.260469 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-02T01:22:38.260541 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-02T01:22:38.260690 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-417087be-7fd2-4c53-9a05-20611c19dd1a` +I, [2018-08-02T01:22:38.260713 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-02T01:22:38.262464 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-02T01:22:38.262524 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-02T01:22:38.487786 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:22:38.506810 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:22:39.488435 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:22:39.507095 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:22:40.488991 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:22:40.507340 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:22:41.489535 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:22:41.507942 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:22:42.489915 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:22:42.509022 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:22:43.490300 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:22:43.509633 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:22:44.491196 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:22:44.510254 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:22:45.491772 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:22:45.510636 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:22:46.492117 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:22:46.510935 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:22:47.493492 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:22:47.511197 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:22:48.266612 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-02T01:22:48.267849 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-02T01:22:48.495020 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-02T01:22:48.518125 #6] INFO -- : Seeking course_change/0 to offset 0 +E, [2018-08-02T01:22:50.268462 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- TypeError: wrong argument type Hash (expected String) +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T01:22:50.270803 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-02T01:22:50.269515 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- TypeError: wrong argument type Hash (expected String) +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T01:22:50.271068 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-02T01:22:50.273737 #6] ERROR -- : Client fetch loop error: wrong argument type Hash (expected String) +I, [2018-08-02T01:22:50.273975 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-02T01:22:50.275333 #6] ERROR -- : Client fetch loop error: wrong argument type Hash (expected String) +I, [2018-08-02T01:22:50.275535 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-02T01:22:50.276686 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-08-02T01:22:50.276819 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-02T01:22:50.464825 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:22:50.567759 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:22:51.252118 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-02T01:22:51.252473 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-02T01:22:51.255731 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-317322a9-366b-4255-a380-26ed1e798304` +I, [2018-08-02T01:22:51.255777 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-02T01:22:51.256689 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-6122a22f-2c4b-49d8-bc09-cbcfe34b464a` +I, [2018-08-02T01:22:51.256729 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-02T01:22:51.260786 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-02T01:22:51.260850 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-02T01:22:51.260976 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-02T01:22:51.261004 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-02T01:22:51.440434 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:22:51.543301 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:22:52.441045 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:22:52.543719 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:22:53.441862 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:22:53.544779 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:22:54.442323 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:22:54.545897 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:22:55.443336 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:22:55.546426 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:22:56.443680 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:22:56.546814 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:22:57.444492 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:22:57.547240 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:22:58.445999 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:22:58.548207 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:22:59.446407 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:22:59.549468 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:23:00.446837 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:23:00.550844 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:23:01.267123 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-02T01:23:01.273498 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-02T01:23:01.447132 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-02T01:23:01.551177 #6] INFO -- : Seeking course_change/0 to offset 0 +E, [2018-08-02T01:23:03.270803 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- TypeError: wrong argument type Hash (expected String) +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T01:23:03.272551 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-02T01:23:03.275953 #6] ERROR -- : Client fetch loop error: wrong argument type Hash (expected String) +I, [2018-08-02T01:23:03.276404 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-02T01:23:03.277108 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- TypeError: wrong argument type Hash (expected String) +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T01:23:03.277179 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-02T01:23:03.280680 #6] ERROR -- : Client fetch loop error: wrong argument type Hash (expected String) +I, [2018-08-02T01:23:03.280916 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-02T01:23:03.281147 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-08-02T01:23:03.281735 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-02T01:23:03.515250 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:23:03.529206 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:23:04.281464 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-02T01:23:04.282730 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-02T01:23:04.285137 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-e90caaff-9ab5-4a9e-873c-11051542da60` +I, [2018-08-02T01:23:04.285182 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-02T01:23:04.287316 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-b3a25fc4-a011-4c16-a6f0-5b00509997a6` +I, [2018-08-02T01:23:04.287360 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-02T01:23:04.287672 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-02T01:23:04.287720 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-02T01:23:04.291016 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-02T01:23:04.291079 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-02T01:23:04.516860 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:23:04.529545 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:23:05.517355 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:23:05.529994 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:23:06.518406 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:23:06.530583 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:23:07.519074 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:23:07.531189 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:23:08.519361 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:23:08.532040 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:23:09.519804 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:23:09.532319 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:23:10.520357 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:23:10.532734 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:23:11.521068 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:23:11.533116 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:23:12.521546 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:23:12.534553 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:23:13.523137 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:23:13.535703 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:23:14.295742 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-02T01:23:14.296323 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-02T01:23:14.523681 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-02T01:23:14.536185 #6] INFO -- : Seeking course_change/0 to offset 0 +E, [2018-08-02T01:23:16.299042 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- TypeError: wrong argument type Hash (expected String) +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T01:23:16.307633 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-02T01:23:16.301434 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- TypeError: wrong argument type Hash (expected String) +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T01:23:16.308022 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-02T01:23:16.319046 #6] ERROR -- : Client fetch loop error: wrong argument type Hash (expected String) +I, [2018-08-02T01:23:16.319270 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-02T01:23:16.322498 #6] ERROR -- : Client fetch loop error: wrong argument type Hash (expected String) +I, [2018-08-02T01:23:16.322692 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-02T01:23:16.327286 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-08-02T01:23:16.327531 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-02T01:23:17.150042 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:23:17.180555 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:23:17.329363 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-02T01:23:17.329688 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-02T01:23:17.332860 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-75879a2a-76e9-404d-8d56-bda630faec54` +I, [2018-08-02T01:23:17.332904 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-02T01:23:17.335103 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-02T01:23:17.335199 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-02T01:23:17.335737 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-46695d35-ff00-449c-9421-6733726a90b5` +I, [2018-08-02T01:23:17.335769 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-02T01:23:17.341343 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-02T01:23:17.341400 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-02T01:23:18.150394 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:23:18.180931 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:23:19.151112 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:23:19.181586 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:23:20.151896 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:23:20.182027 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:23:21.107220 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:23:21.136777 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:23:22.107522 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:23:22.137076 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:23:23.108101 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:23:23.137622 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:23:24.108785 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:23:24.138141 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:23:25.110316 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:23:25.139340 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:23:26.110691 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:23:26.139977 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:23:27.111594 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:23:27.142001 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:23:27.294418 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-02T01:23:27.302199 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-02T01:23:28.112042 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-02T01:23:28.142720 #6] INFO -- : Seeking course_change/0 to offset 0 +E, [2018-08-02T01:23:29.296563 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- TypeError: wrong argument type Hash (expected String) +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T01:23:29.298568 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-02T01:23:29.301170 #6] ERROR -- : Client fetch loop error: wrong argument type Hash (expected String) +I, [2018-08-02T01:23:29.301541 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-02T01:23:29.302427 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-08-02T01:23:29.304496 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- TypeError: wrong argument type Hash (expected String) +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T01:23:29.304579 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-02T01:23:29.307230 #6] ERROR -- : Client fetch loop error: wrong argument type Hash (expected String) +I, [2018-08-02T01:23:29.307401 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-02T01:23:29.308223 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-02T01:23:29.577726 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:23:29.593155 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:23:30.302655 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-02T01:23:30.306252 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-4e777e81-9772-430c-bcd6-1aa65b832778` +I, [2018-08-02T01:23:30.306298 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-02T01:23:30.308009 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-02T01:23:30.308072 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-02T01:23:30.308398 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-02T01:23:30.319752 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-d458d66c-6620-4d6b-9f6b-e0cd074cf79d` +I, [2018-08-02T01:23:30.319801 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-02T01:23:30.321152 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-02T01:23:30.321206 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-02T01:23:30.578801 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:23:30.593595 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:23:31.579175 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:23:31.593972 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:23:32.580381 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:23:32.594435 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:23:33.581005 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:23:33.595053 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:23:34.581671 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:23:34.596031 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:23:35.582280 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:23:35.596909 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:23:36.582914 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:23:36.597345 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:23:37.583467 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:23:37.597756 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:23:38.583836 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:23:38.598394 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:23:39.584486 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:23:39.599345 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:23:40.316620 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-02T01:23:40.325998 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-02T01:23:40.584923 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-02T01:23:40.622763 #6] INFO -- : Seeking course_change/0 to offset 0 +E, [2018-08-02T01:23:42.318781 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- TypeError: wrong argument type Hash (expected String) +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T01:23:42.320878 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-02T01:23:42.323655 #6] ERROR -- : Client fetch loop error: wrong argument type Hash (expected String) +I, [2018-08-02T01:23:42.323917 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-02T01:23:42.325141 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-08-02T01:23:42.329432 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- TypeError: wrong argument type Hash (expected String) +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T01:23:42.329483 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-02T01:23:42.331812 #6] ERROR -- : Client fetch loop error: wrong argument type Hash (expected String) +I, [2018-08-02T01:23:42.332028 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-02T01:23:42.332714 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-02T01:23:42.647641 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:23:42.669191 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:23:43.325565 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-02T01:23:43.328121 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-cb4cdbc7-6d05-4326-8b5b-c91172b14a0d` +I, [2018-08-02T01:23:43.328165 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-02T01:23:43.330083 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-02T01:23:43.330146 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-02T01:23:43.333911 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-02T01:23:43.336250 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-6329f574-e189-4767-82da-d4c9c39925b1` +I, [2018-08-02T01:23:43.336292 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-02T01:23:43.338138 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-02T01:23:43.338233 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-02T01:23:43.649040 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:23:43.669757 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:23:44.649859 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:23:44.670365 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:23:45.650234 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:23:45.671456 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:23:46.651127 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:23:46.672710 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:23:47.652417 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:23:47.673097 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:23:48.652932 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:23:48.673689 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:23:49.653673 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:23:49.674183 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:23:50.654774 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:23:50.674642 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:23:51.620504 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:23:51.640242 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:23:52.621331 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:23:52.640656 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:23:53.303000 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-02T01:23:53.320262 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-02T01:23:53.621578 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-02T01:23:53.641049 #6] INFO -- : Seeking course_change/0 to offset 0 +E, [2018-08-02T01:23:55.306231 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- TypeError: wrong argument type Hash (expected String) +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T01:23:55.309029 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-02T01:23:55.312973 #6] ERROR -- : Client fetch loop error: wrong argument type Hash (expected String) +I, [2018-08-02T01:23:55.313190 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-02T01:23:55.314598 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-08-02T01:23:55.322718 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- TypeError: wrong argument type Hash (expected String) +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T01:23:55.322772 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-02T01:23:55.324874 #6] ERROR -- : Client fetch loop error: wrong argument type Hash (expected String) +I, [2018-08-02T01:23:55.325192 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-02T01:23:55.325950 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-02T01:23:55.563385 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:23:56.093575 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:23:56.314965 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-02T01:23:56.317638 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-9b9909d9-36a7-4fa2-b1d4-4ebb7a2af76e` +I, [2018-08-02T01:23:56.317682 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-02T01:23:56.319750 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-02T01:23:56.319814 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-02T01:23:56.326502 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-02T01:23:56.329127 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-c743f5ef-b76b-4a2e-8fab-76af7ac3add8` +I, [2018-08-02T01:23:56.329170 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-02T01:23:56.330812 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-02T01:23:56.330871 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-02T01:23:56.563826 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:23:57.093945 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:23:57.564545 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:23:58.094420 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:23:58.564946 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:23:59.095304 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:23:59.565565 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:24:00.096879 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:24:00.566864 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:24:01.097336 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:24:01.568314 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:24:02.098258 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:24:02.568863 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:24:03.099159 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:24:03.569253 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:24:04.099717 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:24:04.569749 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:24:05.102327 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:24:05.570455 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:24:06.102764 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:24:06.324989 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-02T01:24:06.335136 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-02T01:24:06.571035 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-02T01:24:07.103333 #6] INFO -- : Seeking course_change/0 to offset 0 +E, [2018-08-02T01:24:08.327909 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- TypeError: wrong argument type Hash (expected String) +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T01:24:08.330215 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-02T01:24:08.334459 #6] ERROR -- : Client fetch loop error: wrong argument type Hash (expected String) +I, [2018-08-02T01:24:08.334686 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-02T01:24:08.336500 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-08-02T01:24:08.338443 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- TypeError: wrong argument type Hash (expected String) +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T01:24:08.338505 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-02T01:24:08.340427 #6] ERROR -- : Client fetch loop error: wrong argument type Hash (expected String) +I, [2018-08-02T01:24:08.340831 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-02T01:24:08.341888 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-02T01:24:08.345660 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:24:08.645659 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:24:09.337564 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-02T01:24:09.341191 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-14c7a4a6-d803-4382-9950-f80b6d242d09` +I, [2018-08-02T01:24:09.341272 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-02T01:24:09.342165 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-02T01:24:09.345626 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-02T01:24:09.345900 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-02T01:24:09.346088 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-2ad827d0-f66b-455f-82a0-88a9c3f97a4d` +I, [2018-08-02T01:24:09.346117 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-02T01:24:09.346390 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:24:09.349426 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-02T01:24:09.349491 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-02T01:24:09.646125 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:24:10.347490 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:24:10.646692 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:24:11.348152 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:24:11.647187 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:24:12.349116 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:24:12.648282 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:24:13.349559 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:24:13.648663 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:24:14.349880 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:24:14.649035 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:24:15.350449 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:24:15.649516 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:24:16.351219 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:24:16.650135 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:24:17.352209 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:24:17.650863 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:24:18.352627 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:24:18.651548 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:24:19.350681 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-02T01:24:19.353000 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-02T01:24:19.356142 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-02T01:24:19.651983 #6] INFO -- : Seeking section_change/0 to offset 0 +E, [2018-08-02T01:24:21.319508 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- TypeError: wrong argument type Hash (expected String) +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T01:24:21.321798 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-02T01:24:21.324268 #6] ERROR -- : Client fetch loop error: wrong argument type Hash (expected String) +I, [2018-08-02T01:24:21.324492 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-02T01:24:21.325267 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- TypeError: wrong argument type Hash (expected String) +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T01:24:21.325337 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-02T01:24:21.326273 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-08-02T01:24:21.329161 #6] ERROR -- : Client fetch loop error: wrong argument type Hash (expected String) +I, [2018-08-02T01:24:21.329486 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-02T01:24:21.330777 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-02T01:24:21.337148 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:24:21.356015 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:24:22.326558 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-02T01:24:22.329598 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-6b9f033f-9819-4376-a85b-9b5572531ab9` +I, [2018-08-02T01:24:22.329658 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-02T01:24:22.331011 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-02T01:24:22.332102 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-02T01:24:22.332209 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-02T01:24:22.334018 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-906706e7-4c20-4f61-92b7-fe72cd5e02af` +I, [2018-08-02T01:24:22.334070 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-02T01:24:22.336216 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-02T01:24:22.336275 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-02T01:24:22.338058 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:24:22.356588 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:24:23.338927 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:24:23.357219 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:24:24.339419 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:24:24.357526 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:24:25.339753 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:24:25.357806 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:24:26.340373 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:24:26.358818 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:24:27.341184 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:24:27.359581 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:24:28.341479 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:24:28.360034 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:24:29.342189 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:24:29.360840 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:24:30.342575 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:24:30.361207 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:24:31.343102 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:24:31.361520 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:24:32.341715 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-02T01:24:32.342666 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-02T01:24:32.344108 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-02T01:24:32.362138 #6] INFO -- : Seeking course_change/0 to offset 0 +E, [2018-08-02T01:24:34.345148 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- TypeError: wrong argument type Hash (expected String) +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T01:24:34.348384 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-02T01:24:34.347376 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- TypeError: wrong argument type Hash (expected String) +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T01:24:34.348594 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-02T01:24:34.350404 #6] ERROR -- : Client fetch loop error: wrong argument type Hash (expected String) +I, [2018-08-02T01:24:34.350657 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-02T01:24:34.352936 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-08-02T01:24:34.353132 #6] ERROR -- : Client fetch loop error: wrong argument type Hash (expected String) +I, [2018-08-02T01:24:34.353317 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-02T01:24:34.354427 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-02T01:24:34.359095 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:24:34.496761 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:24:35.353400 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-02T01:24:35.354694 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-02T01:24:35.357222 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-f3a5b53d-74ee-4192-91b3-c81cbeb4a5d9` +I, [2018-08-02T01:24:35.357279 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-02T01:24:35.359485 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:24:35.360580 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-02T01:24:35.360705 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-02T01:24:35.362337 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-8249641a-2b06-46aa-af0e-dfb51e4083ed` +I, [2018-08-02T01:24:35.362388 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-02T01:24:35.364193 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-02T01:24:35.364263 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-02T01:24:35.497289 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:24:36.359843 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:24:36.498007 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:24:37.361305 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:24:37.498724 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:24:38.362456 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:24:38.499184 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:24:39.362746 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:24:39.499560 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:24:40.363088 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:24:40.501215 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:24:41.363699 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:24:41.502277 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:24:42.364877 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:24:42.502745 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:24:43.365345 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:24:43.503844 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:24:44.365773 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:24:44.505726 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:24:45.366253 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:24:45.368154 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-02T01:24:45.370735 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-02T01:24:45.506255 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-02T01:24:46.366596 #6] INFO -- : Seeking section_change/0 to offset 0 +E, [2018-08-02T01:24:47.372258 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- TypeError: wrong argument type Hash (expected String) +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T01:24:47.374625 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-02T01:24:47.375445 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- TypeError: wrong argument type Hash (expected String) +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T01:24:47.375514 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-02T01:24:47.381100 #6] ERROR -- : Client fetch loop error: wrong argument type Hash (expected String) +I, [2018-08-02T01:24:47.381353 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-02T01:24:47.384375 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-08-02T01:24:47.384803 #6] ERROR -- : Client fetch loop error: wrong argument type Hash (expected String) +I, [2018-08-02T01:24:47.385039 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-02T01:24:47.386120 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-02T01:24:47.386347 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-02T01:24:47.551029 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:24:48.384636 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-02T01:24:48.387629 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-97c1a08e-e27a-4fd5-8fc2-0e141df45fd0` +I, [2018-08-02T01:24:48.387674 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-02T01:24:48.388005 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:24:48.386929 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-02T01:24:48.390304 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-02T01:24:48.390367 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-02T01:24:48.392003 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-0e7fbf02-9813-412c-8b33-e253a21dfc53` +I, [2018-08-02T01:24:48.392062 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-02T01:24:48.393831 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-02T01:24:48.393891 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-02T01:24:48.551468 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:24:49.388631 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:24:49.552233 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:24:50.389920 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:24:50.553875 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:24:51.355832 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:24:51.519396 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:24:52.357350 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:24:52.519649 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:24:53.358063 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:24:53.520299 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:24:54.358479 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:24:54.521016 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:24:55.358853 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:24:55.521615 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:24:56.359402 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:24:56.522122 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:24:57.359984 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:24:57.522486 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:24:58.360962 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:24:58.361877 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-02T01:24:58.363673 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-02T01:24:58.523178 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-02T01:24:59.361581 #6] INFO -- : Seeking section_change/0 to offset 0 +E, [2018-08-02T01:25:00.365618 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- TypeError: wrong argument type Hash (expected String) +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T01:25:00.370785 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-02T01:25:00.367153 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- TypeError: wrong argument type Hash (expected String) +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T01:25:00.371223 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-02T01:25:00.378061 #6] ERROR -- : Client fetch loop error: wrong argument type Hash (expected String) +I, [2018-08-02T01:25:00.378353 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-02T01:25:00.378814 #6] ERROR -- : Client fetch loop error: wrong argument type Hash (expected String) +I, [2018-08-02T01:25:00.379035 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-02T01:25:00.379326 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-08-02T01:25:00.380794 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-02T01:25:00.462722 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:25:00.573047 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:25:01.380391 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-02T01:25:01.381115 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-02T01:25:01.389336 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-efc1418b-4c3a-461b-8054-a458059e8c0d` +I, [2018-08-02T01:25:01.389396 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-02T01:25:01.393564 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-02T01:25:01.393644 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-02T01:25:01.393811 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-b912cfbb-7929-40aa-a9ab-9289912c3505` +I, [2018-08-02T01:25:01.393834 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-02T01:25:01.395533 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-02T01:25:01.395636 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-02T01:25:01.463764 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:25:01.574339 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:25:02.465668 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:25:02.575325 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:25:03.466362 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:25:03.575788 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:25:04.468197 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:25:04.576952 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:25:05.469351 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:25:05.578109 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:25:06.471779 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:25:06.578913 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:25:07.473242 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:25:07.580392 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:25:08.474458 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:25:08.581770 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:25:09.476493 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:25:09.582194 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:25:10.477487 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:25:10.583735 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:25:11.404121 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-02T01:25:11.404790 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-02T01:25:11.479846 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-02T01:25:11.584433 #6] INFO -- : Seeking course_change/0 to offset 0 +E, [2018-08-02T01:25:13.407881 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- TypeError: wrong argument type Hash (expected String) +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T01:25:13.411258 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-02T01:25:13.409080 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- TypeError: wrong argument type Hash (expected String) +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T01:25:13.411671 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-02T01:25:13.414839 #6] ERROR -- : Client fetch loop error: wrong argument type Hash (expected String) +I, [2018-08-02T01:25:13.415162 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-02T01:25:13.416647 #6] ERROR -- : Client fetch loop error: wrong argument type Hash (expected String) +I, [2018-08-02T01:25:13.416982 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-02T01:25:13.417429 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-08-02T01:25:13.418600 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-02T01:25:13.594327 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:25:13.623735 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:25:14.417851 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-02T01:25:14.419119 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-02T01:25:14.422413 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-83aa9ff5-5788-4184-9204-0130dbdda039` +I, [2018-08-02T01:25:14.422487 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-02T01:25:14.424554 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-8c7a163a-1eca-44cf-b81f-9c27ed113fca` +I, [2018-08-02T01:25:14.424623 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-02T01:25:14.425717 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-02T01:25:14.425800 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-02T01:25:14.427824 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-02T01:25:14.427913 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-02T01:25:14.595084 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:25:14.624233 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:25:15.595587 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:25:15.624642 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:25:16.596061 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:25:16.625770 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:25:17.596687 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:25:17.626723 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:25:18.597502 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:25:18.627221 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:25:19.597965 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:25:19.629964 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:25:20.598504 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:25:20.632251 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:25:21.566851 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:25:21.601531 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:25:22.567489 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:25:22.602357 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:25:23.569064 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:25:23.603377 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:25:24.403647 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-02T01:25:24.569779 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-02T01:25:24.645919 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:25:24.749404 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-02T01:25:25.647736 #6] INFO -- : Seeking course_change/0 to offset 0 +E, [2018-08-02T01:25:26.407290 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- TypeError: wrong argument type Hash (expected String) +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T01:25:26.412923 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-02T01:25:26.415881 #6] ERROR -- : Client fetch loop error: wrong argument type Hash (expected String) +I, [2018-08-02T01:25:26.416138 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-02T01:25:26.418047 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-08-02T01:25:26.754775 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- TypeError: wrong argument type Hash (expected String) +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T01:25:26.754845 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-02T01:25:26.757455 #6] ERROR -- : Client fetch loop error: wrong argument type Hash (expected String) +I, [2018-08-02T01:25:26.757663 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-02T01:25:26.758695 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-02T01:25:27.418666 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-02T01:25:27.759262 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-02T01:25:28.827527 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:25:28.829929 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:25:29.059085 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-2682c0d5-2cbd-418b-8f14-2ab4f7d84be4` +I, [2018-08-02T01:25:29.059162 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-02T01:25:29.059758 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-daed0b80-5d29-430e-84d4-acf2071adfb3` +I, [2018-08-02T01:25:29.059806 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-02T01:25:29.066357 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-02T01:25:29.066476 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-02T01:25:29.066764 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-02T01:25:29.066819 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-02T01:25:29.828021 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:25:29.830659 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:25:30.828472 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:25:30.831075 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:25:31.829033 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:25:31.831759 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:25:32.829678 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:25:32.832401 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:25:33.830787 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:25:33.833753 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:25:34.832875 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:25:34.834874 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:25:35.834390 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:25:35.835753 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:25:36.834909 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:25:36.836181 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:25:37.071513 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-02T01:25:37.075744 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-02T01:25:37.836050 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-02T01:25:39.334161 #6] INFO -- : Seeking course_change/0 to offset 0 +E, [2018-08-02T01:25:41.374864 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- TypeError: wrong argument type Hash (expected String) +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T01:25:41.381797 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-02T01:25:41.380558 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- TypeError: wrong argument type Hash (expected String) +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T01:25:41.382409 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-02T01:25:41.387226 #6] ERROR -- : Client fetch loop error: wrong argument type Hash (expected String) +I, [2018-08-02T01:25:41.387708 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-02T01:25:41.390388 #6] ERROR -- : Client fetch loop error: wrong argument type Hash (expected String) +I, [2018-08-02T01:25:41.390723 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-02T01:25:41.391202 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-08-02T01:25:41.392114 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-02T01:25:41.933865 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:25:41.981117 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:25:42.391999 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-02T01:25:42.392778 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-02T01:25:42.397858 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-c29c2895-5ee3-4bb3-994d-d14acf637bbe` +I, [2018-08-02T01:25:42.397927 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-02T01:25:42.398398 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-e0067502-afec-4e3f-a7ba-e7605979513a` +I, [2018-08-02T01:25:42.398447 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-02T01:25:42.402312 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-02T01:25:42.402415 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-02T01:25:42.406594 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-02T01:25:42.406667 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-02T01:25:42.934636 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:25:42.981531 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:25:43.935093 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:25:43.982107 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:25:44.936036 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:25:44.982780 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:25:45.940228 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:25:45.984846 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:25:46.940837 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:25:46.985605 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:25:49.374765 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:25:49.375273 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:25:50.375439 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:25:50.375629 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:25:51.339031 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:25:51.339732 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:25:52.339855 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:25:52.340283 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:25:53.363578 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:25:53.363990 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-02T01:25:53.364807 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:25:54.649441 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-02T01:25:54.656419 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:25:54.131357 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-02T01:25:55.656777 #6] INFO -- : Seeking section_change/0 to offset 0 +E, [2018-08-02T01:25:57.586925 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- TypeError: wrong argument type Hash (expected String) +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T01:25:57.772014 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-02T01:25:57.588978 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- TypeError: wrong argument type Hash (expected String) +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T01:25:57.804925 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-02T01:25:58.051172 #6] ERROR -- : Client fetch loop error: wrong argument type Hash (expected String) +I, [2018-08-02T01:25:58.052325 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-02T01:25:58.191202 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-02T01:25:58.197234 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-02T01:25:58.198273 #6] ERROR -- : Client fetch loop error: wrong argument type Hash (expected String) +I, [2018-08-02T01:25:58.213078 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-02T01:25:58.246632 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-02T01:25:58.290849 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:25:59.193286 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-02T01:25:59.197955 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:25:59.203643 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-e266f303-a490-4b76-8abb-c79365c6c7a1` +I, [2018-08-02T01:25:59.203710 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-02T01:25:59.210735 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-02T01:25:59.210896 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-02T01:25:59.265995 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-02T01:25:59.270466 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-776f6a72-14d1-4394-bd85-09e562248f65` +I, [2018-08-02T01:25:59.270534 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-02T01:25:59.278425 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-02T01:25:59.279074 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-02T01:25:59.297090 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:26:00.198661 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:26:00.297869 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:26:01.199308 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:26:01.298290 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:26:02.199904 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:26:02.299314 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:26:03.208130 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:26:03.300736 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:26:04.208934 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:26:04.301650 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:26:05.209361 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:26:05.312883 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:26:06.211489 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:26:06.313560 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:26:07.211915 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:26:07.313925 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:26:08.212537 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:26:08.314402 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:26:09.213223 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:26:09.220816 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-02T01:26:09.314106 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-02T01:26:09.314863 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:26:10.214261 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-02T01:26:10.315660 #6] INFO -- : Seeking course_change/0 to offset 0 +E, [2018-08-02T01:26:11.227114 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- TypeError: wrong argument type Hash (expected String) +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T01:26:11.227210 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-02T01:26:11.235165 #6] ERROR -- : Client fetch loop error: wrong argument type Hash (expected String) +I, [2018-08-02T01:26:11.235517 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-02T01:26:11.237589 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-08-02T01:26:11.318240 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- TypeError: wrong argument type Hash (expected String) +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T01:26:11.318363 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-02T01:26:11.324339 #6] ERROR -- : Client fetch loop error: wrong argument type Hash (expected String) +I, [2018-08-02T01:26:11.324580 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-02T01:26:11.327193 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-02T01:26:11.473482 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:26:11.473916 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:26:12.238129 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-02T01:26:12.249453 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-2bd0155d-02f0-4077-9832-cec837263d5d` +I, [2018-08-02T01:26:12.249608 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-02T01:26:12.257174 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-02T01:26:12.257247 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-02T01:26:12.328865 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-02T01:26:12.334479 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-8de102ee-a6ca-43a6-a4e3-af6e5144e76e` +I, [2018-08-02T01:26:12.334538 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-02T01:26:12.338445 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-02T01:26:12.338517 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-02T01:26:12.474590 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:26:12.474817 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:26:13.475034 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:26:13.475335 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:26:14.475795 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:26:14.476026 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:26:15.476885 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:26:15.477034 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:26:16.479110 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:26:16.479299 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:26:17.482757 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:26:17.480131 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:26:18.483589 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:26:18.483779 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:26:19.487283 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:26:19.489954 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:26:20.488711 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:26:20.490925 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:26:21.457330 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:26:21.457550 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:26:22.233824 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-02T01:26:22.313293 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-02T01:26:22.458132 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-02T01:26:22.459266 #6] INFO -- : Seeking course_change/0 to offset 0 +E, [2018-08-02T01:26:24.238377 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- TypeError: wrong argument type Hash (expected String) +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T01:26:24.238471 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-02T01:26:24.241924 #6] ERROR -- : Client fetch loop error: wrong argument type Hash (expected String) +I, [2018-08-02T01:26:24.242283 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-02T01:26:24.243526 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-08-02T01:26:24.316705 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- TypeError: wrong argument type Hash (expected String) +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T01:26:24.321960 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-02T01:26:24.325723 #6] ERROR -- : Client fetch loop error: wrong argument type Hash (expected String) +I, [2018-08-02T01:26:24.326013 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-02T01:26:24.327967 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-02T01:26:24.623724 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:26:24.700334 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:26:25.244791 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-02T01:26:25.249369 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-277a8a16-b6b6-4330-8d29-d6303e0d018f` +I, [2018-08-02T01:26:25.249431 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-02T01:26:25.255395 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-02T01:26:25.255498 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-02T01:26:25.328711 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-02T01:26:25.341993 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-da33ee0d-ebdc-4fe1-bd31-ff8abacc0bc6` +I, [2018-08-02T01:26:25.342067 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-02T01:26:25.345197 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-02T01:26:25.345261 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-02T01:26:25.624364 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:26:25.700959 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:26:26.625392 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:26:26.702144 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:26:27.626288 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:26:27.703977 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:26:28.628790 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:26:28.708353 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:26:29.629459 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:26:29.708778 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:26:30.630318 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:26:30.710786 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:26:31.631121 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:26:31.711917 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:26:32.631807 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:26:32.712526 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:26:33.632465 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:26:33.714113 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:26:34.633051 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:26:34.716338 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:26:35.264860 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-02T01:26:35.354906 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-02T01:26:35.633990 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-02T01:26:35.717036 #6] INFO -- : Seeking section_change/0 to offset 0 +E, [2018-08-02T01:26:37.273282 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- TypeError: wrong argument type Hash (expected String) +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T01:26:37.273356 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-02T01:26:37.276217 #6] ERROR -- : Client fetch loop error: wrong argument type Hash (expected String) +I, [2018-08-02T01:26:37.276476 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-02T01:26:37.277291 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-08-02T01:26:37.357394 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- TypeError: wrong argument type Hash (expected String) +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T01:26:37.362782 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-02T01:26:37.366875 #6] ERROR -- : Client fetch loop error: wrong argument type Hash (expected String) +I, [2018-08-02T01:26:37.367227 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-02T01:26:37.368138 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-02T01:26:37.744689 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:26:37.954044 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:26:38.277751 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-02T01:26:38.281682 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-26460e82-c0a4-474f-97af-293621a88ca9` +I, [2018-08-02T01:26:38.281877 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-02T01:26:38.286080 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-02T01:26:38.286158 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-02T01:26:38.368757 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-02T01:26:38.373545 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-71aa20b9-75c9-49ef-9a57-7200e9b0a334` +I, [2018-08-02T01:26:38.373602 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-02T01:26:38.379436 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-02T01:26:38.379540 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-02T01:26:38.745476 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:26:38.956395 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:26:39.746312 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:26:39.981212 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:26:40.746853 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:26:40.982703 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:26:41.747686 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:26:42.009505 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:26:42.776974 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:26:43.209391 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:26:44.237825 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:26:44.237978 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:26:45.238530 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:26:45.238888 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:26:46.242694 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:26:46.243049 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:26:47.243918 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:26:47.244165 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:26:48.245198 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:26:48.245460 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:26:48.295358 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-02T01:26:48.389766 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-02T01:26:49.247091 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-02T01:26:49.247844 #6] INFO -- : Seeking course_change/0 to offset 0 +E, [2018-08-02T01:26:50.317756 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- TypeError: wrong argument type Hash (expected String) +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T01:26:50.317838 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-02T01:26:50.339441 #6] ERROR -- : Client fetch loop error: wrong argument type Hash (expected String) +I, [2018-08-02T01:26:50.339614 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-02T01:26:50.420429 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- TypeError: wrong argument type Hash (expected String) +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T01:29:02.329061 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-02T01:29:02.329811 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-02T01:29:02.335732 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-02T01:29:02.335830 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-02T01:29:02.351020 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.9:9094 +E, [2018-08-02T01:29:02.351191 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.9:9094 +E, [2018-08-02T01:29:02.351540 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.9:9094 +E, [2018-08-02T01:29:02.351712 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.9:9094 +E, [2018-08-02T01:29:07.352176 #6] 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.9:9094 +I, [2018-08-02T01:29:07.353165 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-02T01:29:07.353221 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-02T01:29:07.354359 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.9:9094 +E, [2018-08-02T01:29:07.354457 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.9:9094 +E, [2018-08-02T01:29:07.354542 #6] 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.9:9094 +I, [2018-08-02T01:29:07.355566 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-02T01:29:07.355830 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-02T01:29:07.357210 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.9:9094 +E, [2018-08-02T01:29:07.357307 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.9:9094 +E, [2018-08-02T01:29:12.354909 #6] 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.9:9094 +I, [2018-08-02T01:29:12.356212 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-02T01:29:12.356289 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-02T01:29:12.357787 #6] 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.9:9094 +I, [2018-08-02T01:29:12.359004 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-02T01:29:12.359071 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-02T01:29:12.365855 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.9:9094 +E, [2018-08-02T01:29:12.366011 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.9:9094 +E, [2018-08-02T01:29:12.366433 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.9:9094 +E, [2018-08-02T01:29:12.366560 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.9:9094 +E, [2018-08-02T01:29:17.366438 #6] 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.9:9094 +I, [2018-08-02T01:29:17.367780 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-02T01:29:17.367882 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-02T01:29:17.368302 #6] 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.9:9094 +I, [2018-08-02T01:29:17.369854 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-02T01:29:17.369903 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-02T01:29:17.736470 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-02T01:29:17.736722 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-02T01:29:17.780826 #6] INFO -- : Will fetch at most 1048576 bytes at a time per partition from section_change +I, [2018-08-02T01:29:17.781130 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-02T01:29:17.785387 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-02T01:29:17.785540 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-02T01:29:17.792161 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-02T01:29:17.792345 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:29:17.882220 #6] INFO -- : Will fetch at most 1048576 bytes at a time per partition from course_change +I, [2018-08-02T01:29:17.882363 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-02T01:29:17.887127 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-02T01:29:17.887230 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:29:18.794819 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:29:18.888170 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:29:19.795994 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:29:19.889224 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:29:20.760768 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:29:20.853714 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:29:21.762342 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:29:21.855160 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:29:22.755174 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-d8b84d40-d9bc-4eb1-a9df-9eab30260513` +I, [2018-08-02T01:29:22.755247 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-02T01:29:22.763389 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:29:22.807508 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-fe72d202-6e0a-4862-a842-046af241649a` +I, [2018-08-02T01:29:22.807584 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-02T01:29:22.855759 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:29:23.755848 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-02T01:29:23.763721 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:29:23.765314 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-02T01:29:23.809954 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-02T01:29:23.823781 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-02T01:29:23.857620 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:29:24.074697 #6] INFO -- : Partitions assigned for `course_change`: 0 +I, [2018-08-02T01:29:24.118079 #6] INFO -- : Partitions assigned for `section_change`: 0 +I, [2018-08-02T01:29:24.766051 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-02T01:29:24.770086 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-02T01:29:24.770601 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-02T01:29:24.809457 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-02T01:29:24.857979 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-02T01:29:24.858088 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-02T01:29:24.858123 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-02T01:29:24.871181 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +E, [2018-08-02T01:29:26.211480 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- TypeError: wrong argument type Hash (expected String) +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T01:29:26.211612 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-02T01:29:26.217215 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- TypeError: wrong argument type Hash (expected String) +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T01:29:26.217296 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-02T01:29:26.358746 #6] ERROR -- : Client fetch loop error: wrong argument type Hash (expected String) +I, [2018-08-02T01:29:26.358995 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-02T01:29:26.360221 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-08-02T01:29:26.373654 #6] ERROR -- : Client fetch loop error: wrong argument type Hash (expected String) +I, [2018-08-02T01:29:26.374082 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-02T01:29:26.376060 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-02T01:29:26.388869 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:29:26.415668 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:29:27.361910 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-02T01:29:27.373498 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-579f2b29-64b9-42d4-bb64-4dfe463bd46f` +I, [2018-08-02T01:29:27.373549 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-02T01:29:27.376992 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-02T01:29:27.389337 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:29:27.391501 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-a78bb593-ca02-4eb5-939c-b65091521e0e` +I, [2018-08-02T01:29:27.391565 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-02T01:29:27.395979 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-02T01:29:27.396049 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-02T01:29:27.409487 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-02T01:29:27.409578 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-02T01:29:27.416487 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:29:28.392025 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:29:28.417232 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:29:29.392659 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:29:29.417660 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:29:30.393807 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:29:30.418545 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:29:31.394209 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:29:31.419033 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:29:32.394610 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:29:32.419567 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:29:33.395745 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:29:33.420417 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:29:34.397473 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:29:34.421105 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:29:35.398368 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:29:35.421843 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:29:36.399072 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:29:36.423802 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:29:37.399529 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:29:37.422359 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-02T01:29:37.425087 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:29:37.445809 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-02T01:29:38.399974 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-02T01:29:38.425542 #6] INFO -- : Seeking course_change/0 to offset 0 +E, [2018-08-02T01:29:39.439386 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- TypeError: wrong argument type Hash (expected String) +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T01:29:39.439455 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-02T01:29:39.448986 #6] ERROR -- : Client fetch loop error: wrong argument type Hash (expected String) +I, [2018-08-02T01:29:39.449187 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-02T01:29:39.450144 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-08-02T01:29:39.468343 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- TypeError: wrong argument type Hash (expected String) +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T01:29:39.473514 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-02T01:29:39.483509 #6] ERROR -- : Client fetch loop error: wrong argument type Hash (expected String) +I, [2018-08-02T01:29:39.483869 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-02T01:29:39.489777 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-02T01:29:39.614492 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:29:39.712209 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:29:40.450355 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-02T01:29:40.454303 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-7f0068d1-2758-41b8-8ca1-9390b7d8cb44` +I, [2018-08-02T01:29:40.454347 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-02T01:29:40.458283 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-02T01:29:40.458346 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-02T01:29:40.490066 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-02T01:29:40.498000 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-9e3c7b03-32da-4a17-974b-ed5197c95766` +I, [2018-08-02T01:29:40.498065 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-02T01:29:40.504365 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-02T01:29:40.504450 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-02T01:29:40.616168 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:29:40.713228 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:29:41.616845 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:29:41.713854 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:29:42.617778 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:29:42.714229 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:29:43.619821 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:29:43.717423 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:29:44.620425 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:29:44.718141 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:29:45.621129 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:29:45.719067 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:29:46.621832 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:29:46.719641 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:29:47.622975 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:29:47.720013 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:29:48.623654 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:29:48.720457 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:29:49.624209 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:29:49.721872 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:29:50.467920 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-02T01:29:50.513229 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-02T01:29:50.624660 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-02T01:29:50.688798 #6] INFO -- : Seeking course_change/0 to offset 0 +E, [2018-08-02T01:29:52.516977 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- TypeError: wrong argument type Hash (expected String) +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T01:29:52.517863 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-02T01:29:52.475311 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- TypeError: wrong argument type Hash (expected String) +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T01:29:52.533823 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-02T01:29:52.664097 #6] ERROR -- : Client fetch loop error: wrong argument type Hash (expected String) +I, [2018-08-02T01:29:52.664447 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-02T01:29:52.676733 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-08-02T01:29:52.686385 #6] ERROR -- : Client fetch loop error: wrong argument type Hash (expected String) +I, [2018-08-02T01:29:52.686696 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-02T01:29:52.689597 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-02T01:29:52.689720 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-02T01:29:52.774916 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:29:53.677096 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-02T01:29:53.691498 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:29:53.691786 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-02T01:29:53.710520 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-2274b357-06ba-49e1-b6fa-e04b4f5b4c04` +I, [2018-08-02T01:29:53.710591 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-02T01:29:53.741233 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-02T01:29:53.741330 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-02T01:29:53.759053 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-0cfd9698-d9a5-4afa-8bc6-3d849334d321` +I, [2018-08-02T01:29:53.759339 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-02T01:29:53.766557 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-02T01:29:53.766658 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-02T01:29:53.777215 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:29:54.693996 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:29:54.782098 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:29:55.694403 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:29:55.782910 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:29:56.696960 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:29:56.783338 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:29:57.699293 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:29:57.783657 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:29:58.699944 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:29:58.784350 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:29:59.700302 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:29:59.784778 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:30:00.702299 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:30:00.788139 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:30:01.704034 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:30:01.869666 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:30:02.963216 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:30:02.795169 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:30:03.871150 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-02T01:30:03.872665 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-02T01:30:03.965389 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-02T01:30:03.987152 #6] INFO -- : Seeking course_change/0 to offset 0 +E, [2018-08-02T01:30:05.892966 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- TypeError: wrong argument type Hash (expected String) +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T01:30:05.893249 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-02T01:30:05.894314 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- TypeError: wrong argument type Hash (expected String) +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T01:30:05.914252 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-02T01:30:05.919534 #6] ERROR -- : Client fetch loop error: wrong argument type Hash (expected String) +I, [2018-08-02T01:30:05.920540 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-02T01:30:05.932179 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-08-02T01:30:05.932388 #6] ERROR -- : Client fetch loop error: wrong argument type Hash (expected String) +I, [2018-08-02T01:30:05.932659 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-02T01:30:05.935356 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-02T01:30:05.974798 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:30:06.018647 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:30:06.934764 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-02T01:30:06.936046 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-02T01:30:06.973086 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-bea90262-5b26-44ec-820c-2f373074b68f` +I, [2018-08-02T01:30:06.973187 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-02T01:30:06.974568 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-078f4f90-da18-4fb2-ba36-83281bd14767` +I, [2018-08-02T01:30:06.975367 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-02T01:30:06.975716 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:30:06.985995 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-02T01:30:06.986182 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-02T01:30:06.987432 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-02T01:30:06.987499 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-02T01:30:07.019867 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:30:07.976435 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:30:08.020321 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:30:08.978183 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:30:09.023209 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:30:09.978974 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:30:10.024440 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:30:10.980695 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:30:11.030260 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:30:11.981210 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:30:12.041891 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:30:12.981573 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:30:13.043993 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:30:13.984309 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:30:14.045998 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:30:15.003924 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:30:15.082156 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:30:16.007312 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:30:16.082740 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:30:17.008765 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:30:17.108389 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-02T01:30:17.126321 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:30:17.126537 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-02T01:30:18.009535 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-02T01:30:18.254018 #6] INFO -- : Seeking course_change/0 to offset 0 +E, [2018-08-02T01:30:19.151161 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- TypeError: wrong argument type Hash (expected String) +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T01:30:19.151232 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-02T01:30:19.162044 #6] ERROR -- : Client fetch loop error: wrong argument type Hash (expected String) +I, [2018-08-02T01:30:19.162457 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-02T01:30:19.164879 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- TypeError: wrong argument type Hash (expected String) +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T01:30:19.165141 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-02T01:30:19.167872 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-08-02T01:30:19.170571 #6] ERROR -- : Client fetch loop error: wrong argument type Hash (expected String) +I, [2018-08-02T01:30:19.170737 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-02T01:30:19.171498 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-02T01:30:19.177068 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:30:19.591944 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:30:20.170129 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-02T01:30:20.172977 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-02T01:30:20.177579 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:30:20.208600 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-e4fcb72e-c451-410c-ad3c-f8c125b27275` +I, [2018-08-02T01:30:20.208826 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-02T01:30:20.288892 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-02T01:30:20.289054 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-02T01:30:20.346247 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-4b5d6cb9-f209-431f-84d5-bb5a254701ad` +I, [2018-08-02T01:30:20.346321 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-02T01:30:20.369824 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-02T01:30:20.369929 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-02T01:30:20.592588 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:30:21.143269 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:30:21.558129 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:30:22.144357 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:30:22.558479 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:30:23.145743 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:30:23.559020 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:30:24.146124 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:30:24.560348 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:30:25.146686 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:30:25.561551 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:30:26.147146 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:30:26.562202 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:30:27.147964 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:30:27.562709 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:30:28.149307 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:30:28.563716 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:30:29.151812 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:30:29.564418 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:30:30.152602 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:30:30.262153 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-02T01:30:30.407803 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-02T01:30:30.565241 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-02T01:30:31.155310 #6] INFO -- : Seeking section_change/0 to offset 0 +E, [2018-08-02T01:30:32.899828 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- TypeError: wrong argument type Hash (expected String) +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T01:30:32.921228 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-02T01:30:32.904064 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- TypeError: wrong argument type Hash (expected String) +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-02T01:30:32.921823 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-02T01:30:32.946092 #6] ERROR -- : Client fetch loop error: wrong argument type Hash (expected String) +I, [2018-08-02T01:30:32.946958 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-02T01:30:32.954318 #6] ERROR -- : Client fetch loop error: wrong argument type Hash (expected String) +I, [2018-08-02T01:30:32.955410 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-02T01:30:32.958015 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-08-02T01:30:32.961285 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-02T01:30:33.132734 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:30:33.184499 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:30:33.958494 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-02T01:30:33.964683 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-02T01:30:33.992006 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-0d610d73-7aa7-4364-a3ec-5baaeb50a377` +I, [2018-08-02T01:30:33.992083 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-02T01:30:34.012996 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-02T01:30:34.013232 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-02T01:30:34.024389 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-750dd2cb-2687-4dcf-8c08-f6b362710451` +I, [2018-08-02T01:30:34.024519 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-02T01:30:34.042683 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-02T01:30:34.042960 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-02T01:30:34.137436 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:30:34.186599 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:30:35.138770 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:30:35.187758 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:30:36.139468 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:30:36.189194 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:30:37.141327 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:30:37.190631 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:30:38.142137 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:30:38.191165 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:30:39.142957 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:30:39.191934 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:30:40.143580 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:30:40.192427 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:30:41.144395 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:30:41.192829 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:30:42.144980 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:30:42.193909 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:30:43.145393 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:30:43.194213 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-02T01:30:44.026480 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-02T01:30:44.049001 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-02T01:30:44.145702 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-02T01:30:44.195227 #6] INFO -- : Seeking course_change/0 to offset 0 +E, [2018-08-02T01:30:46.033858 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- TypeError: wrong argument type Hash (expected String) +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.0/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T19:26:45.331980 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-06T19:26:45.332052 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-06T19:26:45.342844 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-06T19:26:45.342982 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +I, [2018-08-06T19:26:45.351397 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-06T19:26:45.351477 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-06T19:26:45.355387 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-06T19:26:45.356577 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-06T19:26:50.343836 #6] 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.14:9094 +I, [2018-08-06T19:26:50.347689 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-06T19:26:50.347769 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-06T19:26:50.349889 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-06T19:26:50.350411 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-06T19:26:50.358052 #6] 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.14:9094 +I, [2018-08-06T19:26:50.366182 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-06T19:26:50.372335 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-06T19:26:50.392721 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-06T19:26:50.392884 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-06T19:26:55.351040 #6] 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.14:9094 +I, [2018-08-06T19:26:55.352150 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-06T19:26:55.352207 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-06T19:26:55.353790 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-06T19:26:55.354051 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-06T19:26:55.396637 #6] 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.14:9094 +I, [2018-08-06T19:26:55.397323 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-06T19:26:55.397361 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-06T19:26:55.398214 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-06T19:26:55.398345 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-06T19:27:00.295410 #6] 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.14:9094 +I, [2018-08-06T19:27:00.301492 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-06T19:27:00.301622 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-06T19:27:00.339412 #6] 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.14:9094 +I, [2018-08-06T19:27:00.341094 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-06T19:27:00.341142 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-06T19:27:00.386680 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-06T19:27:00.387226 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-06T19:27:00.402352 #6] INFO -- : Will fetch at most 1048576 bytes at a time per partition from course_change +I, [2018-08-06T19:27:00.402893 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-06T19:27:00.442283 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-06T19:27:00.442451 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:27:00.875668 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-06T19:27:00.876750 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-06T19:27:00.910162 #6] INFO -- : Will fetch at most 1048576 bytes at a time per partition from section_change +I, [2018-08-06T19:27:00.910514 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-06T19:27:01.075461 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-06T19:27:01.075646 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:27:01.442911 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:27:02.081094 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:27:02.444151 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:27:03.081543 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:27:03.457546 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:27:04.082204 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:27:04.442006 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-c59b0042-853b-4f93-8ee7-d0e0b60eb64f` +I, [2018-08-06T19:27:04.442082 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-06T19:27:04.459880 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:27:04.586443 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-1411c276-fd05-42bf-876d-124e5b763722` +I, [2018-08-06T19:27:04.586513 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-06T19:27:05.083115 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:27:05.442962 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-06T19:27:05.453422 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-06T19:27:05.461049 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:27:05.588452 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-06T19:27:05.595114 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-06T19:27:05.716450 #6] INFO -- : Partitions assigned for `course_change`: 0 +I, [2018-08-06T19:27:05.718581 #6] INFO -- : Partitions assigned for `section_change`: 0 +I, [2018-08-06T19:27:06.083452 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-06T19:27:06.083590 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-06T19:27:06.083621 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-06T19:27:06.089717 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-06T19:27:06.461277 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-06T19:27:06.461392 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-06T19:27:06.461428 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-06T19:27:06.474917 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +E, [2018-08-06T19:27:09.859772 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- NameError: undefined local variable or method `channel' for # +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T19:27:09.871161 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-06T19:27:09.873989 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- NameError: undefined local variable or method `channel' for # +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T19:27:09.874087 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-06T19:27:09.927100 #6] ERROR -- : Client fetch loop error: undefined local variable or method `channel' for # +I, [2018-08-06T19:27:09.927449 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-06T19:27:09.928475 #6] ERROR -- : Client fetch loop error: undefined local variable or method `channel' for # +I, [2018-08-06T19:27:09.928812 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-06T19:27:09.931076 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-08-06T19:27:09.933846 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-06T19:27:10.003472 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:27:10.236199 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:27:10.931894 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-06T19:27:10.934604 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-06T19:27:11.004091 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:27:11.055054 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-8c690756-cfd9-4eec-aac7-f1653f5fa6c3` +I, [2018-08-06T19:27:11.055126 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-06T19:27:11.179353 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-06T19:27:11.179444 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-06T19:27:11.236690 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:27:11.270084 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-c7348753-e735-441f-92a1-b5c02af2a875` +I, [2018-08-06T19:27:11.270135 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-06T19:27:11.332428 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-06T19:27:11.332661 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-06T19:27:12.005542 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:27:12.238935 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:27:13.006144 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:27:13.240997 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:27:14.006532 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:27:14.242943 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:27:15.007114 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:27:15.244160 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:27:16.007494 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:27:16.258280 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:27:17.008371 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:27:17.258720 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:27:18.021373 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:27:18.262619 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:27:19.022114 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:27:19.263096 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:27:20.022830 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:27:20.263690 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:27:21.026358 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:27:21.265467 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:27:21.337616 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-06T19:27:21.376623 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-06T19:27:22.150782 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-06T19:27:22.265755 #6] INFO -- : Seeking course_change/0 to offset 0 +E, [2018-08-06T19:27:23.366411 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- NameError: undefined local variable or method `channel' for # +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T19:27:23.366589 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-06T19:27:23.394852 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- NameError: undefined local variable or method `channel' for # +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T19:27:23.410970 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-06T19:27:23.452082 #6] ERROR -- : Client fetch loop error: undefined local variable or method `channel' for # +E, [2018-08-06T19:27:23.559247 #6] ERROR -- : Client fetch loop error: undefined local variable or method `channel' for # +I, [2018-08-06T19:27:23.559787 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-06T19:27:23.561278 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-06T19:27:23.576880 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-08-06T19:27:23.632854 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-06T19:27:23.672473 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:27:24.164086 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:27:24.577574 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-06T19:27:24.636346 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-06T19:27:24.673428 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:27:24.701255 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-65ae3329-3775-40f3-a628-d67d37524f3d` +I, [2018-08-06T19:27:24.701310 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-06T19:27:24.721005 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-06T19:27:24.721146 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-06T19:27:24.762871 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-6b8654a3-0ff6-47ad-97b7-7054c69d59b0` +I, [2018-08-06T19:27:24.762939 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-06T19:27:24.804971 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-06T19:27:24.805149 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-06T19:27:25.164937 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:27:25.674616 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:27:26.166328 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:27:26.675288 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:27:27.168177 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:27:27.662955 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:27:28.155985 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:27:28.663479 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:27:29.158342 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:27:29.663880 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:27:30.159267 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:27:30.664417 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:27:31.159760 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:27:31.665175 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:27:32.160604 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:27:32.666214 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:27:33.161192 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:27:33.666621 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:27:34.161677 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:27:34.667823 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:27:34.736137 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-06T19:27:34.823029 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-06T19:27:35.162054 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-06T19:27:35.668271 #6] INFO -- : Seeking section_change/0 to offset 0 +E, [2018-08-06T19:27:36.760919 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- NameError: undefined local variable or method `channel' for # +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T19:27:36.761022 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-06T19:27:36.771299 #6] ERROR -- : Client fetch loop error: undefined local variable or method `channel' for # +I, [2018-08-06T19:30:20.651728 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-06T19:30:20.651824 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-06T19:30:20.661539 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-06T19:30:20.661599 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-06T19:30:20.676939 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-06T19:30:20.677068 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-06T19:30:20.680890 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-06T19:30:20.680989 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-06T19:30:25.677995 #6] 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.14:9094 +I, [2018-08-06T19:30:25.678814 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-06T19:30:25.678869 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-06T19:30:25.680150 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-06T19:30:25.680246 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-06T19:30:25.681210 #6] 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.14:9094 +I, [2018-08-06T19:30:25.681864 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-06T19:30:25.681915 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-06T19:30:25.682927 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-06T19:30:25.683019 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-06T19:30:30.651354 #6] 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.14:9094 +I, [2018-08-06T19:30:30.652124 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-06T19:30:30.652165 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-06T19:30:30.652709 #6] 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.14:9094 +I, [2018-08-06T19:30:30.653444 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-06T19:30:30.653490 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-06T19:30:30.654983 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-06T19:30:30.655077 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-06T19:30:30.655284 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-06T19:30:30.655385 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-06T19:30:35.665849 #6] 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.14:9094 +I, [2018-08-06T19:30:35.672730 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-06T19:30:35.672796 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-06T19:30:35.673533 #6] 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.14:9094 +I, [2018-08-06T19:30:35.674553 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-06T19:30:35.674614 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-06T19:30:35.944351 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-06T19:30:35.951176 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-06T19:30:35.978998 #6] INFO -- : Will fetch at most 1048576 bytes at a time per partition from section_change +I, [2018-08-06T19:30:35.979130 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-06T19:30:36.000920 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-06T19:30:36.001075 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-06T19:30:36.014209 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-06T19:30:36.014402 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:30:36.083274 #6] INFO -- : Will fetch at most 1048576 bytes at a time per partition from course_change +I, [2018-08-06T19:30:36.084015 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-06T19:30:36.106516 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-06T19:30:36.106641 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:30:37.015181 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:30:37.107104 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:30:38.018979 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:30:38.130012 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:30:39.020190 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:30:39.131008 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:30:40.053364 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:30:40.136165 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:30:41.054434 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:30:41.137956 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:30:42.060612 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:30:42.153554 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:30:43.095129 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:30:43.154439 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:30:44.100423 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:30:44.155785 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:30:45.102598 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:30:45.156766 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:30:45.664061 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-915fcee0-1065-48f0-b9c3-7e47a9b635de` +I, [2018-08-06T19:30:45.664896 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-06T19:30:45.694728 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-1a8468a9-3ab9-43ee-8d8b-e21b591ac710` +I, [2018-08-06T19:30:45.694806 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-06T19:30:46.104814 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:30:46.163665 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:30:46.669390 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-06T19:30:46.682533 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-06T19:30:46.701136 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-06T19:30:46.707253 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-06T19:30:47.058615 #6] INFO -- : Partitions assigned for `section_change`: 0 +I, [2018-08-06T19:30:47.108663 #6] INFO -- : Partitions assigned for `course_change`: 0 +I, [2018-08-06T19:30:47.109551 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:30:47.164062 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:30:48.110923 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-06T19:30:48.111139 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-06T19:30:48.111270 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-06T19:30:48.128510 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-06T19:30:48.167238 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-06T19:30:48.167528 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-06T19:30:48.167619 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-06T19:30:48.231519 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +E, [2018-08-06T19:30:51.301696 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- NameError: undefined local variable or method `channel' for # +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T19:30:51.301911 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-06T19:30:51.303996 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- NameError: undefined local variable or method `channel' for # +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T19:30:51.306595 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-06T19:30:51.369338 #6] ERROR -- : Client fetch loop error: undefined local variable or method `channel' for # +I, [2018-08-06T19:30:51.370305 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-06T19:30:51.380506 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-08-06T19:30:51.390930 #6] ERROR -- : Client fetch loop error: undefined local variable or method `channel' for # +I, [2018-08-06T19:30:51.391395 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-06T19:30:51.411314 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-06T19:30:51.416341 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:30:52.077697 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:30:52.381976 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-06T19:30:52.411859 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-06T19:30:52.417321 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:30:52.456402 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-a78305d5-89ab-40a4-9637-dbf7a651608c` +I, [2018-08-06T19:30:52.456479 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-06T19:30:52.460599 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-06T19:30:52.460732 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-06T19:30:52.474819 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-588abbf6-486c-4500-a9f8-41fac41e9018` +I, [2018-08-06T19:30:52.474885 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-06T19:30:52.508901 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-06T19:30:52.508993 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-06T19:30:53.078644 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:30:53.419866 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:30:54.080524 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:30:54.420495 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:30:55.082749 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:30:55.422746 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:30:56.084457 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:30:56.423843 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:30:57.086183 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:30:57.424734 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:30:58.049157 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:30:58.385230 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:30:59.050126 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:30:59.385755 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:31:00.050543 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:31:00.386651 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:31:01.051935 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:31:01.387195 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:31:02.052543 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:31:02.387608 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:31:02.430110 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-06T19:31:02.519181 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-06T19:31:03.053023 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-06T19:31:03.389667 #6] INFO -- : Seeking section_change/0 to offset 0 +E, [2018-08-06T19:31:04.631432 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- NameError: undefined local variable or method `channel' for # +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T19:31:04.632120 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-06T19:31:04.643260 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- NameError: undefined local variable or method `channel' for # +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T19:31:04.646761 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-06T19:31:04.724207 #6] ERROR -- : Client fetch loop error: undefined local variable or method `channel' for # +I, [2018-08-06T19:31:04.724543 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-06T19:31:04.753803 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-06T19:31:04.846898 #6] ERROR -- : Client fetch loop error: undefined local variable or method `channel' for # +I, [2018-08-06T19:31:04.847262 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-06T19:31:04.862240 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-06T19:31:04.926737 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-06T19:31:04.927108 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-06T19:31:05.755136 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:31:05.863047 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-06T19:31:05.927264 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:31:05.934713 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-06T19:31:06.202512 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-230a641f-82fe-4bba-a578-29ced3b1291c` +I, [2018-08-06T19:31:06.202578 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-06T19:31:06.204553 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-cc9cb15f-5eef-46e1-9b3b-a3f6f2624648` +I, [2018-08-06T19:31:06.204608 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-06T19:31:06.353837 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-06T19:31:06.354062 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-06T19:31:06.356030 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-06T19:31:06.356104 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-06T19:31:06.755942 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:31:06.927958 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:31:07.756483 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:31:07.928373 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:31:08.757319 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:31:08.929858 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:31:10.071256 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:31:10.162152 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:31:11.082141 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:31:11.162541 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:31:12.084439 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:31:12.164476 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:31:13.085421 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:31:13.165633 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:31:14.097253 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:31:14.166052 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:31:15.101200 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:31:15.172971 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:31:16.101813 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:31:16.174137 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:31:16.529943 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-06T19:31:16.539858 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-06T19:31:17.102477 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-06T19:31:17.265957 #6] INFO -- : Seeking course_change/0 to offset 0 +E, [2018-08-06T19:31:18.579828 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- NameError: undefined local variable or method `channel' for # +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T19:31:18.579932 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-06T19:31:18.584741 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- NameError: undefined local variable or method `channel' for # +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T19:31:18.595698 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-06T19:31:18.608280 #6] ERROR -- : Client fetch loop error: undefined local variable or method `channel' for # +I, [2018-08-06T19:31:18.608709 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-06T19:31:18.609143 #6] ERROR -- : Client fetch loop error: undefined local variable or method `channel' for # +I, [2018-08-06T19:31:18.609309 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-06T19:31:18.614770 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-08-06T19:31:18.615728 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-06T19:31:18.617451 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:31:18.654267 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:31:19.616089 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-06T19:31:19.618042 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-06T19:31:19.618478 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:31:19.627395 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-d7c28f1e-c93c-4414-b3b8-6c953a33028e` +I, [2018-08-06T19:31:19.627459 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-06T19:31:19.629655 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-7b923752-50ef-4697-91d0-3b64c708a866` +I, [2018-08-06T19:31:19.629701 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-06T19:31:19.641358 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-06T19:31:19.641463 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-06T19:31:19.654855 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:31:19.664699 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-06T19:31:19.664792 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-06T19:31:20.618839 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:31:20.655453 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:31:21.619436 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:31:21.656617 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:31:22.620313 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:31:22.657580 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:31:23.621721 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:31:23.659097 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:31:24.622157 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:31:24.660550 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:31:25.623309 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:31:25.661042 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:31:26.623809 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:31:26.661469 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:31:27.588384 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:31:27.624752 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:31:28.589783 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:31:28.625221 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:31:29.590551 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:31:29.615157 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-06T19:31:29.625928 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:31:29.636948 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-06T19:31:30.590990 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-06T19:31:30.627503 #6] INFO -- : Seeking course_change/0 to offset 0 +E, [2018-08-06T19:31:31.654711 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- NameError: undefined local variable or method `channel' for # +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T19:31:31.685734 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-06T19:31:31.684757 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- NameError: undefined local variable or method `channel' for # +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T19:31:31.689155 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-06T19:31:31.700041 #6] ERROR -- : Client fetch loop error: undefined local variable or method `channel' for # +I, [2018-08-06T19:31:31.701789 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-06T19:31:31.703940 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-08-06T19:31:31.705070 #6] ERROR -- : Client fetch loop error: undefined local variable or method `channel' for # +I, [2018-08-06T19:31:31.705265 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-06T19:31:31.750877 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-06T19:31:31.770588 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-06T19:31:31.787090 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:31:32.704588 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-06T19:31:32.714402 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-4a640382-b800-4fac-ad6e-aa8017355940` +I, [2018-08-06T19:31:32.714463 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-06T19:31:32.730056 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-06T19:31:32.730128 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-06T19:31:32.753053 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:31:32.772815 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-06T19:31:32.788368 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:31:32.837222 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-7329c62a-4d2b-4132-8e11-a7a1017e6f8a` +I, [2018-08-06T19:31:32.837287 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-06T19:31:32.847807 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-06T19:31:32.847915 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-06T19:31:33.753440 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:31:33.789019 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:31:34.756130 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:31:34.789516 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:31:35.756519 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:31:35.789933 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:31:36.757201 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:31:36.790596 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:31:37.758205 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:31:37.791394 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:31:38.758610 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:31:38.792000 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:31:39.760419 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:31:39.795086 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:31:40.765234 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:31:40.796269 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:31:41.766068 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:31:41.796714 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:31:42.746170 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-06T19:31:42.766442 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:31:42.797308 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-06T19:31:42.883404 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-06T19:31:43.766806 #6] INFO -- : Seeking course_change/0 to offset 0 +E, [2018-08-06T19:31:44.756597 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- NameError: undefined local variable or method `channel' for # +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T19:31:44.760337 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-06T19:31:44.787208 #6] ERROR -- : Client fetch loop error: undefined local variable or method `channel' for # +I, [2018-08-06T19:31:44.787581 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-06T19:31:44.788884 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-06T19:31:44.855707 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-06T19:31:44.890124 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- NameError: undefined local variable or method `channel' for # +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T19:31:44.890873 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-06T19:31:44.906734 #6] ERROR -- : Client fetch loop error: undefined local variable or method `channel' for # +I, [2018-08-06T19:31:44.907472 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-06T19:31:44.909169 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-06T19:31:44.911100 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-06T19:31:45.789398 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-06T19:31:45.821983 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-867bc78a-5b76-46e8-8d72-a535b6cb31c3` +I, [2018-08-06T19:31:45.822037 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-06T19:31:45.830428 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-06T19:31:45.830698 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-06T19:31:45.856653 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:31:45.909936 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:31:45.911398 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-06T19:31:45.915242 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-30c7e623-8a4b-4f19-8fbe-e525cb218064` +I, [2018-08-06T19:31:45.915348 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-06T19:31:45.919062 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-06T19:31:45.919153 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-06T19:31:46.857057 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:31:46.911161 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:31:47.857705 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:31:47.911904 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:31:48.858650 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:31:48.912467 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:31:49.859477 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:31:49.912788 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:31:50.862515 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:31:50.913531 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:31:51.862909 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:31:51.913963 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:31:52.865708 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:31:52.914503 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:31:53.866112 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:31:53.914824 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:31:54.866755 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:31:54.915603 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:31:55.838771 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-06T19:31:55.867396 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-06T19:31:55.918934 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:31:55.927778 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-06T19:31:56.919407 #6] INFO -- : Seeking course_change/0 to offset 0 +E, [2018-08-06T19:31:57.808016 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- NameError: undefined local variable or method `channel' for # +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T19:31:57.810478 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-06T19:31:57.814314 #6] ERROR -- : Client fetch loop error: undefined local variable or method `channel' for # +I, [2018-08-06T19:31:57.819119 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-06T19:31:57.820548 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-08-06T19:31:57.896067 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- NameError: undefined local variable or method `channel' for # +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T19:31:57.896152 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-06T19:31:57.899547 #6] ERROR -- : Client fetch loop error: undefined local variable or method `channel' for # +I, [2018-08-06T19:31:57.899837 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-06T19:31:57.900801 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-06T19:31:57.920369 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:31:57.944007 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:31:58.820768 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-06T19:31:58.825709 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-39669a53-3bf8-4b25-9780-92d72465bc86` +I, [2018-08-06T19:31:58.825756 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-06T19:31:58.835316 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-06T19:31:58.835414 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-06T19:31:58.901496 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-06T19:31:58.910635 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-8c687fe4-6a5b-441e-bdd0-41c92c049b70` +I, [2018-08-06T19:31:58.910692 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-06T19:31:58.917402 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-06T19:31:58.917503 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-06T19:31:58.926431 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:31:58.944564 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:31:59.927114 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:31:59.944916 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:32:00.927715 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:32:00.945655 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:32:01.928028 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:32:01.946426 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:32:02.928316 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:32:02.949312 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:32:03.928930 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:32:03.950369 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:32:04.929282 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:32:04.951090 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:32:05.929745 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:32:05.953392 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:32:06.930083 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:32:06.953839 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:32:07.931463 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:32:07.954356 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:32:08.843326 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-06T19:32:08.929208 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-06T19:32:08.932210 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-06T19:32:08.954782 #6] INFO -- : Seeking course_change/0 to offset 0 +E, [2018-08-06T19:32:10.847885 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- NameError: undefined local variable or method `channel' for # +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T19:32:10.850813 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-06T19:32:10.853474 #6] ERROR -- : Client fetch loop error: undefined local variable or method `channel' for # +I, [2018-08-06T19:32:10.853749 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-06T19:32:10.855757 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-06T19:32:10.906851 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-06T19:32:10.933667 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- NameError: undefined local variable or method `channel' for # +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T19:32:10.933729 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-06T19:32:10.936584 #6] ERROR -- : Client fetch loop error: undefined local variable or method `channel' for # +I, [2018-08-06T19:32:10.936810 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-06T19:32:10.937733 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-06T19:32:11.194526 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:32:11.856074 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-06T19:32:11.860334 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-89d61cde-079e-47d5-98da-04e29a9ceb5e` +I, [2018-08-06T19:32:11.860377 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-06T19:32:11.863278 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-06T19:32:11.863353 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-06T19:32:11.907539 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:32:11.939144 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-06T19:32:11.944903 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-7c2e3f63-3c96-4a57-953a-0055e62a6da9` +I, [2018-08-06T19:32:11.944948 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-06T19:32:11.947331 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-06T19:32:11.947391 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-06T19:32:12.195148 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:32:12.908165 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:32:13.195913 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:32:13.908496 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:32:14.196376 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:32:14.908998 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:32:15.198752 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:32:15.909299 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:32:16.199386 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:32:16.909642 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:32:17.199858 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:32:17.910142 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:32:18.200843 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:32:18.910455 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:32:19.204675 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:32:19.910802 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:32:20.205357 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:32:20.911165 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:32:21.206944 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:32:21.870476 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-06T19:32:21.912223 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-06T19:32:21.955375 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-06T19:32:22.208502 #6] INFO -- : Seeking course_change/0 to offset 0 +E, [2018-08-06T19:32:23.884490 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- NameError: undefined local variable or method `channel' for # +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T19:32:23.886526 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-06T19:32:23.891247 #6] ERROR -- : Client fetch loop error: undefined local variable or method `channel' for # +I, [2018-08-06T19:32:23.891491 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-06T19:32:23.894247 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-06T19:32:23.965508 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-06T19:32:24.167708 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- NameError: undefined local variable or method `channel' for # +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T19:32:24.167771 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-06T19:32:24.170089 #6] ERROR -- : Client fetch loop error: undefined local variable or method `channel' for # +I, [2018-08-06T19:32:24.170314 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-06T19:32:24.171149 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-06T19:32:24.596955 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:32:24.895917 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-06T19:32:24.899152 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-23fb6fa7-1989-4a6f-aba6-b3af8cc5aede` +I, [2018-08-06T19:32:24.899231 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-06T19:32:24.902596 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-06T19:32:24.902656 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-06T19:32:24.966188 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:32:25.171825 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-06T19:32:25.175279 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-2328a9ad-3d84-4c39-bd17-0e195387d835` +I, [2018-08-06T19:32:25.175393 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-06T19:32:25.177374 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-06T19:32:25.177431 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-06T19:32:25.597522 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:32:25.968038 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:32:26.598107 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:32:26.968658 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:32:27.561302 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:32:27.931856 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:32:28.561805 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:32:28.932274 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:32:29.562245 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:32:29.932639 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:32:30.563036 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:32:30.933015 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:32:31.563756 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:32:31.933872 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:32:32.564324 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:32:32.935211 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:32:33.565218 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:32:33.936695 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:32:34.566246 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:32:34.871509 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-06T19:32:34.937061 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-06T19:32:35.150288 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-06T19:32:35.566527 #6] INFO -- : Seeking course_change/0 to offset 0 +E, [2018-08-06T19:32:36.878742 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- NameError: undefined local variable or method `channel' for # +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T19:32:36.881304 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-06T19:32:36.893040 #6] ERROR -- : Client fetch loop error: undefined local variable or method `channel' for # +I, [2018-08-06T19:32:36.894162 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-06T19:32:36.901458 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-06T19:32:37.097724 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-06T19:32:37.154565 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- NameError: undefined local variable or method `channel' for # +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T19:32:37.154632 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-06T19:32:37.159033 #6] ERROR -- : Client fetch loop error: undefined local variable or method `channel' for # +I, [2018-08-06T19:32:37.159258 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-06T19:32:37.160295 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-06T19:32:37.321066 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:32:37.901766 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-06T19:32:37.906387 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-b8c7ed04-1876-42d0-9491-ade0998ee1f3` +I, [2018-08-06T19:32:37.906476 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-06T19:32:37.909929 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-06T19:32:37.909990 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-06T19:32:38.098229 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:32:38.160962 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-06T19:32:38.169476 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-2c08e807-cc01-4d10-8ce2-3ff9d0947061` +I, [2018-08-06T19:32:38.169624 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-06T19:32:38.173308 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-06T19:32:38.173369 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-06T19:32:38.321465 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:32:39.098706 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:32:39.321902 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:32:40.099889 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:32:40.322246 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:32:41.100225 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:32:41.322800 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:32:42.100912 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:32:42.323264 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:32:43.101416 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:32:43.323743 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:32:44.101767 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:32:44.324665 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:32:45.102221 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:32:45.325227 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:32:46.102570 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:32:46.325965 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:32:47.103857 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:32:47.328956 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:32:47.921107 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-06T19:32:48.105482 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-06T19:32:48.270216 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-06T19:32:48.329993 #6] INFO -- : Seeking course_change/0 to offset 0 +E, [2018-08-06T19:32:49.928190 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- NameError: undefined local variable or method `channel' for # +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T19:32:49.931167 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-06T19:32:49.934333 #6] ERROR -- : Client fetch loop error: undefined local variable or method `channel' for # +I, [2018-08-06T19:32:49.934677 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-06T19:32:49.936065 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-06T19:32:50.003379 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-06T19:32:50.278537 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- NameError: undefined local variable or method `channel' for # +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T19:32:50.278612 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-06T19:32:50.283267 #6] ERROR -- : Client fetch loop error: undefined local variable or method `channel' for # +I, [2018-08-06T19:32:50.283605 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-06T19:32:50.284983 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-06T19:32:50.365208 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:32:50.936426 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-06T19:32:50.940137 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-3cc71566-db3a-41ca-a40a-8d1af534ce3e` +I, [2018-08-06T19:32:50.940182 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-06T19:32:50.942727 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-06T19:32:50.942788 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-06T19:32:51.003952 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:32:51.286372 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-06T19:32:51.290419 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-de0a6a67-594b-415b-bfcf-c9a957855467` +I, [2018-08-06T19:32:51.290475 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-06T19:32:51.293862 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-06T19:32:51.294012 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-06T19:32:51.365756 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:32:52.004499 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:32:52.366101 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:32:53.005072 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:32:53.366690 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:32:54.005630 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:32:54.367467 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:32:55.006054 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:32:55.368160 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:32:56.007707 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:32:56.369110 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:32:57.008149 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:32:57.369598 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:32:57.972348 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:32:58.333817 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:32:58.972818 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:32:59.334194 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:32:59.973456 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:33:00.334927 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:33:00.915435 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-06T19:33:00.974593 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-06T19:33:01.263544 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-06T19:33:01.335454 #6] INFO -- : Seeking course_change/0 to offset 0 +E, [2018-08-06T19:33:02.919531 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- NameError: undefined local variable or method `channel' for # +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T19:33:02.922203 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-06T19:33:02.927152 #6] ERROR -- : Client fetch loop error: undefined local variable or method `channel' for # +I, [2018-08-06T19:33:02.929918 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-06T19:33:02.931051 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-06T19:33:03.181091 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-06T19:33:03.268054 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- NameError: undefined local variable or method `channel' for # +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T19:33:03.268148 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-06T19:33:03.272085 #6] ERROR -- : Client fetch loop error: undefined local variable or method `channel' for # +I, [2018-08-06T19:33:03.272294 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-06T19:33:03.274039 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-06T19:33:03.363386 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:33:03.932505 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-06T19:33:03.947613 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-fcd44f1f-dbac-435f-ae18-648b6ca0f80e` +I, [2018-08-06T19:33:03.947681 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-06T19:33:03.951433 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-06T19:33:03.951612 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-06T19:33:04.182524 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:33:04.274902 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-06T19:33:04.281498 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-033cfe28-f493-445e-a4d9-5c0d68c0fc17` +I, [2018-08-06T19:33:04.281549 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-06T19:33:04.283913 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-06T19:33:04.284035 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-06T19:33:04.364930 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:33:05.183475 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:33:05.365245 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:33:06.183926 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:33:06.366066 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:33:07.184257 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:33:07.366764 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:33:08.184747 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:33:08.367195 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:33:09.186610 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:33:09.367934 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:33:10.187330 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:33:10.368573 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:33:11.187774 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:33:11.368940 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:33:12.188489 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:33:12.369447 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:33:13.188940 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:33:13.370451 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:33:13.960430 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-06T19:33:14.189319 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-06T19:33:14.289866 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-06T19:33:14.371025 #6] INFO -- : Seeking course_change/0 to offset 0 +E, [2018-08-06T19:33:15.971878 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- NameError: undefined local variable or method `channel' for # +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T19:33:15.974137 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-06T19:33:15.982186 #6] ERROR -- : Client fetch loop error: undefined local variable or method `channel' for # +I, [2018-08-06T19:33:15.982819 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-06T19:33:15.984978 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-06T19:33:16.116982 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-06T19:33:16.296613 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- NameError: undefined local variable or method `channel' for # +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T19:33:16.296730 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-06T19:33:16.299219 #6] ERROR -- : Client fetch loop error: undefined local variable or method `channel' for # +I, [2018-08-06T19:33:16.299376 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-06T19:33:16.300071 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-06T19:33:16.657637 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:33:16.985203 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-06T19:33:16.991729 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-61c002bb-0770-4e75-af09-2d5fa2ea5237` +I, [2018-08-06T19:33:16.991783 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-06T19:33:16.998914 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-06T19:33:16.999000 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-06T19:33:17.117473 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:33:17.300467 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-06T19:33:17.304100 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-6a59dd33-1b2a-46a3-a1ed-735c854723db` +I, [2018-08-06T19:33:17.304168 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-06T19:33:17.307794 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-06T19:33:17.307980 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-06T19:33:17.657973 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:33:18.117847 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:33:18.658930 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:33:19.118449 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:33:19.659695 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:33:20.118877 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:33:20.662966 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:33:21.119473 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:33:21.664630 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:33:22.120039 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:33:22.665522 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:33:23.131241 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:33:23.666109 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:33:24.131808 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:33:24.666639 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:33:25.132299 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:33:25.667162 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:33:26.133760 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:33:26.667630 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:33:27.009110 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-06T19:33:27.137023 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-06T19:33:27.324844 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-06T19:33:27.630682 #6] INFO -- : Seeking course_change/0 to offset 0 +E, [2018-08-06T19:33:28.977644 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- NameError: undefined local variable or method `channel' for # +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T19:35:28.426490 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-06T19:35:28.427080 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-06T19:35:28.441151 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-06T19:35:28.441210 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-06T19:35:28.450001 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-06T19:35:28.450110 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-06T19:35:28.454700 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-06T19:35:28.454852 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-06T19:35:33.450999 #6] 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.14:9094 +I, [2018-08-06T19:35:33.452471 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-06T19:35:33.452660 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-06T19:35:33.457933 #6] 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.14:9094 +I, [2018-08-06T19:35:33.483040 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-06T19:35:33.483917 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-06T19:35:33.493112 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-06T19:35:33.493295 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-06T19:35:33.510896 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-06T19:35:33.511036 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-06T19:35:38.494177 #6] 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.14:9094 +I, [2018-08-06T19:35:38.508123 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-06T19:35:38.508199 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-06T19:35:38.523549 #6] 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.14:9094 +I, [2018-08-06T19:35:38.531145 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-06T19:35:38.531314 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-06T19:35:38.543809 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-06T19:35:38.543983 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-06T19:35:38.544125 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-06T19:35:38.544202 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-06T19:35:43.603413 #6] 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.14:9094 +I, [2018-08-06T19:35:43.637193 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-06T19:35:43.637290 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-06T19:35:43.638045 #6] 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.14:9094 +I, [2018-08-06T19:35:43.638856 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-06T19:35:43.638949 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-06T19:35:43.752400 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-06T19:35:43.753128 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-06T19:35:43.777620 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-06T19:35:43.777867 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-06T19:35:43.845655 #6] INFO -- : Will fetch at most 1048576 bytes at a time per partition from section_change +I, [2018-08-06T19:35:43.845980 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-06T19:35:43.846528 #6] INFO -- : Will fetch at most 1048576 bytes at a time per partition from course_change +I, [2018-08-06T19:35:43.846624 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-06T19:35:43.865246 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-06T19:35:43.865812 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:35:43.880250 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-06T19:35:43.880350 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:35:44.866811 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:35:44.880951 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:35:45.867278 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:35:45.885640 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:35:46.868075 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:35:46.887017 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:35:47.868629 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:35:47.887924 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:35:48.869060 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:35:48.889102 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:35:49.877548 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:35:49.890753 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:35:50.111010 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-b94a15df-5e9a-4b6a-85b6-a3177e675d87` +I, [2018-08-06T19:35:50.111120 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-06T19:35:50.126044 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-e7a7d4c5-42d0-4524-8d31-0c3c6405de9c` +I, [2018-08-06T19:35:50.126171 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-06T19:35:50.878209 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:35:50.891119 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:35:51.111973 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-06T19:35:51.117851 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-06T19:35:51.126820 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-06T19:35:51.137262 #6] INFO -- : Partitions assigned for `section_change`: 0 +I, [2018-08-06T19:35:51.163441 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-06T19:35:51.206721 #6] INFO -- : Partitions assigned for `course_change`: 0 +I, [2018-08-06T19:35:51.880858 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-06T19:35:51.882709 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-06T19:35:51.882778 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-06T19:35:51.891396 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-06T19:35:51.891488 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-06T19:35:51.891519 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-06T19:35:51.896417 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-06T19:35:51.903198 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +E, [2018-08-06T19:35:53.303464 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- TypeError: wrong argument type Hash (expected String) +/usr/local/bundle/gems/plezi-0.16.1/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.1/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T19:35:53.303544 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-06T19:35:53.393311 #6] ERROR -- : Client fetch loop error: wrong argument type Hash (expected String) +I, [2018-08-06T19:35:53.393552 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-06T19:35:53.397701 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-06T19:35:53.492889 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:35:54.398384 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-06T19:35:54.418477 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-5e4e1c27-e70e-4fb8-8eab-63df526d5d26` +I, [2018-08-06T19:35:54.418596 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-06T19:35:54.439925 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-06T19:35:54.440017 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-06T19:35:54.495354 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-06T19:35:55.289631 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- TypeError: wrong argument type Hash (expected String) +/usr/local/bundle/gems/plezi-0.16.1/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.1/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T19:35:55.291319 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-06T19:35:55.301534 #6] ERROR -- : Client fetch loop error: wrong argument type Hash (expected String) +I, [2018-08-06T19:35:55.301793 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-06T19:35:55.308592 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-06T19:35:55.377166 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:35:55.496889 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:35:56.308834 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-06T19:35:56.322668 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-0125b82e-780f-45a0-a4a6-fc3a9639c996` +I, [2018-08-06T19:35:56.322717 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-06T19:35:56.325119 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-06T19:35:56.325179 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-06T19:35:56.377592 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:35:56.497648 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:35:57.378428 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:35:57.498149 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:35:58.340895 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:35:58.460502 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:35:59.341899 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:35:59.488237 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:36:00.343327 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:36:00.488834 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:36:01.345169 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:36:01.489228 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:36:02.346014 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:36:02.555989 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:36:03.346599 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:36:03.556690 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:36:04.347035 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:36:04.439862 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-06T19:36:04.556959 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-06T19:36:05.347909 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:36:06.331685 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-06T19:36:06.349095 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-06T19:36:06.471989 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- TypeError: wrong argument type Hash (expected String) +/usr/local/bundle/gems/plezi-0.16.1/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.1/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T19:36:06.472114 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-06T19:36:06.479144 #6] ERROR -- : Client fetch loop error: wrong argument type Hash (expected String) +I, [2018-08-06T19:36:06.496161 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-06T19:36:06.498617 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-06T19:36:06.500549 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-06T19:36:07.349484 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-06T19:36:07.499993 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:36:07.500897 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-06T19:36:07.506493 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-37fd3c24-d848-445c-8229-d1b60ffdc2f5` +I, [2018-08-06T19:36:07.506554 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-06T19:36:07.514763 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-06T19:36:07.514889 #6] WARN -- : Not fetching from course_change/0 due to pause +E, [2018-08-06T19:36:08.354992 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- TypeError: wrong argument type Hash (expected String) +/usr/local/bundle/gems/plezi-0.16.1/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.1/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T19:36:08.359259 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-06T19:36:08.384291 #6] ERROR -- : Client fetch loop error: wrong argument type Hash (expected String) +I, [2018-08-06T19:36:08.384483 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-06T19:36:08.405934 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-06T19:36:08.501188 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:36:08.768668 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:36:09.406403 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-06T19:36:09.418413 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-8de2375e-fb62-4ee4-8da8-a54f1878646b` +I, [2018-08-06T19:36:09.418466 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-06T19:36:09.420369 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-06T19:36:09.420470 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-06T19:36:09.503127 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:36:09.771964 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:36:10.503586 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:36:10.772667 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:36:11.504478 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:36:11.773054 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:36:12.504940 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:36:12.773429 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:36:13.505298 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:36:13.774575 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:36:14.505615 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:36:14.775536 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:36:15.506205 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:36:15.775965 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:36:16.506789 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:36:16.776679 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:36:17.507648 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:36:17.573191 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-06T19:36:17.777206 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:36:18.508082 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-06T19:36:18.777494 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:36:19.454075 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +E, [2018-08-06T19:36:19.589957 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- TypeError: wrong argument type Hash (expected String) +/usr/local/bundle/gems/plezi-0.16.1/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.1/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T19:36:19.590075 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-06T19:36:19.596121 #6] ERROR -- : Client fetch loop error: wrong argument type Hash (expected String) +I, [2018-08-06T19:36:19.596404 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-06T19:36:19.597497 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-06T19:36:19.777780 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-06T19:36:19.842747 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:36:20.597779 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-06T19:36:20.602356 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-53b1e990-e873-42c9-bb3f-e4358b7f8ada` +I, [2018-08-06T19:36:20.602403 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-06T19:36:20.604793 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-06T19:36:20.604874 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-06T19:36:20.843488 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-06T19:36:21.471403 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- TypeError: wrong argument type Hash (expected String) +/usr/local/bundle/gems/plezi-0.16.1/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.1/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T19:36:21.474960 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-06T19:36:21.478436 #6] ERROR -- : Client fetch loop error: wrong argument type Hash (expected String) +I, [2018-08-06T19:36:21.480110 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-06T19:36:21.484353 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-06T19:36:21.658309 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:36:21.843826 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:36:22.484706 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-06T19:36:22.498244 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-b9b83f24-3104-4d23-a426-3cecf4eb903a` +I, [2018-08-06T19:36:22.498301 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-06T19:36:22.503980 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-06T19:36:22.504062 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-06T19:36:22.658716 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:36:22.844261 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:36:23.659564 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:36:23.844725 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:36:24.660741 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:36:24.845192 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:36:25.661563 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:36:25.848195 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:36:26.662578 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:36:26.849852 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:36:27.663110 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:36:27.814627 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:36:28.627199 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:36:28.815819 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:36:29.628339 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:36:29.817012 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:36:30.579455 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-06T19:36:30.629668 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:36:30.817924 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-06T19:36:31.630119 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:36:32.472949 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +E, [2018-08-06T19:36:32.582739 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- TypeError: wrong argument type Hash (expected String) +/usr/local/bundle/gems/plezi-0.16.1/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.1/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T19:36:32.582810 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-06T19:36:32.585891 #6] ERROR -- : Client fetch loop error: wrong argument type Hash (expected String) +I, [2018-08-06T19:36:32.586077 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-06T19:36:32.586917 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-06T19:36:32.630707 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-06T19:36:32.907812 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:36:33.588049 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-06T19:36:33.591370 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-3bf8de32-b63f-49a5-b66c-fcdb36f82b7c` +I, [2018-08-06T19:36:33.591415 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-06T19:36:33.593335 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-06T19:36:33.593394 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-06T19:36:33.908924 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-06T19:36:34.476573 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- TypeError: wrong argument type Hash (expected String) +/usr/local/bundle/gems/plezi-0.16.1/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.1/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T19:36:34.483867 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-06T19:36:34.490926 #6] ERROR -- : Client fetch loop error: wrong argument type Hash (expected String) +I, [2018-08-06T19:36:34.491286 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-06T19:36:34.496482 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-06T19:36:34.661754 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:36:34.909404 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:36:35.497152 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-06T19:36:35.501414 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-af43119b-0719-4993-999f-6ba1d4563311` +I, [2018-08-06T19:36:35.501459 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-06T19:36:35.503392 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-06T19:36:35.503455 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-06T19:36:35.662554 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:36:35.909927 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:36:36.663571 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:36:36.910528 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:36:37.664322 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:36:37.911165 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:36:38.665118 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:36:38.912160 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:36:39.665440 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:36:39.912641 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:36:40.666052 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:36:40.913515 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:36:41.666791 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:36:41.914095 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:36:42.667438 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:36:42.914664 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:36:43.602646 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-06T19:36:43.668054 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:36:43.915475 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-06T19:36:44.668738 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:36:45.517093 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +E, [2018-08-06T19:36:45.608224 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- TypeError: wrong argument type Hash (expected String) +/usr/local/bundle/gems/plezi-0.16.1/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.1/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T19:36:45.608295 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-06T19:36:45.615819 #6] ERROR -- : Client fetch loop error: wrong argument type Hash (expected String) +I, [2018-08-06T19:36:45.616053 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-06T19:36:45.617002 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-06T19:36:45.669020 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-06T19:36:45.699656 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:36:46.617287 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-06T19:36:46.620331 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-b4af9793-64b4-451a-80e4-b97b4ddbfcb6` +I, [2018-08-06T19:36:46.620384 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-06T19:36:46.623008 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-06T19:36:46.623076 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-06T19:36:46.700345 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-06T19:36:47.519543 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- TypeError: wrong argument type Hash (expected String) +/usr/local/bundle/gems/plezi-0.16.1/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.1/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T19:36:47.522766 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-06T19:36:47.527189 #6] ERROR -- : Client fetch loop error: wrong argument type Hash (expected String) +I, [2018-08-06T19:36:47.527418 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-06T19:36:47.528819 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-06T19:36:47.538835 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:36:47.700820 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:36:48.529414 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-06T19:36:48.533342 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-a7d5f4ca-3849-4ce5-9faa-74531089f597` +I, [2018-08-06T19:36:48.533386 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-06T19:36:48.535682 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-06T19:36:48.535783 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-06T19:36:48.539096 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:36:48.701217 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:36:49.539478 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:36:49.701652 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:36:50.540032 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:36:50.702940 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:36:51.540514 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:36:51.703401 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:36:52.541026 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:36:52.704011 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:36:53.542192 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:36:53.704543 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:36:54.542705 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:36:54.705044 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:36:55.543965 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:36:55.705532 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:36:56.544386 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:36:56.631102 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-06T19:36:56.705885 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-06T19:36:57.544717 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:36:58.505952 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-06T19:36:58.509969 #6] INFO -- : Seeking section_change/0 to offset 0 +E, [2018-08-06T19:36:58.599093 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- TypeError: wrong argument type Hash (expected String) +/usr/local/bundle/gems/plezi-0.16.1/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.1/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T19:36:58.599157 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-06T19:36:58.601614 #6] ERROR -- : Client fetch loop error: wrong argument type Hash (expected String) +I, [2018-08-06T19:36:58.601797 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-06T19:36:58.603344 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-06T19:36:58.751837 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:36:59.603547 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-06T19:36:59.607542 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-b0df0554-dab1-4ac3-9988-52caf501b4d5` +I, [2018-08-06T19:36:59.607590 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-06T19:36:59.609566 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-06T19:36:59.609623 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-06T19:36:59.752620 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-06T19:37:00.510445 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- TypeError: wrong argument type Hash (expected String) +/usr/local/bundle/gems/plezi-0.16.1/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.1/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T19:37:00.513674 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-06T19:37:00.522195 #6] ERROR -- : Client fetch loop error: wrong argument type Hash (expected String) +I, [2018-08-06T19:37:00.522463 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-06T19:37:00.524163 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-06T19:37:00.754482 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:37:00.923748 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:37:01.524770 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-06T19:37:01.527981 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-c843ca22-eee0-4a17-8262-e3b838693439` +I, [2018-08-06T19:37:01.528038 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-06T19:37:01.534954 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-06T19:37:01.535040 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-06T19:37:01.755113 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:37:01.924331 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:37:02.756126 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:37:02.924649 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:37:03.757975 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:37:03.925198 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:37:04.758816 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:37:04.925679 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:37:05.759147 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:37:05.926071 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:37:06.759745 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:37:06.926622 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:37:07.760056 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:37:07.927411 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:37:08.760348 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:37:08.928339 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:37:09.648652 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-06T19:37:09.760667 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-06T19:37:10.042394 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:37:11.043046 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:37:11.546432 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +E, [2018-08-06T19:37:11.654967 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- TypeError: wrong argument type Hash (expected String) +/usr/local/bundle/gems/plezi-0.16.1/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.1/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T19:37:11.655033 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-06T19:37:11.664029 #6] ERROR -- : Client fetch loop error: wrong argument type Hash (expected String) +I, [2018-08-06T19:37:11.666266 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-06T19:37:11.670834 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-06T19:37:12.059138 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-06T19:37:12.594557 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:37:12.672514 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-06T19:37:12.901438 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-b8abccfb-9096-48da-a84e-9b9f49616206` +I, [2018-08-06T19:37:12.901624 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-06T19:37:12.915487 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-06T19:37:12.915728 #6] WARN -- : Not fetching from course_change/0 due to pause +E, [2018-08-06T19:37:13.571254 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- TypeError: wrong argument type Hash (expected String) +/usr/local/bundle/gems/plezi-0.16.1/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.1/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T19:37:13.604759 #6] INFO -- : Leaving group `notifications_notifications` +I, [2018-08-06T19:37:13.604595 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-06T19:37:13.617521 #6] ERROR -- : Client fetch loop error: wrong argument type Hash (expected String) +I, [2018-08-06T19:37:13.617848 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-06T19:37:13.620134 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-06T19:37:13.765808 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:37:14.657516 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-06T19:37:14.659426 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:37:14.683862 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-1de67343-d86b-4f0c-b794-b3baafed7d99` +I, [2018-08-06T19:37:14.683946 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-06T19:37:14.688725 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-06T19:37:14.688809 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-06T19:37:14.807294 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:37:15.794551 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:37:15.810334 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:37:16.795866 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:37:16.811282 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:37:17.796430 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:37:17.812502 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:37:18.796810 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:37:18.813193 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:37:19.798354 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:37:19.814126 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:37:20.798886 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:37:20.814796 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:37:21.799200 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:37:21.815908 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:37:22.799668 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:37:22.849853 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:37:23.071977 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-06T19:37:23.806466 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-06T19:37:23.850405 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:37:24.702133 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-06T19:37:24.851672 #6] INFO -- : Seeking section_change/0 to offset 0 +E, [2018-08-06T19:37:25.078543 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- TypeError: wrong argument type Hash (expected String) +/usr/local/bundle/gems/plezi-0.16.1/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.1/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T19:37:25.078627 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-06T19:37:25.082053 #6] ERROR -- : Client fetch loop error: wrong argument type Hash (expected String) +I, [2018-08-06T19:37:25.082359 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-06T19:37:25.083453 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-06T19:37:25.140752 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:37:26.083841 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-06T19:37:26.087643 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-b4677c41-58ab-4a37-9c8a-8f9b8ba7279c` +I, [2018-08-06T19:37:26.087704 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-06T19:37:26.090720 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-06T19:37:26.090794 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-06T19:37:26.141975 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-06T19:37:26.709048 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- TypeError: wrong argument type Hash (expected String) +/usr/local/bundle/gems/plezi-0.16.1/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.1/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T19:37:26.716382 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-06T19:37:26.722128 #6] ERROR -- : Client fetch loop error: wrong argument type Hash (expected String) +I, [2018-08-06T19:37:26.722401 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-06T19:37:26.725852 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-06T19:37:26.843244 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:37:27.142575 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:37:27.727198 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-06T19:37:27.732456 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-bf92ab1c-8917-433c-8ff1-340b6b1ee36f` +I, [2018-08-06T19:37:27.732521 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-06T19:37:27.735073 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-06T19:37:27.735137 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-06T19:37:27.806585 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:37:28.106583 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:37:28.807171 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:37:29.107037 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:37:29.808197 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:37:30.107384 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:37:30.808655 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:37:31.108059 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:37:31.809059 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:37:32.109374 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:37:32.809526 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:37:33.110507 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:37:33.810194 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:37:34.111222 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:37:35.383857 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:37:35.384535 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:37:36.068589 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-06T19:37:36.384725 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-06T19:37:36.392382 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:37:37.392876 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:37:37.704531 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +E, [2018-08-06T19:37:38.154807 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- TypeError: wrong argument type Hash (expected String) +/usr/local/bundle/gems/plezi-0.16.1/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.1/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T19:37:38.155124 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-06T19:37:38.191515 #6] ERROR -- : Client fetch loop error: wrong argument type Hash (expected String) +I, [2018-08-06T19:37:38.192209 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-06T19:37:38.204244 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-06T19:37:38.394151 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-06T19:37:38.432877 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:37:39.204521 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-06T19:37:39.210015 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-33f9a59f-b592-4d9c-94fd-021eda713ffa` +I, [2018-08-06T19:37:39.210064 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-06T19:37:39.213818 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-06T19:37:39.213881 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-06T19:37:39.434297 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-06T19:37:39.716710 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- TypeError: wrong argument type Hash (expected String) +/usr/local/bundle/gems/plezi-0.16.1/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.1/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T19:37:39.725318 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-06T19:37:39.728991 #6] ERROR -- : Client fetch loop error: wrong argument type Hash (expected String) +I, [2018-08-06T19:37:39.729237 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-06T19:37:39.730231 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-06T19:37:39.890019 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:37:40.434882 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:37:40.730589 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-06T19:37:40.734255 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-cf163c1e-da1f-4b27-acc1-c58e37e67515` +I, [2018-08-06T19:37:40.734332 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-06T19:37:40.742008 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-06T19:37:40.742075 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-06T19:37:40.890329 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:37:41.435398 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:37:41.891296 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:37:42.435945 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:37:42.892970 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:37:43.436812 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:37:43.893455 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:37:44.437313 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:37:44.894950 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:37:45.438152 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:37:45.896073 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:37:46.438580 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:37:46.896904 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:37:47.439167 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:37:47.897498 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:37:48.439762 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:37:48.898260 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:37:49.222510 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-06T19:37:49.440183 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-06T19:37:49.899188 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:37:50.763445 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-06T19:37:50.900206 #6] INFO -- : Seeking section_change/0 to offset 0 +E, [2018-08-06T19:37:51.226388 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- TypeError: wrong argument type Hash (expected String) +/usr/local/bundle/gems/plezi-0.16.1/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.1/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T19:37:51.226471 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-06T19:37:51.235678 #6] ERROR -- : Client fetch loop error: wrong argument type Hash (expected String) +I, [2018-08-06T19:37:51.236216 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-06T19:37:51.244077 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-06T19:37:51.963343 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:37:52.244688 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-06T19:37:52.490028 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-f05c3018-b99d-41c7-8af7-74456f36e5cf` +I, [2018-08-06T19:37:52.490171 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-06T19:37:52.749379 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-06T19:37:52.752403 #6] WARN -- : Not fetching from course_change/0 due to pause +E, [2018-08-06T19:37:52.877918 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- TypeError: wrong argument type Hash (expected String) +/usr/local/bundle/gems/plezi-0.16.1/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.1/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T19:37:52.880985 #6] INFO -- : Leaving group `notifications_notifications` +I, [2018-08-06T19:37:53.071492 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:37:54.555804 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-06T19:37:55.344031 #6] ERROR -- : Client fetch loop error: wrong argument type Hash (expected String) +I, [2018-08-06T19:37:55.363934 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-06T19:37:55.425159 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-06T19:37:55.454678 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:37:55.608953 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:37:56.429798 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-06T19:37:56.657260 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:37:56.462562 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:37:57.310938 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-9331b921-b5b5-4ee3-9995-3a20a90f7902` +I, [2018-08-06T19:37:57.312123 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-06T19:37:58.099067 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:37:58.101204 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:37:59.108250 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:37:59.116582 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:37:59.283143 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-06T19:37:59.283536 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-06T19:38:00.112733 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:38:00.117955 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:38:01.113527 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:38:01.121350 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:38:01.692731 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-06T19:38:02.117838 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-06T19:38:02.127925 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:38:03.129615 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-06T19:38:03.742433 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- TypeError: wrong argument type Hash (expected String) +/usr/local/bundle/gems/plezi-0.16.1/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.1/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T19:38:03.743744 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-06T19:38:03.909202 #6] ERROR -- : Client fetch loop error: wrong argument type Hash (expected String) +I, [2018-08-06T19:38:03.911197 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-06T19:38:03.921769 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-06T19:38:04.327357 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:38:04.877492 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:38:04.922939 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-06T19:38:05.053002 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-75aac492-6174-4c9f-bb61-d8fc489373bf` +I, [2018-08-06T19:38:05.053135 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-06T19:38:05.157773 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-06T19:38:05.157952 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-06T19:38:05.338443 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:38:05.640615 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-06T19:38:05.879177 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:38:06.340388 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-06T19:38:06.879737 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-06T19:38:07.645842 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- TypeError: wrong argument type Hash (expected String) +/usr/local/bundle/gems/plezi-0.16.1/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.1/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T19:38:07.647194 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-06T19:38:07.649567 #6] ERROR -- : Client fetch loop error: wrong argument type Hash (expected String) +I, [2018-08-06T19:38:07.650794 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-06T19:38:07.651917 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-06T19:38:07.783049 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:38:07.880138 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:38:08.652148 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-06T19:38:08.661086 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-61ebc53b-ce6f-4814-afb4-d42823de81c1` +I, [2018-08-06T19:38:08.661147 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-06T19:38:08.670876 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-06T19:38:08.670975 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-06T19:38:08.786341 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:38:08.880606 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:38:09.786814 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:38:09.881258 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:38:10.787332 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:38:10.881603 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:38:11.788470 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:38:11.882533 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:38:12.789432 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:38:12.883172 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:38:13.790193 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:38:13.883654 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:38:14.791046 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:38:14.884867 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:38:15.164234 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-06T19:38:15.791593 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:38:15.885190 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-06T19:38:16.791968 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-06T19:38:17.173465 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- TypeError: wrong argument type Hash (expected String) +/usr/local/bundle/gems/plezi-0.16.1/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.1/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T19:38:17.173554 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-06T19:38:17.179467 #6] ERROR -- : Client fetch loop error: wrong argument type Hash (expected String) +I, [2018-08-06T19:38:17.179713 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-06T19:38:17.181469 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-06T19:38:17.473708 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:38:17.792623 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:38:18.181652 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-06T19:38:18.218094 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-94035ab1-4f24-4e02-bfc4-b057965612e4` +I, [2018-08-06T19:38:18.218159 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-06T19:38:18.220712 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-06T19:38:18.220852 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-06T19:38:18.474074 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:38:18.688845 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-06T19:38:18.792977 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-06T19:38:19.474817 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:38:20.475326 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-06T19:38:20.706906 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- TypeError: wrong argument type Hash (expected String) +/usr/local/bundle/gems/plezi-0.16.1/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.1/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T19:38:20.712387 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-06T19:38:20.721473 #6] ERROR -- : Client fetch loop error: wrong argument type Hash (expected String) +I, [2018-08-06T19:38:20.722357 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-06T19:38:20.724041 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-06T19:38:20.853741 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:38:21.475906 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:38:21.724829 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-06T19:38:21.735228 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-785f6bba-a7fc-475e-99c7-eef545c4faa9` +I, [2018-08-06T19:38:21.735294 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-06T19:38:21.738064 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-06T19:38:21.738157 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-06T19:38:21.854882 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:38:22.718146 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:38:22.865836 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:38:23.718760 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:38:23.866369 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:38:24.719341 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:38:24.866739 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:38:25.720004 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:38:25.867760 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:38:26.725520 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:38:26.868633 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:38:27.768468 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:38:27.873143 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:38:28.349389 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-06T19:38:28.748212 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-06T19:38:29.037546 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:38:30.043414 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-06T19:38:30.370564 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- TypeError: wrong argument type Hash (expected String) +/usr/local/bundle/gems/plezi-0.16.1/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.1/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T19:38:30.370719 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-06T19:38:30.443770 #6] ERROR -- : Client fetch loop error: wrong argument type Hash (expected String) +I, [2018-08-06T19:38:30.446368 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-06T19:38:30.448077 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-06T19:38:30.487522 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:38:31.044354 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:38:31.448328 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-06T19:38:31.453890 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-b2c47eda-ccf0-46bd-bc21-cf711c553666` +I, [2018-08-06T19:38:31.453947 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-06T19:38:31.469319 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-06T19:38:31.469389 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-06T19:38:31.488185 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:38:31.728682 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-06T19:38:32.044770 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-06T19:38:32.492138 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:38:33.492912 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-06T19:38:33.735024 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- TypeError: wrong argument type Hash (expected String) +/usr/local/bundle/gems/plezi-0.16.1/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.1/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T19:49:39.685629 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-06T19:49:39.686275 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-06T19:49:39.650793 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-06T19:49:39.690981 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-06T19:49:39.696462 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-06T19:49:39.696974 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-06T19:49:39.699813 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-06T19:49:39.704840 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-06T19:49:44.697752 #6] 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.13:9094 +I, [2018-08-06T19:49:44.698863 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-06T19:49:44.698919 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-06T19:49:44.701495 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-06T19:49:44.701683 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-06T19:49:44.708865 #6] 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.13:9094 +I, [2018-08-06T19:49:44.710941 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-06T19:49:44.710991 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-06T19:49:44.716013 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-06T19:49:44.719773 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-06T19:49:49.704299 #6] 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.13:9094 +E, [2018-08-06T19:49:49.728955 #6] 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.13:9094 +I, [2018-08-06T19:49:49.733634 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-06T19:49:49.733760 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-06T19:49:49.779556 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-06T19:49:49.780779 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-06T19:49:49.781479 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-06T19:49:49.781750 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-06T19:49:49.795207 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-06T19:49:49.797787 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-06T19:49:54.835694 #6] 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.13:9094 +E, [2018-08-06T19:49:54.976424 #6] 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.13:9094 +I, [2018-08-06T19:49:55.572610 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-06T19:49:55.573042 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-06T19:49:55.671569 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-06T19:49:55.671947 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-06T19:49:55.861792 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-06T19:49:56.591977 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-06T19:49:56.592432 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-06T19:49:56.601902 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-06T19:50:01.991004 #6] 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.13:9094 +I, [2018-08-06T19:50:02.074568 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-06T19:50:02.075511 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-06T19:50:01.894737 #6] 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.13:9094 +I, [2018-08-06T19:50:02.122690 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-06T19:50:02.122840 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-06T19:50:02.159061 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-06T19:50:02.163499 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-06T19:50:02.212482 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-06T19:50:02.212698 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-06T19:50:07.169145 #6] 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.13:9094 +E, [2018-08-06T19:50:07.498174 #6] 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.13:9094 +I, [2018-08-06T19:50:07.514991 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-06T19:50:07.515403 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-06T19:50:07.674101 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-06T19:50:07.674223 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-06T19:50:07.689714 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-06T19:50:07.690681 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-06T19:50:07.691500 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-06T19:50:07.691674 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-06T19:50:12.696386 #6] 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.13:9094 +E, [2018-08-06T19:50:12.746217 #6] 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.13:9094 +I, [2018-08-06T19:50:12.785791 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-06T19:50:12.785900 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-06T19:50:12.790345 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-06T19:50:12.823956 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-06T19:50:17.057262 #6] ERROR -- : No brokers in cluster +E, [2018-08-06T19:50:17.061153 #6] ERROR -- : No brokers in cluster +E, [2018-08-06T19:50:22.081027 #6] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: + +I, [2018-08-06T19:50:22.096122 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-06T19:50:22.098552 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-06T19:50:22.099695 #6] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: + +I, [2018-08-06T19:50:22.121728 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-06T19:50:22.121803 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-06T19:50:22.898092 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-06T19:50:22.899252 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-06T19:50:22.919323 #6] INFO -- : Will fetch at most 1048576 bytes at a time per partition from course_change +I, [2018-08-06T19:50:22.923229 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-06T19:50:22.989251 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-06T19:50:22.989529 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:50:23.024642 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-06T19:50:23.024822 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-06T19:50:23.039730 #6] INFO -- : Will fetch at most 1048576 bytes at a time per partition from section_change +I, [2018-08-06T19:50:23.040063 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-06T19:50:23.099888 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-06T19:50:23.100024 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:50:23.994942 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:50:24.102492 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:50:25.013360 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:50:25.158508 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:50:26.093101 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:50:26.161258 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:50:27.097564 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:50:27.162473 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:50:28.058376 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:50:28.114461 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:50:29.059270 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:50:29.126438 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:50:30.060818 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:50:30.127704 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:50:31.062620 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:50:31.133046 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:50:32.064484 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:50:32.135801 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:50:32.867447 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-ae69541b-9284-47f1-8a9c-f44692cd5cc3` +I, [2018-08-06T19:50:32.867574 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-06T19:50:33.065538 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:50:33.118108 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-2a59ac0b-f6ea-4800-b228-bb671fa654bb` +I, [2018-08-06T19:50:33.118192 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-06T19:50:33.139799 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:50:33.871962 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-06T19:50:33.886654 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-06T19:50:33.899132 #6] INFO -- : Partitions assigned for `section_change`: 0 +I, [2018-08-06T19:50:34.066432 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:50:34.118665 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-06T19:50:34.123518 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-06T19:50:34.132818 #6] INFO -- : Partitions assigned for `course_change`: 0 +I, [2018-08-06T19:50:34.143602 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-06T19:50:34.143781 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-06T19:50:34.143838 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-06T19:50:34.150754 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-06T19:50:35.066748 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-06T19:50:35.066859 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-06T19:50:35.066894 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-06T19:50:35.070573 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +E, [2018-08-06T19:50:38.025269 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- ArgumentError: method accepts 1-3 arguments. +/usr/local/bundle/gems/plezi-0.16.1/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.1/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T19:50:38.034604 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-06T19:50:38.157596 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- ArgumentError: method accepts 1-3 arguments. +/usr/local/bundle/gems/plezi-0.16.1/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.1/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T19:50:38.161061 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-06T19:50:38.164367 #6] ERROR -- : Client fetch loop error: method accepts 1-3 arguments. +I, [2018-08-06T19:50:38.165505 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-06T19:50:38.166119 #6] ERROR -- : Client fetch loop error: method accepts 1-3 arguments. +I, [2018-08-06T19:50:38.166609 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-06T19:50:38.222197 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-06T19:50:38.283512 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-08-06T19:50:38.283734 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-06T19:50:38.438773 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:50:39.229468 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:50:39.284782 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-06T19:50:39.285316 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-06T19:50:39.330169 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-5a873094-a146-4485-acf6-a2641d8400df` +I, [2018-08-06T19:50:39.330226 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-06T19:50:39.338824 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-06T19:50:39.338947 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-06T19:50:39.402367 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-d1db9521-f9c1-4906-8891-e6b7e84a9ca1` +I, [2018-08-06T19:50:39.402443 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-06T19:50:39.410124 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-06T19:50:39.410199 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-06T19:50:39.454467 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:50:40.238023 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:50:40.455683 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:50:41.240227 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:50:41.475431 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:50:43.071319 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:50:43.264715 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:50:44.432642 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:50:44.444858 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:50:45.437255 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:50:45.459601 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:50:46.525731 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:50:46.539641 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:50:47.648856 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:50:47.654043 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:50:48.856281 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:50:48.860246 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-06T19:50:48.970023 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:50:48.970749 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-06T19:50:49.857003 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-06T19:50:50.001136 #6] INFO -- : Seeking section_change/0 to offset 0 +E, [2018-08-06T19:50:50.990343 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- ArgumentError: method accepts 1-3 arguments. +/usr/local/bundle/gems/plezi-0.16.1/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.1/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T19:50:50.994002 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-06T19:50:50.993890 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- ArgumentError: method accepts 1-3 arguments. +/usr/local/bundle/gems/plezi-0.16.1/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.1/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T19:50:51.044948 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-06T19:50:51.121195 #6] ERROR -- : Client fetch loop error: method accepts 1-3 arguments. +E, [2018-08-06T19:50:51.165577 #6] ERROR -- : Client fetch loop error: method accepts 1-3 arguments. +I, [2018-08-06T19:50:51.167647 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-06T19:50:51.177272 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-06T19:50:51.187918 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-08-06T19:50:51.191051 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-06T19:50:51.199153 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:50:51.276891 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:50:52.188249 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-06T19:50:52.191605 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-06T19:50:52.199711 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:50:52.225832 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-37e2e74e-a77e-47f9-bf42-832eb1fd3fa6` +I, [2018-08-06T19:50:52.225917 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-06T19:50:52.242076 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-595096a4-1c35-4e88-97a3-f55d0241f2e7` +I, [2018-08-06T19:50:52.242149 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-06T19:50:52.243354 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-06T19:50:52.243814 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-06T19:50:52.257693 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-06T19:50:52.257882 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-06T19:50:52.277598 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:50:53.203270 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:50:53.277963 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:50:54.204264 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:50:54.278337 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:50:55.204744 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:50:55.278889 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:50:56.205999 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:50:56.279345 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:50:57.206633 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:50:57.279669 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:50:58.243717 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:50:58.311547 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:50:59.244416 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:50:59.312308 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:51:00.245268 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:51:00.312645 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:51:01.245704 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:51:01.319068 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:51:02.246694 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:51:02.319967 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:51:02.331265 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-06T19:51:02.356363 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-06T19:51:03.266969 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-06T19:51:03.320976 #6] INFO -- : Seeking course_change/0 to offset 0 +E, [2018-08-06T19:51:04.370012 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- ArgumentError: method accepts 1-3 arguments. +/usr/local/bundle/gems/plezi-0.16.1/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.1/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T19:51:04.372030 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-06T19:51:04.410086 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- ArgumentError: method accepts 1-3 arguments. +/usr/local/bundle/gems/plezi-0.16.1/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.1/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T19:51:04.410218 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-06T19:51:04.421670 #6] ERROR -- : Client fetch loop error: method accepts 1-3 arguments. +I, [2018-08-06T19:51:04.423478 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-06T19:51:04.426704 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-08-06T19:51:04.433658 #6] ERROR -- : Client fetch loop error: method accepts 1-3 arguments. +I, [2018-08-06T19:51:04.436846 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-06T19:51:04.451405 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-06T19:51:04.477419 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:51:04.513120 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:51:05.427026 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-06T19:51:05.458699 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-06T19:51:05.479540 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:51:05.514054 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:51:05.548091 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-d90de6e4-3c95-489e-b7aa-0b73f66537fa` +I, [2018-08-06T19:51:05.548189 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-06T19:51:05.585869 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-06T19:51:05.585992 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-06T19:51:05.627088 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-5a3486d1-4e86-458a-9535-34623d1f58a5` +I, [2018-08-06T19:51:05.627162 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-06T19:51:05.631674 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-06T19:51:05.631758 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-06T19:51:06.480686 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:51:06.515602 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:51:07.484165 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:51:07.519561 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:51:08.484743 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:51:08.521965 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:51:09.485183 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:51:09.522595 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:51:10.485856 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:51:10.523101 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:51:11.486717 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:51:11.524184 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:51:12.487918 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:51:12.525854 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:51:13.488834 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:51:13.526411 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:51:14.489390 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:51:14.527060 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:51:15.489849 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:51:15.527938 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:51:15.660684 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-06T19:51:15.670355 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-06T19:51:16.490338 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-06T19:51:16.529142 #6] INFO -- : Seeking section_change/0 to offset 0 +E, [2018-08-06T19:51:17.894634 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- ArgumentError: method accepts 1-3 arguments. +/usr/local/bundle/gems/plezi-0.16.1/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.1/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T19:51:17.894824 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-06T19:51:17.899180 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- ArgumentError: method accepts 1-3 arguments. +/usr/local/bundle/gems/plezi-0.16.1/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.1/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T19:51:17.912260 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-06T19:51:17.989065 #6] ERROR -- : Client fetch loop error: method accepts 1-3 arguments. +I, [2018-08-06T19:51:17.989396 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-06T19:51:17.992915 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-08-06T19:51:17.994323 #6] ERROR -- : Client fetch loop error: method accepts 1-3 arguments. +I, [2018-08-06T19:51:17.994479 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-06T19:51:17.996713 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-06T19:51:17.996199 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:51:18.239136 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:51:18.993372 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-06T19:51:18.997031 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-06T19:51:18.997380 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:51:19.015286 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-3e66b758-e8d7-460e-8a71-f8efbc9cab80` +I, [2018-08-06T19:51:19.015498 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-06T19:51:19.030338 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-e01e9047-5c4f-4860-b5fd-7863cb096ac0` +I, [2018-08-06T19:51:19.030392 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-06T19:51:19.032486 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-06T19:51:19.032548 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-06T19:51:19.046087 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-06T19:51:19.046163 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-06T19:51:19.239796 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:51:19.998250 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:51:20.240480 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:51:20.998631 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:51:21.240921 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:51:21.999504 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:51:22.241595 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:51:22.999876 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:51:23.241987 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:51:24.000304 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:51:24.242434 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:51:25.000820 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:51:25.243160 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:51:26.001177 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:51:26.244700 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:51:27.001871 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:51:27.245652 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:51:27.965019 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:51:28.208817 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:51:28.965464 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:51:29.019833 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-06T19:51:29.023411 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-06T19:51:29.209282 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-06T19:51:29.965851 #6] INFO -- : Seeking section_change/0 to offset 0 +E, [2018-08-06T19:51:31.030192 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- ArgumentError: method accepts 1-3 arguments. +/usr/local/bundle/gems/plezi-0.16.1/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.1/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T19:51:31.030257 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-06T19:51:31.030502 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- ArgumentError: method accepts 1-3 arguments. +/usr/local/bundle/gems/plezi-0.16.1/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.1/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T19:51:31.034229 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-06T19:51:31.045031 #6] ERROR -- : Client fetch loop error: method accepts 1-3 arguments. +I, [2018-08-06T19:51:31.045447 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-06T19:51:31.047180 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-08-06T19:51:31.048850 #6] ERROR -- : Client fetch loop error: method accepts 1-3 arguments. +I, [2018-08-06T19:51:31.049233 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-06T19:51:31.050714 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-06T19:51:31.068944 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:51:31.084536 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:51:32.047936 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-06T19:51:32.051732 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-06T19:51:32.052873 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-5477cb52-ce2f-463c-b3b1-65595a24fe8c` +I, [2018-08-06T19:51:32.052918 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-06T19:51:32.057079 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-06T19:51:32.057143 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-06T19:51:32.061451 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-b6251ed8-0bdd-4aea-bfec-4ae153d2746c` +I, [2018-08-06T19:51:32.061497 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-06T19:51:32.070538 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:51:32.072612 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-06T19:51:32.072687 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-06T19:51:32.085376 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:51:33.072894 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:51:33.085877 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:51:34.073513 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:51:34.088608 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:51:35.073821 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:51:35.089459 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:51:36.074807 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:51:36.090772 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:51:37.075988 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:51:37.091524 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:51:38.077600 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:51:38.091969 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:51:39.078001 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:51:39.092333 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:51:40.078352 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:51:40.092676 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:51:41.079142 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:51:41.093135 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:51:42.072694 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-06T19:51:42.079547 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:51:42.082847 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-06T19:51:42.093531 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-06T19:51:43.083084 #6] INFO -- : Seeking section_change/0 to offset 0 +E, [2018-08-06T19:51:44.103568 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- ArgumentError: method accepts 1-3 arguments. +/usr/local/bundle/gems/plezi-0.16.1/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.1/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T19:51:44.103811 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-06T19:51:44.105341 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- ArgumentError: method accepts 1-3 arguments. +/usr/local/bundle/gems/plezi-0.16.1/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.1/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T19:51:44.115228 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-06T19:51:44.374107 #6] ERROR -- : Client fetch loop error: method accepts 1-3 arguments. +I, [2018-08-06T19:51:44.380745 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-06T19:51:44.389872 #6] ERROR -- : Client fetch loop error: method accepts 1-3 arguments. +I, [2018-08-06T19:51:44.390693 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-06T19:51:44.392539 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-06T19:51:44.404338 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-08-06T19:51:44.404908 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-06T19:51:44.413206 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:51:45.392929 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:51:45.405418 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-06T19:51:45.405519 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-06T19:51:45.413701 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:51:45.444049 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-f27b6915-669d-44ae-86c6-1b479a23858f` +I, [2018-08-06T19:51:45.444303 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-06T19:51:45.707698 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-06T19:51:45.707920 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-06T19:51:45.710779 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-48bd8159-c6d5-459e-84e0-ab4e8f624b7e` +I, [2018-08-06T19:51:45.710840 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-06T19:51:45.732959 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-06T19:51:45.733116 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-06T19:51:46.393636 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:51:46.414304 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:51:47.394059 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:51:47.415611 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:51:48.394958 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:51:48.416827 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:51:49.398441 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:51:49.417434 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:51:50.399218 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:51:50.417980 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:51:51.403683 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:51:51.418571 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:51:52.405594 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:51:52.419193 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:51:53.406579 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:51:53.420107 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:51:54.407242 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:51:54.420781 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:51:55.407628 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:51:55.421350 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:51:55.763750 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-06T19:51:55.769790 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-06T19:51:56.408763 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-06T19:51:56.421637 #6] INFO -- : Seeking course_change/0 to offset 0 +E, [2018-08-06T19:51:57.732498 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- ArgumentError: method accepts 1-3 arguments. +/usr/local/bundle/gems/plezi-0.16.1/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.1/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T19:51:57.732611 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-06T19:51:57.736067 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- ArgumentError: method accepts 1-3 arguments. +/usr/local/bundle/gems/plezi-0.16.1/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.1/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T19:51:57.739698 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-06T19:51:57.746442 #6] ERROR -- : Client fetch loop error: method accepts 1-3 arguments. +I, [2018-08-06T19:51:57.746613 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-06T19:51:57.747633 #6] ERROR -- : Client fetch loop error: method accepts 1-3 arguments. +I, [2018-08-06T19:51:57.747766 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-06T19:51:57.749223 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-08-06T19:51:57.751044 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-06T19:51:57.922031 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:51:57.942846 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:51:58.749715 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-06T19:51:58.751615 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-06T19:51:58.755312 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-4f759e0f-046f-454f-bd2a-5277b2f7c984` +I, [2018-08-06T19:51:58.755393 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-06T19:51:58.762075 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-06T19:51:58.762160 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-06T19:51:58.764806 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-7edcfd6a-aded-437f-9122-06f5e372ed93` +I, [2018-08-06T19:51:58.764880 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-06T19:51:58.767713 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-06T19:51:58.767780 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-06T19:51:58.922441 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:51:58.943673 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:51:59.923167 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:51:59.944172 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:52:00.923887 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:52:00.945204 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:52:01.924349 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:52:01.945569 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:52:02.926598 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:52:02.946173 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:52:03.928332 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:52:03.946626 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:52:04.932236 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:52:04.947450 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:52:05.932687 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:52:05.948086 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:52:06.935938 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:52:06.948936 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:52:07.936469 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:52:07.949283 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:52:08.769291 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-06T19:52:08.774928 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-06T19:52:08.937583 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-06T19:52:08.956922 #6] INFO -- : Seeking course_change/0 to offset 0 +E, [2018-08-06T19:52:10.773253 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- ArgumentError: method accepts 1-3 arguments. +/usr/local/bundle/gems/plezi-0.16.1/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.1/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T19:52:10.775305 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-06T19:52:10.776771 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- ArgumentError: method accepts 1-3 arguments. +/usr/local/bundle/gems/plezi-0.16.1/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.1/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T19:52:10.776821 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-06T19:52:10.783047 #6] ERROR -- : Client fetch loop error: method accepts 1-3 arguments. +I, [2018-08-06T19:52:10.783338 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-06T19:52:10.783624 #6] ERROR -- : Client fetch loop error: method accepts 1-3 arguments. +I, [2018-08-06T19:52:10.783877 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-06T19:52:10.785147 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-08-06T19:52:10.785976 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-06T19:52:11.017324 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:52:11.188624 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:52:11.785633 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-06T19:52:11.786391 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-06T19:52:11.794076 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-58b8fc0c-0f4c-46db-bac5-a6ee40f5040c` +I, [2018-08-06T19:52:11.794133 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-06T19:52:11.797589 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-06T19:52:11.797701 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-06T19:52:11.802085 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-a81a345b-a457-4c5e-a603-86b6eba46f67` +I, [2018-08-06T19:52:11.802128 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-06T19:52:11.805850 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-06T19:52:11.805910 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-06T19:52:12.018210 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:52:12.189124 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:52:13.018809 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:52:13.189568 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:52:14.019407 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:52:14.190117 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:52:15.019875 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:52:15.190521 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:52:16.020382 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:52:16.195350 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:52:17.021006 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:52:17.195778 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:52:18.021601 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:52:18.196121 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:52:19.022025 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:52:19.196646 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:52:20.022351 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:52:20.196964 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:52:21.022727 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:52:21.197506 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:52:21.806279 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-06T19:52:21.810573 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-06T19:52:22.023497 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-06T19:52:22.198038 #6] INFO -- : Seeking section_change/0 to offset 0 +E, [2018-08-06T19:52:23.813067 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- ArgumentError: method accepts 1-3 arguments. +/usr/local/bundle/gems/plezi-0.16.1/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.1/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T19:52:23.815661 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-06T19:52:23.818608 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- ArgumentError: method accepts 1-3 arguments. +/usr/local/bundle/gems/plezi-0.16.1/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.1/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T19:52:23.818682 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-06T19:52:23.832137 #6] ERROR -- : Client fetch loop error: method accepts 1-3 arguments. +I, [2018-08-06T19:52:23.832347 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-06T19:52:23.844306 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-08-06T19:52:23.856700 #6] ERROR -- : Client fetch loop error: method accepts 1-3 arguments. +I, [2018-08-06T19:52:23.856978 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-06T19:52:23.861886 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-06T19:52:23.930522 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:52:24.003712 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:52:24.854070 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-06T19:52:24.868167 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-06T19:52:24.931145 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:52:24.962744 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-e593c800-f0fc-4d39-be2a-15f99d625be8` +I, [2018-08-06T19:52:24.962824 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-06T19:52:25.004153 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:52:25.008089 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-06T19:52:25.008192 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-06T19:52:25.025459 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-3fa853b2-eba8-4d7d-a472-a1de84673d73` +I, [2018-08-06T19:52:25.025526 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-06T19:52:25.039106 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-06T19:52:25.039266 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-06T19:52:25.931938 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:52:26.004499 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:52:26.932471 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:52:27.004974 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:52:27.898676 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:52:27.971405 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:52:28.899090 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:52:28.999327 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:52:29.899421 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:52:29.999631 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:52:30.900247 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:52:30.999971 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:52:31.901203 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:52:32.000292 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:52:32.901532 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:52:33.010157 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:52:33.902136 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:52:34.010529 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:52:34.902930 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:52:35.010342 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-06T19:52:35.011541 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:52:35.034901 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-06T19:52:35.903314 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-06T19:52:36.019363 #6] INFO -- : Seeking course_change/0 to offset 0 +E, [2018-08-06T19:52:37.012804 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- ArgumentError: method accepts 1-3 arguments. +/usr/local/bundle/gems/plezi-0.16.1/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.1/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T19:52:37.012867 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-06T19:52:37.015685 #6] ERROR -- : Client fetch loop error: method accepts 1-3 arguments. +I, [2018-08-06T19:52:37.015944 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-06T19:52:37.016800 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-08-06T19:52:37.037765 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- ArgumentError: method accepts 1-3 arguments. +/usr/local/bundle/gems/plezi-0.16.1/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.1/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T19:52:37.037863 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-06T19:52:37.040716 #6] ERROR -- : Client fetch loop error: method accepts 1-3 arguments. +I, [2018-08-06T19:52:37.040861 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-06T19:52:37.041566 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-06T19:52:37.075026 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:52:37.092149 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:52:38.017254 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-06T19:52:38.020328 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-cec385ad-e903-43ba-a93e-cb86efdce165` +I, [2018-08-06T19:52:38.021628 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-06T19:52:38.024982 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-06T19:52:38.025074 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-06T19:52:38.042119 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-06T19:52:38.044763 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-b8df4be0-0bbc-4d1c-90b4-d68605a8f065` +I, [2018-08-06T19:52:38.044829 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-06T19:52:38.047571 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-06T19:52:38.047671 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-06T19:52:38.075744 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:52:38.092572 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:52:39.076073 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:52:39.093443 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:52:40.076764 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:52:40.093979 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:52:41.077519 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:52:41.095301 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:52:42.078113 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:52:42.096202 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:52:43.078921 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:52:43.096877 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:52:44.079463 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:52:44.097275 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:52:45.081000 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:52:45.099211 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:52:46.081582 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:52:46.099658 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:52:47.084516 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:52:47.100168 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:52:48.034019 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-06T19:52:48.053364 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-06T19:52:48.085137 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-06T19:52:48.101129 #6] INFO -- : Seeking course_change/0 to offset 0 +E, [2018-08-06T19:52:50.037015 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- ArgumentError: method accepts 1-3 arguments. +/usr/local/bundle/gems/plezi-0.16.1/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.1/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T19:52:50.037079 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-06T19:52:50.040415 #6] ERROR -- : Client fetch loop error: method accepts 1-3 arguments. +I, [2018-08-06T19:52:50.040678 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-06T19:52:50.042146 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-08-06T19:52:50.055598 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- ArgumentError: method accepts 1-3 arguments. +/usr/local/bundle/gems/plezi-0.16.1/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.1/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T19:52:50.062797 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-06T19:52:50.069431 #6] ERROR -- : Client fetch loop error: method accepts 1-3 arguments. +I, [2018-08-06T19:52:50.069621 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-06T19:52:50.070537 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-06T19:52:50.334640 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:52:51.030830 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:52:51.042370 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-06T19:52:51.051763 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-4735c5a6-8e2f-44f3-8800-b711cc794f31` +I, [2018-08-06T19:52:51.051819 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-06T19:52:51.054804 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-06T19:52:51.054884 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-06T19:52:51.070746 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-06T19:52:51.078746 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-aa7a98fb-91f7-47c6-8062-d7c687d8ce48` +I, [2018-08-06T19:52:51.078794 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-06T19:52:51.087072 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-06T19:52:51.087137 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-06T19:52:51.335994 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:52:52.031267 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:52:52.336411 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:52:53.031788 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:52:53.350989 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:52:54.032472 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:52:54.351427 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:52:55.032919 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:52:55.351969 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:52:56.035777 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:52:56.352286 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:52:57.036541 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:52:57.357494 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:52:58.001414 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:52:58.321785 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:52:59.002254 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:52:59.322321 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:53:00.002876 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:53:00.322685 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:53:01.003371 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:53:01.031643 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-06T19:53:01.194456 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-06T19:53:01.323923 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-06T19:53:02.003842 #6] INFO -- : Seeking course_change/0 to offset 0 +E, [2018-08-06T19:53:03.039096 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- ArgumentError: method accepts 1-3 arguments. +/usr/local/bundle/gems/plezi-0.16.1/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.1/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T19:53:03.039171 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-06T19:53:03.047405 #6] ERROR -- : Client fetch loop error: method accepts 1-3 arguments. +I, [2018-08-06T19:53:03.047878 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-06T19:53:03.052247 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-08-06T19:53:03.196803 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- ArgumentError: method accepts 1-3 arguments. +/usr/local/bundle/gems/plezi-0.16.1/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.1/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T19:53:03.201034 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-06T19:53:03.204227 #6] ERROR -- : Client fetch loop error: method accepts 1-3 arguments. +I, [2018-08-06T19:53:03.204663 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-06T19:53:03.205742 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-06T19:53:03.315308 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:53:03.562436 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:53:04.052871 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-06T19:53:04.068244 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-6a0db38b-da1c-477a-8be5-a1fce0a56703` +I, [2018-08-06T19:53:04.068302 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-06T19:53:04.073578 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-06T19:53:04.073646 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-06T19:53:04.205909 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-06T19:53:04.237547 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-bd1bd24e-d715-48b5-ab2a-dbfee80b8444` +I, [2018-08-06T19:53:04.237615 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-06T19:53:04.241444 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-06T19:53:04.241521 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-06T19:53:04.315698 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:53:04.562843 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:53:05.316546 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:53:05.563221 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:53:06.317168 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:53:06.563928 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:53:07.318438 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:53:07.578218 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:53:08.351311 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:53:08.578913 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:53:09.352699 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:53:09.579630 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:53:10.359340 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:53:10.580884 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:53:11.360072 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:53:11.582164 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:53:12.360747 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:53:12.582889 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:53:13.361290 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:53:13.583713 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:53:14.099031 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-06T19:53:14.360470 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-06T19:53:14.362171 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:53:14.584101 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-06T19:53:15.363190 #6] INFO -- : Seeking section_change/0 to offset 0 +E, [2018-08-06T19:53:16.112133 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- ArgumentError: method accepts 1-3 arguments. +/usr/local/bundle/gems/plezi-0.16.1/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.1/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T19:53:16.112236 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-06T19:53:16.118675 #6] ERROR -- : Client fetch loop error: method accepts 1-3 arguments. +I, [2018-08-06T19:53:16.118939 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-06T19:53:16.120693 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-08-06T19:53:16.364377 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- ArgumentError: method accepts 1-3 arguments. +/usr/local/bundle/gems/plezi-0.16.1/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.1/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T19:53:16.367563 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-06T19:53:16.369899 #6] ERROR -- : Client fetch loop error: method accepts 1-3 arguments. +I, [2018-08-06T19:53:16.370125 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-06T19:53:16.371028 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-06T19:53:16.558905 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:53:16.575267 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:53:17.120965 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-06T19:53:17.125707 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-05b955b8-9c10-409b-806b-b2937e1a130b` +I, [2018-08-06T19:53:17.125754 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-06T19:53:17.128026 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-06T19:53:17.128086 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-06T19:53:17.371760 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-06T19:53:17.374655 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-7a67d4b3-ed14-45df-9c20-0ff6aff6bc37` +I, [2018-08-06T19:53:17.374698 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-06T19:53:17.382603 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-06T19:53:17.382663 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-06T19:53:17.559345 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:53:17.575962 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:53:18.567089 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:53:18.576698 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:53:19.572971 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:53:19.577279 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:53:20.573457 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:53:20.578021 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:53:21.891454 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:53:21.606618 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:53:23.046634 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:53:23.004493 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:53:24.063428 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:53:24.063698 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:53:25.068906 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:53:25.069285 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:53:26.070408 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:53:26.071208 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:53:27.071788 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:53:27.072056 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:53:27.240017 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-06T19:53:27.395119 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-06T19:53:28.064199 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-06T19:53:28.078879 #6] INFO -- : Seeking section_change/0 to offset 0 +E, [2018-08-06T19:53:29.220949 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- ArgumentError: method accepts 1-3 arguments. +/usr/local/bundle/gems/plezi-0.16.1/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.1/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T19:53:29.221006 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-06T19:53:29.232106 #6] ERROR -- : Client fetch loop error: method accepts 1-3 arguments. +I, [2018-08-06T19:53:29.232561 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-06T19:53:29.234517 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-08-06T19:53:29.364887 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- ArgumentError: method accepts 1-3 arguments. +/usr/local/bundle/gems/plezi-0.16.1/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.1/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T19:53:29.427568 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-06T19:53:29.450730 #6] ERROR -- : Client fetch loop error: method accepts 1-3 arguments. +I, [2018-08-06T19:53:29.451098 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-06T19:53:29.453813 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-06T19:53:29.455184 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:53:29.479023 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:53:30.234713 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-06T19:53:30.265605 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-893f3e7c-d932-4e18-869a-89f51a089c59` +I, [2018-08-06T19:53:30.265729 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-06T19:53:30.274584 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-06T19:53:30.274684 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-06T19:53:30.454045 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-06T19:53:30.455592 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:53:30.462523 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-0da12ff8-7935-4e7b-8a92-0637d38b3b81` +I, [2018-08-06T19:53:30.462578 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-06T19:53:30.472248 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-06T19:53:30.472320 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-06T19:53:30.479370 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:53:31.462287 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:53:31.480530 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:53:32.465275 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:53:32.482910 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:53:33.483484 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:53:33.484407 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:53:34.484599 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:53:34.484897 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:53:35.485374 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:53:35.485635 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:53:36.486163 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:53:36.487178 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:53:37.538515 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:53:37.542614 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:53:38.655023 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:53:38.662886 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:53:39.675717 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:53:39.704653 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:53:40.480646 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-06T19:53:40.785615 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:53:40.790012 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:53:41.009930 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-06T19:53:41.786358 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-06T19:53:41.828066 #6] INFO -- : Seeking section_change/0 to offset 0 +E, [2018-08-06T19:53:42.964463 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- ArgumentError: method accepts 1-3 arguments. +/usr/local/bundle/gems/plezi-0.16.1/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.1/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T19:53:42.964945 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-06T19:53:43.024245 #6] ERROR -- : Client fetch loop error: method accepts 1-3 arguments. +I, [2018-08-06T19:53:43.024710 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-06T19:53:43.140189 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-08-06T19:53:43.247951 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- ArgumentError: method accepts 1-3 arguments. +/usr/local/bundle/gems/plezi-0.16.1/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.1/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T19:53:43.256308 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-06T19:53:43.262453 #6] ERROR -- : Client fetch loop error: method accepts 1-3 arguments. +I, [2018-08-06T19:53:43.262757 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-06T19:53:43.263918 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-06T19:53:43.628475 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:53:43.971130 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:53:44.278728 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-06T19:53:44.281033 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-06T19:53:44.417854 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-7698e68e-0fba-481f-8859-9edb8b686d38` +I, [2018-08-06T19:53:44.417924 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-06T19:53:44.446649 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-06T19:53:44.446847 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-06T19:53:44.751946 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:53:44.813723 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-34751a95-4417-4208-ad08-b44dcf88fdea` +I, [2018-08-06T19:53:44.814115 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-06T19:53:45.173348 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-06T19:53:45.173435 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-06T19:53:45.174299 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:53:45.929417 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:53:46.174635 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:53:46.932557 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:53:47.183607 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:53:47.932896 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:53:48.197974 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:53:48.933355 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:53:49.199559 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:53:49.933968 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:53:50.200192 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:53:50.934617 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:53:51.200545 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:53:51.934932 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:53:52.201024 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:53:52.936623 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:53:53.192870 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-06T19:53:53.201355 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-06T19:53:53.938226 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:53:54.465398 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-06T19:53:54.940338 #6] INFO -- : Seeking section_change/0 to offset 0 +E, [2018-08-06T19:53:55.195357 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- ArgumentError: method accepts 1-3 arguments. +/usr/local/bundle/gems/plezi-0.16.1/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.1/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T19:53:55.197555 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-06T19:53:55.201154 #6] ERROR -- : Client fetch loop error: method accepts 1-3 arguments. +I, [2018-08-06T19:53:55.201427 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-06T19:53:55.202982 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-06T19:53:55.729408 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:53:56.203247 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-06T19:53:56.212347 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-684420ec-9e9d-42f7-b65b-192efbbb5b06` +I, [2018-08-06T19:53:56.212404 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-06T19:53:56.216898 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-06T19:53:56.216978 #6] WARN -- : Not fetching from course_change/0 due to pause +E, [2018-08-06T19:53:56.468320 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- ArgumentError: method accepts 1-3 arguments. +/usr/local/bundle/gems/plezi-0.16.1/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.1/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T19:53:56.468578 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-06T19:53:56.475209 #6] ERROR -- : Client fetch loop error: method accepts 1-3 arguments. +I, [2018-08-06T19:53:56.475518 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-06T19:53:56.476758 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-06T19:53:56.523757 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:53:56.730700 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:53:57.477240 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-06T19:53:57.482821 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-6c4a5c1d-fbd2-43ce-8ab3-712f44c8ffb5` +I, [2018-08-06T19:53:57.482883 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-06T19:53:57.491448 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-06T19:53:57.491514 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-06T19:53:57.525140 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:53:57.731138 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:53:58.488888 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:53:58.694916 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:53:59.490435 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:53:59.695500 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:54:00.491106 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:54:00.695976 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:54:01.492328 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:54:01.696754 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:54:02.492899 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:54:02.697640 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:54:03.494032 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:54:03.698257 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:54:04.494610 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:54:04.699181 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:54:05.494981 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:54:05.699934 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:54:06.198701 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-06T19:54:06.495809 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:54:06.700184 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-06T19:54:07.463918 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-06T19:54:07.496631 #6] INFO -- : Seeking section_change/0 to offset 0 +E, [2018-08-06T19:54:08.204926 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- ArgumentError: method accepts 1-3 arguments. +/usr/local/bundle/gems/plezi-0.16.1/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.1/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T19:54:08.208880 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-06T19:54:08.211524 #6] ERROR -- : Client fetch loop error: method accepts 1-3 arguments. +I, [2018-08-06T19:54:08.212281 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-06T19:54:08.213287 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-06T19:54:08.251680 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:54:09.213789 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-06T19:54:09.222730 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-6ebe35bb-184b-439b-96ef-09461e932419` +I, [2018-08-06T19:54:09.222774 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-06T19:54:09.229073 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-06T19:54:09.229134 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-06T19:54:09.252178 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-06T19:54:09.467492 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- ArgumentError: method accepts 1-3 arguments. +/usr/local/bundle/gems/plezi-0.16.1/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.1/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T19:54:09.467553 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-06T19:54:09.478961 #6] ERROR -- : Client fetch loop error: method accepts 1-3 arguments. +I, [2018-08-06T19:54:09.479133 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-06T19:54:09.480917 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-06T19:54:09.584401 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:54:10.252709 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:54:10.481201 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-06T19:54:10.485361 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-673ce9bf-efdd-4cd3-85da-ab90deef6dbe` +I, [2018-08-06T19:54:10.485406 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-06T19:54:10.489442 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-06T19:54:10.489504 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-06T19:54:10.584697 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:54:11.254006 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:54:11.585362 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:54:12.254482 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:54:12.586338 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:54:13.254859 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:54:13.586735 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:54:14.255314 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:54:14.587379 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:54:15.255826 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:54:15.588530 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:54:16.256903 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:54:16.588845 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:54:17.257389 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:54:17.590140 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:54:18.260295 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:54:18.599550 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:54:19.322549 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-06T19:54:19.332672 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:54:19.600755 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:54:20.333020 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-06T19:54:20.500630 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-06T19:54:20.603124 #6] INFO -- : Seeking section_change/0 to offset 0 +E, [2018-08-06T19:54:21.348967 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- ArgumentError: method accepts 1-3 arguments. +/usr/local/bundle/gems/plezi-0.16.1/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.1/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T19:54:21.351965 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-06T19:54:21.474861 #6] ERROR -- : Client fetch loop error: method accepts 1-3 arguments. +I, [2018-08-06T19:54:21.475089 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-06T19:54:21.479255 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-06T19:54:21.889361 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:54:22.479681 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-06T19:54:22.484107 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-45b1c53c-d2ed-4442-a426-50e71f247fee` +I, [2018-08-06T19:54:22.484220 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-06T19:54:22.488733 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-06T19:54:22.488829 #6] WARN -- : Not fetching from course_change/0 due to pause +E, [2018-08-06T19:54:22.504062 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- ArgumentError: method accepts 1-3 arguments. +/usr/local/bundle/gems/plezi-0.16.1/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.1/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T19:54:22.504183 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-06T19:54:22.507312 #6] ERROR -- : Client fetch loop error: method accepts 1-3 arguments. +I, [2018-08-06T19:54:22.507531 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-06T19:54:22.508511 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-06T19:54:22.750095 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:54:22.890363 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:54:23.509204 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-06T19:54:23.512727 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-e9ff2644-2745-48c6-9068-6c35ae2a0045` +I, [2018-08-06T19:54:23.512785 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-06T19:54:23.516463 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-06T19:54:23.516592 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-06T19:54:23.750877 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:54:23.892197 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:54:24.752447 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:54:24.892784 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:54:25.752792 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:54:25.894174 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:54:26.753137 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:54:26.896346 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:54:27.753474 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:54:27.856291 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:54:28.712287 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:54:28.856655 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:54:29.712851 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:54:29.857101 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:54:30.713241 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:54:30.857412 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:54:31.713698 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:54:31.858035 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:54:32.455950 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-06T19:54:32.714301 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:54:32.858361 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-06T19:54:33.483320 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-06T19:54:33.714829 #6] INFO -- : Seeking section_change/0 to offset 0 +E, [2018-08-06T19:54:34.458983 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- ArgumentError: method accepts 1-3 arguments. +/usr/local/bundle/gems/plezi-0.16.1/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.1/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T19:54:34.461069 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-06T19:54:34.466270 #6] ERROR -- : Client fetch loop error: method accepts 1-3 arguments. +I, [2018-08-06T19:54:34.466448 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-06T19:54:34.468971 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-06T19:54:34.591498 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:54:35.469677 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-06T19:54:35.472642 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-75cc98cc-3184-4d5c-9c1f-bd07d4e9a1ea` +I, [2018-08-06T19:54:35.472699 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-06T19:54:35.477039 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-06T19:54:35.477101 #6] WARN -- : Not fetching from course_change/0 due to pause +E, [2018-08-06T19:54:35.485482 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- ArgumentError: method accepts 1-3 arguments. +/usr/local/bundle/gems/plezi-0.16.1/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.1/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T19:54:35.485540 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-06T19:54:35.488228 #6] ERROR -- : Client fetch loop error: method accepts 1-3 arguments. +I, [2018-08-06T19:54:35.488431 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-06T19:54:35.489597 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-06T19:54:35.592268 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:54:35.820151 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:54:36.523233 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-06T19:54:36.529712 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-af379c69-aa72-433f-9c0d-265e821b5f48` +I, [2018-08-06T19:54:36.529780 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-06T19:54:36.545188 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-06T19:54:36.545588 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-06T19:54:36.593309 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:54:36.820896 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:54:37.594050 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:54:37.821907 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:54:38.594621 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:54:38.822232 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:54:39.602073 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:54:39.827883 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:54:40.695773 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:54:40.830106 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:54:41.701272 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:54:41.837048 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:54:42.704116 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:54:42.840009 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:54:43.707565 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:54:44.775752 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:54:44.842899 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:54:45.652965 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-06T19:54:45.892654 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:54:45.993102 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:54:47.019659 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-06T19:54:47.123393 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:54:48.612945 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:54:49.304043 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-06T19:54:49.639993 #6] INFO -- : Seeking section_change/0 to offset 0 +E, [2018-08-06T19:54:53.615137 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- ArgumentError: method accepts 1-3 arguments. +/usr/local/bundle/gems/plezi-0.16.1/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.1/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T19:54:53.615947 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-06T19:54:53.732861 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- ArgumentError: method accepts 1-3 arguments. +/usr/local/bundle/gems/plezi-0.16.1/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.1/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T19:54:53.799303 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-06T19:54:53.915381 #6] ERROR -- : Client fetch loop error: method accepts 1-3 arguments. +I, [2018-08-06T19:54:53.916785 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-06T19:54:53.949962 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-08-06T19:54:53.988636 #6] ERROR -- : Client fetch loop error: method accepts 1-3 arguments. +I, [2018-08-06T19:54:53.989029 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-06T19:54:54.014475 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-06T19:54:54.014784 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-06T19:54:54.366906 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:54:54.951773 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-06T19:54:55.028608 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:54:55.029254 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-06T19:54:55.374128 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:54:56.013305 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-2ac0bf4e-dddb-43e6-90e9-37bb925e7cb5` +I, [2018-08-06T19:54:56.013448 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-06T19:54:56.132403 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:54:56.132996 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-06T19:54:56.133240 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-06T19:54:56.319577 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-ddf387f1-a687-4316-882f-2fbb0a5b28bf` +I, [2018-08-06T19:54:56.319778 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-06T19:54:56.323976 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-06T19:54:56.324242 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-06T19:54:56.374883 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:54:57.133046 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:54:57.377583 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:54:58.101640 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:54:58.358546 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:54:59.104924 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:54:59.400611 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:55:00.110243 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:55:00.573191 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:55:02.928807 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:55:03.382999 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:55:03.938330 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:55:04.390450 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:55:04.967820 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:55:05.394427 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:55:05.436298 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-06T19:55:05.522771 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-06T19:55:05.968475 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-06T19:55:06.395453 #6] INFO -- : Seeking course_change/0 to offset 0 +E, [2018-08-06T19:55:07.503846 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- ArgumentError: method accepts 1-3 arguments. +/usr/local/bundle/gems/plezi-0.16.1/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.1/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T19:55:07.504000 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-06T19:55:07.511665 #6] ERROR -- : Client fetch loop error: method accepts 1-3 arguments. +I, [2018-08-06T19:55:07.512198 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-06T19:55:07.515303 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-08-06T19:55:07.532993 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- ArgumentError: method accepts 1-3 arguments. +/usr/local/bundle/gems/plezi-0.16.1/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.1/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T19:57:12.703541 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-06T19:57:12.703639 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-06T19:57:12.707927 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-06T19:57:12.707984 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-06T19:57:12.716253 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +E, [2018-08-06T19:57:12.716377 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +E, [2018-08-06T19:57:12.725159 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +E, [2018-08-06T19:57:12.725291 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +E, [2018-08-06T19:57:17.718786 #6] 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-08-06T19:57:17.723818 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-06T19:57:17.724028 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-06T19:57:17.731033 #6] 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-08-06T19:57:17.753185 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-06T19:57:17.753324 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-06T19:57:17.779336 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +E, [2018-08-06T19:57:17.779794 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +E, [2018-08-06T19:57:17.780199 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +E, [2018-08-06T19:57:17.780315 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +E, [2018-08-06T19:57:22.780504 #6] 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 +E, [2018-08-06T19:57:22.781650 #6] 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-08-06T19:57:22.834026 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-06T19:57:22.835321 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-06T19:57:22.870622 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-06T19:57:22.872325 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-06T19:57:22.875222 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +E, [2018-08-06T19:57:22.877134 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +E, [2018-08-06T19:57:22.901141 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +E, [2018-08-06T19:57:22.901463 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +E, [2018-08-06T19:57:27.840586 #6] 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-08-06T19:57:27.858678 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-06T19:57:27.858852 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-06T19:57:27.868079 #6] 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-08-06T19:57:27.872425 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-06T19:57:27.872609 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-06T19:57:30.283921 #6] ERROR -- : No brokers in cluster +E, [2018-08-06T19:57:30.291542 #6] ERROR -- : No brokers in cluster +E, [2018-08-06T19:57:35.296787 #6] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: + +I, [2018-08-06T19:57:35.307379 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-06T19:57:35.307450 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-06T19:57:35.307724 #6] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: + +I, [2018-08-06T19:57:35.309802 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-06T19:57:35.309872 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-06T19:57:35.663383 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-06T19:57:35.663813 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-06T19:57:35.664067 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-06T19:57:35.664508 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-06T19:57:35.712299 #6] INFO -- : Will fetch at most 1048576 bytes at a time per partition from section_change +I, [2018-08-06T19:57:35.714011 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-06T19:57:35.715075 #6] INFO -- : Will fetch at most 1048576 bytes at a time per partition from course_change +I, [2018-08-06T19:57:35.715315 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-06T19:57:35.729224 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-06T19:57:35.729447 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:57:35.729716 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-06T19:57:35.729917 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:57:36.730968 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:57:36.731290 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:57:37.732417 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:57:37.733086 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:57:38.274301 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-e96fc6b1-5fa3-4981-a895-7ecd37e2a97d` +I, [2018-08-06T19:57:38.274392 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-06T19:57:38.291558 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-3d986a0e-25b1-41ff-8431-c95e820f79ec` +I, [2018-08-06T19:57:38.291626 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-06T19:57:38.733993 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:57:38.734185 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:57:39.275322 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-06T19:57:39.283216 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-06T19:57:39.292404 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-06T19:57:39.318273 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-06T19:57:39.438829 #6] INFO -- : Partitions assigned for `section_change`: 0 +I, [2018-08-06T19:57:39.485287 #6] INFO -- : Partitions assigned for `course_change`: 0 +I, [2018-08-06T19:57:39.735025 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:57:39.735227 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:57:40.736480 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-06T19:57:40.736609 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-06T19:57:40.737750 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-06T19:57:40.743869 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-06T19:57:40.744151 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-06T19:57:40.744214 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-06T19:57:40.788192 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-06T19:57:40.846668 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +E, [2018-08-06T19:57:43.802146 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- ArgumentError: message is required. +/usr/local/bundle/gems/plezi-0.16.1/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.1/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T19:57:43.802298 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-06T19:57:43.802705 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- ArgumentError: message is required. +/usr/local/bundle/gems/plezi-0.16.1/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.1/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T19:57:43.802791 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-06T19:57:43.954260 #6] ERROR -- : Client fetch loop error: message is required. +I, [2018-08-06T19:57:43.954540 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-06T19:57:43.956935 #6] ERROR -- : Client fetch loop error: message is required. +I, [2018-08-06T19:57:43.957150 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-06T19:57:43.968412 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-08-06T19:57:43.969852 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-06T19:57:44.042834 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:57:44.244024 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:57:44.969397 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-06T19:57:44.970228 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-06T19:57:45.043799 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:57:45.047778 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-5676ac28-c114-44c7-80c1-f62bf53c7836` +I, [2018-08-06T19:57:45.047835 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-06T19:57:45.065451 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-06T19:57:45.067751 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-06T19:57:45.073264 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-44c2c4f2-73b2-4825-986b-33f6747a58ea` +I, [2018-08-06T19:57:45.073902 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-06T19:57:45.113458 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-06T19:57:45.113600 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-06T19:57:45.244887 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:57:46.044424 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:57:46.245468 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:57:47.044997 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:57:47.246291 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:57:48.046091 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:57:48.247317 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:57:49.046674 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:57:49.247826 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:57:50.047515 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:57:50.248596 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:57:51.048137 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:57:51.264182 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:57:52.051383 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:57:52.267213 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:57:53.052801 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:57:53.267915 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:57:54.053401 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:57:54.268516 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:57:55.053902 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:57:55.138819 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-06T19:57:55.140827 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-06T19:57:55.269051 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-06T19:57:56.054732 #6] INFO -- : Seeking section_change/0 to offset 0 +E, [2018-08-06T19:57:57.153711 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- ArgumentError: message is required. +/usr/local/bundle/gems/plezi-0.16.1/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.1/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T19:57:57.153770 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-06T19:57:57.170738 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- ArgumentError: message is required. +/usr/local/bundle/gems/plezi-0.16.1/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.1/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T19:57:57.173623 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-06T19:57:57.193999 #6] ERROR -- : Client fetch loop error: message is required. +I, [2018-08-06T19:57:57.204766 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-06T19:57:57.205091 #6] ERROR -- : Client fetch loop error: message is required. +I, [2018-08-06T19:57:57.205269 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-06T19:57:57.221440 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-08-06T19:57:57.221611 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-06T19:57:57.249011 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:57:57.495763 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:57:58.196369 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-06T19:57:58.216685 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-06T19:57:58.226652 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:57:58.287918 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-37e3b4de-f59a-455d-b86c-38256d5c23e9` +I, [2018-08-06T19:57:58.287988 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-06T19:57:58.371066 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-5ff014e9-282b-448c-acff-cdd68b5c9f8e` +I, [2018-08-06T19:57:58.371133 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-06T19:57:58.384986 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-06T19:57:58.385127 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-06T19:57:58.469451 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:57:58.479031 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-06T19:57:58.479169 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-06T19:57:59.227066 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:57:59.470968 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:58:00.227859 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:58:00.479530 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:58:01.228708 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:58:01.520753 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:58:02.229184 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:58:02.521108 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:58:03.594624 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:58:03.595060 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:58:04.595496 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:58:04.652196 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:58:05.625538 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:58:05.658630 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:58:06.626985 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:58:06.664778 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:58:07.628049 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:58:07.665427 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:58:08.633571 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:58:08.666972 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:58:08.680632 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-06T19:58:08.688879 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-06T19:58:09.634515 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-06T19:58:09.748523 #6] INFO -- : Seeking section_change/0 to offset 0 +E, [2018-08-06T19:58:10.697837 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- ArgumentError: message is required. +/usr/local/bundle/gems/plezi-0.16.1/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.1/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T19:58:10.697922 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-06T19:58:10.701641 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- ArgumentError: message is required. +/usr/local/bundle/gems/plezi-0.16.1/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.1/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T19:58:10.701973 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-06T19:58:10.729089 #6] ERROR -- : Client fetch loop error: message is required. +I, [2018-08-06T19:58:10.729382 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-06T19:58:10.735391 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-08-06T19:58:10.736793 #6] ERROR -- : Client fetch loop error: message is required. +I, [2018-08-06T19:58:10.737115 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-06T19:58:10.741336 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-06T19:58:10.879138 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:58:10.897035 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:58:11.737093 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-06T19:58:11.742087 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-06T19:58:11.744204 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-018b64a7-0a77-46f8-81b2-e34bbd8def69` +I, [2018-08-06T19:58:11.744258 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-06T19:58:11.747337 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-2544e3f1-fa4b-4a50-8b08-ee0d76f43763` +I, [2018-08-06T19:58:11.747438 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-06T19:58:11.748948 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-06T19:58:11.749023 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-06T19:58:11.750382 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-06T19:58:11.750485 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-06T19:58:11.880756 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:58:11.902295 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:58:12.883687 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:58:12.905017 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:58:13.884598 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:58:13.906343 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:58:14.885585 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:58:14.906786 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:58:15.886346 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:58:15.907993 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:58:16.888119 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:58:16.908386 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:58:17.889526 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:58:17.909426 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:58:18.890948 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:58:18.912806 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:58:19.891393 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:58:19.928986 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:58:20.892782 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:58:20.932753 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:58:21.768471 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-06T19:58:21.780708 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-06T19:58:21.894562 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-06T19:58:21.934226 #6] INFO -- : Seeking course_change/0 to offset 0 +E, [2018-08-06T19:58:23.863440 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- ArgumentError: message is required. +/usr/local/bundle/gems/plezi-0.16.1/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.1/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T19:58:23.993279 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-06T19:58:23.868442 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- ArgumentError: message is required. +/usr/local/bundle/gems/plezi-0.16.1/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.1/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T19:58:24.026778 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-06T19:58:24.153943 #6] ERROR -- : Client fetch loop error: message is required. +I, [2018-08-06T19:58:24.160997 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-06T19:58:24.162366 #6] ERROR -- : Client fetch loop error: message is required. +I, [2018-08-06T19:58:24.162567 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-06T19:58:24.177738 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-08-06T19:58:24.253358 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-06T19:58:24.299066 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:58:25.178967 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-06T19:58:25.315604 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-06T19:58:25.683797 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:58:26.690641 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:58:27.156951 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:58:27.190528 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-7703fc6c-555d-42d5-93ab-a3ab1d33eabf` +I, [2018-08-06T19:58:27.190623 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-06T19:58:27.484023 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-5d9ba987-0216-461f-9bd3-9d7544110c22` +I, [2018-08-06T19:58:27.484203 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-06T19:58:27.693073 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:58:28.153930 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:58:30.318920 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:58:30.329447 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:58:31.770592 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:58:32.045707 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-06T19:58:32.046213 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-06T19:58:32.933444 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:58:33.025433 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-06T19:58:33.025656 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-06T19:58:33.027367 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:58:34.026473 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:58:34.409972 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:58:34.721401 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-06T19:58:35.081320 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:58:35.725430 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:58:35.983132 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-06T19:58:36.421429 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:58:37.256613 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:58:37.450253 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:58:38.311132 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-06T19:58:38.452566 #6] INFO -- : Seeking course_change/0 to offset 0 +E, [2018-08-06T19:58:41.155595 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- ArgumentError: message is required. +/usr/local/bundle/gems/plezi-0.16.1/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.1/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T19:58:41.377799 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-06T19:58:43.080885 #6] ERROR -- : Client fetch loop error: message is required. +I, [2018-08-06T19:58:43.088207 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-06T19:58:43.135036 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-06T19:58:43.157195 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-08-06T19:58:43.904854 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- ArgumentError: message is required. +/usr/local/bundle/gems/plezi-0.16.1/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.1/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T19:58:43.909234 #6] INFO -- : Leaving group `notifications_notifications` +I, [2018-08-06T19:58:44.645701 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:58:44.645847 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-06T19:58:44.647020 #6] ERROR -- : Client fetch loop error: message is required. +I, [2018-08-06T19:58:44.647361 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-06T19:58:44.714954 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-06T19:58:44.729921 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-06T19:58:44.936474 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-3cddb668-7d48-4c12-9acc-fd9c4dbf04ae` +I, [2018-08-06T19:58:44.936544 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-06T19:58:44.957066 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-06T19:58:44.957167 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-06T19:58:45.646992 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:58:45.715411 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:58:45.730270 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-06T19:58:45.771214 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-abf14f8f-f66c-4168-ad94-c4769015c170` +I, [2018-08-06T19:58:45.771480 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-06T19:58:45.790123 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-06T19:58:45.790232 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-06T19:58:46.693788 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:58:46.716714 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:58:47.694384 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:58:47.717598 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:58:49.093263 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:58:49.094289 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:58:51.671152 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:58:51.671846 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:58:53.449888 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:58:53.452851 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:58:53.732198 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-06T19:58:54.451218 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-06T19:58:54.456565 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:58:55.457746 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T19:58:55.734190 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +E, [2018-08-06T19:58:56.212124 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- ArgumentError: message is required. +/usr/local/bundle/gems/plezi-0.16.1/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.1/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T20:01:55.154757 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-06T20:01:55.162219 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-06T20:01:55.162272 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-06T20:01:55.161345 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-06T20:01:55.165969 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-06T20:01:55.166097 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-06T20:01:55.170638 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-06T20:01:55.170735 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-06T20:02:00.131552 #6] 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.13:9094 +I, [2018-08-06T20:02:00.133817 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-06T20:02:00.133878 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-06T20:02:00.135402 #6] 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.13:9094 +I, [2018-08-06T20:02:00.136277 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-06T20:02:00.136331 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-06T20:02:00.137450 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-06T20:02:00.137560 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-06T20:02:00.137807 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-06T20:02:00.137888 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-06T20:02:05.161810 #6] 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.13:9094 +E, [2018-08-06T20:02:05.174735 #6] 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.13:9094 +I, [2018-08-06T20:02:05.182885 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-06T20:02:05.183059 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-06T20:02:05.186021 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-06T20:02:05.186260 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-06T20:02:05.189171 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-06T20:02:05.189464 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-06T20:02:05.224196 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-06T20:02:05.224357 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-06T20:02:10.253291 #6] 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.13:9094 +I, [2018-08-06T20:02:10.293460 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-06T20:02:10.293710 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-06T20:02:10.294972 #6] 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.13:9094 +I, [2018-08-06T20:02:10.383323 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-06T20:02:10.384057 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-06T20:02:10.697019 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-06T20:02:10.709065 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-06T20:02:10.710405 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-06T20:02:10.710606 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-06T20:02:15.710358 #6] 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.13:9094 +E, [2018-08-06T20:02:15.711980 #6] 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.13:9094 +I, [2018-08-06T20:02:15.727109 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-06T20:02:15.727357 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-06T20:02:15.748469 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-06T20:02:15.748582 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-06T20:02:16.230013 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-06T20:02:16.234251 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-06T20:02:16.259930 #6] INFO -- : Will fetch at most 1048576 bytes at a time per partition from section_change +I, [2018-08-06T20:02:16.260904 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-06T20:02:16.287904 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-06T20:02:16.294917 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:02:16.295141 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-06T20:02:16.298294 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-06T20:02:16.353782 #6] INFO -- : Will fetch at most 1048576 bytes at a time per partition from course_change +I, [2018-08-06T20:02:16.353959 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-06T20:02:16.368655 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-06T20:02:16.368787 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:02:17.296153 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:02:17.369140 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:02:18.296747 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:02:18.478331 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:02:19.298367 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:02:19.478797 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:02:20.300320 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:02:20.479569 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:02:21.301953 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:02:21.480020 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:02:22.302603 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:02:22.480430 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:02:23.303359 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:02:23.482491 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:02:24.312066 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:02:24.556896 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:02:25.325985 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:02:25.587285 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:02:26.157684 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-8e61efc9-bc76-405b-9844-3bcde2d67ed5` +I, [2018-08-06T20:02:26.157790 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-06T20:02:26.161246 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-32509ed1-437c-46fc-ae9b-cf3d0689d297` +I, [2018-08-06T20:02:26.161298 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-06T20:02:26.337833 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:02:26.588421 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:02:27.168343 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-06T20:02:27.173329 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-06T20:02:27.208380 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-06T20:02:27.308968 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-06T20:02:27.389350 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:02:27.588890 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:02:27.664095 #6] INFO -- : Partitions assigned for `section_change`: 0 +I, [2018-08-06T20:02:27.665772 #6] INFO -- : Partitions assigned for `course_change`: 0 +I, [2018-08-06T20:02:28.354684 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-06T20:02:28.354850 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-06T20:02:28.354901 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-06T20:02:28.375881 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-06T20:02:28.554810 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-06T20:02:28.554954 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-06T20:02:28.555006 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-06T20:02:28.579230 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +E, [2018-08-06T20:02:32.034627 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- ArgumentError: message is required. +/usr/local/bundle/gems/plezi-0.16.1/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.1/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T20:02:32.047545 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-06T20:02:32.048829 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- ArgumentError: message is required. +/usr/local/bundle/gems/plezi-0.16.1/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.1/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T20:02:32.052620 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-06T20:02:32.092581 #6] ERROR -- : Client fetch loop error: message is required. +I, [2018-08-06T20:02:32.093017 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-06T20:02:32.098082 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-06T20:02:32.101203 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-08-06T20:02:32.113295 #6] ERROR -- : Client fetch loop error: message is required. +I, [2018-08-06T20:02:32.113587 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-06T20:02:32.121018 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-06T20:02:32.152830 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:02:33.098623 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:02:33.101484 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-06T20:02:33.121371 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-06T20:02:33.153969 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:02:33.168810 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-4810bb5b-ecca-4854-a8b9-08c28656ba3b` +I, [2018-08-06T20:02:33.169244 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-06T20:02:33.171209 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-c45fab12-723d-452b-a424-5bd60649e7e1` +I, [2018-08-06T20:02:33.171267 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-06T20:02:33.191085 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-06T20:02:33.191223 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-06T20:02:33.201287 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-06T20:02:33.201640 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-06T20:02:34.099253 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:02:34.154324 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:02:35.100451 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:02:35.155490 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:02:36.100850 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:02:36.156498 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:02:37.126674 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:02:37.157130 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:02:38.134650 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:02:38.161346 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:02:39.206968 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:02:39.207585 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:02:40.209248 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:02:40.209462 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:02:41.209771 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:02:41.209951 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:02:42.210186 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:02:42.210343 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:02:43.212376 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:02:43.213065 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:02:43.822162 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-06T20:02:44.001151 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-06T20:02:44.213386 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-06T20:02:44.214019 #6] INFO -- : Seeking course_change/0 to offset 0 +E, [2018-08-06T20:02:45.912273 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- ArgumentError: message is required. +/usr/local/bundle/gems/plezi-0.16.1/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.1/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T20:02:45.912396 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-06T20:02:45.958013 #6] ERROR -- : Client fetch loop error: message is required. +I, [2018-08-06T20:02:45.982160 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-06T20:02:45.995300 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-08-06T20:02:46.013005 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- ArgumentError: message is required. +/usr/local/bundle/gems/plezi-0.16.1/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.1/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T20:02:46.013093 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-06T20:02:46.123524 #6] ERROR -- : Client fetch loop error: message is required. +I, [2018-08-06T20:02:46.123831 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-06T20:02:46.132664 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-06T20:02:46.145922 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-06T20:02:46.429949 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:02:46.995604 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-06T20:02:47.024241 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-e6d62aed-e633-4213-aaa4-123479782a2c` +I, [2018-08-06T20:02:47.024310 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-06T20:02:47.040208 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-06T20:02:47.040331 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-06T20:02:47.134273 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:02:47.147829 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-06T20:02:47.175371 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-6f5e814e-1995-4d9d-aebf-1486503baf4e` +I, [2018-08-06T20:02:47.175457 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-06T20:02:47.198294 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-06T20:02:47.198387 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-06T20:02:47.431436 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:02:48.135111 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:02:48.432187 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:02:49.145607 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:02:50.626083 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:02:52.035688 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:02:52.058773 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:02:53.037467 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:02:53.068495 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:02:54.060648 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:02:54.109679 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:02:55.067058 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:02:55.111864 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:02:56.068777 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:02:56.112444 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:02:57.007238 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-06T20:02:57.025801 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-06T20:02:57.069579 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:02:57.113251 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:02:58.114782 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-06T20:02:58.145980 #6] INFO -- : Seeking section_change/0 to offset 0 +E, [2018-08-06T20:02:59.183703 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- ArgumentError: message is required. +/usr/local/bundle/gems/plezi-0.16.1/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.1/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T20:02:59.197827 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-06T20:02:59.210855 #6] ERROR -- : Client fetch loop error: message is required. +I, [2018-08-06T20:02:59.213912 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-06T20:02:59.218195 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-08-06T20:02:59.264397 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- ArgumentError: message is required. +/usr/local/bundle/gems/plezi-0.16.1/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.1/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T20:02:59.264534 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-06T20:02:59.270726 #6] ERROR -- : Client fetch loop error: message is required. +I, [2018-08-06T20:02:59.271846 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-06T20:02:59.273311 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-06T20:02:59.290711 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:02:59.326664 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:03:00.218627 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-06T20:03:00.236451 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-abd68b84-ef10-4f88-b298-6211c1cc2acf` +I, [2018-08-06T20:03:00.236540 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-06T20:03:00.248864 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-06T20:03:00.249143 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-06T20:03:00.273593 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-06T20:03:00.287957 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-4ed930fe-e350-49d6-858c-a6d151f363a4` +I, [2018-08-06T20:03:00.288292 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-06T20:03:00.291248 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:03:00.292184 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-06T20:03:00.299568 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-06T20:03:00.327869 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:03:01.306632 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:03:01.328397 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:03:02.308761 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:03:02.329267 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:03:03.309218 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:03:03.329953 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:03:04.676406 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:03:04.590489 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:03:05.677601 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:03:05.709946 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:03:06.678453 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:03:06.711018 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:03:07.745259 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:03:07.786922 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:03:08.768657 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:03:08.958917 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:03:09.679100 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-06T20:03:09.687849 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-06T20:03:09.873521 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:03:09.976485 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-06T20:03:10.903474 #6] INFO -- : Seeking section_change/0 to offset 0 +E, [2018-08-06T20:03:12.064674 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- ArgumentError: message is required. +/usr/local/bundle/gems/plezi-0.16.1/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.1/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T20:03:12.091574 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-06T20:03:12.366767 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- ArgumentError: message is required. +/usr/local/bundle/gems/plezi-0.16.1/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.1/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T20:03:12.366854 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-06T20:03:12.781140 #6] ERROR -- : Client fetch loop error: message is required. +I, [2018-08-06T20:03:12.783212 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-06T20:03:12.828949 #6] ERROR -- : Client fetch loop error: message is required. +I, [2018-08-06T20:03:12.829319 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-06T20:03:12.861906 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-06T20:03:12.863893 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-06T20:03:12.872872 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-06T20:03:12.880270 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-06T20:03:13.866539 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:03:13.906620 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:03:13.905413 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-06T20:03:13.905581 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-06T20:03:13.994632 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-74a7404d-94cf-44f1-9c95-b556fee0f4c1` +I, [2018-08-06T20:03:13.994816 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-06T20:03:14.211588 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-06T20:03:14.211880 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-06T20:03:14.272614 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-de3f0c1a-1024-43c7-9f29-dfd809d1b1ce` +I, [2018-08-06T20:03:14.273583 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-06T20:03:14.423734 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-06T20:03:14.423880 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-06T20:03:14.911323 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:03:14.920595 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:03:15.912040 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:03:15.935900 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:03:16.919942 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:03:16.936717 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:03:17.921270 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:03:17.937352 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:03:18.930082 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:03:18.939159 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:03:19.980826 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:03:19.983292 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:03:21.065179 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:03:21.066167 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:03:22.072925 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:03:22.073247 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:03:22.993363 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-06T20:03:23.074131 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-06T20:03:23.129069 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:03:24.129592 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:03:24.459344 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +E, [2018-08-06T20:03:25.055875 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- ArgumentError: message is required. +/usr/local/bundle/gems/plezi-0.16.1/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.1/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T20:03:25.073433 #6] INFO -- : Leaving group `notifications_notifications` +I, [2018-08-06T20:03:25.130310 #6] INFO -- : Seeking course_change/0 to offset 0 +E, [2018-08-06T20:03:25.157918 #6] ERROR -- : Client fetch loop error: message is required. +I, [2018-08-06T20:03:25.158949 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-06T20:03:25.184767 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-06T20:03:25.237954 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:03:26.191296 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-06T20:03:26.246290 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:03:26.332495 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-6a11b02b-9145-4eb8-b8d9-739d35b9f6ee` +I, [2018-08-06T20:03:26.332582 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-06T20:03:26.338500 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-06T20:03:26.338606 #6] WARN -- : Not fetching from section_change/0 due to pause +E, [2018-08-06T20:03:26.563728 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- ArgumentError: message is required. +/usr/local/bundle/gems/plezi-0.16.1/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.1/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T20:03:26.563899 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-06T20:03:26.841928 #6] ERROR -- : Client fetch loop error: message is required. +I, [2018-08-06T20:03:26.843058 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-06T20:03:26.866164 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-06T20:03:27.003202 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:03:27.246731 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:03:27.866791 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-06T20:03:27.860795 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-09b239a2-604b-4689-9d4c-161377429257` +I, [2018-08-06T20:03:27.860868 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-06T20:03:27.875827 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-06T20:03:27.875921 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-06T20:03:27.940544 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:03:28.183640 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:03:28.941423 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:03:29.184806 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:03:29.942467 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:03:30.185896 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:03:30.942954 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:03:31.187153 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:03:31.944088 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:03:32.187662 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:03:32.945460 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:03:33.188434 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:03:33.945854 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:03:34.188777 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:03:34.948401 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:03:35.189326 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:03:35.949706 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:03:36.189727 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:03:36.287594 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-06T20:03:36.950523 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:03:37.190729 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-06T20:03:37.916014 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-06T20:03:37.963070 #6] INFO -- : Seeking course_change/0 to offset 0 +E, [2018-08-06T20:03:38.318120 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- ArgumentError: message is required. +/usr/local/bundle/gems/plezi-0.16.1/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.1/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T20:07:22.184855 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-06T20:07:22.185015 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-06T20:07:22.186473 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-06T20:07:22.186543 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-06T20:07:22.198950 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-06T20:07:22.199189 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-06T20:07:22.200936 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-06T20:07:22.201049 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-06T20:07:27.200380 #6] 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.14:9094 +E, [2018-08-06T20:07:27.201816 #6] 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.14:9094 +I, [2018-08-06T20:07:27.694780 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-06T20:07:27.695004 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-06T20:07:27.709254 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-06T20:07:27.709347 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-06T20:07:27.731897 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-06T20:07:27.732249 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-06T20:07:27.928866 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-06T20:07:27.929098 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-06T20:07:32.690475 #6] 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.14:9094 +I, [2018-08-06T20:07:32.696142 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-06T20:07:32.696359 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-06T20:07:32.729817 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-06T20:07:32.745766 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-06T20:07:32.886991 #6] 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.14:9094 +I, [2018-08-06T20:07:32.890311 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-06T20:07:32.890369 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-06T20:07:32.891761 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-06T20:07:32.891977 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-06T20:07:37.789865 #6] 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.14:9094 +I, [2018-08-06T20:07:37.826522 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-06T20:07:37.826632 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-06T20:07:37.836809 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-06T20:07:37.854578 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-06T20:07:37.960223 #6] 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.14:9094 +I, [2018-08-06T20:07:38.144404 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-06T20:07:38.144503 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-06T20:07:38.155426 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-06T20:07:38.156492 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-06T20:07:42.871359 #6] 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.14:9094 +I, [2018-08-06T20:07:42.939137 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-06T20:07:42.939413 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-06T20:07:42.965334 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-06T20:07:42.965557 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-06T20:07:43.162324 #6] 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.14:9094 +I, [2018-08-06T20:07:43.203959 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-06T20:07:43.204108 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-06T20:07:43.238743 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-06T20:07:43.238909 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-06T20:07:47.986544 #6] 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.14:9094 +I, [2018-08-06T20:07:48.055377 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-06T20:07:48.055453 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-06T20:07:48.239601 #6] 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.14:9094 +I, [2018-08-06T20:07:48.242166 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-06T20:07:48.242248 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-06T20:07:51.285576 #6] ERROR -- : No brokers in cluster +E, [2018-08-06T20:07:51.286066 #6] ERROR -- : No brokers in cluster +E, [2018-08-06T20:07:56.292791 #6] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: + +I, [2018-08-06T20:07:56.315816 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-06T20:07:56.315912 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-06T20:07:56.316150 #6] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: + +I, [2018-08-06T20:07:56.321276 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-06T20:07:56.321345 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-06T20:07:56.512666 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-06T20:07:56.516049 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-06T20:07:56.525645 #6] INFO -- : Will fetch at most 1048576 bytes at a time per partition from course_change +I, [2018-08-06T20:07:56.527792 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-06T20:07:56.678073 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-06T20:07:56.680522 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:07:56.732586 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-06T20:07:56.732847 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-06T20:07:56.754259 #6] INFO -- : Will fetch at most 1048576 bytes at a time per partition from section_change +I, [2018-08-06T20:07:56.754426 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-06T20:07:56.767408 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-06T20:07:56.771935 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:07:57.682308 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:07:57.776285 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:07:58.654324 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:07:58.752533 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:07:59.655952 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:07:59.752991 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:08:00.662649 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:08:00.760556 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:08:01.663375 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:08:01.764073 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:08:02.664305 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:08:02.768198 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:08:03.666614 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:08:03.770132 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:08:04.676275 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:08:04.771084 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:08:05.677653 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:08:05.771478 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:08:06.450991 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-52de9a95-ac23-43ef-a451-9975d06d8ec6` +I, [2018-08-06T20:08:06.451365 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-06T20:08:06.474081 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-397c9609-b7a9-4ce3-9391-a6d0ba6d2a4e` +I, [2018-08-06T20:08:06.474150 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-06T20:08:06.685134 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:08:06.775445 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:08:07.809822 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-06T20:08:07.971528 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:08:08.042201 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-06T20:08:08.044350 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:08:08.421788 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-06T20:08:08.610543 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-06T20:08:08.972783 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:08:09.045433 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:08:09.338918 #6] INFO -- : Partitions assigned for `section_change`: 0 +I, [2018-08-06T20:08:09.388327 #6] INFO -- : Partitions assigned for `course_change`: 0 +I, [2018-08-06T20:08:10.118789 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:08:10.176227 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:08:11.120544 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-06T20:08:11.122184 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-06T20:08:11.122473 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-06T20:08:11.148634 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-06T20:08:11.177361 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-06T20:08:11.178441 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-06T20:08:11.178531 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-06T20:08:11.259943 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +E, [2018-08-06T20:08:18.496927 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- ArgumentError: message is required. +/usr/local/bundle/gems/plezi-0.16.1/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.1/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T20:08:18.505132 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-06T20:08:18.497786 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- ArgumentError: message is required. +/usr/local/bundle/gems/plezi-0.16.1/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.1/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T20:08:18.507958 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-06T20:08:18.577306 #6] ERROR -- : Client fetch loop error: message is required. +I, [2018-08-06T20:08:18.579261 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-06T20:08:18.586135 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-06T20:08:18.607402 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-06T20:08:18.609420 #6] ERROR -- : Client fetch loop error: message is required. +I, [2018-08-06T20:08:18.611560 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-06T20:08:18.617304 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-06T20:08:19.370212 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:08:19.586442 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-06T20:08:19.601118 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-1a458ac4-8b89-4410-bd4a-c526dc7739e3` +I, [2018-08-06T20:08:19.601182 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-06T20:08:19.608345 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:08:19.611272 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-06T20:08:19.612269 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-06T20:08:19.617935 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-06T20:08:19.821020 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-c5f9e740-0b48-42c2-a53c-aa361a8e48e6` +I, [2018-08-06T20:08:19.821089 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-06T20:08:19.927878 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-06T20:08:19.927967 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-06T20:08:20.373127 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:08:20.608806 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:08:21.379628 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:08:21.609728 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:08:22.381942 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:08:22.610136 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:08:23.382873 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:08:23.611307 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:08:24.383455 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:08:24.611708 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:08:25.384211 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:08:25.612249 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:08:26.385115 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:08:26.613296 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:08:27.385922 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:08:27.615713 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:08:28.353025 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:08:28.580007 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:08:29.354374 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:08:29.622134 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:08:29.844155 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-06T20:08:29.930955 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-06T20:08:30.360851 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-06T20:08:30.637248 #6] INFO -- : Seeking section_change/0 to offset 0 +E, [2018-08-06T20:08:31.961182 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- ArgumentError: message is required. +/usr/local/bundle/gems/plezi-0.16.1/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.1/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T20:08:31.965002 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-06T20:08:31.983881 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- ArgumentError: message is required. +/usr/local/bundle/gems/plezi-0.16.1/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.1/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T20:08:31.983950 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-06T20:08:31.989624 #6] ERROR -- : Client fetch loop error: message is required. +I, [2018-08-06T20:08:31.990110 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-06T20:08:31.990791 #6] ERROR -- : Client fetch loop error: message is required. +I, [2018-08-06T20:08:31.990970 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-06T20:08:31.992190 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-08-06T20:08:31.992597 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-06T20:08:32.182344 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:08:32.232937 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:08:32.992500 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-06T20:08:32.992880 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-06T20:08:33.017749 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-2d051feb-24ea-4758-877b-aae635ddf038` +I, [2018-08-06T20:08:33.017820 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-06T20:08:33.023971 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-06T20:08:33.024112 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-06T20:08:33.035804 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-3f643df3-f015-41ce-a457-7cca5b6b1f61` +I, [2018-08-06T20:08:33.035852 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-06T20:08:33.041224 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-06T20:08:33.041291 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-06T20:08:33.184126 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:08:33.234257 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:08:34.185273 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:08:34.235205 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:08:35.188080 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:08:35.236531 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:08:36.188863 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:08:36.237022 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:08:37.237998 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:08:37.270839 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:08:38.239259 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:08:38.271579 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:08:39.241490 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:08:39.272300 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:08:40.242093 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:08:40.273710 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:08:42.172034 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:08:42.175350 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:08:42.318291 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-06T20:08:42.931302 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-06T20:08:43.183877 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-06T20:08:43.216681 #6] INFO -- : Seeking section_change/0 to offset 0 +E, [2018-08-06T20:08:44.946627 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- ArgumentError: message is required. +/usr/local/bundle/gems/plezi-0.16.1/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.1/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T20:11:14.136661 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-06T20:11:14.136835 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-06T20:11:14.137712 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-06T20:11:14.137792 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-06T20:11:14.150111 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-06T20:11:14.152241 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-06T20:11:14.155734 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-06T20:11:14.155830 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-06T20:11:19.154721 #6] 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.14:9094 +I, [2018-08-06T20:11:19.159253 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-06T20:11:19.159448 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-06T20:11:19.161777 #6] 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.14:9094 +E, [2018-08-06T20:11:19.217304 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-06T20:11:19.217546 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +I, [2018-08-06T20:11:19.218369 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-06T20:11:19.218406 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-06T20:11:19.225302 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-06T20:11:19.225727 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-06T20:11:24.223867 #6] 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.14:9094 +I, [2018-08-06T20:11:24.226715 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-06T20:11:24.226856 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-06T20:11:24.227262 #6] 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.14:9094 +I, [2018-08-06T20:11:24.228302 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-06T20:11:24.228367 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-06T20:11:24.234503 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-06T20:11:24.235349 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-06T20:11:24.256992 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-06T20:11:24.257358 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-06T20:11:30.293809 #6] 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.14:9094 +I, [2018-08-06T20:11:30.662386 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-06T20:11:30.662687 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-06T20:11:30.696902 #6] 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.14:9094 +E, [2018-08-06T20:11:30.707633 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-06T20:11:30.707884 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +I, [2018-08-06T20:11:30.716356 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-06T20:11:30.716461 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-06T20:11:30.721995 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-06T20:11:30.722144 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-06T20:11:35.708496 #6] 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.14:9094 +I, [2018-08-06T20:11:35.714707 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-06T20:11:35.714925 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-06T20:11:35.718837 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-06T20:11:35.721332 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-06T20:11:35.722705 #6] 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.14:9094 +I, [2018-08-06T20:11:35.724913 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-06T20:11:35.725218 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-06T20:11:35.742213 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-06T20:11:35.742558 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-06T20:11:40.744555 #6] 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.14:9094 +I, [2018-08-06T20:11:40.753886 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-06T20:11:40.753975 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-06T20:11:40.739909 #6] 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.14:9094 +I, [2018-08-06T20:11:40.758972 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-06T20:11:40.759109 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-06T20:11:41.813857 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-06T20:11:41.815361 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-06T20:11:41.873305 #6] INFO -- : Will fetch at most 1048576 bytes at a time per partition from course_change +I, [2018-08-06T20:11:41.873757 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-06T20:11:42.009951 #6] ERROR -- : No brokers in cluster +I, [2018-08-06T20:11:42.157205 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-06T20:11:42.157422 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:11:43.157984 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:11:44.252438 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:11:45.289379 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:11:46.292917 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-06T20:11:47.012450 #6] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: + +I, [2018-08-06T20:11:47.062981 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-06T20:11:47.065395 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-06T20:11:47.295157 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:11:47.413892 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-06T20:11:47.418409 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-06T20:11:47.491331 #6] INFO -- : Will fetch at most 1048576 bytes at a time per partition from section_change +I, [2018-08-06T20:11:47.491661 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-06T20:11:47.538005 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-06T20:11:47.538544 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:11:48.295933 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:11:48.539307 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:11:49.298490 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:11:49.540111 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:11:50.301873 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:11:50.608365 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:11:51.373626 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:11:51.657171 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:11:52.380378 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:11:52.658427 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:11:53.381937 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:11:53.675561 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:11:54.216636 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-1b18f771-1231-44ae-b6d4-96292f417ada` +I, [2018-08-06T20:11:54.216727 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-06T20:11:54.262408 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-8b250828-9bfb-4f12-98e9-43c5a407e2fe` +I, [2018-08-06T20:11:54.262465 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-06T20:11:54.382387 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:11:54.676131 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:11:55.221815 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-06T20:11:55.243934 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-06T20:11:55.263287 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-06T20:11:55.310212 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-06T20:11:55.340214 #6] INFO -- : Partitions assigned for `section_change`: 0 +I, [2018-08-06T20:11:55.352081 #6] INFO -- : Partitions assigned for `course_change`: 0 +I, [2018-08-06T20:11:55.383933 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:11:55.677273 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-06T20:11:55.677443 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-06T20:11:55.677489 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-06T20:11:55.683136 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-06T20:11:56.384717 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-06T20:11:56.385332 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-06T20:11:56.385706 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-06T20:11:56.401265 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +E, [2018-08-06T20:11:59.596149 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- ArgumentError: message is required. +/usr/local/bundle/gems/plezi-0.16.1/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.1/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T20:11:59.596638 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-06T20:11:59.598036 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- ArgumentError: message is required. +/usr/local/bundle/gems/plezi-0.16.1/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.1/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T20:11:59.633660 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-06T20:11:59.709732 #6] ERROR -- : Client fetch loop error: message is required. +I, [2018-08-06T20:11:59.713082 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-06T20:11:59.720068 #6] ERROR -- : Client fetch loop error: message is required. +E, [2018-08-06T20:11:59.787561 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-06T20:11:59.798404 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-06T20:11:59.907831 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:12:01.080006 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-06T20:12:01.085501 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-06T20:12:01.085846 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-06T20:12:02.088147 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:12:02.088445 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-06T20:12:03.165451 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:12:03.986480 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:12:04.032218 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-7ec14a9a-b67b-458d-87e0-945dfb0660a5` +I, [2018-08-06T20:12:04.032344 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-06T20:12:04.176937 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:12:04.182217 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-15072450-e722-49e9-beee-dec00634b5f4` +I, [2018-08-06T20:12:04.413278 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-06T20:12:04.771468 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-06T20:12:04.771921 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-06T20:12:05.011258 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:12:05.184597 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:12:05.234402 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-06T20:12:05.234522 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-06T20:12:06.013885 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:12:06.185537 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:12:07.025032 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:12:07.186622 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:12:08.079128 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:12:08.194453 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:12:09.220796 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:12:09.221017 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:12:09.897611 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-06T20:12:09.998471 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-06T20:12:10.399930 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:12:10.421287 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-06T20:12:11.624424 #6] INFO -- : Seeking course_change/0 to offset 0 +E, [2018-08-06T20:12:12.255301 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- ArgumentError: message is required. +/usr/local/bundle/gems/plezi-0.16.1/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.1/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T20:12:12.255673 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-06T20:12:12.620202 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- ArgumentError: message is required. +/usr/local/bundle/gems/plezi-0.16.1/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.1/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T20:12:12.625707 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-06T20:12:13.110331 #6] ERROR -- : Client fetch loop error: message is required. +I, [2018-08-06T20:12:13.129578 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-06T20:12:13.157505 #6] ERROR -- : Client fetch loop error: message is required. +I, [2018-08-06T20:12:13.160559 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-06T20:12:13.196359 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:12:13.210685 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-06T20:12:13.355281 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-08-06T20:12:13.355516 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-06T20:12:14.229141 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:12:14.230175 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:12:14.360068 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-06T20:12:14.421358 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-06T20:12:14.622863 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-c6fa0da2-9092-4c78-a841-379264e028d9` +I, [2018-08-06T20:12:14.623602 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-06T20:12:14.642383 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-46d004a8-5e22-4d16-8283-0520a24e9f43` +I, [2018-08-06T20:12:14.642468 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-06T20:12:14.643310 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-06T20:12:14.643430 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-06T20:12:14.715866 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-06T20:12:14.716020 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-06T20:12:15.229746 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:12:15.231517 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:12:16.387847 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:12:16.420225 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:12:17.505141 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:12:17.505392 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:12:18.507978 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:12:18.534542 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:12:19.513820 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:12:19.535088 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:12:20.529674 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:12:20.537445 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:12:21.531577 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:12:21.538421 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:12:22.586538 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:12:22.814774 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:12:23.589086 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:12:23.851603 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:12:24.848887 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:12:24.877913 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:12:24.926273 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-06T20:12:25.116906 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-06T20:12:25.856436 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-06T20:12:25.888207 #6] INFO -- : Seeking course_change/0 to offset 0 +E, [2018-08-06T20:12:27.387467 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- ArgumentError: message is required. +/usr/local/bundle/gems/plezi-0.16.1/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.1/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T20:12:27.389251 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-06T20:12:27.754951 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- ArgumentError: message is required. +/usr/local/bundle/gems/plezi-0.16.1/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.1/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T20:12:27.755054 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-06T20:12:27.755684 #6] ERROR -- : Client fetch loop error: message is required. +I, [2018-08-06T20:12:27.848843 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-06T20:12:28.113781 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-06T20:12:28.356127 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-08-06T20:12:28.383334 #6] ERROR -- : Client fetch loop error: message is required. +I, [2018-08-06T20:12:28.568474 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:12:28.568633 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-06T20:12:28.630038 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-06T20:12:29.119949 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:12:29.357202 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-06T20:12:29.603194 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:12:29.604360 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-131f083b-5259-452f-8db1-f39a21a3ac6d` +I, [2018-08-06T20:12:29.604418 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-06T20:12:29.622140 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-06T20:12:29.622239 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-06T20:12:29.630414 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-06T20:12:29.703352 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-294d76fc-42b7-440e-a5da-8ccfdb0879a6` +I, [2018-08-06T20:12:29.703422 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-06T20:12:29.730087 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-06T20:12:29.730159 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-06T20:12:30.304553 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:12:30.636738 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:12:31.305080 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:12:31.639137 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:12:32.310542 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:12:32.641563 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:12:33.319531 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:12:33.642117 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:12:34.321432 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:12:34.654528 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:12:35.345746 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:12:35.655747 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:12:36.346502 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:12:36.663509 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:12:37.433556 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:12:37.698183 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:12:38.433977 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-06T20:12:38.457503 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:12:38.699785 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-06T20:12:39.458390 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:12:39.660635 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-06T20:12:40.473793 #6] INFO -- : Seeking section_change/0 to offset 0 +E, [2018-08-06T20:12:40.748576 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- ArgumentError: message is required. +/usr/local/bundle/gems/plezi-0.16.1/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.1/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T20:12:40.778001 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-06T20:12:41.390896 #6] ERROR -- : Client fetch loop error: message is required. +I, [2018-08-06T20:12:41.782974 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-06T20:12:42.016500 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-06T20:12:42.055318 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- ArgumentError: message is required. +/usr/local/bundle/gems/plezi-0.16.1/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.1/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T20:12:42.055409 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-06T20:12:42.110038 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-08-06T20:12:42.113556 #6] ERROR -- : Client fetch loop error: message is required. +I, [2018-08-06T20:12:42.113935 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-06T20:12:42.125466 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-06T20:12:42.137156 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:12:43.017074 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:12:43.112140 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-06T20:12:43.130652 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-06T20:12:43.139439 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:12:43.139682 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-09e96a62-08f1-4375-9c3e-302b5f8f8a1f` +I, [2018-08-06T20:12:43.139726 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-06T20:12:43.144744 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-06T20:12:43.144822 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-06T20:12:43.169838 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-4eb3ffe1-36dd-48b6-8281-5fdd67a67cf4` +I, [2018-08-06T20:12:43.170016 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-06T20:12:43.207743 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-06T20:12:43.207844 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-06T20:12:44.017455 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:12:44.140593 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:12:45.018045 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:12:45.141575 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:12:46.028699 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:12:46.147436 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:12:47.029383 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:12:47.147930 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:12:48.041854 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:12:48.329195 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:12:49.098284 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:12:49.751560 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:12:50.122695 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:12:50.918678 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:12:51.123675 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:12:51.957526 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:12:52.124803 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:12:52.503297 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-06T20:12:52.958535 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:12:53.175528 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-06T20:12:53.266502 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-06T20:12:53.958900 #6] INFO -- : Seeking section_change/0 to offset 0 +E, [2018-08-06T20:12:54.541082 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- ArgumentError: message is required. +/usr/local/bundle/gems/plezi-0.16.1/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.1/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T20:12:54.545187 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-06T20:12:54.572770 #6] ERROR -- : Client fetch loop error: message is required. +I, [2018-08-06T20:12:54.573421 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-06T20:12:54.592579 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-08-06T20:12:55.329393 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- ArgumentError: message is required. +/usr/local/bundle/gems/plezi-0.16.1/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.1/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T20:12:55.329482 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-06T20:12:55.360543 #6] ERROR -- : Client fetch loop error: message is required. +I, [2018-08-06T20:12:55.360929 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-06T20:12:55.368890 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-06T20:12:55.468004 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:12:55.495637 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:12:55.594392 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-06T20:12:55.636063 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-101a8828-2ce5-41a2-b7e5-34c807ee36d5` +I, [2018-08-06T20:12:55.636122 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-06T20:12:55.662425 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-06T20:12:55.662503 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-06T20:12:56.371554 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-06T20:12:56.405595 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-aab655cb-b3e9-4280-97ce-6e26bf5cbc84` +I, [2018-08-06T20:12:56.405699 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-06T20:12:56.428090 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-06T20:12:56.428187 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-06T20:12:56.468803 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:12:56.496027 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:12:57.482130 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:12:57.509255 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:12:58.445633 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:12:58.473325 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:12:59.449020 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:12:59.473872 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:13:00.451423 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:13:00.474683 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:13:01.452053 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:13:01.475633 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:13:02.457155 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:13:02.476117 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:13:03.458034 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:13:03.477058 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:13:04.458934 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:13:04.477818 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:13:05.469018 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:13:05.478247 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:13:05.642593 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-06T20:13:06.400982 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-06T20:13:06.470506 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-06T20:13:06.478544 #6] INFO -- : Seeking course_change/0 to offset 0 +E, [2018-08-06T20:13:07.818358 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- ArgumentError: message is required. +/usr/local/bundle/gems/plezi-0.16.1/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.1/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T20:13:07.840664 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-06T20:13:08.003372 #6] ERROR -- : Client fetch loop error: message is required. +I, [2018-08-06T20:13:08.003993 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-06T20:13:08.007101 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-08-06T20:13:08.408284 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- ArgumentError: message is required. +/usr/local/bundle/gems/plezi-0.16.1/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.1/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T20:13:08.408449 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-06T20:13:08.421312 #6] ERROR -- : Client fetch loop error: message is required. +I, [2018-08-06T20:13:08.421495 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-06T20:13:08.422426 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-06T20:13:08.441964 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:13:08.534345 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:13:09.007439 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-06T20:13:09.056654 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-3156e3c7-85cc-4ecd-9cb7-6fbbe35e4d9f` +I, [2018-08-06T20:13:09.056721 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-06T20:13:09.071086 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-06T20:13:09.071178 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-06T20:13:09.422743 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-06T20:13:09.426739 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-ab3c1af3-52fe-4042-ae16-785c80a3c3f7` +I, [2018-08-06T20:13:09.426786 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-06T20:13:09.428573 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-06T20:13:09.428732 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-06T20:13:09.442546 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:13:09.539197 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:13:10.443923 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:13:10.543655 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:13:11.445068 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:13:11.561792 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:13:12.447004 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:13:12.611925 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:13:13.458576 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:13:13.612372 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:13:14.470386 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:13:14.613859 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:13:15.493746 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:13:15.724542 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:13:17.065826 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:13:18.063653 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:13:18.070634 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:13:19.067743 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:13:19.074976 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:13:19.434993 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-06T20:13:19.453084 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-06T20:13:20.068344 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-06T20:13:20.075470 #6] INFO -- : Seeking course_change/0 to offset 0 +E, [2018-08-06T20:13:21.455112 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- ArgumentError: message is required. +/usr/local/bundle/gems/plezi-0.16.1/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.1/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T20:15:35.463513 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-06T20:15:35.463583 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-06T20:15:35.467392 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-06T20:15:35.467443 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-06T20:15:35.476132 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-06T20:15:35.476229 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-06T20:15:35.477023 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-06T20:15:35.477239 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-06T20:15:40.476665 #6] 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.14:9094 +I, [2018-08-06T20:15:40.477856 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-06T20:15:40.477895 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-06T20:15:40.478696 #6] 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.14:9094 +I, [2018-08-06T20:15:40.479714 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-06T20:15:40.479874 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-06T20:15:40.480967 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-06T20:15:40.481050 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-06T20:15:40.481563 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-06T20:15:40.481708 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-06T20:15:45.501782 #6] 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.14:9094 +E, [2018-08-06T20:15:45.531309 #6] 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.14:9094 +I, [2018-08-06T20:15:45.532688 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-06T20:15:45.532747 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-06T20:15:45.543649 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-06T20:15:45.543790 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-06T20:15:45.546905 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-06T20:15:45.547178 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-06T20:15:45.547806 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-06T20:15:45.547976 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-06T20:15:50.553128 #6] 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.14:9094 +I, [2018-08-06T20:15:50.556963 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-06T20:15:50.557025 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-06T20:15:50.557973 #6] 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.14:9094 +I, [2018-08-06T20:15:50.619911 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-06T20:15:50.619977 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-06T20:15:50.791025 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-06T20:15:50.791321 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-06T20:15:50.791620 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-06T20:15:50.793395 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-06T20:15:50.821171 #6] INFO -- : Will fetch at most 1048576 bytes at a time per partition from section_change +I, [2018-08-06T20:15:50.821386 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-06T20:15:50.822910 #6] INFO -- : Will fetch at most 1048576 bytes at a time per partition from course_change +I, [2018-08-06T20:15:50.825905 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-06T20:15:50.875330 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-06T20:15:50.877663 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:15:50.877864 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-06T20:15:50.878044 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:15:51.878135 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:15:51.878510 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:15:52.878905 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:15:52.879466 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:15:53.880294 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:15:53.880425 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:15:54.881524 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:15:54.881719 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:15:55.882251 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:15:55.882532 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:15:56.107837 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-4ff620f7-8865-40f2-93ca-e2c8c3e109df` +I, [2018-08-06T20:15:56.107888 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-06T20:15:56.139433 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-27b827b9-de42-42fd-8fde-64f0aefa4758` +I, [2018-08-06T20:15:56.139510 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-06T20:15:56.883561 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:15:56.883876 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:15:57.109004 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-06T20:15:57.113400 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-06T20:15:57.140181 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-06T20:15:57.147115 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-06T20:15:57.378856 #6] INFO -- : Partitions assigned for `course_change`: 0 +I, [2018-08-06T20:15:57.410430 #6] INFO -- : Partitions assigned for `section_change`: 0 +I, [2018-08-06T20:15:57.884083 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-06T20:15:57.884419 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-06T20:15:57.884649 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-06T20:15:57.884195 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-06T20:15:57.887838 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-06T20:15:57.887901 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-06T20:15:57.899886 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-06T20:15:57.902642 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +E, [2018-08-06T20:16:01.493103 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- NameError: undefined local variable or method `client' for # +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T20:16:01.493242 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-06T20:16:01.497319 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- NameError: undefined local variable or method `client' for # +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T20:16:01.497418 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-06T20:16:01.720956 #6] ERROR -- : Client fetch loop error: undefined local variable or method `client' for # +I, [2018-08-06T20:16:01.721304 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-06T20:16:01.730605 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-06T20:16:01.763792 #6] ERROR -- : Client fetch loop error: undefined local variable or method `client' for # +E, [2018-08-06T20:16:01.767042 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-06T20:16:01.767392 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-06T20:16:01.812214 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-06T20:16:01.846011 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:16:02.731115 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:16:02.767324 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-06T20:16:02.790511 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-bff20638-f194-4c12-91d4-89c4a5028e2e` +I, [2018-08-06T20:16:02.790628 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-06T20:16:02.811374 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-06T20:16:02.811546 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-06T20:16:02.813602 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-06T20:16:02.846585 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:16:02.900964 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-86588a4c-2e61-4da3-a3b3-a9835799289d` +I, [2018-08-06T20:16:02.901030 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-06T20:16:02.913806 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-06T20:16:02.913889 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-06T20:16:03.731706 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:16:03.847615 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:16:04.732260 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:16:04.853826 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:16:05.745133 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:16:06.014479 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:16:06.745940 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:16:07.015441 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:16:07.751452 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:16:08.016178 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:16:08.752200 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:16:09.017614 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:16:09.752779 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:16:10.018890 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:16:10.753177 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:16:11.019278 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:16:11.753943 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:16:12.019653 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:16:12.754251 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:16:12.882443 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-06T20:16:12.941359 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-06T20:16:13.021604 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-06T20:16:13.754682 #6] INFO -- : Seeking section_change/0 to offset 0 +E, [2018-08-06T20:16:14.901304 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- NameError: undefined local variable or method `client' for # +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T20:16:14.901442 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-06T20:16:14.911014 #6] ERROR -- : Client fetch loop error: undefined local variable or method `client' for # +I, [2018-08-06T20:16:14.911273 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-06T20:16:14.913300 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-08-06T20:16:14.947648 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- NameError: undefined local variable or method `client' for # +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T20:16:14.960605 #6] INFO -- : Leaving group `notifications_course_change` +I, [2018-08-06T20:16:14.966451 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-06T20:16:14.994283 #6] ERROR -- : Client fetch loop error: undefined local variable or method `client' for # +I, [2018-08-06T20:16:14.994488 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-06T20:16:14.995479 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-06T20:16:15.004640 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:16:15.913603 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-06T20:16:15.926958 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-449a7a3d-71f1-4c7e-adde-4f70e90ef43c` +I, [2018-08-06T20:16:15.927011 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-06T20:16:15.930152 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-06T20:16:15.930388 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-06T20:16:15.967441 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:16:15.996174 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-06T20:16:16.005249 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:16:16.015543 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-a205aa54-a81d-40f3-9874-9f0d2be20404` +I, [2018-08-06T20:16:16.015603 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-06T20:16:16.022676 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-06T20:16:16.022760 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-06T20:16:16.969523 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:16:17.006158 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:16:17.972300 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:16:18.010687 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:16:18.975955 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:16:19.011455 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:16:19.977376 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:16:20.012075 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:16:20.978973 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:16:21.012460 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:16:21.996067 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:16:22.012873 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:16:22.998350 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:16:23.013420 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:16:23.998950 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:16:24.013950 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:16:24.999468 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:16:25.014434 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:16:25.993314 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-06T20:16:26.000169 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-06T20:16:26.014764 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:16:26.042552 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-06T20:16:27.015174 #6] INFO -- : Seeking course_change/0 to offset 0 +E, [2018-08-06T20:16:28.250086 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- NameError: undefined local variable or method `client' for # +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T20:16:28.251681 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-06T20:16:28.336176 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- NameError: undefined local variable or method `client' for # +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T20:16:28.339289 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-06T20:16:28.444525 #6] ERROR -- : Client fetch loop error: undefined local variable or method `client' for # +E, [2018-08-06T20:16:28.453147 #6] ERROR -- : Client fetch loop error: undefined local variable or method `client' for # +I, [2018-08-06T20:16:28.453458 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-06T20:16:28.452773 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-06T20:16:28.455165 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-06T20:16:29.263014 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:16:29.269982 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-06T20:16:29.288344 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-06T20:16:29.459059 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-06T20:16:30.173728 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-251c8f7b-af54-493e-853b-b689a10f784d` +I, [2018-08-06T20:16:30.173944 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-06T20:16:30.264950 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:16:30.269831 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-06T20:16:30.269991 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-06T20:16:30.270502 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:16:30.291933 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-06T20:16:30.413148 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-b7c584a1-f48a-4ba8-be4e-5bc7e14af3f8` +I, [2018-08-06T20:16:30.413786 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-06T20:16:30.542688 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-06T20:16:30.543712 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-06T20:16:31.266426 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:16:31.270874 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:16:32.267732 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:16:32.277512 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:16:33.268227 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:16:33.278045 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:16:34.270545 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:16:34.278446 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:16:35.271161 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:16:35.278762 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:16:36.272220 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:16:36.279139 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:16:37.272657 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:16:37.279880 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:16:38.273091 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:16:38.280572 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:16:38.873547 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-06T20:16:39.274174 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:16:39.281435 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-06T20:16:40.274540 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:16:40.338327 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +E, [2018-08-06T20:16:40.881042 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- NameError: undefined local variable or method `client' for # +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T20:16:40.881147 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-06T20:16:40.885691 #6] ERROR -- : Client fetch loop error: undefined local variable or method `client' for # +I, [2018-08-06T20:16:40.885891 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-06T20:16:40.887541 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-06T20:16:40.944090 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:16:41.274934 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-06T20:16:41.889703 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-06T20:16:41.895272 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-a7233463-6bf2-413f-a7b7-ca030ee4e09a` +I, [2018-08-06T20:16:41.895335 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-06T20:16:41.898424 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-06T20:16:41.898518 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-06T20:16:41.944603 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-06T20:16:42.381045 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- NameError: undefined local variable or method `client' for # +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T20:16:42.381175 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-06T20:16:42.386261 #6] ERROR -- : Client fetch loop error: undefined local variable or method `client' for # +I, [2018-08-06T20:16:42.386490 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-06T20:16:42.387830 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-06T20:16:42.483561 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:16:42.944933 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:16:43.388379 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-06T20:16:43.392976 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-46311649-df19-45a5-aa25-ab4949b9391c` +I, [2018-08-06T20:16:43.393027 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-06T20:16:43.395385 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-06T20:16:43.395462 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-06T20:16:43.484174 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:16:43.945414 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:16:44.485183 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:16:44.946197 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:16:45.486247 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:16:45.951162 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:16:46.486606 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:16:46.951607 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:16:47.487299 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:16:47.952248 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:16:48.487780 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:16:48.952843 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:16:49.496803 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:16:49.954076 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:16:50.497333 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:16:50.955837 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:16:51.498050 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:16:51.904216 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-06T20:16:51.956209 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-06T20:16:52.498811 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:16:53.442117 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-06T20:16:53.499295 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-06T20:16:53.926617 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- NameError: undefined local variable or method `client' for # +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T20:16:53.940121 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-06T20:16:53.970751 #6] ERROR -- : Client fetch loop error: undefined local variable or method `client' for # +I, [2018-08-06T20:16:53.971560 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-06T20:16:53.978273 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-06T20:16:54.138353 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:16:54.500161 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-06T20:16:54.978776 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-06T20:16:54.982686 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-37a39f7c-4b8e-45fe-9c45-c45d2b457acc` +I, [2018-08-06T20:16:54.982744 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-06T20:16:54.985188 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-06T20:16:54.985265 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-06T20:16:55.139268 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-06T20:16:55.578624 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- NameError: undefined local variable or method `client' for # +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T20:16:55.579091 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-06T20:16:55.582892 #6] ERROR -- : Client fetch loop error: undefined local variable or method `client' for # +I, [2018-08-06T20:16:55.583163 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-06T20:16:55.584594 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-06T20:16:55.593798 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:16:56.139944 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:16:56.584821 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-06T20:16:56.589702 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-dfa97178-5641-490f-a09f-e1ba6fc50342` +I, [2018-08-06T20:16:56.589871 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-06T20:16:56.592748 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-06T20:16:56.592828 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-06T20:16:56.594680 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:16:57.140551 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:16:57.598982 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:16:58.101014 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:16:58.559061 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:16:59.101515 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:16:59.559650 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:17:00.102097 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:17:00.560239 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:17:01.103538 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:17:01.560788 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:17:02.104543 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:17:02.563294 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:17:03.105223 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:17:03.564633 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:17:04.106166 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:17:04.565435 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:17:04.980936 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-06T20:17:05.106510 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-06T20:17:05.566125 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:17:06.559944 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-06T20:17:06.566570 #6] INFO -- : Seeking section_change/0 to offset 0 +E, [2018-08-06T20:17:06.984916 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- NameError: undefined local variable or method `client' for # +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T20:17:06.987259 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-06T20:17:06.991934 #6] ERROR -- : Client fetch loop error: undefined local variable or method `client' for # +I, [2018-08-06T20:17:06.992254 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-06T20:17:06.993531 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-06T20:17:07.416968 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:17:07.993835 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-06T20:17:07.997187 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-c523bc91-9967-4338-8f3e-fe24e53906ff` +I, [2018-08-06T20:17:07.997245 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-06T20:17:07.999228 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-06T20:17:07.999404 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-06T20:17:08.417493 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-06T20:17:08.563370 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- NameError: undefined local variable or method `client' for # +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T20:17:08.563430 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-06T20:17:08.565986 #6] ERROR -- : Client fetch loop error: undefined local variable or method `client' for # +I, [2018-08-06T20:17:08.566170 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-06T20:17:08.566973 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-06T20:17:08.601713 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:17:09.417845 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:17:09.567239 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-06T20:17:09.570076 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-946f4269-2c7f-4d27-816e-e57576e0ff13` +I, [2018-08-06T20:17:09.570119 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-06T20:17:09.572303 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-06T20:17:09.572366 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-06T20:17:09.602905 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:17:10.418765 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:17:10.603257 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:17:11.419121 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:17:11.603951 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:17:12.420224 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:17:12.604467 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:17:13.421683 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:17:13.605684 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:17:14.422044 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:17:14.606171 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:17:15.426119 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:17:15.606654 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:17:16.426517 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:17:16.607249 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:17:17.427004 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:17:17.607665 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:17:18.006073 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-06T20:17:18.427519 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-06T20:17:18.619342 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:17:19.579209 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-06T20:17:19.620093 #6] INFO -- : Seeking section_change/0 to offset 0 +E, [2018-08-06T20:17:20.010186 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- NameError: undefined local variable or method `client' for # +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T20:17:20.012589 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-06T20:17:20.015363 #6] ERROR -- : Client fetch loop error: undefined local variable or method `client' for # +I, [2018-08-06T20:17:20.015894 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-06T20:17:20.017498 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-06T20:17:20.911436 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:17:21.018079 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-06T20:17:21.023402 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-6ea63229-4a5c-442a-be61-55c2473615d3` +I, [2018-08-06T20:17:21.023538 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-06T20:17:21.025801 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-06T20:17:21.025862 #6] WARN -- : Not fetching from course_change/0 due to pause +E, [2018-08-06T20:17:21.584531 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- NameError: undefined local variable or method `client' for # +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T20:17:21.584600 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-06T20:17:21.594645 #6] ERROR -- : Client fetch loop error: undefined local variable or method `client' for # +I, [2018-08-06T20:17:21.595099 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-06T20:17:21.598899 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-06T20:17:21.842503 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:17:21.911736 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:17:22.599291 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-06T20:17:22.603950 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-2427e485-5ec9-4ab2-aa1d-a59778636c8b` +I, [2018-08-06T20:17:22.604008 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-06T20:17:22.610340 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-06T20:17:22.610709 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-06T20:17:22.843182 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:17:22.912628 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:17:23.843815 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:17:23.919038 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:17:24.844503 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:17:24.923024 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:17:25.845478 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:17:25.923719 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:17:26.846423 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:17:26.924315 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:17:27.846835 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:17:27.924718 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:17:28.815999 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:17:28.892949 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:17:29.817329 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:17:29.898304 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:17:30.822235 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:17:30.899441 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:17:31.008332 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-06T20:17:31.822815 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:17:31.899949 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-06T20:17:32.625675 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-06T20:17:32.823103 #6] INFO -- : Seeking section_change/0 to offset 0 +E, [2018-08-06T20:17:33.013964 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- NameError: undefined local variable or method `client' for # +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T20:17:33.017677 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-06T20:17:33.022994 #6] ERROR -- : Client fetch loop error: undefined local variable or method `client' for # +I, [2018-08-06T20:17:33.023314 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-06T20:17:33.026624 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-06T20:17:33.037822 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:17:34.026956 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-06T20:17:34.031106 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-9eb58317-06b0-468e-9ef0-00adfd2f0339` +I, [2018-08-06T20:17:34.031162 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-06T20:17:34.038577 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:17:34.039036 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-06T20:17:34.039161 #6] WARN -- : Not fetching from course_change/0 due to pause +E, [2018-08-06T20:17:34.631178 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- NameError: undefined local variable or method `client' for # +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T20:17:34.631244 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-06T20:17:34.634120 #6] ERROR -- : Client fetch loop error: undefined local variable or method `client' for # +I, [2018-08-06T20:17:34.634283 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-06T20:17:34.636905 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-06T20:17:35.218412 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:17:35.445641 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:17:36.833572 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-06T20:17:36.844376 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:17:36.848073 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:17:37.199381 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-1754187c-8920-4a7b-99a6-7d451c5199ed` +I, [2018-08-06T20:17:37.200195 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-06T20:17:37.216279 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-06T20:17:37.217129 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-06T20:17:37.974740 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:17:37.975799 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:17:39.016326 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:17:39.016591 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:17:40.017178 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:17:40.017675 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:17:41.018184 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:17:41.018347 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:17:42.018561 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:17:42.018853 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:17:43.018907 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:17:43.019108 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:17:43.393079 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-06T20:17:44.020845 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:17:44.020995 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-06T20:17:45.021556 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:17:45.393453 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +E, [2018-08-06T20:17:45.412093 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- NameError: undefined local variable or method `client' for # +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T20:19:46.039497 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-06T20:19:46.040558 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-06T20:19:46.050204 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-06T20:19:46.050275 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-06T20:19:46.053928 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-06T20:19:46.054052 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-06T20:19:46.067326 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-06T20:19:46.067518 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-06T20:19:51.054591 #6] 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.14:9094 +I, [2018-08-06T20:19:51.056225 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-06T20:19:51.056299 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-06T20:19:51.057337 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-06T20:19:51.057445 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-06T20:19:51.067964 #6] 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.14:9094 +I, [2018-08-06T20:19:51.068750 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-06T20:19:51.068804 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-06T20:19:51.069833 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-06T20:19:51.069945 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-06T20:19:56.058287 #6] 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.14:9094 +I, [2018-08-06T20:19:56.064341 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-06T20:19:56.068055 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-06T20:19:56.071103 #6] 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.14:9094 +I, [2018-08-06T20:19:56.082141 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-06T20:19:56.082243 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-06T20:19:56.098810 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-06T20:19:56.098969 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-06T20:19:56.099255 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-06T20:19:56.099336 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-06T20:20:01.062077 #6] 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.14:9094 +E, [2018-08-06T20:20:01.065652 #6] 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.14:9094 +I, [2018-08-06T20:20:01.181687 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-06T20:20:01.182824 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-06T20:20:01.263428 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-06T20:20:01.263522 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-06T20:20:01.264278 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-06T20:20:01.264497 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-06T20:20:01.289151 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-06T20:20:01.289889 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-06T20:20:06.272655 #6] 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.14:9094 +E, [2018-08-06T20:20:06.298653 #6] 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.14:9094 +I, [2018-08-06T20:20:06.340335 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-06T20:20:06.341824 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-06T20:20:06.376972 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-06T20:20:06.377058 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-06T20:20:06.420480 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-06T20:20:06.420820 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-06T20:20:06.421178 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-06T20:20:06.421304 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-06T20:20:11.422604 #6] 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.14:9094 +E, [2018-08-06T20:20:11.435265 #6] 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.14:9094 +I, [2018-08-06T20:20:11.445454 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-06T20:20:11.445643 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-06T20:20:11.453534 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-06T20:20:11.453662 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-06T20:20:14.270269 #6] ERROR -- : No brokers in cluster +E, [2018-08-06T20:20:14.328909 #6] ERROR -- : No brokers in cluster +E, [2018-08-06T20:20:19.323104 #6] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: + +I, [2018-08-06T20:20:19.390934 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-06T20:20:19.391300 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-06T20:20:19.604227 #6] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: + +I, [2018-08-06T20:20:19.971098 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-06T20:20:19.971192 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-06T20:20:21.680942 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-06T20:20:21.684136 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-06T20:20:21.726277 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-06T20:20:21.728192 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-06T20:20:21.769475 #6] INFO -- : Will fetch at most 1048576 bytes at a time per partition from course_change +I, [2018-08-06T20:20:21.775154 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-06T20:20:21.770607 #6] INFO -- : Will fetch at most 1048576 bytes at a time per partition from section_change +I, [2018-08-06T20:20:21.775701 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-06T20:20:21.796193 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-06T20:20:21.796488 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:20:21.824200 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-06T20:20:21.824563 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:20:22.797313 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:20:22.825293 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:20:23.854084 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:20:23.855624 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:20:24.858892 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:20:24.855018 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:20:25.861147 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:20:25.861331 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:20:26.866251 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:20:26.867765 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:20:27.994884 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:20:27.995163 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:20:28.961544 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:20:28.961768 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:20:29.964127 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:20:29.964689 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:20:30.966062 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:20:30.966432 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:20:31.982407 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:20:31.982566 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:20:32.983195 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:20:32.983790 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:20:33.985217 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:20:33.985388 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:20:34.985627 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:20:34.986178 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:20:35.160342 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-0ae649e2-ac33-49e4-b3ca-8a87a332b68a` +I, [2018-08-06T20:20:35.160418 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-06T20:20:35.173754 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-97e320f7-4ea9-4ef2-b75b-1214a8302de4` +I, [2018-08-06T20:20:35.173909 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-06T20:20:35.993866 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:20:35.996235 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:20:36.197854 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-06T20:20:36.205119 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-06T20:20:36.213381 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-06T20:20:36.215624 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-06T20:20:36.465267 #6] INFO -- : Partitions assigned for `section_change`: 0 +I, [2018-08-06T20:20:36.497677 #6] INFO -- : Partitions assigned for `course_change`: 0 +I, [2018-08-06T20:20:36.994216 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-06T20:20:36.994545 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-06T20:20:36.994603 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-06T20:20:36.997028 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-06T20:20:36.997665 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-06T20:20:36.997740 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-06T20:20:37.004169 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-06T20:20:37.005532 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +E, [2018-08-06T20:20:42.761279 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- ArgumentError: wrong number of arguments (given 1, expected 2) +/usr/src/app/app/controllers/eventstream.rb:14:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T20:20:42.769388 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-06T20:20:42.764756 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- ArgumentError: wrong number of arguments (given 1, expected 2) +/usr/src/app/app/controllers/eventstream.rb:14:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T20:20:42.772303 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-06T20:20:42.858075 #6] ERROR -- : Client fetch loop error: wrong number of arguments (given 1, expected 2) +I, [2018-08-06T20:20:42.880970 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-06T20:20:42.881324 #6] ERROR -- : Client fetch loop error: wrong number of arguments (given 1, expected 2) +I, [2018-08-06T20:20:42.897583 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-06T20:20:42.899501 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-06T20:20:42.961948 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-08-06T20:20:42.967820 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-06T20:20:43.805381 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:20:43.901374 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:20:43.994071 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-06T20:20:43.997681 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-06T20:20:44.065469 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-2963845a-c9f9-4c54-ba61-3057bb0533b5` +I, [2018-08-06T20:20:44.065546 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-06T20:20:44.270155 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-15f6a13a-8762-46d7-a41d-b4411791a04d` +I, [2018-08-06T20:20:44.270223 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-06T20:20:44.275995 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-06T20:20:44.276197 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-06T20:20:44.384320 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-06T20:20:44.384407 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-06T20:20:44.819775 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:20:44.902025 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:20:45.820726 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:20:45.904547 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:20:46.822554 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:20:46.905905 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:20:47.823965 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:20:47.908868 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:20:48.824650 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:20:48.912649 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:20:49.825068 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:20:49.913314 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:20:50.825644 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:20:50.913949 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:20:51.826243 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:20:51.914311 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:20:52.827289 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:20:52.914693 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:20:53.840542 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:20:53.915434 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:20:54.346499 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-06T20:20:54.497036 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-06T20:20:54.846606 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-06T20:20:54.937144 #6] INFO -- : Seeking section_change/0 to offset 0 +E, [2018-08-06T20:20:56.415715 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- ArgumentError: wrong number of arguments (given 1, expected 2) +/usr/src/app/app/controllers/eventstream.rb:14:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T20:20:56.483036 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-06T20:20:56.736386 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- ArgumentError: wrong number of arguments (given 1, expected 2) +/usr/src/app/app/controllers/eventstream.rb:14:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T20:20:56.736481 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-06T20:20:56.995845 #6] ERROR -- : Client fetch loop error: wrong number of arguments (given 1, expected 2) +I, [2018-08-06T20:20:56.996263 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-06T20:20:56.998236 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-08-06T20:20:57.008455 #6] ERROR -- : Client fetch loop error: wrong number of arguments (given 1, expected 2) +I, [2018-08-06T20:20:57.008918 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-06T20:20:57.009675 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-06T20:20:57.062876 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-06T20:20:57.156019 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:20:58.094761 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-06T20:20:58.096467 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:20:58.096575 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-06T20:20:58.092282 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-b65b03e0-4648-4234-9c12-84cc01f6b371` +I, [2018-08-06T20:20:58.092350 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-06T20:20:58.119527 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:20:58.569176 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-06T20:20:58.570349 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-06T20:20:58.692545 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-c04062da-7e1f-4924-ae11-e5dc2393e445` +I, [2018-08-06T20:20:58.692616 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-06T20:20:58.873562 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-06T20:20:58.873741 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-06T20:20:59.061795 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:20:59.122409 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:21:00.067346 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:21:00.142806 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:21:01.069724 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:21:01.152780 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:21:02.070399 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:21:02.153190 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:21:03.079967 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:21:03.154976 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:21:04.108907 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:21:04.155641 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:21:05.112539 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:21:05.229790 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:21:06.138199 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:21:06.230235 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:21:07.100098 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-06T20:21:07.139273 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:21:07.154607 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-06T20:21:07.231716 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-06T20:21:08.141004 #6] INFO -- : Seeking section_change/0 to offset 0 +E, [2018-08-06T20:21:09.146012 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- ArgumentError: wrong number of arguments (given 1, expected 2) +/usr/src/app/app/controllers/eventstream.rb:14:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T20:21:09.149476 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-06T20:21:09.249870 #6] ERROR -- : Client fetch loop error: wrong number of arguments (given 1, expected 2) +I, [2018-08-06T20:21:09.250646 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-06T20:21:09.266800 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- ArgumentError: wrong number of arguments (given 1, expected 2) +/usr/src/app/app/controllers/eventstream.rb:14:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T20:21:09.266883 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-06T20:21:09.279789 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-08-06T20:21:09.290056 #6] ERROR -- : Client fetch loop error: wrong number of arguments (given 1, expected 2) +I, [2018-08-06T20:21:09.290298 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-06T20:21:09.308951 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-06T20:21:09.309162 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-06T20:21:09.367868 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:21:10.280406 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-06T20:21:10.297104 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-77e314c3-e89c-4a3c-91fc-9daac9898741` +I, [2018-08-06T20:21:10.297165 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-06T20:21:10.309670 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:21:10.309914 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-06T20:21:10.320330 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-06T20:21:10.320479 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-06T20:21:10.337098 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-2455d259-2f83-41e3-8ae0-3c4dc8de7b7c` +I, [2018-08-06T20:21:10.337164 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-06T20:21:10.348240 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-06T20:21:10.348320 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-06T20:21:10.368459 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:21:11.311067 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:21:11.369017 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:21:14.138995 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:21:14.143454 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:21:15.171103 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:21:15.171675 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:21:16.180283 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:21:16.180675 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:21:18.030041 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:21:18.110732 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:21:19.030695 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:21:19.111783 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:21:20.206875 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:21:20.208643 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:21:20.275779 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-06T20:21:20.287706 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-06T20:21:21.207565 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-06T20:21:21.209140 #6] INFO -- : Seeking course_change/0 to offset 0 +E, [2018-08-06T20:21:22.289190 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- ArgumentError: wrong number of arguments (given 1, expected 2) +/usr/src/app/app/controllers/eventstream.rb:14:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T20:23:35.688788 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-06T20:23:35.688879 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-06T20:23:35.698221 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-06T20:23:35.698277 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-06T20:23:35.703133 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-06T20:23:35.703274 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-06T20:23:35.703436 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-06T20:23:35.703527 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-06T20:23:40.704358 #6] 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.14:9094 +I, [2018-08-06T20:23:40.705427 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-06T20:23:40.705499 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-06T20:23:40.706490 #6] 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.14:9094 +E, [2018-08-06T20:23:40.720831 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-06T20:23:40.720967 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +I, [2018-08-06T20:23:40.741073 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-06T20:23:40.741144 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-06T20:23:40.744711 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-06T20:23:40.745290 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-06T20:23:45.721410 #6] 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.14:9094 +I, [2018-08-06T20:23:45.722620 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-06T20:23:45.722661 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-06T20:23:45.723916 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-06T20:23:45.724031 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-06T20:23:45.746136 #6] 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.14:9094 +I, [2018-08-06T20:23:45.746977 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-06T20:23:45.747039 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-06T20:23:45.748541 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-06T20:23:45.748800 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-06T20:23:50.740670 #6] 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.14:9094 +I, [2018-08-06T20:23:50.766191 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-06T20:23:50.770271 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-06T20:23:50.774887 #6] 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.14:9094 +I, [2018-08-06T20:23:50.783618 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-06T20:23:50.783780 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-06T20:23:51.081065 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-06T20:23:51.081540 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-06T20:23:51.118711 #6] INFO -- : Will fetch at most 1048576 bytes at a time per partition from section_change +I, [2018-08-06T20:23:51.119057 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-06T20:23:51.149208 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-06T20:23:51.149426 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-06T20:23:51.196462 #6] INFO -- : Will fetch at most 1048576 bytes at a time per partition from course_change +I, [2018-08-06T20:23:51.196615 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-06T20:23:51.244193 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-06T20:23:51.244833 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:23:51.271684 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-06T20:23:51.271809 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:23:52.245305 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:23:52.272152 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:23:53.247180 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:23:53.273449 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:23:54.248700 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:23:54.279386 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:23:55.249433 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:23:55.280213 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:23:56.258778 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:23:56.281425 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:23:57.259622 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:23:57.281820 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:23:57.840613 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-9dded8b7-2fb2-496e-911a-56b60cae793b` +I, [2018-08-06T20:23:57.840713 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-06T20:23:57.871698 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-c9ccb447-470c-4528-86fe-d907b84188e1` +I, [2018-08-06T20:23:57.871769 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-06T20:23:58.223532 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:23:58.247228 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:23:58.806715 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-06T20:23:58.814338 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-06T20:23:58.835860 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-06T20:23:58.847902 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-06T20:23:58.976402 #6] INFO -- : Partitions assigned for `course_change`: 0 +I, [2018-08-06T20:23:59.042556 #6] INFO -- : Partitions assigned for `section_change`: 0 +I, [2018-08-06T20:23:59.224069 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-06T20:23:59.225205 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-06T20:23:59.225261 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-06T20:23:59.232288 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-06T20:23:59.247760 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-06T20:23:59.247887 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-06T20:23:59.247932 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-06T20:23:59.255510 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +E, [2018-08-06T20:24:03.185111 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- ArgumentError: wrong number of arguments (given 1, expected 2) +/usr/src/app/app/controllers/eventstream.rb:14:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T20:24:03.185271 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-06T20:24:03.185945 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- ArgumentError: wrong number of arguments (given 1, expected 2) +/usr/src/app/app/controllers/eventstream.rb:14:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T20:24:03.185992 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-06T20:24:03.324367 #6] ERROR -- : Client fetch loop error: wrong number of arguments (given 1, expected 2) +I, [2018-08-06T20:24:03.324854 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-06T20:24:03.328007 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-08-06T20:24:03.369159 #6] ERROR -- : Client fetch loop error: wrong number of arguments (given 1, expected 2) +I, [2018-08-06T20:24:03.369671 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-06T20:24:03.375298 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-06T20:24:03.422169 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:24:03.449678 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:24:04.331188 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-06T20:24:04.335747 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-31ceabac-1460-4b17-92c6-31f3da551ea6` +I, [2018-08-06T20:24:04.335792 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-06T20:24:04.341246 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-06T20:24:04.341349 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-06T20:24:04.376717 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-06T20:24:04.379725 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-83982a76-0574-4c1a-9e11-cb8097477c9b` +I, [2018-08-06T20:24:04.379841 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-06T20:24:04.382976 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-06T20:24:04.383055 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-06T20:24:04.427209 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:24:04.450984 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:24:05.427618 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:24:05.451206 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:24:06.431733 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:24:06.453169 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:24:07.435259 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:24:07.453784 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:24:08.437442 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:24:08.454696 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:24:09.438917 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:24:09.459141 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:24:10.439739 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:24:10.459728 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:24:11.442495 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:24:11.460948 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:24:12.442859 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:24:12.462234 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:24:13.443475 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:24:13.463854 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:24:14.358614 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-06T20:24:14.423299 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-06T20:24:14.445693 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-06T20:24:14.465167 #6] INFO -- : Seeking course_change/0 to offset 0 +E, [2018-08-06T20:24:16.389993 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- ArgumentError: wrong number of arguments (given 1, expected 2) +/usr/src/app/app/controllers/eventstream.rb:14:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T20:24:16.390559 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-06T20:24:16.396277 #6] ERROR -- : Client fetch loop error: wrong number of arguments (given 1, expected 2) +I, [2018-08-06T20:24:16.397214 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-06T20:24:16.398807 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-08-06T20:24:16.426809 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- ArgumentError: wrong number of arguments (given 1, expected 2) +/usr/src/app/app/controllers/eventstream.rb:14:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T20:24:16.431679 #6] INFO -- : Leaving group `notifications_course_change` +I, [2018-08-06T20:24:16.431252 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-06T20:24:16.437211 #6] ERROR -- : Client fetch loop error: wrong number of arguments (given 1, expected 2) +I, [2018-08-06T20:24:16.437416 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-06T20:24:16.439968 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-06T20:24:16.602472 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:24:17.400589 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-06T20:24:17.409697 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-b665abbb-deeb-4b8b-80df-0c02d0b534ba` +I, [2018-08-06T20:24:17.409749 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-06T20:24:17.420468 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-06T20:24:17.420558 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-06T20:24:17.438224 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:24:17.441554 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-06T20:24:17.453234 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-7583a5c2-b78c-465f-9629-2db056beaf4c` +I, [2018-08-06T20:24:17.453302 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-06T20:24:17.609854 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:24:18.048304 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-06T20:24:18.049526 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-06T20:24:18.512825 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:24:18.825924 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:24:19.826596 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:24:19.902092 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:24:20.953447 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:24:21.012806 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:24:22.014709 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:24:22.019904 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:24:23.033351 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:24:23.034156 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:24:24.221097 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:24:24.221943 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:24:25.264768 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:24:25.283947 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:24:27.616423 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:24:27.789028 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-06T20:24:27.814511 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-06T20:24:27.815668 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:24:28.574286 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-06T20:24:28.920922 #6] INFO -- : Seeking section_change/0 to offset 0 +E, [2018-08-06T20:24:30.034452 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- ArgumentError: wrong number of arguments (given 1, expected 2) +/usr/src/app/app/controllers/eventstream.rb:14:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T20:24:30.034831 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-06T20:24:30.037063 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- ArgumentError: wrong number of arguments (given 1, expected 2) +/usr/src/app/app/controllers/eventstream.rb:14:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T20:24:30.054907 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-06T20:24:30.090002 #6] ERROR -- : Client fetch loop error: wrong number of arguments (given 1, expected 2) +I, [2018-08-06T20:24:30.091420 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-06T20:24:30.094735 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-08-06T20:24:30.112850 #6] ERROR -- : Client fetch loop error: wrong number of arguments (given 1, expected 2) +I, [2018-08-06T20:24:30.113548 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-06T20:24:30.121415 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-06T20:24:30.477676 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:24:30.955222 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:24:31.095128 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-06T20:24:31.123507 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-06T20:24:31.173837 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-63ce5357-1c1e-4323-82e3-4dc2db70c9c5` +I, [2018-08-06T20:24:31.174132 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-06T20:24:31.185183 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-06T20:24:31.185334 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-06T20:24:31.203009 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-84507774-400b-4382-a4f0-8139c7b1dc9f` +I, [2018-08-06T20:24:31.203086 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-06T20:24:31.212827 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-06T20:24:31.212970 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-06T20:24:31.478547 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:24:31.956412 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:24:32.479036 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:24:32.957515 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:24:33.479758 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:24:33.958063 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:24:34.480866 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:24:34.958637 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:24:35.481735 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:24:35.959324 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:24:36.484696 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:24:36.960208 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:24:37.485320 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:24:37.960864 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:24:38.486102 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:24:38.961898 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:24:39.487146 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:24:39.963207 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:24:40.487573 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:24:40.963971 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:24:41.198088 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-06T20:24:41.233980 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-06T20:24:41.544714 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-06T20:24:42.090654 #6] INFO -- : Seeking course_change/0 to offset 0 +E, [2018-08-06T20:24:43.211983 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- ArgumentError: wrong number of arguments (given 1, expected 2) +/usr/src/app/app/controllers/eventstream.rb:14:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T20:24:43.212774 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-06T20:24:43.228573 #6] ERROR -- : Client fetch loop error: wrong number of arguments (given 1, expected 2) +I, [2018-08-06T20:24:43.228890 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-06T20:24:43.231666 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-08-06T20:24:43.240150 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- ArgumentError: wrong number of arguments (given 1, expected 2) +/usr/src/app/app/controllers/eventstream.rb:14:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T20:24:43.240222 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-06T20:24:43.244679 #6] ERROR -- : Client fetch loop error: wrong number of arguments (given 1, expected 2) +I, [2018-08-06T20:24:43.244963 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-06T20:24:43.246010 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-06T20:24:43.266412 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:24:43.558691 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:24:44.234693 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-06T20:24:44.239228 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-66ac23b8-8007-4b3f-9e08-ce341a20f2bb` +I, [2018-08-06T20:24:44.239275 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-06T20:24:44.242572 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-06T20:24:44.242637 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-06T20:24:44.246358 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-06T20:24:44.257860 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-c0757cbe-112d-4877-8d24-0b9424b1803a` +I, [2018-08-06T20:24:44.257930 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-06T20:24:44.267117 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:24:44.285928 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-06T20:24:44.286018 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-06T20:24:44.559380 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:24:45.268110 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:24:45.559823 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:24:46.268705 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:24:46.560207 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:24:47.269241 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:24:47.563620 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:24:48.269681 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:24:48.564065 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:24:49.270195 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:24:49.564590 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:24:50.271064 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:24:50.639774 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:24:51.271433 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:24:51.644657 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:24:52.271816 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:24:52.645792 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:24:53.279498 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:24:53.699291 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:24:54.264199 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-06T20:24:54.280670 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:24:54.362663 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-06T20:24:54.700271 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-06T20:24:55.282845 #6] INFO -- : Seeking section_change/0 to offset 0 +E, [2018-08-06T20:24:56.299514 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- ArgumentError: wrong number of arguments (given 1, expected 2) +/usr/src/app/app/controllers/eventstream.rb:14:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T20:24:56.303565 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-06T20:24:56.320691 #6] ERROR -- : Client fetch loop error: wrong number of arguments (given 1, expected 2) +I, [2018-08-06T20:24:56.320927 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-06T20:24:56.321832 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-08-06T20:24:56.403067 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- ArgumentError: wrong number of arguments (given 1, expected 2) +/usr/src/app/app/controllers/eventstream.rb:14:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T20:24:56.403158 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-06T20:24:56.448289 #6] ERROR -- : Client fetch loop error: wrong number of arguments (given 1, expected 2) +I, [2018-08-06T20:24:56.448704 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-06T20:24:56.450890 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-06T20:24:56.544384 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:24:57.005050 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:24:57.322141 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-06T20:24:57.331777 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-b9b0c678-138a-4b06-80f5-70b314073b54` +I, [2018-08-06T20:24:57.331839 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-06T20:24:57.338101 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-06T20:24:57.338183 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-06T20:24:57.453956 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-06T20:24:57.506066 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-6c2d2301-0673-4e11-9074-74f943cfdd66` +I, [2018-08-06T20:24:57.506164 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-06T20:24:57.545177 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:24:57.559579 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-06T20:24:57.559681 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-06T20:24:58.007772 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:24:58.550566 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:24:59.021377 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:24:59.551652 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:25:00.027285 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:25:00.552991 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:25:01.027565 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:25:01.575892 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:25:02.028003 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:25:02.578316 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:25:03.061948 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:25:03.579381 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:25:04.067459 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:25:04.579766 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:25:05.068158 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:25:05.580571 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:25:06.068588 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:25:06.584403 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:25:08.333519 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:25:08.335168 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:25:08.582660 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-06T20:25:08.631232 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-06T20:25:09.336957 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-06T20:25:09.335577 #6] INFO -- : Seeking section_change/0 to offset 0 +E, [2018-08-06T20:25:10.632245 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- ArgumentError: wrong number of arguments (given 1, expected 2) +/usr/src/app/app/controllers/eventstream.rb:14:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T20:25:10.635632 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-06T20:25:10.643153 #6] ERROR -- : Client fetch loop error: wrong number of arguments (given 1, expected 2) +I, [2018-08-06T20:25:10.673824 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-06T20:25:10.684890 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- ArgumentError: wrong number of arguments (given 1, expected 2) +/usr/src/app/app/controllers/eventstream.rb:14:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T20:25:10.684973 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-06T20:25:10.688344 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-08-06T20:25:10.690789 #6] ERROR -- : Client fetch loop error: wrong number of arguments (given 1, expected 2) +I, [2018-08-06T20:25:10.691506 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-06T20:25:10.692481 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-06T20:25:10.860121 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:25:10.882672 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:25:11.690802 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-06T20:25:11.693225 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-06T20:25:11.727318 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-3d5d7d6c-118e-4eaa-9ee2-a3ccca05afd7` +I, [2018-08-06T20:25:11.727547 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-06T20:25:11.764339 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-cb3fc41a-c827-4669-8ddb-7856b97a9814` +I, [2018-08-06T20:25:11.765179 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-06T20:25:11.765555 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-06T20:25:11.765663 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-06T20:25:11.770415 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-06T20:25:11.770496 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-06T20:25:11.861002 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:25:11.883226 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:25:12.861543 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:25:12.883759 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:25:13.862874 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:25:13.884449 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:25:14.863644 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:25:14.885507 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:25:15.864207 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:25:15.885887 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:25:16.864570 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:25:16.886937 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:25:17.865093 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:25:17.887609 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:25:18.867017 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:25:18.888346 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:25:19.867468 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:25:19.889294 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:25:20.868095 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:25:20.890252 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:25:21.779805 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-06T20:25:21.780088 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-06T20:25:21.868578 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-06T20:25:21.890750 #6] INFO -- : Seeking course_change/0 to offset 0 +E, [2018-08-06T20:25:23.785802 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- ArgumentError: wrong number of arguments (given 1, expected 2) +/usr/src/app/app/controllers/eventstream.rb:14:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T20:25:23.844517 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-06T20:25:23.819129 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- ArgumentError: wrong number of arguments (given 1, expected 2) +/usr/src/app/app/controllers/eventstream.rb:14:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T20:25:23.844951 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-06T20:25:23.891580 #6] ERROR -- : Client fetch loop error: wrong number of arguments (given 1, expected 2) +I, [2018-08-06T20:25:23.891836 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-06T20:25:23.892729 #6] ERROR -- : Client fetch loop error: wrong number of arguments (given 1, expected 2) +I, [2018-08-06T20:25:23.892933 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-06T20:25:23.893684 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-08-06T20:25:23.893825 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-06T20:25:24.091710 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:25:24.158455 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:25:24.893958 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-06T20:25:24.894376 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-06T20:25:24.909879 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-637c83f7-8f7a-4584-a1f1-7565600536bf` +I, [2018-08-06T20:25:24.909927 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-06T20:25:24.915760 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-06T20:25:24.915898 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-06T20:25:24.922222 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-600ff6a7-69d4-496b-88c4-397070d4a6a7` +I, [2018-08-06T20:25:24.922272 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-06T20:25:24.926747 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-06T20:25:24.926824 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-06T20:25:25.092507 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:25:25.160935 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:25:26.093228 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:25:26.161361 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:25:27.093817 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:25:27.161837 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:25:28.094344 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:25:28.162612 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:25:29.061132 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:25:29.129671 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:25:30.062295 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:25:30.131446 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:25:31.063016 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:25:31.132125 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:25:32.063799 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:25:32.133082 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:25:33.064252 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:25:33.133426 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:25:34.064772 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:25:34.133886 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:25:34.889606 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-06T20:25:34.899508 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-06T20:25:35.067817 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-06T20:25:35.145618 #6] INFO -- : Seeking course_change/0 to offset 0 +E, [2018-08-06T20:25:36.901796 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- ArgumentError: wrong number of arguments (given 1, expected 2) +/usr/src/app/app/controllers/eventstream.rb:14:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +E, [2018-08-06T20:25:36.911433 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- ArgumentError: wrong number of arguments (given 1, expected 2) +/usr/src/app/app/controllers/eventstream.rb:14:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T20:25:36.960080 #6] INFO -- : Leaving group `notifications_course_change` +I, [2018-08-06T20:25:36.976612 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-06T20:25:37.010585 #6] ERROR -- : Client fetch loop error: wrong number of arguments (given 1, expected 2) +I, [2018-08-06T20:25:37.011154 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-06T20:25:37.029075 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-08-06T20:25:37.038871 #6] ERROR -- : Client fetch loop error: wrong number of arguments (given 1, expected 2) +I, [2018-08-06T20:25:37.039233 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-06T20:25:37.040776 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-06T20:25:37.078581 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:25:37.138505 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:25:38.030117 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-06T20:25:38.041347 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-3cd4145f-030d-40ac-b187-c63b58251b08` +I, [2018-08-06T20:25:38.041442 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-06T20:25:38.041792 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-06T20:25:38.050414 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-06T20:25:38.050487 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-06T20:25:38.058190 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-2ff16567-1413-45a2-984e-eb765fa13cbb` +I, [2018-08-06T20:25:38.058272 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-06T20:25:38.097466 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-06T20:25:38.098438 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-06T20:25:38.104687 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:25:38.139106 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:25:39.105295 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:25:39.141360 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:25:40.573678 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:25:40.574889 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:25:41.574540 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:25:41.576170 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:25:42.574995 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:25:42.576936 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:25:43.575817 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:25:43.577287 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:25:44.576225 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:25:44.577674 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:25:45.577019 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:25:45.578295 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:25:46.577458 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:25:46.578913 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:25:47.578123 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:25:47.579098 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:25:48.578725 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:25:48.579304 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:25:48.606850 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-06T20:25:48.610413 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-06T20:25:49.579122 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-06T20:25:49.579534 #6] INFO -- : Seeking course_change/0 to offset 0 +E, [2018-08-06T20:25:50.609409 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- ArgumentError: wrong number of arguments (given 1, expected 2) +/usr/src/app/app/controllers/eventstream.rb:14:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T20:28:41.712172 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-06T20:28:41.713414 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-06T20:28:41.718886 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-06T20:28:41.718958 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-06T20:28:41.729171 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-06T20:28:41.729399 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-06T20:28:41.729744 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-06T20:28:41.729806 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-06T20:28:46.730326 #6] 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.14:9094 +I, [2018-08-06T20:28:46.731750 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-06T20:28:46.731822 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-06T20:28:46.732935 #6] 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.14:9094 +I, [2018-08-06T20:28:46.733925 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-06T20:28:46.733975 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-06T20:28:46.736033 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-06T20:28:46.736190 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-06T20:28:46.736461 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-06T20:28:46.736589 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-06T20:28:51.739091 #6] 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.14:9094 +E, [2018-08-06T20:28:51.780651 #6] 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.14:9094 +I, [2018-08-06T20:28:51.799026 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-06T20:28:51.799116 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-06T20:28:51.849788 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-06T20:28:51.849934 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-06T20:28:51.851097 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-06T20:28:51.851539 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-06T20:28:51.852576 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-06T20:28:51.852732 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-06T20:28:56.854766 #6] 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.14:9094 +I, [2018-08-06T20:28:56.873466 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-06T20:28:56.874122 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-06T20:28:56.894703 #6] 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.14:9094 +I, [2018-08-06T20:28:56.898438 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-06T20:28:56.898503 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-06T20:28:56.900037 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-06T20:28:56.905910 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-06T20:28:56.926590 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-06T20:28:56.926800 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-06T20:29:01.915493 #6] 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.14:9094 +I, [2018-08-06T20:29:01.924791 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-06T20:29:01.924947 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-06T20:29:01.934106 #6] 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.14:9094 +I, [2018-08-06T20:29:01.935817 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-06T20:29:01.935869 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-06T20:29:03.235640 #6] ERROR -- : No brokers in cluster +E, [2018-08-06T20:29:03.653333 #6] ERROR -- : No brokers in cluster +E, [2018-08-06T20:29:08.237275 #6] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: + +I, [2018-08-06T20:29:08.256620 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-06T20:29:08.256809 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-06T20:29:08.654473 #6] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: + +I, [2018-08-06T20:29:08.657012 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-06T20:29:08.657369 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-06T20:29:08.845886 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-06T20:29:08.847484 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-06T20:29:08.864805 #6] INFO -- : Will fetch at most 1048576 bytes at a time per partition from section_change +I, [2018-08-06T20:29:08.865131 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-06T20:29:08.964286 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-06T20:29:08.967313 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:29:09.113338 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-06T20:29:09.113555 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-06T20:29:09.173950 #6] INFO -- : Will fetch at most 1048576 bytes at a time per partition from course_change +I, [2018-08-06T20:29:09.174140 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-06T20:29:09.228210 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-06T20:29:09.228484 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:29:09.968359 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:29:10.229170 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:29:10.968859 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:29:11.231214 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:29:11.969973 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:29:12.250165 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:29:12.970352 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:29:13.260960 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:29:13.970852 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:29:14.261708 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:29:14.971803 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:29:15.262242 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:29:15.972349 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:29:16.264469 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:29:16.973277 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:29:17.265546 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:29:17.974604 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:29:18.266749 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:29:18.975496 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:29:19.267167 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:29:19.852596 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-10090b72-be22-494f-8e29-113c2ea1e1bb` +I, [2018-08-06T20:29:19.852954 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-06T20:29:19.870109 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-78cb6286-aecc-405c-aa00-5be0329fe9e7` +I, [2018-08-06T20:29:19.870182 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-06T20:29:19.976269 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:29:20.268264 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:29:20.959485 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-06T20:29:21.051226 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:29:21.137322 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-06T20:29:21.349487 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:29:21.398518 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-06T20:29:21.432147 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-06T20:29:22.052111 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:29:22.108733 #6] INFO -- : Partitions assigned for `section_change`: 0 +I, [2018-08-06T20:29:22.176058 #6] INFO -- : Partitions assigned for `course_change`: 0 +I, [2018-08-06T20:29:22.350624 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:29:23.052452 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-06T20:29:23.052818 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-06T20:29:23.053854 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-06T20:29:23.090980 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-06T20:29:23.351363 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-06T20:29:23.351547 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-06T20:29:23.351782 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-06T20:29:23.487942 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +E, [2018-08-06T20:29:28.883957 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- ArgumentError: message is required. +/usr/local/bundle/gems/plezi-0.16.1/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.1/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T20:29:28.889004 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-06T20:29:28.963534 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- ArgumentError: message is required. +/usr/local/bundle/gems/plezi-0.16.1/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.1/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T20:29:28.967478 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-06T20:29:29.023533 #6] ERROR -- : Client fetch loop error: message is required. +I, [2018-08-06T20:29:29.024658 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-06T20:29:29.029317 #6] ERROR -- : Client fetch loop error: message is required. +I, [2018-08-06T20:29:29.031367 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-06T20:29:29.051384 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-06T20:29:29.053406 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-08-06T20:29:29.057131 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-06T20:29:29.815689 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:29:30.052163 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:29:30.054265 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-06T20:29:30.057440 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-06T20:29:30.089926 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-80321c10-1cf7-4afe-8528-420ca58f82d7` +I, [2018-08-06T20:29:30.090004 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-06T20:29:30.104031 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-7b9642d4-6ccf-40d2-a597-86058b4a1814` +I, [2018-08-06T20:29:30.104103 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-06T20:29:30.115965 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-06T20:29:30.116070 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-06T20:29:30.125497 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-06T20:29:30.125858 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-06T20:29:30.816314 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:29:31.053196 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:29:31.817028 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:29:32.053931 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:29:32.819427 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:29:33.055375 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:29:33.820616 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:29:34.056230 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:29:34.821246 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:29:35.057113 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:29:35.914728 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:29:36.057617 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:29:37.000562 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:29:37.234420 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:29:38.003313 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:29:38.255443 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:29:39.100682 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:29:39.262131 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:29:40.299492 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:29:40.301738 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-06T20:29:40.326278 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:29:40.326552 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-06T20:29:41.300463 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-06T20:29:41.327243 #6] INFO -- : Seeking section_change/0 to offset 0 +E, [2018-08-06T20:29:42.399132 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- ArgumentError: message is required. +/usr/local/bundle/gems/plezi-0.16.1/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.1/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T20:29:42.399222 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-06T20:29:42.421881 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- ArgumentError: message is required. +/usr/local/bundle/gems/plezi-0.16.1/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.1/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T20:29:42.426413 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-06T20:29:42.460573 #6] ERROR -- : Client fetch loop error: message is required. +I, [2018-08-06T20:29:42.462326 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-06T20:29:42.466297 #6] ERROR -- : Client fetch loop error: message is required. +I, [2018-08-06T20:29:42.466529 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-06T20:29:42.470087 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-08-06T20:29:42.481785 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-06T20:29:42.495635 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:29:42.505438 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:29:43.470341 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-06T20:29:43.482637 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-06T20:29:43.496045 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:29:43.506722 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:29:43.518630 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-537c7ccc-319c-4521-b147-c9126feaff82` +I, [2018-08-06T20:29:43.518695 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-06T20:29:43.559256 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-6103ff85-d160-43a7-af6f-ac85963d3801` +I, [2018-08-06T20:29:43.559319 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-06T20:29:43.559960 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-06T20:29:43.560025 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-06T20:29:43.577528 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-06T20:29:43.577630 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-06T20:29:44.499082 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:29:44.516337 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:29:45.500401 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:29:45.517172 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:29:46.780553 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:29:46.791882 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:29:47.909152 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:29:50.611381 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:29:50.761779 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:29:51.773185 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:29:51.787401 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:29:52.707210 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-06T20:29:52.779957 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:29:52.790624 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:29:53.796381 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:29:53.820009 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-06T20:29:54.036529 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-06T20:29:54.975157 #6] INFO -- : Seeking course_change/0 to offset 0 +E, [2018-08-06T20:29:57.614534 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- ArgumentError: message is required. +/usr/local/bundle/gems/plezi-0.16.1/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.1/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T20:29:57.614923 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-06T20:29:59.212007 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- ArgumentError: message is required. +/usr/local/bundle/gems/plezi-0.16.1/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.1/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T20:29:59.759018 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-06T20:30:05.775222 #6] ERROR -- : Client fetch loop error: message is required. +I, [2018-08-06T20:30:05.779584 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-06T20:30:05.882724 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-06T20:30:05.995006 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-08-06T20:30:06.205406 #6] ERROR -- : Client fetch loop error: message is required. +I, [2018-08-06T20:30:06.206006 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-06T20:30:06.217197 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-06T20:30:06.472369 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:30:06.883584 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:30:06.995895 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-06T20:30:07.222676 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-06T20:30:07.332103 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-0d54bd6a-5221-481d-bb92-12bf49104d33` +I, [2018-08-06T20:30:07.332204 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-06T20:30:07.346651 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-06T20:30:07.346972 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-06T20:30:07.475652 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:30:07.587079 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-a300e6c5-20ef-4412-81ca-2a02c2d9a4ad` +I, [2018-08-06T20:30:07.587174 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-06T20:30:07.674480 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-06T20:30:07.674639 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-06T20:30:08.180438 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:30:08.487330 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:30:09.201152 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:30:09.501541 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:30:11.221007 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:30:11.222627 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:30:12.222404 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:30:12.223410 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:30:13.222950 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:30:13.225868 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:30:14.223875 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:30:14.226806 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:30:15.264037 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:30:15.265787 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:30:15.952281 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-06T20:30:16.270634 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:30:16.270782 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-06T20:30:17.265676 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-06T20:30:17.271621 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-06T20:30:17.967309 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- ArgumentError: message is required. +/usr/local/bundle/gems/plezi-0.16.1/lib/plezi/controller/controller.rb:168:in `publish' +/usr/local/bundle/gems/plezi-0.16.1/lib/plezi/controller/controller.rb:168:in `publish' +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T20:30:17.967529 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-06T20:30:17.989860 #6] ERROR -- : Client fetch loop error: message is required. +I, [2018-08-06T20:30:17.990768 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-06T20:30:17.992989 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-06T20:30:18.082264 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:30:18.272033 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-06T20:30:18.993257 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-06T20:32:31.970336 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-06T20:32:31.970438 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-06T20:32:31.975025 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-06T20:32:31.975134 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-06T20:32:31.976190 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-06T20:32:31.976329 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-06T20:32:31.976925 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-06T20:32:31.977055 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-06T20:32:36.976750 #6] 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.14:9094 +I, [2018-08-06T20:32:36.977487 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-06T20:32:36.977540 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-06T20:32:36.979002 #6] 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.14:9094 +E, [2018-08-06T20:32:36.982993 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-06T20:32:36.984913 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +I, [2018-08-06T20:32:36.988264 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-06T20:32:36.988320 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-06T20:32:36.988968 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-06T20:32:36.989284 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-06T20:32:41.985696 #6] 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.14:9094 +E, [2018-08-06T20:32:41.996265 #6] 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.14:9094 +I, [2018-08-06T20:32:41.996969 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-06T20:32:41.997024 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-06T20:32:41.997364 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-06T20:32:42.009155 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-06T20:32:42.021502 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-06T20:32:42.021725 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-06T20:32:42.022105 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-06T20:32:42.033006 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-06T20:32:47.024201 #6] 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.14:9094 +I, [2018-08-06T20:32:47.030520 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-06T20:32:47.030624 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-06T20:32:47.033699 #6] 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.14:9094 +I, [2018-08-06T20:32:47.034985 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-06T20:32:47.035049 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-06T20:32:47.552534 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-06T20:32:47.552968 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-06T20:32:47.556140 #6] INFO -- : Will fetch at most 1048576 bytes at a time per partition from section_change +I, [2018-08-06T20:32:47.556404 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-06T20:32:47.669666 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-06T20:32:47.670038 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-06T20:32:47.706091 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-06T20:32:47.706337 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:32:47.755404 #6] INFO -- : Will fetch at most 1048576 bytes at a time per partition from course_change +I, [2018-08-06T20:32:47.755602 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-06T20:32:47.762592 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-06T20:32:47.762845 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:32:49.630432 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:32:49.663070 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:32:50.635840 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:32:50.663891 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:32:51.636837 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:32:51.668387 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:32:52.637347 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:32:52.669403 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:32:53.638775 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:32:53.669836 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:32:54.678928 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:32:54.679101 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:32:55.679839 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:32:55.680258 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:32:56.680304 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:32:56.680732 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:32:57.310812 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-1aec99b1-5e6c-4b64-ae6c-897d1b336fc9` +I, [2018-08-06T20:32:57.310924 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-06T20:32:57.317981 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-8b6c6cf6-131d-463c-be2e-317ac460b8c0` +I, [2018-08-06T20:32:57.318042 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-06T20:32:57.681123 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:32:57.681236 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:32:58.312490 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-06T20:32:58.326367 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-06T20:32:58.630365 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-06T20:32:58.682657 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:32:58.686123 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:32:59.265396 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-06T20:32:59.709857 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:32:59.710032 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:33:00.712464 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:33:00.712740 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:33:00.805559 #6] INFO -- : Partitions assigned for `section_change`: 0 +I, [2018-08-06T20:33:00.894857 #6] INFO -- : Partitions assigned for `course_change`: 0 +I, [2018-08-06T20:33:01.713204 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-06T20:33:01.713381 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-06T20:33:01.713560 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-06T20:33:01.714554 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-06T20:33:01.715018 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-06T20:33:01.715069 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-06T20:33:01.719787 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-06T20:33:01.724569 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +E, [2018-08-06T20:33:08.300651 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- NameError: undefined local variable or method `client' for # +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T20:33:08.301692 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-06T20:33:08.315736 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- NameError: undefined local variable or method `client' for # +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T20:33:08.329748 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-06T20:33:10.136958 #6] ERROR -- : Client fetch loop error: undefined local variable or method `client' for # +I, [2018-08-06T20:33:10.141050 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-06T20:33:10.142091 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-06T20:33:10.155019 #6] ERROR -- : Client fetch loop error: undefined local variable or method `client' for # +I, [2018-08-06T20:33:10.166264 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-06T20:33:10.247639 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-06T20:33:10.309324 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-08-06T20:33:10.313579 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-06T20:33:11.149316 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:33:11.253407 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:33:11.309903 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-06T20:33:11.314051 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-06T20:33:11.625428 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-ce887272-03b4-4eca-813d-52afa2488a05` +I, [2018-08-06T20:33:11.625516 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-06T20:33:11.690377 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-06T20:33:11.690574 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-06T20:33:11.702085 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-3f1dd4ae-94ad-4191-87d8-0ae63c4d3734` +I, [2018-08-06T20:33:11.702150 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-06T20:33:11.732198 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-06T20:33:11.732311 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-06T20:33:12.207583 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:33:12.254639 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:33:13.208612 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:33:13.256231 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:33:14.209095 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:33:14.256914 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:33:15.210247 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:33:15.257761 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:33:16.212829 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:33:16.258383 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:33:17.213199 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:33:17.261552 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:33:18.217422 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:33:18.262964 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:33:19.217866 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:33:19.274800 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:33:20.218737 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:33:20.275736 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:33:21.219427 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:33:21.281608 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:33:21.929416 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-06T20:33:21.976397 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-06T20:33:22.221425 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-06T20:33:22.281954 #6] INFO -- : Seeking section_change/0 to offset 0 +E, [2018-08-06T20:33:24.000257 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- NameError: undefined local variable or method `client' for # +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T20:33:24.000446 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-06T20:33:24.018355 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- NameError: undefined local variable or method `client' for # +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T20:33:24.018431 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-06T20:33:24.045195 #6] ERROR -- : Client fetch loop error: undefined local variable or method `client' for # +I, [2018-08-06T20:33:24.045582 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-06T20:33:24.053657 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-08-06T20:33:24.053879 #6] ERROR -- : Client fetch loop error: undefined local variable or method `client' for # +I, [2018-08-06T20:33:24.054067 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-06T20:33:24.061181 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-06T20:33:24.125243 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:33:24.154173 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:33:25.054035 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-06T20:33:25.061842 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-06T20:33:25.087278 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-4054f104-589d-401d-b952-9ffb9eb7890c` +I, [2018-08-06T20:33:25.087342 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-06T20:33:25.096900 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-0573ead8-8211-4cfd-8e88-b638a5fb1c6e` +I, [2018-08-06T20:33:25.096976 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-06T20:33:25.122217 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-06T20:33:25.122327 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-06T20:33:25.122506 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-06T20:33:25.122664 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-06T20:33:25.129634 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:33:25.155042 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:33:26.130587 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:33:26.158727 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:33:27.130891 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:33:27.159136 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:33:28.131349 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:33:28.159660 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:33:29.132259 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:33:29.160437 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:33:30.097786 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:33:30.126091 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:33:31.098143 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:33:31.127665 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:33:32.099894 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:33:32.128123 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:33:33.102729 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:33:33.128637 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:33:34.103851 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:33:34.129138 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:33:35.096510 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-06T20:33:35.103498 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-06T20:33:35.104278 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:33:35.129453 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-06T20:33:36.105170 #6] INFO -- : Seeking section_change/0 to offset 0 +E, [2018-08-06T20:33:37.112437 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- NameError: undefined local variable or method `client' for # +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T20:33:37.126010 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-06T20:33:37.115012 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- NameError: undefined local variable or method `client' for # +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T20:33:37.126310 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-06T20:33:37.148451 #6] ERROR -- : Client fetch loop error: undefined local variable or method `client' for # +I, [2018-08-06T20:33:37.148741 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-06T20:33:37.150548 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-06T20:33:37.152965 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-06T20:33:37.154903 #6] ERROR -- : Client fetch loop error: undefined local variable or method `client' for # +I, [2018-08-06T20:33:37.155077 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-06T20:33:37.156260 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-06T20:33:37.206845 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:33:38.151462 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-06T20:33:38.153610 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:33:38.156846 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-06T20:33:38.159314 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-4b1e234f-b0f7-489a-99f5-8218960d9ee9` +I, [2018-08-06T20:33:38.159357 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-06T20:33:38.166674 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-06T20:33:38.166759 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-06T20:33:38.179649 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-36c109be-2a67-434d-b81e-b3d8c8bc2b69` +I, [2018-08-06T20:33:38.179695 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-06T20:33:38.186363 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-06T20:33:38.186422 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-06T20:33:38.207593 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:33:39.154749 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:33:39.208079 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:33:40.155615 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:33:40.208475 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:33:41.156269 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:33:41.208969 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:33:42.157189 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:33:42.209370 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:33:43.158269 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:33:43.210058 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:33:44.158745 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:33:44.211013 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:33:45.159323 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:33:45.211463 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:33:46.159900 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:33:46.211769 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:33:47.160247 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:33:47.212340 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:33:48.161101 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:33:48.194410 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-06T20:33:48.196877 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-06T20:33:48.213245 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-06T20:33:49.162046 #6] INFO -- : Seeking section_change/0 to offset 0 +E, [2018-08-06T20:33:50.199673 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- NameError: undefined local variable or method `client' for # +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T20:33:50.205605 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-06T20:33:50.205471 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- NameError: undefined local variable or method `client' for # +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T20:33:50.206197 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-06T20:33:50.216110 #6] ERROR -- : Client fetch loop error: undefined local variable or method `client' for # +I, [2018-08-06T20:33:50.216278 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-06T20:33:50.216542 #6] ERROR -- : Client fetch loop error: undefined local variable or method `client' for # +I, [2018-08-06T20:33:50.216688 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-06T20:33:50.217731 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-08-06T20:33:50.217996 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-06T20:33:50.229349 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:33:50.251952 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:33:51.218130 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-06T20:33:51.218478 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-06T20:33:51.228830 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-85cd2050-2687-4fcc-a89a-e8e1d7d5e82c` +I, [2018-08-06T20:33:51.228914 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-06T20:33:51.229791 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-e9f49f3d-c170-4d98-83cc-bfae5c6f31d3` +I, [2018-08-06T20:33:51.229839 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-06T20:33:51.230090 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:33:51.234153 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-06T20:33:51.234214 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-06T20:33:51.238243 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-06T20:33:51.238427 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-06T20:33:51.254045 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:33:52.231072 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:33:52.255264 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:33:53.231669 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:33:53.256071 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:33:54.234962 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:33:54.256492 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:33:55.235399 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:33:55.257368 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:33:56.236449 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:33:56.257789 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:33:57.237651 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:33:57.258339 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:33:58.239146 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:33:58.258941 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:33:59.239642 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:33:59.259619 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:34:00.202021 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:34:00.221749 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:34:01.202733 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:34:01.205186 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-06T20:34:01.214147 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-06T20:34:01.222144 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-06T20:34:02.203782 #6] INFO -- : Seeking course_change/0 to offset 0 +E, [2018-08-06T20:34:03.211636 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- NameError: undefined local variable or method `client' for # +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T20:34:03.214708 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-06T20:34:03.220820 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- NameError: undefined local variable or method `client' for # +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T20:34:03.221019 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-06T20:34:03.223354 #6] ERROR -- : Client fetch loop error: undefined local variable or method `client' for # +I, [2018-08-06T20:34:03.223656 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-06T20:34:03.226158 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-08-06T20:34:03.228131 #6] ERROR -- : Client fetch loop error: undefined local variable or method `client' for # +I, [2018-08-06T20:34:03.228714 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-06T20:34:03.230043 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-06T20:34:03.308617 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:34:03.325299 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:34:04.226723 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-06T20:34:04.232150 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-871b2a0a-bbf7-4098-a127-b861863bae11` +I, [2018-08-06T20:34:04.232198 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-06T20:34:04.237436 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-06T20:34:04.242185 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-c6783f72-5f5f-4627-9dbd-9c8e988636f3` +I, [2018-08-06T20:34:04.242234 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-06T20:34:04.244659 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-06T20:34:04.244718 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-06T20:34:04.261061 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-06T20:34:04.261132 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-06T20:34:04.308986 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:34:04.326538 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:34:05.310140 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:34:05.327202 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:34:06.310629 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:34:06.328112 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:34:07.313367 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:34:07.328916 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:34:08.313813 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:34:08.329387 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:34:09.314251 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:34:09.330612 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:34:10.315727 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:34:10.331108 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:34:11.316157 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:34:11.331530 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:34:12.316689 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:34:12.332365 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:34:13.317028 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:34:13.333361 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:34:14.249950 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-06T20:34:14.267982 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-06T20:34:14.317348 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-06T20:34:14.333905 #6] INFO -- : Seeking course_change/0 to offset 0 +E, [2018-08-06T20:34:16.412011 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- NameError: undefined local variable or method `client' for # +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T20:34:16.562652 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-06T20:34:16.474889 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- NameError: undefined local variable or method `client' for # +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T20:34:16.563675 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-06T20:34:16.607773 #6] ERROR -- : Client fetch loop error: undefined local variable or method `client' for # +I, [2018-08-06T20:34:16.607941 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-06T20:34:16.668887 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-06T20:34:16.669374 #6] ERROR -- : Client fetch loop error: undefined local variable or method `client' for # +I, [2018-08-06T20:34:16.669518 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-06T20:34:16.703850 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-08-06T20:34:16.705567 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-06T20:34:16.714538 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:34:17.669200 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:34:17.704473 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-06T20:34:17.705806 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-06T20:34:17.708102 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-5d32a857-83c5-4bc2-a5e1-e28b816caf1a` +I, [2018-08-06T20:34:17.708615 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-06T20:34:17.711487 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-f8241bad-0b11-4749-ada5-23c5d6a96de0` +I, [2018-08-06T20:34:17.711538 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-06T20:34:17.717528 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-06T20:34:17.719026 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-06T20:34:17.717743 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:34:17.727132 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-06T20:34:17.727232 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-06T20:34:18.669577 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:34:18.722467 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:34:19.670085 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:34:19.722771 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:34:20.671213 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:34:20.723770 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:34:21.673429 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:34:21.724139 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:34:22.673774 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:34:22.724468 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:34:23.674090 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:34:23.732688 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:34:24.675352 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:34:24.733422 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:34:25.676064 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:34:25.733661 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:34:26.677280 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:34:26.734501 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:34:27.677813 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:34:27.729292 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-06T20:34:27.740343 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:34:27.741305 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-06T20:34:28.678188 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-06T20:34:28.875034 #6] INFO -- : Seeking section_change/0 to offset 0 +E, [2018-08-06T20:34:29.706667 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- NameError: undefined local variable or method `client' for # +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T20:34:29.706759 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-06T20:34:29.711042 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- NameError: undefined local variable or method `client' for # +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T20:34:29.711226 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-06T20:34:29.711964 #6] ERROR -- : Client fetch loop error: undefined local variable or method `client' for # +I, [2018-08-06T20:34:29.712511 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-06T20:34:29.716992 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-08-06T20:34:29.717936 #6] ERROR -- : Client fetch loop error: undefined local variable or method `client' for # +I, [2018-08-06T20:34:29.718146 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-06T20:34:29.720161 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-06T20:34:29.879924 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:34:30.683876 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:34:30.717809 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-06T20:34:30.720574 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-06T20:34:30.756890 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-fd8eafab-9239-4e18-8146-3d30bf2562ec` +I, [2018-08-06T20:34:30.758545 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-06T20:34:30.762424 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-06T20:34:30.762508 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-06T20:34:30.775645 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-b631abb0-e1d8-410e-875f-405c090b2c60` +I, [2018-08-06T20:34:30.775727 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-06T20:34:30.778524 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-06T20:34:30.778623 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-06T20:34:30.882052 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:34:31.684150 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:34:31.882942 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:34:32.684783 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:34:32.883406 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:34:33.685690 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:34:33.883907 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:34:34.686019 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:34:34.884485 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:34:35.791640 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:34:35.888241 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:34:36.801873 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:34:36.889290 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:34:37.802268 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:34:37.889594 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:34:38.810858 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:34:38.890050 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:34:39.813223 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:34:39.890925 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:34:40.776594 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-06T20:34:40.787212 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-06T20:34:40.814265 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-06T20:34:40.891445 #6] INFO -- : Seeking section_change/0 to offset 0 +E, [2018-08-06T20:34:42.785784 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- NameError: undefined local variable or method `client' for # +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T20:34:42.785878 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-06T20:34:42.788505 #6] ERROR -- : Client fetch loop error: undefined local variable or method `client' for # +I, [2018-08-06T20:34:42.788848 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-06T20:34:42.790802 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- NameError: undefined local variable or method `client' for # +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T20:34:42.797474 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-06T20:34:42.794634 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-08-06T20:34:42.804129 #6] ERROR -- : Client fetch loop error: undefined local variable or method `client' for # +I, [2018-08-06T20:34:42.804320 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-06T20:34:42.806255 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-06T20:34:42.817341 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:34:43.261483 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:34:43.802702 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-06T20:34:43.807065 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-06T20:34:43.811636 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-fceb1497-1f89-4322-aaaa-c71b3bdbbbeb` +I, [2018-08-06T20:34:43.811679 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-06T20:34:43.818745 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:34:43.819095 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-453adf7d-d1be-4b68-b754-21163e3e828a` +I, [2018-08-06T20:34:43.819133 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-06T20:34:43.819719 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-06T20:34:43.819795 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-06T20:34:43.823063 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-06T20:34:43.823122 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-06T20:34:44.262223 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:34:44.819491 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:34:45.262596 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:34:45.820658 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:34:46.263276 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:34:46.821216 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:34:47.310492 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:34:47.827583 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:34:48.327286 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:34:49.285080 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:34:49.358260 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:34:51.412957 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:34:51.879862 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:34:52.628234 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:34:52.945412 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:34:53.502000 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-06T20:34:53.748727 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:34:53.899955 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-06T20:34:53.945817 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-06T20:34:55.244204 #6] INFO -- : Seeking section_change/0 to offset 0 +E, [2018-08-06T20:34:55.990737 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- NameError: undefined local variable or method `client' for # +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T20:34:55.990854 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-06T20:34:56.096416 #6] ERROR -- : Client fetch loop error: undefined local variable or method `client' for # +I, [2018-08-06T20:34:56.096810 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-06T20:34:56.106111 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-06T20:34:56.775023 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:34:57.106548 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-06T20:34:57.116941 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-ec8b5f5e-e57f-49a2-911f-5945049905f7` +I, [2018-08-06T20:34:57.117002 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-06T20:34:57.128345 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-06T20:34:57.128449 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-06T20:34:57.778043 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-06T20:34:57.990221 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- NameError: undefined local variable or method `client' for # +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T20:34:57.990330 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-06T20:34:58.002875 #6] ERROR -- : Client fetch loop error: undefined local variable or method `client' for # +I, [2018-08-06T20:34:58.003185 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-06T20:34:58.005234 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-06T20:34:58.127228 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:34:58.778469 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:34:59.005660 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-06T20:34:59.011463 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-5d070c55-35c7-484b-a1f4-29e63d0d8cb3` +I, [2018-08-06T20:34:59.011717 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-06T20:34:59.016432 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-06T20:34:59.016551 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-06T20:34:59.127827 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:34:59.744857 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:35:00.094524 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:35:00.746023 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:35:01.095198 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:35:01.746966 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:35:02.095593 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:35:02.747535 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:35:03.095952 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:35:03.748509 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:35:04.096759 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:35:04.748979 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:35:05.097121 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:35:05.749366 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:35:06.097838 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:35:06.749727 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:35:07.098535 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:35:07.116921 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-06T20:35:07.750283 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-06T20:35:08.099680 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:35:08.990812 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-06T20:35:09.100239 #6] INFO -- : Seeking section_change/0 to offset 0 +E, [2018-08-06T20:35:09.132084 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- NameError: undefined local variable or method `client' for # +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T20:35:09.150950 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-06T20:35:09.175979 #6] ERROR -- : Client fetch loop error: undefined local variable or method `client' for # +I, [2018-08-06T20:35:09.176275 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-06T20:35:09.178585 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-06T20:35:09.403351 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:35:10.179388 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-06T20:35:10.183548 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-6c3a8c23-834e-496c-8df7-da39296b3d8a` +I, [2018-08-06T20:35:10.183595 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-06T20:35:10.186043 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-06T20:35:10.186121 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-06T20:35:10.403748 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-06T20:35:10.995004 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- NameError: undefined local variable or method `client' for # +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T20:35:10.995075 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-06T20:35:10.998707 #6] ERROR -- : Client fetch loop error: undefined local variable or method `client' for # +I, [2018-08-06T20:35:10.998928 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-06T20:35:11.005844 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-06T20:35:11.298293 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:35:11.405112 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:35:12.006068 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-06T20:35:12.018448 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-4b7efeb2-3f18-4beb-8239-81856fe2283f` +I, [2018-08-06T20:35:12.018497 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-06T20:35:12.022679 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-06T20:35:12.022744 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-06T20:35:12.299174 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:35:12.406851 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:35:13.299531 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:35:13.407558 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:35:14.299853 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:35:14.408137 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:35:15.300429 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:35:15.413527 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:35:16.301096 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:35:16.415343 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:35:17.301563 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:35:17.416166 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:35:18.301908 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:35:18.417858 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:35:19.305249 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:35:19.422371 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:35:20.200077 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-06T20:35:20.305628 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:35:20.422737 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-06T20:35:21.316102 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:35:22.055735 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-06T20:35:22.363297 #6] INFO -- : Seeking section_change/0 to offset 0 +E, [2018-08-06T20:35:22.414056 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- NameError: undefined local variable or method `client' for # +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T20:35:22.423137 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-06T20:35:23.484525 #6] ERROR -- : Client fetch loop error: undefined local variable or method `client' for # +I, [2018-08-06T20:35:23.486293 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-06T20:35:23.504096 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-06T20:35:23.564350 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-06T20:35:24.328468 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- NameError: undefined local variable or method `client' for # +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T20:35:24.328745 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-06T20:35:24.366911 #6] ERROR -- : Client fetch loop error: undefined local variable or method `client' for # +I, [2018-08-06T20:35:24.367202 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-06T20:35:24.371087 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-06T20:35:24.504612 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-06T20:35:24.565016 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:35:24.642974 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-e667313d-5f5a-41b3-b2ee-be55bb755114` +I, [2018-08-06T20:35:24.643060 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-06T20:35:24.932682 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-06T20:35:24.932803 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-06T20:35:25.397042 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-06T20:35:25.401100 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:35:25.414097 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-4d47a473-063d-427d-b1fe-0c47b582a28d` +I, [2018-08-06T20:35:25.414164 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-06T20:35:25.489326 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-06T20:35:25.489413 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-06T20:35:25.566119 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:35:26.401862 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:35:26.566688 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:35:27.402620 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:35:27.574396 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:35:28.403311 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:35:28.575578 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:35:29.367268 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:35:29.539675 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:35:30.367881 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:35:30.540319 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:35:31.368823 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:35:31.541506 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:35:32.370867 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:35:32.544358 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:35:33.392912 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:35:33.642969 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:35:34.468184 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:35:34.644544 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:35:35.056157 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-06T20:35:35.481632 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:35:35.484090 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-06T20:35:35.667141 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-06T20:35:36.482948 #6] INFO -- : Seeking section_change/0 to offset 0 +E, [2018-08-06T20:35:37.071360 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- NameError: undefined local variable or method `client' for # +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T20:35:37.075767 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-06T20:35:37.082966 #6] ERROR -- : Client fetch loop error: undefined local variable or method `client' for # +I, [2018-08-06T20:35:37.083429 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-06T20:35:37.086123 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-06T20:35:37.090700 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-08-06T20:35:37.541877 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- NameError: undefined local variable or method `client' for # +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T20:35:37.541951 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-06T20:35:37.545032 #6] ERROR -- : Client fetch loop error: undefined local variable or method `client' for # +I, [2018-08-06T20:35:37.545329 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-06T20:35:37.552007 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-06T20:35:37.593773 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:35:38.086776 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:35:38.093497 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-06T20:35:38.104786 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-877463d0-a798-4872-bfbd-d443dec55a54` +I, [2018-08-06T20:35:38.104861 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-06T20:35:38.108263 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-06T20:35:38.108328 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-06T20:35:38.553683 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-06T20:35:38.585337 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-679a2884-17db-4a62-88b9-299d1b669132` +I, [2018-08-06T20:35:38.589635 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-06T20:35:38.593655 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-06T20:35:38.593730 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-06T20:35:38.594063 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:35:39.088187 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:35:39.594448 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:35:40.089199 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:35:40.595042 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:35:41.090759 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:35:41.598042 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:35:42.092171 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:35:42.598384 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:35:43.092518 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:35:43.599310 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:35:44.093184 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:35:44.599845 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:35:45.093550 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:35:45.600552 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:35:46.093844 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:35:46.601555 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:35:47.094526 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:35:47.602296 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:35:48.095066 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:35:48.122910 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-06T20:35:48.603054 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:35:48.640861 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-06T20:35:49.096006 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-06T20:35:49.603419 #6] INFO -- : Seeking section_change/0 to offset 0 +E, [2018-08-06T20:35:50.129123 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- NameError: undefined local variable or method `client' for # +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T20:35:50.129211 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-06T20:35:50.132734 #6] ERROR -- : Client fetch loop error: undefined local variable or method `client' for # +I, [2018-08-06T20:35:50.132882 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-06T20:35:50.134973 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-06T20:35:50.166143 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-06T20:35:50.646106 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- NameError: undefined local variable or method `client' for # +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T20:35:50.646382 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-06T20:35:50.651045 #6] ERROR -- : Client fetch loop error: undefined local variable or method `client' for # +I, [2018-08-06T20:35:50.651190 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-06T20:35:50.653532 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-06T20:35:50.782219 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:35:51.135497 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-06T20:35:51.142532 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-b658eb1f-3668-422a-b463-d82e01206bd7` +I, [2018-08-06T20:35:51.142582 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-06T20:35:51.151744 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-06T20:35:51.151806 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-06T20:35:51.167054 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:35:51.653755 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-06T20:35:51.659442 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-bdc34012-ae4b-4881-b9a7-8317449476f2` +I, [2018-08-06T20:35:51.659577 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-06T20:35:51.664098 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-06T20:35:51.664170 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-06T20:35:51.782603 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:35:52.167464 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:35:52.783017 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:35:53.167858 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:35:53.783471 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:35:54.168297 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:35:54.784020 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:35:55.168686 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:35:55.784652 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:35:56.169225 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:35:56.785529 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:35:57.169784 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:35:57.786421 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:35:58.170744 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:35:58.787137 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:35:59.171542 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:35:59.754134 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:36:00.135998 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:36:00.754577 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:36:01.132207 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-06T20:36:01.136883 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:36:01.634818 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-06T20:36:01.755285 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-06T20:36:02.137396 #6] INFO -- : Seeking course_change/0 to offset 0 +E, [2018-08-06T20:36:03.140895 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- NameError: undefined local variable or method `client' for # +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T20:36:03.141054 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-06T20:36:03.145055 #6] ERROR -- : Client fetch loop error: undefined local variable or method `client' for # +I, [2018-08-06T20:36:03.145304 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-06T20:36:03.146988 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-06T20:36:03.173765 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-06T20:36:03.640923 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- NameError: undefined local variable or method `client' for # +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T20:36:03.644024 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-06T20:36:03.649028 #6] ERROR -- : Client fetch loop error: undefined local variable or method `client' for # +I, [2018-08-06T20:36:03.649260 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-06T20:36:03.650463 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-06T20:36:03.678940 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:36:04.147385 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-06T20:36:04.153504 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-84eb5527-8da1-4b63-bb6a-e442abfcfb3c` +I, [2018-08-06T20:36:04.153564 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-06T20:36:04.158019 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-06T20:36:04.158106 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-06T20:36:04.174063 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:36:04.651118 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-06T20:36:04.655699 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-4b885d17-b562-47e4-b786-07be61ec50a8` +I, [2018-08-06T20:36:04.655885 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-06T20:36:04.659314 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-06T20:36:04.659380 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-06T20:36:04.679811 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:36:05.174474 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:36:05.680823 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:36:06.174928 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:36:06.682873 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:36:07.175331 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:36:07.683881 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:36:08.178205 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:36:08.685391 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:36:09.179135 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:36:09.685966 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:36:10.179547 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:36:10.686326 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:36:11.180145 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:36:11.686723 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:36:12.180571 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:36:12.687370 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:36:13.182460 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:36:13.687957 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:36:14.171355 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-06T20:36:14.223957 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:36:14.676676 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-06T20:36:14.693801 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:36:15.228989 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-06T20:36:15.700535 #6] INFO -- : Seeking section_change/0 to offset 0 +E, [2018-08-06T20:36:16.292760 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- NameError: undefined local variable or method `client' for # +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T20:36:16.294740 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-06T20:36:16.468630 #6] ERROR -- : Client fetch loop error: undefined local variable or method `client' for # +I, [2018-08-06T20:36:16.471895 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-06T20:36:16.755060 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-06T20:36:16.994124 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:36:17.971614 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-06T20:36:18.071986 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:36:18.411541 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-5334b032-ec50-402b-83a0-0c02985a4835` +I, [2018-08-06T20:36:18.411730 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-06T20:36:18.421341 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-06T20:36:18.422114 #6] WARN -- : Not fetching from course_change/0 due to pause +E, [2018-08-06T20:36:19.002131 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- NameError: undefined local variable or method `client' for # +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T20:36:19.002366 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-06T20:36:19.034199 #6] ERROR -- : Client fetch loop error: undefined local variable or method `client' for # +I, [2018-08-06T20:36:19.077518 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:36:19.085687 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-06T20:36:19.090009 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-06T20:36:19.954771 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:36:20.078111 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:36:20.114095 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-06T20:36:20.405118 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-01bbe352-46bf-4815-9d1b-229cf675d632` +I, [2018-08-06T20:36:20.405189 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-06T20:36:20.465811 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-06T20:36:20.468201 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-06T20:36:20.962731 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:36:21.207006 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:36:22.314247 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:36:22.316311 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:36:23.394913 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:36:23.395477 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:36:24.409088 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:36:24.409487 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:36:25.438550 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:36:25.438944 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:36:26.439060 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:36:26.439295 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:36:26.958532 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-06T20:36:27.439877 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:36:27.439676 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-06T20:36:28.441081 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-06T20:36:28.967603 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- NameError: undefined local variable or method `client' for # +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T20:36:28.971868 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-06T20:36:28.977384 #6] ERROR -- : Client fetch loop error: undefined local variable or method `client' for # +I, [2018-08-06T20:36:28.977983 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-06T20:36:28.979383 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-06T20:36:29.403422 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:36:29.452897 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:36:29.940421 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-06T20:36:29.947830 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-855db837-32f4-47cf-b369-352368cd9e54` +I, [2018-08-06T20:36:29.947891 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-06T20:36:29.950796 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-06T20:36:29.950900 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-06T20:36:30.405537 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:36:30.453459 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:36:30.495853 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-06T20:36:31.406478 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-06T20:36:31.455292 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:36:32.456205 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-06T20:36:32.499595 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- NameError: undefined local variable or method `client' for # +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T20:36:32.499657 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-06T20:36:32.502389 #6] ERROR -- : Client fetch loop error: undefined local variable or method `client' for # +I, [2018-08-06T20:36:32.502557 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-06T20:36:32.503460 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-06T20:36:32.639988 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:36:33.456664 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:36:33.504113 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-06T20:36:33.509778 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-344c281d-0ea0-4e0e-b6fb-6366a987485d` +I, [2018-08-06T20:36:33.509825 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-06T20:36:33.511635 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-06T20:36:33.511697 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-06T20:36:33.640307 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:36:34.457382 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:36:34.641090 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:36:35.458021 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:36:35.641716 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:36:36.458444 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:36:36.642137 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:36:37.459142 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:36:37.642794 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:36:38.459463 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:36:38.643168 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:36:39.459810 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:36:39.646130 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:36:39.979408 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-06T20:36:40.460494 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-06T20:36:40.646872 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:36:41.647624 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-06T20:36:41.986305 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- NameError: undefined local variable or method `client' for # +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T20:36:41.996151 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-06T20:36:42.011154 #6] ERROR -- : Client fetch loop error: undefined local variable or method `client' for # +I, [2018-08-06T20:36:42.011434 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-06T20:36:42.013124 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-06T20:36:42.159827 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:36:42.648549 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:36:43.013389 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-06T20:36:43.019069 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-50a8a7dc-b4bc-433e-a453-89fa0c31ba44` +I, [2018-08-06T20:36:43.019121 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-06T20:36:43.028389 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-06T20:36:43.028469 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-06T20:36:43.161051 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:36:43.544987 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-06T20:36:43.649067 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-06T20:36:44.162383 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:36:45.162959 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-06T20:36:45.550773 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- NameError: undefined local variable or method `client' for # +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T20:36:45.550866 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-06T20:36:45.558795 #6] ERROR -- : Client fetch loop error: undefined local variable or method `client' for # +I, [2018-08-06T20:36:45.559055 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-06T20:36:45.567487 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-06T20:36:45.635885 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:36:46.163437 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:36:46.567859 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-06T20:36:46.571137 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-1889df0e-0a89-481a-ae80-e39dc09c59a7` +I, [2018-08-06T20:36:46.571180 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-06T20:36:46.575989 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-06T20:36:46.576064 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-06T20:36:46.636230 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:36:47.164123 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:36:47.636744 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:36:48.164551 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:36:48.680496 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:36:49.168623 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:36:49.688230 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:36:50.170100 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:36:51.100241 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:36:51.214797 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:36:52.101734 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:36:52.215492 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:36:53.068589 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-06T20:36:53.102455 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:36:53.216438 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-06T20:36:54.235207 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-06T20:36:55.122658 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- NameError: undefined local variable or method `client' for # +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T20:36:55.168640 #6] INFO -- : Leaving group `notifications_course_change` +I, [2018-08-06T20:36:55.430706 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-06T20:36:55.595084 #6] ERROR -- : Client fetch loop error: undefined local variable or method `client' for # +I, [2018-08-06T20:36:55.596822 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-06T20:36:55.608386 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-06T20:36:55.818885 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:36:56.432153 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:36:56.608947 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-06T20:36:56.617629 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-2bcbb135-5d26-4e23-bdfb-1e279617ee2a` +I, [2018-08-06T20:36:56.617705 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-06T20:36:56.623278 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-06T20:36:56.623507 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-06T20:36:56.642396 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-06T20:36:56.819906 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:36:57.432554 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-06T20:36:57.820304 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:36:59.124576 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-06T20:36:59.606060 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- NameError: undefined local variable or method `client' for # +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T20:36:59.647751 #6] INFO -- : Leaving group `notifications_notifications` +I, [2018-08-06T20:37:00.101013 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-06T20:37:00.124841 #6] ERROR -- : Client fetch loop error: undefined local variable or method `client' for # +I, [2018-08-06T20:37:00.129253 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-06T20:37:00.168149 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-06T20:37:00.200068 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:37:01.113854 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:37:01.176563 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-06T20:37:01.193221 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-ba782898-4055-4d4b-90fc-70427139e170` +I, [2018-08-06T20:37:01.193294 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-06T20:37:01.203163 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:37:01.247203 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-06T20:37:01.250543 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-06T20:37:02.114585 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:37:02.203841 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:37:03.116935 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:37:03.208486 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:37:04.117891 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:37:04.208919 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:37:05.118705 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:37:05.209415 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:37:06.130771 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:37:06.210540 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:37:06.282715 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-06T20:37:07.131509 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-06T20:37:07.210943 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:37:08.211426 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-06T20:37:08.321810 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- NameError: undefined local variable or method `client' for # +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T20:37:08.402990 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-06T20:37:08.718629 #6] ERROR -- : Client fetch loop error: undefined local variable or method `client' for # +I, [2018-08-06T20:37:08.753922 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-06T20:37:08.755805 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-06T20:37:09.193873 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:37:09.212733 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:37:09.756331 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-06T20:37:09.760826 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-20594cc7-4f2e-4e08-9968-bc70c810019c` +I, [2018-08-06T20:37:09.760869 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-06T20:37:09.763925 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-06T20:37:09.764002 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-06T20:37:10.194529 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:37:10.213105 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:37:11.194887 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:37:11.213524 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:37:11.379211 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-06T20:37:12.196012 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:37:12.213940 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-06T20:37:13.196962 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-06T20:37:13.385568 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- NameError: undefined local variable or method `client' for # +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T20:37:13.385654 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-06T20:37:13.390351 #6] ERROR -- : Client fetch loop error: undefined local variable or method `client' for # +I, [2018-08-06T20:37:13.390554 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-06T20:37:13.398065 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-06T20:37:13.844614 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:37:14.197387 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:37:14.398301 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-06T20:37:14.401446 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-2dd7f4e7-3a7d-4f73-9a38-25e16ea918ee` +I, [2018-08-06T20:37:14.401657 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-06T20:37:14.405742 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-06T20:37:14.405807 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-06T20:37:14.845141 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:37:15.197900 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:37:15.847255 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:37:16.198251 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:37:16.847763 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:37:17.199029 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:37:17.848162 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:37:18.199952 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:37:18.848963 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:37:19.200824 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:37:19.771843 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-06T20:37:19.849336 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:37:20.202538 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-06T20:37:20.850849 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-06T20:37:21.784205 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- NameError: undefined local variable or method `client' for # +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T20:37:21.790738 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-06T20:37:21.857194 #6] ERROR -- : Client fetch loop error: undefined local variable or method `client' for # +I, [2018-08-06T20:37:21.857523 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-06T20:37:21.858604 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-06T20:37:21.862826 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-06T20:37:22.271182 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:37:22.891865 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-06T20:37:22.928940 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:37:22.976583 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-224dc58e-3a4c-4225-afce-2fea599ddba1` +I, [2018-08-06T20:37:22.976669 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-06T20:37:23.034317 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-06T20:37:23.034405 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-06T20:37:23.271573 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:37:23.929877 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:37:24.271925 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:37:24.444472 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-06T20:37:24.930219 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-06T20:37:25.272295 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:37:26.273312 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-06T20:37:26.450221 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- NameError: undefined local variable or method `client' for # +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T20:37:26.450325 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-06T20:37:26.456005 #6] ERROR -- : Client fetch loop error: undefined local variable or method `client' for # +I, [2018-08-06T20:37:26.456201 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-06T20:37:26.457618 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-06T20:37:26.821274 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:37:27.273620 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:37:27.457818 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-06T20:37:27.464442 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-c22b2b88-3f4f-4178-8939-0e49c99cdeb8` +I, [2018-08-06T20:37:27.464489 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-06T20:37:27.469425 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-06T20:37:27.469494 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-06T20:37:27.822843 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:37:28.274116 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:37:28.823678 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:37:29.275900 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:37:29.791618 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:37:30.244386 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:37:30.792221 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:37:31.244873 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:37:31.792762 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:37:32.245232 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:37:32.800339 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:37:33.012221 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-06T20:37:33.245563 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-06T20:37:33.801182 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:37:34.801761 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-06T20:37:35.080478 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- NameError: undefined local variable or method `client' for # +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T20:37:35.084781 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-06T20:37:35.138666 #6] ERROR -- : Client fetch loop error: undefined local variable or method `client' for # +I, [2018-08-06T20:37:35.138913 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-06T20:37:35.364859 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-06T20:37:35.365406 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:37:35.819299 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:37:36.365860 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:37:36.380209 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-06T20:37:36.436547 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-83028287-e386-4db2-b061-8ca5452ef60d` +I, [2018-08-06T20:37:36.436614 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-06T20:37:37.315189 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:37:37.367014 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:37:37.745548 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-06T20:37:37.747486 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-06T20:37:37.908541 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-06T20:37:38.321916 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-06T20:37:38.372760 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:37:39.373479 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-06T20:37:40.006599 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- NameError: undefined local variable or method `client' for # +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T20:37:40.006776 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-06T20:37:40.012329 #6] ERROR -- : Client fetch loop error: undefined local variable or method `client' for # +I, [2018-08-06T20:37:40.012891 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-06T20:37:40.017922 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-06T20:37:40.376639 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:37:40.408978 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:37:41.019407 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-06T20:37:41.146847 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-0d0e32f0-8e8b-4b01-b038-a6916ba4d67f` +I, [2018-08-06T20:37:41.147416 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-06T20:37:41.160660 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-06T20:37:41.160777 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-06T20:37:41.378103 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:37:41.409491 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:37:42.380095 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:37:42.409912 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:37:43.380660 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:37:43.410718 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:37:44.381266 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:37:44.411127 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:37:45.381785 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:37:45.411546 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:37:46.070897 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-06T20:37:46.382211 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-06T20:37:46.412331 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:37:47.412982 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-06T20:37:48.075265 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- NameError: undefined local variable or method `client' for # +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T20:37:48.080836 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-06T20:37:48.092131 #6] ERROR -- : Client fetch loop error: undefined local variable or method `client' for # +I, [2018-08-06T20:37:48.092373 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-06T20:37:48.093268 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-06T20:37:48.401793 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:37:48.413368 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:37:49.094291 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-06T20:37:49.100937 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-04743007-a9e3-415f-a636-2af1857a7a6c` +I, [2018-08-06T20:37:49.100997 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-06T20:37:49.144056 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-06T20:37:49.144316 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-06T20:37:49.403541 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:37:49.414141 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:37:50.404015 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:37:50.414619 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:37:51.170056 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-06T20:37:51.404350 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:37:51.414954 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-06T20:37:52.410252 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-06T20:37:53.177726 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- NameError: undefined local variable or method `client' for # +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T20:37:53.177796 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-06T20:37:53.186581 #6] ERROR -- : Client fetch loop error: undefined local variable or method `client' for # +I, [2018-08-06T20:37:53.186998 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-06T20:37:53.200179 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-06T20:37:53.411240 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:37:53.775278 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:37:54.200866 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-06T20:37:54.207438 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-d9b529d2-730b-4eaa-9006-70426250ffb1` +I, [2018-08-06T20:37:54.207503 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-06T20:37:54.210627 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-06T20:37:54.210688 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-06T20:37:54.413384 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:37:54.778433 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:37:55.414342 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:37:55.779255 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:37:56.414649 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:37:56.779659 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:37:57.414976 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:37:57.780181 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:37:58.415628 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:37:58.780808 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:37:59.156189 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-06T20:37:59.415962 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-06T20:37:59.745066 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:38:00.746577 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-06T20:38:01.135803 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- NameError: undefined local variable or method `client' for # +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T20:38:01.143803 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-06T20:38:01.145964 #6] ERROR -- : Client fetch loop error: undefined local variable or method `client' for # +I, [2018-08-06T20:38:01.146190 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-06T20:38:01.147073 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-06T20:38:01.662054 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:38:01.747023 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:38:02.148013 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-06T20:38:02.156548 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-37e79750-c4a8-4a94-8112-efdbb882b616` +I, [2018-08-06T20:38:02.156596 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-06T20:38:02.159857 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-06T20:38:02.159942 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-06T20:38:02.662487 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:38:02.779548 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:38:03.665309 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:38:03.781628 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:38:04.180824 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-06T20:38:04.684411 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:38:04.789191 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-06T20:38:05.684929 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-06T20:38:06.188838 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- NameError: undefined local variable or method `client' for # +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T20:38:06.188953 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-06T20:38:06.199523 #6] ERROR -- : Client fetch loop error: undefined local variable or method `client' for # +I, [2018-08-06T20:38:06.199727 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-06T20:38:06.210313 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-06T20:38:06.525119 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:38:06.685721 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:38:07.211322 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-06T20:38:07.216526 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-80e0c937-3b28-4e6d-b0b1-33e3079f2eee` +I, [2018-08-06T20:38:07.216589 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-06T20:38:07.219113 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-06T20:38:07.219179 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-06T20:38:07.525927 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:38:07.686114 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:38:08.526741 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:38:08.686532 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:38:09.529066 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:38:09.688183 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:38:10.536630 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:38:10.711425 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:38:11.564268 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:38:11.718053 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:38:12.217450 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-06T20:38:12.564627 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:38:12.719011 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-06T20:38:13.566289 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-06T20:38:14.241170 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- NameError: undefined local variable or method `client' for # +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T20:38:14.246678 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-06T20:38:14.259351 #6] ERROR -- : Client fetch loop error: undefined local variable or method `client' for # +I, [2018-08-06T20:38:14.259746 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-06T20:38:14.261338 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-06T20:38:14.567051 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:38:14.694944 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:38:15.261595 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-06T20:38:15.280847 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-4036a82e-d595-4b4d-aaf8-41c805ad40c5` +I, [2018-08-06T20:38:15.280941 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-06T20:38:15.399399 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-06T20:38:15.399518 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-06T20:38:15.569783 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:38:15.698170 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:38:16.582787 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:38:16.699406 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:38:17.310273 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-06T20:38:17.584044 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-06T20:38:17.699843 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:38:18.705768 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-06T20:38:19.319685 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- NameError: undefined local variable or method `client' for # +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T20:38:19.319777 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-06T20:38:19.322205 #6] ERROR -- : Client fetch loop error: undefined local variable or method `client' for # +I, [2018-08-06T20:38:19.322442 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-06T20:38:19.323488 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-06T20:38:19.369090 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:38:19.706529 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:38:20.323823 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-06T20:38:20.329032 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-5fbffd3f-e207-41cd-9975-dbafd3edc524` +I, [2018-08-06T20:38:20.329091 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-06T20:38:20.331867 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-06T20:38:20.331988 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-06T20:38:20.369715 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:38:20.707004 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:38:21.370299 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:38:21.711005 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:38:22.378735 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:38:22.711579 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:38:23.379484 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:38:23.712104 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:38:24.380033 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:38:24.712897 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:38:25.381455 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:38:25.405100 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-06T20:38:25.725371 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-06T20:38:26.381882 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:38:27.382668 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-06T20:38:27.425582 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- NameError: undefined local variable or method `client' for # +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T20:38:27.454952 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-06T20:38:27.463948 #6] ERROR -- : Client fetch loop error: undefined local variable or method `client' for # +I, [2018-08-06T20:38:27.464141 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-06T20:38:27.469294 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-06T20:38:27.921631 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:38:28.384048 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:38:28.469754 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-06T20:38:28.492094 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-9e054fce-6061-4cef-a29b-056121054616` +I, [2018-08-06T20:38:28.492173 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-06T20:38:28.550742 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-06T20:38:28.550834 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-06T20:38:28.923553 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:38:29.384496 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:38:29.865457 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:38:30.333744 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:38:30.339605 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-06T20:38:30.866097 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:38:31.334390 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-06T20:38:31.866818 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-06T20:38:32.347335 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- NameError: undefined local variable or method `client' for # +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T20:38:32.347450 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-06T20:38:32.371311 #6] ERROR -- : Client fetch loop error: undefined local variable or method `client' for # +I, [2018-08-06T20:38:32.371797 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-06T20:38:32.374848 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-06T20:38:32.889797 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:38:33.321305 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:38:33.388904 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-06T20:38:33.416147 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-943484ef-cf44-4233-9b8a-f63f2f221d49` +I, [2018-08-06T20:38:33.418334 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-06T20:38:33.496337 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-06T20:38:33.496534 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-06T20:38:33.910337 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:38:34.322502 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:38:35.066846 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:38:35.322992 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:38:36.073914 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:38:36.324365 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:38:37.074820 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:38:37.330320 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:38:38.204715 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:38:38.344848 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:38:39.084646 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-06T20:38:39.210230 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-06T20:38:39.360097 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T20:38:40.377204 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-06T20:38:41.260458 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- NameError: undefined local variable or method `client' for # +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T20:50:50.027712 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-06T20:50:50.030382 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-06T20:50:50.079106 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-06T20:50:50.079255 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-06T20:50:50.280374 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +E, [2018-08-06T20:50:50.282057 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +E, [2018-08-06T20:50:50.283131 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +E, [2018-08-06T20:50:50.283342 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +E, [2018-08-06T20:50:55.551611 #6] 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 +E, [2018-08-06T20:50:55.942393 #6] 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-08-06T20:50:56.479112 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-06T20:50:56.479684 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-06T20:50:56.495482 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +E, [2018-08-06T20:50:56.496200 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +I, [2018-08-06T20:50:56.515314 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-06T20:50:56.515493 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-06T20:50:56.577768 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +E, [2018-08-06T20:50:56.578033 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +E, [2018-08-06T20:51:01.467267 #6] 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-08-06T20:51:01.560907 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-06T20:51:01.561062 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-06T20:51:01.566913 #6] 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 +E, [2018-08-06T20:51:01.631233 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +E, [2018-08-06T20:51:01.632013 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +I, [2018-08-06T20:51:01.635246 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-06T20:51:01.635385 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-06T20:51:01.687486 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +E, [2018-08-06T20:51:02.039983 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +E, [2018-08-06T20:51:06.633246 #6] 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-08-06T20:51:06.637008 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-06T20:51:06.637181 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-06T20:51:06.648408 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +E, [2018-08-06T20:51:06.654115 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +E, [2018-08-06T20:51:07.347795 #6] 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-08-06T20:51:07.354345 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-06T20:51:07.354621 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-06T20:51:07.578577 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +E, [2018-08-06T20:51:07.579737 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +E, [2018-08-06T20:51:11.655509 #6] 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-08-06T20:51:11.837742 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-06T20:51:11.837952 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-06T20:51:11.847791 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +E, [2018-08-06T20:51:11.854008 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +E, [2018-08-06T20:51:12.581189 #6] 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-08-06T20:51:12.907710 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-06T20:51:12.907870 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-06T20:51:12.914134 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +E, [2018-08-06T20:51:12.914652 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +E, [2018-08-06T20:51:16.867570 #6] 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-08-06T20:51:16.893855 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-06T20:51:16.894320 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-06T20:51:16.962260 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +E, [2018-08-06T20:51:16.963394 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +E, [2018-08-06T20:51:18.039825 #6] 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-08-06T20:51:18.087594 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-06T20:51:18.087756 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-06T20:51:18.093407 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +E, [2018-08-06T20:51:18.093762 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +E, [2018-08-06T20:51:22.018620 #6] 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-08-06T20:51:22.022389 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-06T20:51:22.022577 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-06T20:51:22.109955 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +E, [2018-08-06T20:51:22.110234 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +E, [2018-08-06T20:51:23.094745 #6] 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-08-06T20:51:23.097932 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-06T20:51:23.098079 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-06T20:51:23.104944 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +E, [2018-08-06T20:51:23.105217 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +E, [2018-08-06T20:51:27.142164 #6] 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-08-06T20:51:27.148162 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-06T20:51:27.148310 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-06T20:51:27.180248 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +E, [2018-08-06T20:51:27.181216 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +E, [2018-08-06T20:51:28.108627 #6] 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-08-06T20:51:28.137438 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-06T20:51:28.137606 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-06T20:51:28.154786 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +E, [2018-08-06T20:51:28.155071 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +E, [2018-08-06T20:51:32.155810 #6] 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-08-06T20:51:32.174750 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-06T20:51:32.174928 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-06T20:51:32.366121 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +E, [2018-08-06T20:51:32.367308 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +E, [2018-08-06T20:51:33.178603 #6] 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-08-06T20:51:33.198458 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-06T20:51:33.201339 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-06T20:51:33.437707 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +E, [2018-08-06T20:51:33.443801 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +E, [2018-08-06T20:51:37.369365 #6] 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-08-06T20:51:37.374504 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-06T20:51:37.374666 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-06T20:51:37.447242 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +E, [2018-08-06T20:51:37.448727 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +E, [2018-08-06T20:51:38.449482 #6] 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-08-06T20:51:38.473423 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-06T20:51:38.473578 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-06T20:51:38.562205 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +E, [2018-08-06T20:51:38.562495 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +E, [2018-08-06T20:51:42.450533 #6] 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-08-06T20:51:42.454947 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-06T20:51:42.455109 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-06T20:51:42.465210 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +E, [2018-08-06T20:51:42.468178 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +E, [2018-08-06T20:51:43.565839 #6] 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-08-06T20:51:43.660563 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-06T20:51:43.686811 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-06T20:51:43.865931 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +E, [2018-08-06T20:51:43.869286 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +E, [2018-08-06T20:51:47.471485 #6] 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-08-06T20:51:47.483074 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-06T20:51:47.483234 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-06T20:51:47.533412 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +E, [2018-08-06T20:51:47.533778 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +E, [2018-08-06T20:51:48.870351 #6] 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-08-06T20:51:48.881749 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-06T20:51:48.881893 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-06T20:51:48.908893 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +E, [2018-08-06T20:51:48.909451 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +E, [2018-08-06T20:51:52.537949 #6] 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-08-06T20:51:52.545542 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-06T20:51:52.547566 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-06T20:51:52.560999 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +E, [2018-08-06T20:51:52.561397 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +E, [2018-08-06T20:51:53.917213 #6] 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-08-06T20:51:53.924922 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-06T20:51:53.928406 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-06T20:51:53.935218 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +E, [2018-08-06T20:51:53.942418 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +E, [2018-08-06T20:51:57.590134 #6] 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-08-06T20:51:57.609122 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-06T20:51:57.610999 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-06T20:51:57.629088 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +E, [2018-08-06T20:51:57.630150 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +E, [2018-08-06T20:51:58.955787 #6] 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-08-06T20:51:58.997606 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-06T20:51:59.002012 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-06T20:51:59.028326 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +E, [2018-08-06T20:51:59.030805 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +E, [2018-08-06T20:52:02.602242 #6] 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-08-06T20:52:02.644417 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-06T20:52:02.644832 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-06T20:52:02.761363 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +E, [2018-08-06T20:52:02.761757 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +E, [2018-08-06T20:52:04.140846 #6] 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-08-06T20:52:04.312487 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-06T20:52:04.312644 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-06T20:52:04.350299 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +E, [2018-08-06T20:52:04.350967 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +E, [2018-08-06T20:52:07.770983 #6] 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-08-06T20:52:08.021049 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-06T20:52:08.021171 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-06T20:52:08.108610 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +E, [2018-08-06T20:52:08.109100 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +E, [2018-08-06T20:52:09.353848 #6] 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-08-06T20:52:09.376778 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-06T20:52:09.376949 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-06T20:52:09.380788 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +E, [2018-08-06T20:52:09.381438 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +E, [2018-08-06T20:52:13.110511 #6] 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-08-06T20:52:13.123119 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-06T20:52:13.123805 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-06T20:52:13.291387 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +E, [2018-08-06T20:52:13.295879 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +E, [2018-08-06T20:52:14.458928 #6] 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-08-06T20:52:15.476421 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-06T20:52:15.478001 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-06T20:52:15.744069 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +E, [2018-08-06T20:52:17.168417 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +E, [2018-08-06T20:52:18.856610 #6] 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-08-06T20:52:20.136258 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-06T20:52:20.136670 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-06T20:52:20.155192 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +E, [2018-08-06T20:52:20.155536 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +E, [2018-08-06T20:52:22.170698 #6] 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-08-06T20:52:22.634841 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-06T20:52:22.666596 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-06T20:52:22.720057 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +E, [2018-08-06T20:52:22.720536 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +E, [2018-08-06T20:52:25.167807 #6] 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-08-06T20:52:26.086221 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-06T20:52:26.098057 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-06T20:52:26.204339 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +E, [2018-08-06T20:52:26.227344 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +E, [2018-08-06T20:52:27.846227 #6] 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-08-06T20:52:27.908428 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-06T20:52:27.908935 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-06T20:52:28.247203 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +E, [2018-08-06T20:52:28.247484 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +I, [2018-08-06T20:59:42.414153 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-06T20:59:42.414974 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-06T20:59:42.437132 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-06T20:59:42.437194 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-06T20:59:42.442577 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-06T20:59:42.443271 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-06T20:59:42.444965 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-06T20:59:42.445138 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-06T20:59:47.444293 #6] 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.14:9094 +E, [2018-08-06T20:59:47.447427 #6] 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.14:9094 +I, [2018-08-06T20:59:47.450391 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-06T20:59:47.450483 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-06T20:59:47.480832 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-06T20:59:47.486331 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-06T20:59:47.495486 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-06T20:59:47.495669 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-06T20:59:47.506081 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-06T20:59:47.511899 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-06T20:59:52.497053 #6] 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.14:9094 +E, [2018-08-06T20:59:52.517641 #6] 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.14:9094 +I, [2018-08-06T20:59:52.596388 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-06T20:59:52.596695 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-06T20:59:52.629583 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-06T20:59:52.629669 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-06T20:59:52.634050 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-06T20:59:52.634475 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-06T20:59:52.635247 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-06T20:59:52.635350 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-06T20:59:57.599322 #6] 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.14:9094 +E, [2018-08-06T20:59:57.616085 #6] 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.14:9094 +I, [2018-08-06T20:59:57.640608 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-06T20:59:57.654282 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-06T20:59:57.609596 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-06T20:59:57.682183 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-06T20:59:57.707007 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-06T20:59:57.708764 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-06T20:59:57.738795 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-06T20:59:57.740232 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-06T21:00:02.745150 #6] 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.14:9094 +E, [2018-08-06T21:00:03.056046 #6] 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.14:9094 +I, [2018-08-06T21:00:03.164409 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-06T21:00:03.164600 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-06T21:00:03.166208 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-06T21:00:03.166481 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-06T21:00:03.182258 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-06T21:00:03.183547 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-06T21:00:03.190275 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-06T21:00:03.190456 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-06T21:00:08.187149 #6] 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.14:9094 +E, [2018-08-06T21:00:08.340192 #6] 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.14:9094 +I, [2018-08-06T21:00:08.474839 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-06T21:00:08.475183 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-06T21:00:08.476255 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-06T21:00:08.476356 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-06T21:00:08.630648 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-06T21:00:08.666673 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-06T21:00:08.670262 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-06T21:00:08.672621 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-06T21:00:13.671071 #6] 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.14:9094 +I, [2018-08-06T21:00:13.682021 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-06T21:00:13.682129 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-06T21:00:13.682262 #6] 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.14:9094 +I, [2018-08-06T21:00:13.751174 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-06T21:00:13.800513 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-06T21:00:19.720398 #6] ERROR -- : No brokers in cluster +E, [2018-08-06T21:00:19.727551 #6] ERROR -- : No brokers in cluster +E, [2018-08-06T21:00:24.696165 #6] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: + +E, [2018-08-06T21:00:24.791299 #6] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: + +I, [2018-08-06T21:00:24.884901 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-06T21:00:24.897542 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-06T21:00:24.905660 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-06T21:00:24.908557 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-06T21:00:25.181131 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-06T21:00:25.182414 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-06T21:00:25.192617 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-06T21:00:25.192902 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-06T21:00:25.228580 #6] INFO -- : Will fetch at most 1048576 bytes at a time per partition from course_change +I, [2018-08-06T21:00:25.232102 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-06T21:00:25.274454 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-06T21:00:25.275055 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:00:25.292152 #6] INFO -- : Will fetch at most 1048576 bytes at a time per partition from section_change +I, [2018-08-06T21:00:25.292872 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-06T21:00:25.306437 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-06T21:00:25.307205 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:00:26.407112 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:00:26.407554 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:00:27.407674 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:00:27.407893 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:00:28.408262 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:00:28.408908 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:00:29.408840 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:00:29.409530 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:00:30.409435 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:00:30.410046 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:00:31.428279 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:00:31.428500 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:00:32.143306 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-679a8571-4ba0-4555-a15a-c5eaae63b00f` +I, [2018-08-06T21:00:32.143423 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-06T21:00:32.148459 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-78dee1f7-e90e-4f33-b838-fd9ca753d9e3` +I, [2018-08-06T21:00:32.148537 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-06T21:00:32.429194 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:00:32.429345 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:00:33.144939 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-06T21:00:33.150848 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-06T21:00:33.156780 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-06T21:00:33.202062 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-06T21:00:33.305610 #6] INFO -- : Partitions assigned for `course_change`: 0 +I, [2018-08-06T21:00:33.363192 #6] INFO -- : Partitions assigned for `section_change`: 0 +I, [2018-08-06T21:00:33.430590 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:00:33.430745 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:00:34.431044 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-06T21:00:34.431297 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-06T21:00:34.431340 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-06T21:00:34.432094 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-06T21:00:34.432176 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-06T21:00:34.432207 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-06T21:00:34.441413 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-06T21:00:34.442541 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +E, [2018-08-06T21:00:37.655001 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- NoMethodError: undefined method `publish' for # +Did you mean? public_send +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T21:00:37.666480 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-06T21:00:37.665169 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- NoMethodError: undefined method `publish' for # +Did you mean? public_send +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T21:00:37.704319 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-06T21:00:37.817251 #6] ERROR -- : Client fetch loop error: undefined method `publish' for # +Did you mean? public_send +I, [2018-08-06T21:00:37.819105 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-06T21:00:37.819475 #6] ERROR -- : Client fetch loop error: undefined method `publish' for # +Did you mean? public_send +I, [2018-08-06T21:00:37.819954 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-06T21:00:37.823129 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-08-06T21:00:37.830858 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-06T21:00:37.905440 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:00:37.962851 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:00:38.823856 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-06T21:00:38.831678 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-06T21:00:38.916889 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:00:38.970611 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:00:39.006670 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-a3cf6a04-af00-46f6-b08e-1d215376481a` +I, [2018-08-06T21:00:39.006889 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-06T21:00:39.058447 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-06T21:00:39.061245 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-06T21:00:39.149473 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-e0c169c5-c258-4794-be5c-13585d5057ae` +I, [2018-08-06T21:00:39.178773 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-06T21:00:39.250283 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-06T21:00:39.250381 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-06T21:00:39.925547 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:00:39.980522 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:00:40.927125 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:00:40.984115 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:00:42.124042 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:00:42.124807 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:00:43.127308 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:00:43.128220 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:00:44.133436 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:00:44.137272 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:00:45.134687 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:00:45.451362 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:00:46.146997 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:00:46.469462 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:00:47.147759 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:00:47.472339 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:00:48.148645 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:00:48.472822 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:00:49.149266 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:00:49.463013 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-06T21:00:49.475714 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:00:49.742961 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-06T21:00:50.149891 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-06T21:00:50.476333 #6] INFO -- : Seeking section_change/0 to offset 0 +E, [2018-08-06T21:00:51.501995 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- NoMethodError: undefined method `publish' for # +Did you mean? public_send +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T21:00:51.502184 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-06T21:00:51.529789 #6] ERROR -- : Client fetch loop error: undefined method `publish' for # +Did you mean? public_send +I, [2018-08-06T21:00:51.538631 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-06T21:00:51.546684 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-06T21:00:51.605150 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-06T21:00:51.755855 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- NoMethodError: undefined method `publish' for # +Did you mean? public_send +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T21:00:51.756074 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-06T21:00:51.777060 #6] ERROR -- : Client fetch loop error: undefined method `publish' for # +Did you mean? public_send +I, [2018-08-06T21:00:51.777912 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-06T21:00:51.782900 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-06T21:00:51.892062 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:00:52.547049 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-06T21:00:52.633945 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-2924a4e0-be69-4bb0-afd1-0606d1156b86` +I, [2018-08-06T21:00:52.647846 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-06T21:00:52.639781 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:00:52.685009 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-06T21:00:52.686369 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-06T21:00:52.834146 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-06T21:00:52.864671 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-f5e8e2b5-dd6c-4293-a1cf-3b0eaa42307c` +I, [2018-08-06T21:00:52.864829 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-06T21:00:52.891031 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-06T21:00:52.891128 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-06T21:00:52.900531 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:00:53.649935 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:00:53.872986 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:00:54.622452 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:00:54.873693 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:00:55.625514 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:00:55.874465 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:00:56.627995 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:00:56.876531 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:00:57.663589 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:00:57.878025 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:00:58.704968 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:00:58.878852 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:00:59.710001 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:00:59.879474 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:01:00.712650 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:01:00.880046 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:01:01.713436 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:01:01.880916 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:01:02.783146 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:01:02.819052 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-06T21:01:02.881817 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:01:02.915073 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-06T21:01:03.824100 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-06T21:01:03.883718 #6] INFO -- : Seeking course_change/0 to offset 0 +E, [2018-08-06T21:01:05.004114 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- NoMethodError: undefined method `publish' for # +Did you mean? public_send +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T21:01:05.005400 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-06T21:01:05.006182 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- NoMethodError: undefined method `publish' for # +Did you mean? public_send +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T21:01:05.008179 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-06T21:01:05.060446 #6] ERROR -- : Client fetch loop error: undefined method `publish' for # +Did you mean? public_send +I, [2018-08-06T21:01:05.063452 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-06T21:01:05.083810 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-08-06T21:01:05.084498 #6] ERROR -- : Client fetch loop error: undefined method `publish' for # +Did you mean? public_send +I, [2018-08-06T21:01:05.084730 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-06T21:01:05.091385 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-06T21:01:05.179314 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:01:05.256022 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:01:06.084115 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-06T21:01:06.093110 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-06T21:01:06.125148 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-3a77d533-96dc-4391-82b7-9c6d8bef56ba` +I, [2018-08-06T21:01:06.125214 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-06T21:01:06.136924 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-7fb93a9a-415d-4be7-95af-b7d32250de78` +I, [2018-08-06T21:01:06.136991 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-06T21:01:06.164619 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-06T21:01:06.164718 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-06T21:01:06.169355 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-06T21:01:06.169433 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-06T21:01:06.180052 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:01:06.257509 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:01:07.182309 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:01:07.258622 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:01:08.184690 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:01:08.288901 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:01:09.301030 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:01:09.302540 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:01:10.307016 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:01:10.307281 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:01:11.322578 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:01:11.322997 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:01:13.360334 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:01:13.389419 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:01:14.388998 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:01:14.389849 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:01:16.382925 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:01:16.678800 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-06T21:01:16.718431 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:01:16.730167 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-06T21:01:17.683466 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:01:17.841221 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:01:18.830768 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-06T21:01:18.991100 #6] INFO -- : Seeking course_change/0 to offset 0 +E, [2018-08-06T21:01:21.437295 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- NoMethodError: undefined method `publish' for # +Did you mean? public_send +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T21:01:21.451273 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-06T21:01:24.476784 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- NoMethodError: undefined method `publish' for # +Did you mean? public_send +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T21:01:24.628277 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-06T21:01:24.615008 #6] ERROR -- : Client fetch loop error: undefined method `publish' for # +Did you mean? public_send +I, [2018-08-06T21:01:24.646490 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-06T21:01:24.716412 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-06T21:01:24.743518 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-08-06T21:01:24.756324 #6] ERROR -- : Client fetch loop error: undefined method `publish' for # +Did you mean? public_send +I, [2018-08-06T21:01:24.760269 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-06T21:01:24.864343 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-06T21:01:25.263216 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:01:25.721963 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:01:25.999448 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-06T21:01:26.160298 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-06T21:01:26.744987 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:01:26.564528 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:01:27.247273 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-6d856c24-6e59-469f-a338-7cc78a5c657a` +I, [2018-08-06T21:01:27.247434 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-06T21:01:27.287722 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-c453cc6b-bc1e-43f0-96a3-7a4a064c765f` +I, [2018-08-06T21:01:27.287817 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-06T21:01:27.323653 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-06T21:01:27.324935 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-06T21:01:27.328949 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-06T21:01:27.329258 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-06T21:01:27.747050 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:01:28.093404 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:01:29.306466 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:01:29.307213 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:01:32.786307 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:01:32.834100 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:01:33.813378 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:01:33.975117 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:01:35.018390 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:01:35.021873 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:01:36.148959 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:01:36.205185 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:01:37.212400 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:01:38.314581 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:01:38.315560 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:01:38.405378 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-06T21:01:38.482286 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-06T21:01:39.316030 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-06T21:01:39.317229 #6] INFO -- : Seeking section_change/0 to offset 0 +E, [2018-08-06T21:01:40.785998 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- NoMethodError: undefined method `publish' for # +Did you mean? public_send +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T21:01:40.787539 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-06T21:01:40.910633 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- NoMethodError: undefined method `publish' for # +Did you mean? public_send +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T21:01:41.040429 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-06T21:01:41.198154 #6] ERROR -- : Client fetch loop error: undefined method `publish' for # +Did you mean? public_send +I, [2018-08-06T21:01:41.199679 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-06T21:01:41.215601 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-08-06T21:01:41.216867 #6] ERROR -- : Client fetch loop error: undefined method `publish' for # +Did you mean? public_send +I, [2018-08-06T21:01:41.217518 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-06T21:01:41.227146 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:01:41.227462 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-06T21:01:41.238049 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-06T21:01:42.243761 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:01:42.396137 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-06T21:01:42.564615 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-06T21:01:42.243906 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:01:43.261831 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:01:43.962364 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:01:44.266768 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:01:44.912909 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-cede84a1-b595-4e0e-97c8-f134988d19d7` +I, [2018-08-06T21:01:44.913071 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-06T21:01:44.915901 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-1395bfc0-90a7-4a74-a1cd-4bd65dee54c9` +I, [2018-08-06T21:01:44.915992 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-06T21:01:44.990319 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:01:45.115351 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-06T21:01:45.116178 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-06T21:01:45.191328 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-06T21:01:45.192136 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-06T21:01:45.354985 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:01:45.991064 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:01:46.361945 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:01:46.996305 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:01:47.793300 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:01:47.997094 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:01:48.800141 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:01:49.078153 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:01:49.802189 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:01:50.082417 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:01:50.803140 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:01:51.087539 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:01:51.805195 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:01:52.094012 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:01:52.150526 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-06T21:01:52.165844 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-06T21:01:52.805728 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-06T21:01:53.095779 #6] INFO -- : Seeking section_change/0 to offset 0 +E, [2018-08-06T21:01:54.175838 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- NoMethodError: undefined method `publish' for # +Did you mean? public_send +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T21:01:54.176161 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-06T21:01:54.200696 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- NoMethodError: undefined method `publish' for # +Did you mean? public_send +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T21:01:54.210720 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-06T21:01:54.224760 #6] ERROR -- : Client fetch loop error: undefined method `publish' for # +Did you mean? public_send +I, [2018-08-06T21:01:54.227081 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-06T21:01:54.272839 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-06T21:01:54.274505 #6] ERROR -- : Client fetch loop error: undefined method `publish' for # +Did you mean? public_send +I, [2018-08-06T21:01:54.275042 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-06T21:01:54.282808 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-08-06T21:01:54.285874 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-06T21:01:54.300044 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:01:55.186154 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:01:55.195277 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-06T21:01:55.200028 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-06T21:01:55.217347 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:01:55.853768 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-96a37471-8187-4e9c-b25b-1b02729cea49` +I, [2018-08-06T21:01:55.853935 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-06T21:01:55.879662 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-06T21:01:55.879965 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-06T21:01:56.009115 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-e3f3cee6-de07-4694-9832-787b9b2d60d2` +I, [2018-08-06T21:01:56.009223 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-06T21:01:56.107979 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-06T21:01:56.108217 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-06T21:01:56.187967 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:01:56.218216 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:01:57.365499 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:01:57.375069 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:01:58.372709 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:01:58.375974 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:01:59.387450 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:01:59.389012 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:02:00.635792 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:02:00.702443 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:02:01.819139 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:02:01.907740 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:02:03.033435 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:02:03.315181 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:02:04.034490 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:02:04.325654 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:02:04.721044 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-06T21:02:04.513507 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-06T21:02:05.069544 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-06T21:02:05.381109 #6] INFO -- : Seeking course_change/0 to offset 0 +E, [2018-08-06T21:02:06.978574 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- NoMethodError: undefined method `publish' for # +Did you mean? public_send +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T21:02:06.979025 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-06T21:02:07.010260 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- NoMethodError: undefined method `publish' for # +Did you mean? public_send +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T21:02:07.014351 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-06T21:02:07.038417 #6] ERROR -- : Client fetch loop error: undefined method `publish' for # +Did you mean? public_send +I, [2018-08-06T21:02:07.038872 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-06T21:02:07.075316 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-06T21:02:07.087362 #6] ERROR -- : Client fetch loop error: undefined method `publish' for # +Did you mean? public_send +I, [2018-08-06T21:02:07.087689 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-06T21:02:07.090052 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-08-06T21:02:07.096582 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-06T21:02:07.111178 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:02:08.083941 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:02:08.091313 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-06T21:02:08.098284 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-06T21:02:08.116201 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:02:08.244091 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-a52c71af-237e-406b-ba8c-87abd8b940fb` +I, [2018-08-06T21:02:08.244146 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-06T21:02:08.270451 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-9da5d4d4-f1c3-4025-8443-0143b44a5844` +I, [2018-08-06T21:02:08.270600 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-06T21:02:08.676508 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-06T21:02:08.676682 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-06T21:02:08.783159 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-06T21:02:08.783324 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-06T21:02:09.084600 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:02:09.116791 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:02:10.085555 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:02:10.120880 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:02:11.086754 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:02:11.121245 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:02:12.087922 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:02:12.121944 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:02:13.088448 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:02:13.125512 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:02:14.088910 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:02:14.126037 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:02:15.089527 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:02:15.126990 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:02:16.336779 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:02:16.362483 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:02:17.065283 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-06T21:02:17.348495 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:02:17.371729 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-06T21:02:18.439956 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:02:18.873239 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +E, [2018-08-06T21:02:19.171293 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- NoMethodError: undefined method `publish' for # +Did you mean? public_send +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T21:02:19.174903 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-06T21:02:19.287934 #6] ERROR -- : Client fetch loop error: undefined method `publish' for # +Did you mean? public_send +I, [2018-08-06T21:02:19.301984 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-06T21:02:19.336101 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-06T21:02:19.415557 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:02:19.481554 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-06T21:02:21.078441 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:02:21.173632 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-06T21:02:22.213318 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:02:23.090673 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-508463e5-9974-4689-a35d-6a18c7146c4d` +I, [2018-08-06T21:02:23.090851 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-06T21:02:23.233268 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:02:23.246436 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-06T21:02:23.246726 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-06T21:02:24.296408 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:02:25.278787 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:02:26.281966 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-06T21:02:26.617968 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- NoMethodError: undefined method `publish' for # +Did you mean? public_send +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T21:02:26.618208 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-06T21:02:26.688389 #6] ERROR -- : Client fetch loop error: undefined method `publish' for # +Did you mean? public_send +I, [2018-08-06T21:02:26.689353 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-06T21:02:26.782361 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-06T21:02:26.924835 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:02:27.284479 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:02:27.800689 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-06T21:02:27.941906 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:02:28.269470 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-6eeb74e1-1469-4232-9279-2cb4172ba784` +I, [2018-08-06T21:02:28.269762 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-06T21:02:28.286210 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:02:28.547496 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-06T21:02:28.547832 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-06T21:02:28.976376 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:02:29.342954 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:02:29.926610 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-06T21:02:29.977707 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:02:30.357804 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-06T21:02:31.344071 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-06T21:02:32.206912 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- NoMethodError: undefined method `publish' for # +Did you mean? public_send +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T21:02:32.285374 #6] INFO -- : Leaving group `notifications_notifications` +I, [2018-08-06T21:02:32.379204 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-06T21:02:32.492473 #6] ERROR -- : Client fetch loop error: undefined method `publish' for # +Did you mean? public_send +I, [2018-08-06T21:02:32.493912 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-06T21:02:33.020629 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-06T21:02:33.035369 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-06T21:02:33.384919 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:02:34.042368 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:02:34.042495 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-06T21:02:34.166139 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-39832a90-4288-4c3b-9f0b-9e411c61d754` +I, [2018-08-06T21:02:34.169081 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-06T21:02:34.359114 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-06T21:02:34.359223 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-06T21:02:34.414774 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:02:35.045526 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:02:35.442422 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:02:36.049163 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:02:36.446529 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:02:37.103897 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:02:37.461137 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:02:38.118982 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:02:38.664023 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:02:38.685653 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-06T21:02:39.171135 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:02:39.672645 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-06T21:02:40.245267 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:02:41.319679 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:02:42.329013 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:02:42.705643 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-06T21:02:43.460138 #6] INFO -- : Seeking section_change/0 to offset 0 +E, [2018-08-06T21:02:43.495300 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- NoMethodError: undefined method `publish' for # +Did you mean? public_send +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T21:02:43.495447 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-06T21:02:44.610972 #6] ERROR -- : Client fetch loop error: undefined method `publish' for # +Did you mean? public_send +I, [2018-08-06T21:02:44.614043 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-06T21:02:44.630025 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-06T21:02:44.702397 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-06T21:02:44.840987 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- NoMethodError: undefined method `publish' for # +Did you mean? public_send +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T21:02:44.853076 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-06T21:02:44.920603 #6] ERROR -- : Client fetch loop error: undefined method `publish' for # +Did you mean? public_send +I, [2018-08-06T21:02:44.920845 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-06T21:02:44.924704 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-06T21:02:45.125387 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:02:45.630412 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-06T21:02:45.698573 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-54918e50-04a2-46cf-9ee2-812715c1564c` +I, [2018-08-06T21:02:45.698675 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-06T21:02:45.703477 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:02:45.831442 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-06T21:02:45.831722 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-06T21:02:45.926530 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-06T21:02:46.245072 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:02:46.778385 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:02:47.057146 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-d88ea6a4-fe0f-46c1-baf8-503e61bd9d00` +I, [2018-08-06T21:02:47.057279 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-06T21:02:47.113460 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-06T21:02:47.113668 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-06T21:02:47.253918 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:02:47.779645 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:02:48.254568 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:02:48.781058 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:02:49.419367 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:02:49.846537 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:02:50.474193 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:02:50.861686 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:02:51.477644 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:02:51.881983 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:02:52.493014 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:02:52.883762 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:02:53.513660 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:02:53.890641 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:02:54.619420 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:02:54.926401 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:02:55.908533 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:02:55.916850 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:02:55.569747 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-06T21:02:55.951654 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-06T21:02:56.911512 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-06T21:02:56.940357 #6] INFO -- : Seeking course_change/0 to offset 0 +E, [2018-08-06T21:02:58.751134 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- NoMethodError: undefined method `publish' for # +Did you mean? public_send +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T21:02:58.751321 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-06T21:02:58.813341 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- NoMethodError: undefined method `publish' for # +Did you mean? public_send +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T21:02:58.818725 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-06T21:02:59.063412 #6] ERROR -- : Client fetch loop error: undefined method `publish' for # +Did you mean? public_send +I, [2018-08-06T21:02:59.064325 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-06T21:02:59.068458 #6] ERROR -- : Client fetch loop error: undefined method `publish' for # +Did you mean? public_send +I, [2018-08-06T21:02:59.068738 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-06T21:02:59.071260 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-06T21:02:59.153624 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:02:59.153987 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-06T21:02:59.154622 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-06T21:03:00.071676 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-06T21:03:00.154953 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:03:00.155069 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-06T21:03:00.173578 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:03:00.188247 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-da79dc5d-868e-48e6-ac18-8cc827eec838` +I, [2018-08-06T21:03:00.188342 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-06T21:03:00.206027 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-06T21:03:00.206233 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-06T21:03:00.226192 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-a681b842-9dbb-4d68-b897-92517a1fea75` +I, [2018-08-06T21:03:00.226259 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-06T21:03:00.247694 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-06T21:03:00.247814 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-06T21:03:01.155937 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:03:01.179492 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:03:02.157662 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:03:02.181606 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:03:03.161174 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:03:04.748548 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:03:04.933008 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:03:05.943406 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:03:05.957138 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:03:07.113466 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:03:07.116485 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:03:08.914748 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:03:09.011331 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:03:09.173974 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-06T21:03:09.220613 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-06T21:03:09.915492 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-06T21:03:10.129300 #6] INFO -- : Seeking course_change/0 to offset 0 +E, [2018-08-06T21:03:11.249769 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- NoMethodError: undefined method `publish' for # +Did you mean? public_send +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T21:03:11.250009 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-06T21:03:11.415696 #6] ERROR -- : Client fetch loop error: undefined method `publish' for # +Did you mean? public_send +I, [2018-08-06T21:03:11.416620 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-06T21:03:11.418749 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-06T21:03:11.431136 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-06T21:03:11.447838 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- NoMethodError: undefined method `publish' for # +Did you mean? public_send +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T21:03:11.469273 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-06T21:03:11.486612 #6] ERROR -- : Client fetch loop error: undefined method `publish' for # +Did you mean? public_send +I, [2018-08-06T21:03:11.487926 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-06T21:03:11.511320 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-06T21:03:11.512730 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:03:12.756190 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-06T21:03:12.757214 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:03:12.792671 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-06T21:03:12.793431 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:03:12.925093 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-cb9f1160-e2b6-402c-90de-983e7a1d3cb2` +I, [2018-08-06T21:03:12.925190 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-06T21:03:12.934037 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-06T21:03:12.934424 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-06T21:03:12.989718 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-bcb77dc7-198b-4edd-ab9a-7a8ef763b759` +I, [2018-08-06T21:03:12.989774 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-06T21:03:13.018562 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-06T21:03:13.018672 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-06T21:03:13.781011 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:03:13.812227 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:03:24.644474 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:03:25.045986 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:03:25.670807 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:03:26.257639 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:03:26.742768 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:03:26.928334 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-06T21:03:27.087224 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-06T21:03:27.263765 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-06T21:03:27.743621 #6] INFO -- : Seeking section_change/0 to offset 0 +E, [2018-08-06T21:03:29.120161 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- NoMethodError: undefined method `publish' for # +Did you mean? public_send +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T21:03:29.120282 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-06T21:03:29.122871 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- NoMethodError: undefined method `publish' for # +Did you mean? public_send +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T21:03:29.159322 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-06T21:03:29.183419 #6] ERROR -- : Client fetch loop error: undefined method `publish' for # +Did you mean? public_send +I, [2018-08-06T21:03:29.184502 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-06T21:03:29.199472 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-08-06T21:03:29.295060 #6] ERROR -- : Client fetch loop error: undefined method `publish' for # +Did you mean? public_send +I, [2018-08-06T21:03:29.295501 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-06T21:03:29.307067 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-06T21:03:29.355491 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:03:29.560871 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:03:30.200520 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-06T21:03:30.273753 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-5c4cbbf4-0d37-420f-9030-859b61238585` +I, [2018-08-06T21:03:30.273875 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-06T21:03:30.281145 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-06T21:03:30.281521 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-06T21:03:30.307575 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-06T21:03:30.358119 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:03:30.419924 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-ea46fc45-ac0d-4d8f-a543-39c30db532ae` +I, [2018-08-06T21:03:30.420586 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-06T21:03:30.433963 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-06T21:03:30.434059 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-06T21:03:30.563769 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:03:31.359532 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:03:31.564471 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:03:32.361080 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:03:32.572631 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:03:33.381013 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:03:33.593608 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:03:34.383843 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:03:34.600074 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:03:35.938541 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:03:35.967558 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:03:36.951417 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:03:36.986555 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:03:37.980969 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:03:38.162120 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:03:38.982410 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:03:39.469940 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:03:39.998756 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:03:40.506241 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:03:40.955661 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-06T21:03:41.063436 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:03:41.076017 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-06T21:03:41.529937 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-06T21:03:42.074490 #6] INFO -- : Seeking section_change/0 to offset 0 +E, [2018-08-06T21:03:43.416773 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- NoMethodError: undefined method `publish' for # +Did you mean? public_send +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T21:03:43.417325 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-06T21:03:43.954752 #6] ERROR -- : Client fetch loop error: undefined method `publish' for # +Did you mean? public_send +I, [2018-08-06T21:03:43.971941 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-06T21:03:43.977631 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-06T21:03:44.095541 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:03:44.978140 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-06T21:03:45.028711 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-c6f8914a-7a3b-47e4-812a-9b2ac6316d92` +I, [2018-08-06T21:03:45.030205 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-06T21:03:45.046597 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-06T21:03:45.046742 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-06T21:03:45.097283 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-06T21:03:45.346941 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- NoMethodError: undefined method `publish' for # +Did you mean? public_send +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T21:03:45.347051 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-06T21:03:45.379062 #6] ERROR -- : Client fetch loop error: undefined method `publish' for # +Did you mean? public_send +I, [2018-08-06T21:03:45.379486 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-06T21:03:45.383527 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-06T21:03:45.662106 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:03:46.206237 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:03:46.385290 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-06T21:03:46.669620 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:03:46.746519 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-9703fc3d-07f6-4772-ba93-028d91c39fe6` +I, [2018-08-06T21:03:46.746607 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-06T21:03:46.782470 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-06T21:03:46.782906 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-06T21:03:47.233316 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:03:47.693726 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:03:48.235331 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:03:48.748759 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:03:49.380112 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:03:49.778133 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:03:50.403250 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:03:50.780239 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:03:51.503852 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:03:51.782581 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:03:52.583612 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:03:52.955838 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:03:53.603847 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:03:53.961835 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:03:54.604571 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:03:54.969070 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:03:55.793914 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-06T21:03:55.888294 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:03:55.888862 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-06T21:03:56.045916 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:03:57.117733 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-06T21:03:57.170544 #6] INFO -- : Seeking section_change/0 to offset 0 +E, [2018-08-06T21:04:01.057664 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- NoMethodError: undefined method `publish' for # +Did you mean? public_send +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T21:04:01.606086 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-06T21:04:03.774150 #6] ERROR -- : Client fetch loop error: undefined method `publish' for # +Did you mean? public_send +I, [2018-08-06T21:04:03.780487 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-06T21:04:03.789990 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-06T21:04:03.806162 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-06T21:04:04.125469 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- NoMethodError: undefined method `publish' for # +Did you mean? public_send +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T21:04:04.125665 #6] INFO -- : Leaving group `notifications_notifications` +I, [2018-08-06T21:04:04.790460 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-06T21:04:04.853837 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:04:04.854115 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-cfeabe6a-3aba-41a0-b802-ae8d01ad1f0e` +I, [2018-08-06T21:04:04.854280 #6] INFO -- : Chosen as leader of group `notifications_course_change` +E, [2018-08-06T21:04:04.882627 #6] ERROR -- : Client fetch loop error: undefined method `publish' for # +Did you mean? public_send +I, [2018-08-06T21:04:04.960632 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-06T21:04:04.961078 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-06T21:04:04.962174 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-06T21:04:04.971365 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-06T21:04:05.070997 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:04:05.877882 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:04:06.014944 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-06T21:04:06.073844 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:04:06.209027 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-8bae0553-d134-463c-a0e7-041aac1c00d4` +I, [2018-08-06T21:04:06.209095 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-06T21:04:06.243855 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-06T21:04:06.243955 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-06T21:04:06.881700 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:04:07.272731 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:04:07.894019 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:04:08.286626 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:04:08.904541 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:04:09.331798 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:04:09.913837 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:04:10.340798 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:04:10.921668 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:04:11.344236 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:04:11.922416 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:04:12.346809 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:04:12.973452 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:04:13.474496 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:04:13.974624 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:04:14.478604 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:04:14.984265 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:04:15.477942 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-06T21:04:15.480705 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:04:15.996194 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-06T21:04:16.395426 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-06T21:04:16.494633 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:04:17.516195 #6] INFO -- : Seeking section_change/0 to offset 0 +E, [2018-08-06T21:04:18.027965 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- NoMethodError: undefined method `publish' for # +Did you mean? public_send +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T21:04:18.028305 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-06T21:04:18.411535 #6] ERROR -- : Client fetch loop error: undefined method `publish' for # +Did you mean? public_send +I, [2018-08-06T21:04:18.416384 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-06T21:04:18.461090 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-06T21:04:18.522324 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-06T21:04:19.461948 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:04:19.522819 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-06T21:04:19.718988 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-7bd367e5-c37d-41fb-8c91-22cf8efcc44d` +I, [2018-08-06T21:04:19.719136 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-06T21:04:19.754984 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-06T21:04:19.755129 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-06T21:04:20.463369 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-06T21:04:20.556486 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- NoMethodError: undefined method `publish' for # +Did you mean? public_send +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T21:04:20.556608 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-06T21:04:20.614503 #6] ERROR -- : Client fetch loop error: undefined method `publish' for # +Did you mean? public_send +I, [2018-08-06T21:04:20.620838 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-06T21:04:20.654582 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-06T21:04:21.176713 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:04:21.464537 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:04:21.660310 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-06T21:04:21.778766 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-73fe6896-9c9c-421d-bcaa-f53401a0ea8a` +I, [2018-08-06T21:04:21.778839 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-06T21:04:21.815089 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-06T21:04:21.815227 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-06T21:04:22.178487 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:04:22.582402 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:04:23.182156 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:04:23.608970 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:04:24.183136 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:04:24.610593 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:04:25.185626 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:04:25.611197 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:04:26.142384 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:04:26.564662 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:04:27.151947 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:04:27.565762 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:04:28.153525 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:04:28.566534 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:04:29.154313 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:04:29.567239 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:04:29.784262 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-06T21:04:30.154958 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:04:30.567764 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-06T21:04:31.156602 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-06T21:04:31.831272 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- NoMethodError: undefined method `publish' for # +Did you mean? public_send +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T21:04:31.831402 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-06T21:04:31.850404 #6] ERROR -- : Client fetch loop error: undefined method `publish' for # +Did you mean? public_send +I, [2018-08-06T21:04:31.850884 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-06T21:04:31.857781 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-06T21:04:31.878214 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-06T21:04:31.950481 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:04:32.158069 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-06T21:04:32.858250 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-06T21:04:32.864233 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-1a9b85f5-1b95-42eb-a83e-a6517006d0af` +I, [2018-08-06T21:04:32.864284 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-06T21:04:32.866818 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-06T21:04:32.866932 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-06T21:04:32.951534 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-06T21:04:33.883657 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- NoMethodError: undefined method `publish' for # +Did you mean? public_send +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T21:04:33.886172 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-06T21:04:33.889524 #6] ERROR -- : Client fetch loop error: undefined method `publish' for # +Did you mean? public_send +I, [2018-08-06T21:04:33.889845 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-06T21:04:33.896777 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-06T21:04:33.951904 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:04:34.140139 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:04:34.897402 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-06T21:04:34.906078 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-475ecb30-5a2a-4b40-a4a4-c27ffa79d1b0` +I, [2018-08-06T21:04:34.906137 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-06T21:04:34.921729 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-06T21:04:34.921820 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-06T21:04:34.952286 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:04:35.141541 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:04:35.952749 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:04:36.142138 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:04:36.953272 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:04:37.142584 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:04:37.953684 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:04:38.143102 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:04:38.954148 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:04:39.143779 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:04:39.954664 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:04:40.144190 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:04:40.955399 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:04:41.144734 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:04:41.956254 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:04:42.149448 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:04:42.993925 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:04:43.157213 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:04:43.170422 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-06T21:04:43.995464 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-06T21:04:44.158405 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:04:44.995321 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-06T21:04:45.159292 #6] INFO -- : Seeking section_change/0 to offset 0 +E, [2018-08-06T21:04:45.583289 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- NoMethodError: undefined method `publish' for # +Did you mean? public_send +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T21:04:45.583427 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-06T21:04:45.641679 #6] ERROR -- : Client fetch loop error: undefined method `publish' for # +Did you mean? public_send +I, [2018-08-06T21:04:45.643006 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-06T21:04:45.648789 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-06T21:04:45.745761 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:04:46.649368 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-06T21:04:46.657103 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-cd7f6e40-ec0b-4801-9264-21a130c3e0bd` +I, [2018-08-06T21:04:46.657175 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-06T21:04:46.663549 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-06T21:04:46.663802 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-06T21:04:46.746729 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-06T21:04:47.010822 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- NoMethodError: undefined method `publish' for # +Did you mean? public_send +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T21:04:47.014302 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-06T21:04:47.031107 #6] ERROR -- : Client fetch loop error: undefined method `publish' for # +Did you mean? public_send +I, [2018-08-06T21:04:47.031352 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-06T21:04:47.036956 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-06T21:04:47.060930 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:04:47.754827 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:04:49.373676 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-06T21:04:49.694609 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:04:49.858346 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:04:50.078097 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-b7fc596a-2845-4e62-840e-e52383d567d6` +I, [2018-08-06T21:04:50.078236 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-06T21:04:50.430544 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-06T21:04:50.431951 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-06T21:04:50.700801 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:04:50.929064 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:04:52.658945 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:04:52.708448 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:04:53.665327 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:04:53.709233 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:04:54.666478 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:04:54.710617 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:04:55.667623 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:04:55.711522 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:04:56.612084 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-06T21:04:56.642382 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:04:56.686505 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:04:57.643885 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:04:57.687334 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-06T21:04:58.434890 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-06T21:04:58.644820 #6] INFO -- : Seeking section_change/0 to offset 0 +E, [2018-08-06T21:04:58.709406 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- NoMethodError: undefined method `publish' for # +Did you mean? public_send +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T21:04:58.709565 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-06T21:04:58.752296 #6] ERROR -- : Client fetch loop error: undefined method `publish' for # +Did you mean? public_send +I, [2018-08-06T21:04:58.753195 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-06T21:04:58.760990 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-06T21:04:59.141196 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:04:59.761251 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-06T21:04:59.768495 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-419e3fc9-34f1-4664-8619-484eba293375` +I, [2018-08-06T21:04:59.768567 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-06T21:04:59.774715 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-06T21:04:59.774872 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-06T21:05:00.143631 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-06T21:05:00.439785 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- NoMethodError: undefined method `publish' for # +Did you mean? public_send +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T21:05:00.447994 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-06T21:05:00.456459 #6] ERROR -- : Client fetch loop error: undefined method `publish' for # +Did you mean? public_send +I, [2018-08-06T21:05:00.456958 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-06T21:05:00.461082 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-06T21:05:00.508563 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:05:01.144405 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:05:01.464805 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-06T21:05:01.499614 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-1b833853-2e07-4f5a-bf16-7a8502ed3f3f` +I, [2018-08-06T21:05:01.499686 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-06T21:05:01.503227 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-06T21:05:01.503383 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-06T21:05:01.509158 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:05:02.146460 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:05:02.509794 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:05:03.146781 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:05:03.510147 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:05:04.147195 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:05:04.510800 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:05:05.147653 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:05:05.511335 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:05:06.148297 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:05:06.511807 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:05:07.149525 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:05:07.512864 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:05:08.151437 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:05:08.513352 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:05:09.152346 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:05:09.514339 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:05:09.786026 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-06T21:05:10.154299 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-06T21:05:10.515464 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:05:11.510651 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-06T21:05:11.515950 #6] INFO -- : Seeking section_change/0 to offset 0 +E, [2018-08-06T21:05:11.815747 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- NoMethodError: undefined method `publish' for # +Did you mean? public_send +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T21:05:11.815884 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-06T21:05:11.826588 #6] ERROR -- : Client fetch loop error: undefined method `publish' for # +Did you mean? public_send +I, [2018-08-06T21:05:11.826916 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-06T21:05:11.828433 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-06T21:05:11.913030 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:05:12.828773 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-06T21:05:12.833135 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-db2566f9-17c3-42a2-b99b-aeb916ff8639` +I, [2018-08-06T21:05:12.833192 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-06T21:05:12.838444 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-06T21:05:12.838540 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-06T21:05:12.985026 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-06T21:05:13.518395 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- NoMethodError: undefined method `publish' for # +Did you mean? public_send +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T21:05:13.520720 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-06T21:05:13.565998 #6] ERROR -- : Client fetch loop error: undefined method `publish' for # +Did you mean? public_send +I, [2018-08-06T21:05:13.566503 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-06T21:05:13.573651 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-06T21:05:15.169183 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:05:15.294676 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-06T21:05:15.528869 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:05:15.747234 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-02565a3f-3d85-49fd-b965-fa6753abdf75` +I, [2018-08-06T21:05:15.747405 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-06T21:05:16.099253 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-06T21:05:16.099597 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-06T21:05:16.171961 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:05:16.532075 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:05:17.200579 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:05:18.074780 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:05:18.201815 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:05:19.095152 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:05:19.203630 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:05:20.108900 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:05:20.489126 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:05:21.109371 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:05:21.489802 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:05:22.110001 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:05:22.123581 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-06T21:05:22.490231 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-06T21:05:23.110390 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:05:24.110763 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:05:24.125200 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +E, [2018-08-06T21:05:24.132121 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- NoMethodError: undefined method `publish' for # +Did you mean? public_send +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T21:05:24.132217 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-06T21:05:24.140527 #6] ERROR -- : Client fetch loop error: undefined method `publish' for # +Did you mean? public_send +I, [2018-08-06T21:05:24.141026 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-06T21:05:24.144021 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-06T21:05:24.501357 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:05:25.111286 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-06T21:05:25.145727 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-06T21:05:25.173814 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-69188a0d-b263-48f4-89db-4d36d1f1c32e` +I, [2018-08-06T21:05:25.173871 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-06T21:05:25.181658 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-06T21:05:25.181737 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-06T21:05:25.502375 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-06T21:05:26.098991 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- NoMethodError: undefined method `publish' for # +Did you mean? public_send +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T21:05:26.101217 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-06T21:05:26.105271 #6] ERROR -- : Client fetch loop error: undefined method `publish' for # +Did you mean? public_send +I, [2018-08-06T21:05:26.105545 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-06T21:05:26.106572 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-06T21:05:26.130646 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:05:26.465424 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:05:27.108165 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-06T21:05:27.114656 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-c5b4cd90-6a60-4af6-91d0-d13c339cf0cd` +I, [2018-08-06T21:05:27.114714 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-06T21:05:27.116489 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-06T21:05:27.116599 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-06T21:05:27.130971 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:05:27.465995 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:05:28.131606 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:05:28.466429 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:05:29.131995 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:05:29.467112 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:05:30.133109 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:05:30.467687 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:05:31.133605 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:05:31.468194 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:05:32.134278 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:05:32.471629 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:05:33.135732 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:05:33.472402 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:05:34.136129 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:05:34.472999 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:05:35.136498 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:05:35.154455 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-06T21:05:35.473517 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-06T21:05:36.136867 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:05:37.127679 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-06T21:05:37.137390 #6] INFO -- : Seeking section_change/0 to offset 0 +E, [2018-08-06T21:05:37.162406 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- NoMethodError: undefined method `publish' for # +Did you mean? public_send +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T21:05:37.162507 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-06T21:05:37.186390 #6] ERROR -- : Client fetch loop error: undefined method `publish' for # +Did you mean? public_send +I, [2018-08-06T21:05:37.186635 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-06T21:05:37.188346 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-06T21:05:37.325386 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:05:38.189253 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-06T21:05:38.199933 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-a1422057-f459-4950-8991-24b7539cbf58` +I, [2018-08-06T21:05:38.199994 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-06T21:05:38.202054 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-06T21:05:38.202116 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-06T21:05:38.325856 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-06T21:05:39.131160 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- NoMethodError: undefined method `publish' for # +Did you mean? public_send +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T21:09:40.618464 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-06T21:09:40.637321 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-06T21:09:40.645881 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-06T21:09:40.645957 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-06T21:09:40.784289 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-06T21:09:40.784962 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-06T21:09:40.785270 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-06T21:09:40.785380 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-06T21:09:45.912186 #6] 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.13:9094 +I, [2018-08-06T21:09:45.969067 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-06T21:09:45.969240 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-06T21:09:46.013812 #6] 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.13:9094 +I, [2018-08-06T21:09:46.109531 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-06T21:09:46.109617 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-06T21:09:46.130917 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-06T21:09:46.260676 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-06T21:09:46.260904 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-06T21:09:46.261965 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-06T21:09:51.261969 #6] 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.13:9094 +I, [2018-08-06T21:09:51.264336 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-06T21:09:51.264408 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-06T21:09:51.267563 #6] 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.13:9094 +I, [2018-08-06T21:09:51.274477 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-06T21:09:51.274699 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-06T21:09:51.276494 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-06T21:09:51.276646 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-06T21:09:51.277294 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-06T21:09:51.278583 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-06T21:09:56.238708 #6] 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.13:9094 +E, [2018-08-06T21:09:56.241568 #6] 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.13:9094 +I, [2018-08-06T21:09:56.245506 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-06T21:09:56.245719 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-06T21:09:56.247235 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-06T21:09:56.247343 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +I, [2018-08-06T21:09:56.248740 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-06T21:09:56.248976 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-06T21:09:56.254101 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-06T21:09:56.257633 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-06T21:10:01.253250 #6] 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.13:9094 +I, [2018-08-06T21:10:01.255543 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-06T21:10:01.255622 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-06T21:10:01.257067 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-06T21:10:01.257192 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-06T21:10:01.261782 #6] 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.13:9094 +I, [2018-08-06T21:10:01.337120 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-06T21:10:01.337653 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-06T21:10:01.361486 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-06T21:10:01.361922 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-06T21:10:06.260017 #6] 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.13:9094 +I, [2018-08-06T21:10:06.265284 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-06T21:10:06.265611 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-06T21:10:06.362582 #6] 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.13:9094 +I, [2018-08-06T21:10:06.364249 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-06T21:10:06.364365 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-06T21:10:11.789821 #6] ERROR -- : No brokers in cluster +E, [2018-08-06T21:10:13.010334 #6] ERROR -- : No brokers in cluster +E, [2018-08-06T21:10:16.809608 #6] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: + +I, [2018-08-06T21:10:16.871931 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-06T21:10:16.872210 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-06T21:10:17.338840 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-06T21:10:17.340379 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-06T21:10:17.377307 #6] INFO -- : Will fetch at most 1048576 bytes at a time per partition from course_change +I, [2018-08-06T21:10:17.377995 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-06T21:10:17.405727 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-06T21:10:17.411453 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-06T21:10:18.013031 #6] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: + +I, [2018-08-06T21:10:18.016177 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-06T21:10:18.017491 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-06T21:10:18.215967 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-06T21:10:18.216174 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-06T21:10:18.220178 #6] INFO -- : Will fetch at most 1048576 bytes at a time per partition from section_change +I, [2018-08-06T21:10:18.222672 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-06T21:10:18.229017 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-06T21:10:18.229111 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:10:18.414323 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:10:19.230035 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:10:19.415030 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:10:20.233832 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:10:20.417056 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:10:21.234417 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:10:21.418366 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:10:21.675341 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-ad6ab303-16f5-402d-9ea7-d80a5ceb57b8` +I, [2018-08-06T21:10:21.675741 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-06T21:10:22.044983 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-4ddb8ca6-6a49-4d78-98d4-d0b8f20738c5` +I, [2018-08-06T21:10:22.045054 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-06T21:10:22.239227 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:10:22.419985 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:10:22.680922 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-06T21:10:22.688113 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-06T21:10:23.021069 #6] INFO -- : Partitions assigned for `section_change`: 0 +I, [2018-08-06T21:10:23.046072 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-06T21:10:23.079653 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-06T21:10:23.112915 #6] INFO -- : Partitions assigned for `course_change`: 0 +I, [2018-08-06T21:10:23.239878 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-06T21:10:23.240304 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-06T21:10:23.240536 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-06T21:10:23.275036 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-06T21:10:23.420355 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-06T21:10:23.420535 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-06T21:10:23.420592 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-06T21:10:23.459493 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +E, [2018-08-06T21:10:27.130154 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- NoMethodError: undefined method `publish' for # +Did you mean? public_send +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T21:10:27.131747 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-06T21:10:27.142998 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- NoMethodError: undefined method `publish' for # +Did you mean? public_send +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T21:10:27.150476 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-06T21:10:27.179191 #6] ERROR -- : Client fetch loop error: undefined method `publish' for # +Did you mean? public_send +I, [2018-08-06T21:10:27.181616 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-06T21:10:27.195470 #6] ERROR -- : Client fetch loop error: undefined method `publish' for # +Did you mean? public_send +I, [2018-08-06T21:10:27.197041 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-06T21:10:27.199845 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-08-06T21:10:27.201077 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-06T21:10:27.249686 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:10:27.758429 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:10:28.201066 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-06T21:10:28.201489 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-06T21:10:28.223693 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-793acb2d-1749-4416-aa53-e3b497f2fcb6` +I, [2018-08-06T21:10:28.223752 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-06T21:10:28.236150 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-1ce2613c-7273-4640-8a4d-6b6d9058e425` +I, [2018-08-06T21:10:28.236213 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-06T21:10:28.237198 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-06T21:10:28.237285 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-06T21:10:28.243048 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-06T21:10:28.243129 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-06T21:10:28.250230 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:10:28.758819 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:10:29.250885 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:10:29.759401 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:10:30.251352 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:10:30.759707 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:10:31.252070 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:10:31.760237 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:10:32.252697 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:10:32.760578 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:10:33.257118 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:10:33.764120 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:10:34.263319 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:10:34.764801 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:10:35.263663 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:10:35.765235 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:10:36.265045 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:10:36.766102 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:10:37.265385 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:10:37.766696 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:10:38.256720 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-06T21:10:38.267519 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:10:38.284575 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-06T21:10:38.768381 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-06T21:10:39.270893 #6] INFO -- : Seeking section_change/0 to offset 0 +E, [2018-08-06T21:10:40.274291 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- NoMethodError: undefined method `publish' for # +Did you mean? public_send +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T21:10:40.274402 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-06T21:10:40.278341 #6] ERROR -- : Client fetch loop error: undefined method `publish' for # +Did you mean? public_send +I, [2018-08-06T21:10:40.282123 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-06T21:10:40.283167 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-08-06T21:10:40.292497 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- NoMethodError: undefined method `publish' for # +Did you mean? public_send +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T21:10:40.292609 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-06T21:10:40.298346 #6] ERROR -- : Client fetch loop error: undefined method `publish' for # +Did you mean? public_send +I, [2018-08-06T21:10:40.298616 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-06T21:10:40.300723 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-06T21:10:40.334776 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:10:40.512437 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:10:42.015341 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:10:42.197328 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-06T21:10:42.483935 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-06T21:10:42.484783 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:10:42.746149 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-2c911b72-47ee-441d-9373-aef07d81746f` +I, [2018-08-06T21:10:42.746232 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-06T21:10:43.016364 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-89939218-e30c-40a5-ae92-2b0d6fd6298e` +I, [2018-08-06T21:10:43.016481 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-06T21:10:43.017017 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:10:43.028601 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-06T21:10:43.028801 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-06T21:10:43.045383 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-06T21:10:43.045501 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-06T21:10:43.652822 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:10:44.019306 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:10:44.853321 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:10:45.022398 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:10:45.854827 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:10:46.038039 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:10:46.855396 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:10:47.039766 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:10:47.856409 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:10:48.041184 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:10:48.873702 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:10:49.089978 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:10:50.031879 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:10:50.100243 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:10:52.137018 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-06T21:10:52.145128 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-06T21:10:52.148878 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:10:52.149221 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:10:53.158337 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-06T21:10:53.162654 #6] INFO -- : Seeking course_change/0 to offset 0 +E, [2018-08-06T21:10:54.501527 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- NoMethodError: undefined method `publish' for # +Did you mean? public_send +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T21:10:54.520174 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-06T21:10:54.507771 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- NoMethodError: undefined method `publish' for # +Did you mean? public_send +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T21:10:54.520676 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-06T21:10:54.550082 #6] ERROR -- : Client fetch loop error: undefined method `publish' for # +Did you mean? public_send +I, [2018-08-06T21:10:54.551647 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-06T21:10:54.559520 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-08-06T21:10:54.613608 #6] ERROR -- : Client fetch loop error: undefined method `publish' for # +Did you mean? public_send +I, [2018-08-06T21:10:54.614465 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-06T21:10:54.747205 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-06T21:10:54.907863 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-06T21:10:55.043266 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:10:55.559979 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-06T21:10:55.603276 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-347312b1-b6c8-4758-a1ad-2e97c56d1c31` +I, [2018-08-06T21:10:55.603360 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-06T21:10:55.619191 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-06T21:10:55.619338 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-06T21:10:55.754055 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:10:55.912563 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-06T21:10:56.069313 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:10:56.230757 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-c1dabc2b-8bec-4e8f-b1f9-e5d67bd02293` +I, [2018-08-06T21:10:56.230825 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-06T21:10:56.943444 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:10:57.070606 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:10:57.977921 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:10:58.071656 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:10:58.254541 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-06T21:10:58.255030 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-06T21:10:58.993207 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:10:59.078764 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:10:59.994955 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:11:00.081026 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:11:01.058492 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:11:01.089584 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:11:02.063854 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:11:02.113612 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:11:03.066658 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:11:03.114278 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:11:04.067185 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:11:04.114792 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:11:05.067622 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:11:05.115255 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:11:06.174986 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:11:06.178136 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:11:06.324656 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-06T21:11:07.103916 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-06T21:11:07.303783 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:11:07.305254 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:11:08.501772 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:11:08.502603 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:11:09.536833 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-06T21:11:09.556418 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:11:10.556702 #6] INFO -- : Seeking section_change/0 to offset 0 +E, [2018-08-06T21:11:11.221726 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- NoMethodError: undefined method `publish' for # +Did you mean? public_send +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T21:11:11.221994 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-06T21:11:12.311169 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- NoMethodError: undefined method `publish' for # +Did you mean? public_send +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T21:11:12.311289 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-06T21:11:13.268570 #6] ERROR -- : Client fetch loop error: undefined method `publish' for # +Did you mean? public_send +I, [2018-08-06T21:11:13.300254 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-06T21:11:13.321026 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-06T21:11:13.366223 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-06T21:11:13.542674 #6] ERROR -- : Client fetch loop error: undefined method `publish' for # +Did you mean? public_send +I, [2018-08-06T21:11:13.542953 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-06T21:11:13.579203 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-06T21:11:13.581917 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-06T21:11:14.322437 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-06T21:11:14.376845 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:11:14.600691 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-06T21:11:14.623031 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:11:14.811678 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-417110ba-5a87-4504-8358-b563e06ab2c3` +I, [2018-08-06T21:11:14.811791 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-06T21:11:14.858342 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-06T21:11:14.858468 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-06T21:11:14.863845 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-ec7a85b2-7e6c-492f-8c05-b322e4a7f6c9` +I, [2018-08-06T21:11:14.863904 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-06T21:11:14.893536 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-06T21:11:14.893633 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-06T21:11:15.378304 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:11:15.639322 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:11:16.382001 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:11:16.640060 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:11:17.382400 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:11:17.660091 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:11:18.383071 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:11:18.660880 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:11:19.383475 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:11:19.662413 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:11:20.384199 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:11:20.665706 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:11:21.384702 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:11:21.666618 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:11:22.397935 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:11:22.674694 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:11:23.442077 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:11:23.676017 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:11:24.482654 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:11:24.815326 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:11:25.202433 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-06T21:11:25.203700 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-06T21:11:25.590729 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:11:25.851244 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-06T21:11:26.659232 #6] INFO -- : Seeking course_change/0 to offset 0 +E, [2018-08-06T21:11:30.027791 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- NoMethodError: undefined method `publish' for # +Did you mean? public_send +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T21:11:30.055524 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-06T21:11:30.137954 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- NoMethodError: undefined method `publish' for # +Did you mean? public_send +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T21:11:30.277968 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-06T21:11:30.933198 #6] ERROR -- : Client fetch loop error: undefined method `publish' for # +Did you mean? public_send +I, [2018-08-06T21:11:30.957604 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-06T21:11:30.958444 #6] ERROR -- : Client fetch loop error: undefined method `publish' for # +Did you mean? public_send +I, [2018-08-06T21:11:30.958609 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-06T21:11:31.044623 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-08-06T21:11:31.044836 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-06T21:11:31.055729 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:11:31.506915 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:11:32.067151 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-06T21:11:32.077592 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:11:32.313482 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-06T21:11:35.393579 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:11:35.416802 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:11:36.429508 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:11:36.429880 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:11:37.429929 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:11:37.430181 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:11:38.233657 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-4b1d0ef9-e17b-4d97-baf1-afed2603e59f` +I, [2018-08-06T21:11:38.233766 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-06T21:11:38.261602 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-32b081bd-a7ef-4b24-8dc8-b487d00c8241` +I, [2018-08-06T21:11:38.276947 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-06T21:11:38.277143 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-06T21:11:38.288569 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-06T21:11:38.434200 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:11:38.437030 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:11:38.599986 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-06T21:11:38.600136 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-06T21:11:39.472182 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:11:39.474457 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:11:40.474103 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:11:40.475552 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:11:41.477248 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:11:41.485269 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:11:42.478097 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:11:42.486231 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:11:42.584396 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-06T21:11:42.932164 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-06T21:11:43.516224 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-06T21:11:43.523267 #6] INFO -- : Seeking section_change/0 to offset 0 +E, [2018-08-06T21:11:44.728035 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- NoMethodError: undefined method `publish' for # +Did you mean? public_send +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T21:11:44.738964 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-06T21:11:44.809921 #6] ERROR -- : Client fetch loop error: undefined method `publish' for # +Did you mean? public_send +I, [2018-08-06T21:11:44.815433 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-06T21:11:44.822177 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-06T21:11:44.895887 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-06T21:11:45.306646 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- NoMethodError: undefined method `publish' for # +Did you mean? public_send +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T21:11:45.306749 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-06T21:11:45.329269 #6] ERROR -- : Client fetch loop error: undefined method `publish' for # +Did you mean? public_send +I, [2018-08-06T21:11:45.329673 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-06T21:11:45.333397 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-06T21:11:45.430285 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:11:45.822551 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-06T21:11:45.874624 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-184b3b18-8695-4157-b3b2-9a4a00b4ed54` +I, [2018-08-06T21:11:45.874702 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-06T21:11:45.909814 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:11:46.038703 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-06T21:11:46.038803 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-06T21:11:46.334064 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-06T21:11:46.431305 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:11:46.665258 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-6b6779a9-db54-40a6-b455-bc0927fc1fab` +I, [2018-08-06T21:11:46.665320 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-06T21:11:46.680276 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-06T21:11:46.680501 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-06T21:11:46.910218 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:11:47.431847 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:11:47.912357 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:11:48.433412 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:11:48.914836 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:11:49.434420 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:11:49.916067 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:11:50.435819 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:11:50.946948 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:11:51.437289 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:11:51.952256 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:11:52.456534 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:11:52.964850 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:11:53.457850 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:11:53.965407 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:11:54.473029 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:11:54.969030 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:11:55.473860 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:11:55.977779 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:11:56.085636 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-06T21:11:56.443021 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:11:56.841607 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-06T21:11:56.948992 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-06T21:11:57.443519 #6] INFO -- : Seeking section_change/0 to offset 0 +E, [2018-08-06T21:11:58.082582 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- NoMethodError: undefined method `publish' for # +Did you mean? public_send +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T21:11:58.088816 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-06T21:11:58.122558 #6] ERROR -- : Client fetch loop error: undefined method `publish' for # +Did you mean? public_send +I, [2018-08-06T21:11:58.124207 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-06T21:11:58.136320 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-06T21:11:58.277076 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-06T21:11:58.883712 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- NoMethodError: undefined method `publish' for # +Did you mean? public_send +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T21:11:58.883879 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-06T21:11:59.028334 #6] ERROR -- : Client fetch loop error: undefined method `publish' for # +Did you mean? public_send +I, [2018-08-06T21:11:59.028843 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-06T21:11:59.033767 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-06T21:11:59.092294 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:11:59.136997 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-06T21:11:59.254277 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-92497cdd-26b6-4ea4-943b-fd5a27e1e6a9` +I, [2018-08-06T21:11:59.254386 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-06T21:11:59.277843 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:11:59.451791 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-06T21:11:59.451886 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-06T21:12:00.053489 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-06T21:12:00.101401 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:12:00.300063 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:12:00.666868 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-e41e410f-5875-451d-ad1d-170a09cac93f` +I, [2018-08-06T21:12:00.666984 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-06T21:12:01.119064 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:12:01.820845 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:12:02.540602 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:12:02.834677 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:12:03.023178 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-06T21:12:03.023405 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-06T21:12:03.548334 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:12:03.845059 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:12:04.553351 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:12:04.845933 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:12:05.554392 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:12:05.848848 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:12:06.555660 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:12:06.849255 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:12:07.557509 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:12:07.853060 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:12:08.559131 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:12:08.853475 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:12:09.048722 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-06T21:12:09.079002 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-06T21:12:09.559758 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-06T21:12:09.854580 #6] INFO -- : Seeking course_change/0 to offset 0 +E, [2018-08-06T21:12:11.075471 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- NoMethodError: undefined method `publish' for # +Did you mean? public_send +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T21:12:11.079847 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-06T21:12:11.086198 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- NoMethodError: undefined method `publish' for # +Did you mean? public_send +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T21:12:11.086281 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-06T21:12:11.091973 #6] ERROR -- : Client fetch loop error: undefined method `publish' for # +Did you mean? public_send +I, [2018-08-06T21:12:11.094308 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-06T21:12:11.107261 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-08-06T21:12:11.111759 #6] ERROR -- : Client fetch loop error: undefined method `publish' for # +Did you mean? public_send +I, [2018-08-06T21:12:11.112303 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-06T21:12:11.113590 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-06T21:12:11.114856 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-06T21:12:11.141803 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:12:12.107560 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-06T21:12:12.112738 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-c56fa9a4-5940-4723-87b4-e02c8937547a` +I, [2018-08-06T21:12:12.112796 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-06T21:12:12.114182 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:12:12.115565 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-06T21:12:12.116640 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-06T21:12:12.116715 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-06T21:12:12.127621 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-eaeb3bd1-38d9-474b-afd5-cfd2ca46ed0d` +I, [2018-08-06T21:12:12.127682 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-06T21:12:12.140849 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-06T21:12:12.140938 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-06T21:12:12.145624 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:12:13.115469 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:12:13.146685 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:12:14.116489 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:12:14.147538 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:12:15.117172 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:12:15.148618 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:12:16.119047 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:12:16.149205 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:12:17.119507 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:12:17.150059 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:12:18.120061 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:12:18.150971 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:12:19.120753 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:12:19.151481 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:12:20.121569 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:12:20.151819 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:12:21.122018 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:12:21.152212 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:12:22.122463 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:12:22.131284 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-06T21:12:22.147056 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-06T21:12:22.152556 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-06T21:12:23.124022 #6] INFO -- : Seeking section_change/0 to offset 0 +E, [2018-08-06T21:12:24.136318 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- NoMethodError: undefined method `publish' for # +Did you mean? public_send +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T21:14:47.010571 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-06T21:14:47.011837 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-06T21:14:47.019685 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-06T21:14:47.022181 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-06T21:14:47.057253 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-06T21:14:47.060613 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-06T21:14:47.067322 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-06T21:14:47.067489 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-06T21:14:52.086447 #6] 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.14:9094 +I, [2018-08-06T21:14:52.125755 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-06T21:14:52.126188 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-06T21:14:52.130072 #6] 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.14:9094 +I, [2018-08-06T21:14:52.150135 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-06T21:14:52.150215 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-06T21:14:52.155436 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-06T21:14:52.155593 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-06T21:14:52.173787 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-06T21:14:52.181528 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-06T21:14:57.165834 #6] 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.14:9094 +I, [2018-08-06T21:14:57.168486 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-06T21:14:57.168587 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-06T21:14:57.169961 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-06T21:14:57.170434 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-06T21:14:57.181887 #6] 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.14:9094 +I, [2018-08-06T21:14:57.185062 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-06T21:14:57.185135 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-06T21:14:57.187160 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-06T21:14:57.187442 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-06T21:15:02.209591 #6] 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.14:9094 +I, [2018-08-06T21:15:02.266954 #6] INFO -- : New topics added to target list: section_change +E, [2018-08-06T21:15:02.290315 #6] 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.14:9094 +I, [2018-08-06T21:15:02.352057 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-06T21:15:02.352205 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-06T21:15:02.355753 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-06T21:15:02.375807 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-06T21:15:02.377058 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-06T21:15:02.401399 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-06T21:15:02.404689 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-06T21:15:07.389000 #6] 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.14:9094 +I, [2018-08-06T21:15:07.398534 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-06T21:15:07.398668 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-06T21:15:07.406222 #6] 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.14:9094 +I, [2018-08-06T21:15:07.408517 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-06T21:15:07.408630 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-06T21:15:10.659841 #6] ERROR -- : No brokers in cluster +E, [2018-08-06T21:15:10.682886 #6] ERROR -- : No brokers in cluster +E, [2018-08-06T21:15:15.669012 #6] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: + +I, [2018-08-06T21:15:15.681734 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-06T21:15:15.681849 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-06T21:15:15.683518 #6] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: + +I, [2018-08-06T21:15:15.685717 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-06T21:15:15.685888 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-06T21:15:15.871029 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-06T21:15:15.871374 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-06T21:15:15.872680 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-06T21:15:15.873479 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-06T21:15:15.882627 #6] INFO -- : Will fetch at most 1048576 bytes at a time per partition from section_change +I, [2018-08-06T21:15:15.882892 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-06T21:15:15.888130 #6] INFO -- : Will fetch at most 1048576 bytes at a time per partition from course_change +I, [2018-08-06T21:15:15.888404 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-06T21:15:15.899833 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-06T21:15:15.900068 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:15:15.901154 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-06T21:15:15.901258 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:15:16.900570 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:15:16.901790 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:15:17.901194 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:15:17.909741 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:15:18.910362 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:15:18.911048 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:15:19.911662 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:15:19.917015 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:15:20.828717 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-49270f00-ea34-405b-adec-4acd3bcf94b8` +I, [2018-08-06T21:15:20.828800 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-06T21:15:20.836633 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-1caf734e-4226-457a-925d-a438c72aabdb` +I, [2018-08-06T21:15:20.836690 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-06T21:15:20.912005 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:15:20.917458 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:15:21.831348 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-06T21:15:21.838306 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-06T21:15:21.873786 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-06T21:15:21.889873 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-06T21:15:21.912620 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:15:21.918193 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:15:22.185036 #6] INFO -- : Partitions assigned for `course_change`: 0 +I, [2018-08-06T21:15:22.192973 #6] INFO -- : Partitions assigned for `section_change`: 0 +I, [2018-08-06T21:15:22.914672 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-06T21:15:22.914841 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-06T21:15:22.914889 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-06T21:15:22.918598 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-06T21:15:22.918821 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-06T21:15:22.918858 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-06T21:15:22.946988 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-06T21:15:22.955667 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +E, [2018-08-06T21:15:26.625298 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- NoMethodError: undefined method `write' for # +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T21:15:26.625403 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-06T21:15:26.630553 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- NoMethodError: undefined method `write' for # +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T21:15:26.633816 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-06T21:15:26.688619 #6] ERROR -- : Client fetch loop error: undefined method `write' for # +I, [2018-08-06T21:15:26.689283 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-06T21:15:26.758322 #6] ERROR -- : Client fetch loop error: undefined method `write' for # +I, [2018-08-06T21:15:26.758738 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-06T21:15:26.776252 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-08-06T21:15:26.776552 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-06T21:15:26.779812 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:15:26.909806 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:15:27.746727 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-06T21:15:27.750165 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:15:27.757597 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-06T21:15:27.805274 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-03558a29-0f03-4839-8603-4ba3f6a92478` +I, [2018-08-06T21:15:27.805674 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-06T21:15:27.810172 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-06T21:15:27.810292 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-06T21:15:27.870485 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-e22ac496-4baf-4020-a921-7887abd35eca` +I, [2018-08-06T21:15:27.870672 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-06T21:15:27.881841 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:15:27.990066 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-06T21:15:27.990283 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-06T21:15:28.750923 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:15:28.882489 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:15:29.751343 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:15:29.883008 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:15:30.751719 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:15:30.883605 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:15:31.752434 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:15:31.888450 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:15:32.757865 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:15:32.889661 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:15:33.758334 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:15:33.896213 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:15:34.758780 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:15:34.898512 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:15:35.759313 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:15:35.899014 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:15:36.759936 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:15:36.899941 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:15:37.760491 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:15:37.837007 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-06T21:15:37.901353 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-06T21:15:38.069962 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-06T21:15:38.762165 #6] INFO -- : Seeking section_change/0 to offset 0 +E, [2018-08-06T21:15:39.886610 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- NoMethodError: undefined method `write' for # +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T21:15:39.886717 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-06T21:15:39.929003 #6] ERROR -- : Client fetch loop error: undefined method `write' for # +I, [2018-08-06T21:15:39.931649 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-06T21:15:39.962270 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-06T21:15:40.038108 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-06T21:15:40.075825 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- NoMethodError: undefined method `write' for # +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-06T21:15:40.075896 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-06T21:15:40.169204 #6] ERROR -- : Client fetch loop error: undefined method `write' for # +I, [2018-08-06T21:15:40.171936 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-06T21:15:40.200931 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-06T21:15:40.234807 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:15:40.962479 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-06T21:15:41.013595 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-cd0ecefd-3b20-48aa-9386-df6c3f2a4322` +I, [2018-08-06T21:15:41.013688 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-06T21:15:41.022274 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-06T21:15:41.022349 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-06T21:15:41.043725 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:15:41.213452 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-06T21:15:41.235981 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:15:41.343346 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-ecea907d-0be1-44ec-88e6-a331f6a71d3a` +I, [2018-08-06T21:15:41.343481 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-06T21:15:41.369654 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-06T21:15:41.369742 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-06T21:15:42.060951 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:15:42.238412 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:15:43.065384 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:15:43.238983 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:15:44.066122 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:15:44.239614 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:15:45.066498 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:15:45.240110 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:15:46.067629 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:15:46.257344 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:15:47.069366 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:15:47.257726 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:15:48.070022 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:15:48.258541 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:15:49.070645 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:15:49.281916 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:15:50.071224 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:15:50.282230 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:15:51.047726 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-06T21:15:51.072736 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-06T21:15:51.284175 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-06T21:15:51.385901 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-06T21:15:52.284538 #6] INFO -- : Seeking section_change/0 to offset 0 +E, [2018-08-06T21:15:53.122677 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- NoMethodError: undefined method `write' for # +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-07T00:14:41.680475 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-07T00:14:41.680862 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T00:14:41.727210 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-07T00:14:41.729085 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T00:14:41.989045 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-07T00:14:41.989462 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-07T00:14:41.989705 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-07T00:14:41.989798 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-07T00:14:47.010120 #6] 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.13:9094 +I, [2018-08-07T00:14:47.087639 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-07T00:14:47.087945 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T00:14:47.088961 #6] 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.13:9094 +I, [2018-08-07T00:14:47.091146 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-07T00:14:47.091203 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T00:14:47.115141 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-07T00:14:47.115319 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-07T00:14:47.115477 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-07T00:14:47.116032 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-07T00:14:52.135040 #6] 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.13:9094 +I, [2018-08-07T00:14:52.180114 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-07T00:14:52.180535 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T00:14:52.202081 #6] 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.13:9094 +E, [2018-08-07T00:14:52.293149 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-07T00:14:52.297577 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +I, [2018-08-07T00:14:52.316352 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-07T00:14:52.345419 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T00:14:52.354970 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-07T00:14:52.355619 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-07T00:14:57.306670 #6] 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.13:9094 +E, [2018-08-07T00:14:57.370731 #6] 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.13:9094 +I, [2018-08-07T00:14:57.396269 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-07T00:14:57.396770 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T00:14:58.184641 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-07T00:14:58.184982 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +I, [2018-08-07T00:14:58.200574 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-07T00:14:58.200663 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T00:14:58.228003 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-07T00:14:58.228143 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-07T00:15:04.059383 #6] 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.13:9094 +E, [2018-08-07T00:15:05.013535 #6] 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.13:9094 +I, [2018-08-07T00:15:05.106898 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-07T00:15:05.107251 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T00:15:05.291177 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-07T00:15:05.291996 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T00:15:05.293294 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-07T00:15:05.295078 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-07T00:15:05.354535 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-07T00:15:05.974533 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-07T00:15:11.765663 #6] 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.13:9094 +E, [2018-08-07T00:15:13.151406 #6] 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.13:9094 +I, [2018-08-07T00:15:14.135247 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-07T00:15:16.721445 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-07T00:15:16.721586 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T00:15:16.732524 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T00:15:17.888047 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-07T00:15:18.085063 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-07T00:15:18.364508 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-07T00:15:18.399049 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-07T00:15:24.187369 #6] 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.13:9094 +E, [2018-08-07T00:15:24.456225 #6] 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.13:9094 +I, [2018-08-07T00:15:25.499644 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-07T00:15:25.499826 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T00:15:25.565507 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-07T00:15:25.612228 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +I, [2018-08-07T00:15:25.565732 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-07T00:15:25.675611 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T00:15:25.703616 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-07T00:15:25.727214 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-07T00:15:30.585559 #6] 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.13:9094 +I, [2018-08-07T00:15:30.590223 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-07T00:15:30.590511 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T00:15:30.595867 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-07T00:15:30.596258 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-07T00:15:30.682742 #6] 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.13:9094 +I, [2018-08-07T00:15:30.705953 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-07T00:15:30.706036 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T00:15:30.709455 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-07T00:15:30.709550 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-07T00:15:35.830814 #6] 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.13:9094 +I, [2018-08-07T00:15:35.877715 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-07T00:15:35.877804 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T00:15:35.893364 #6] 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.13:9094 +E, [2018-08-07T00:15:36.047339 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-07T00:15:36.056948 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +I, [2018-08-07T00:15:36.061453 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-07T00:15:36.062448 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T00:15:36.079163 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-07T00:15:36.079266 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-07T00:15:41.068594 #6] 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.13:9094 +E, [2018-08-07T00:15:41.130492 #6] 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.13:9094 +I, [2018-08-07T00:15:43.249395 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-07T00:15:43.271533 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T00:15:43.594956 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-07T00:15:43.596334 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +I, [2018-08-07T00:15:43.713735 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-07T00:15:43.713824 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T00:15:43.791329 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-07T00:15:43.829052 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-07T00:15:49.713861 #6] 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.13:9094 +E, [2018-08-07T00:15:49.798888 #6] 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.13:9094 +I, [2018-08-07T00:15:49.842669 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-07T00:15:49.853842 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T00:15:51.120620 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-07T00:15:51.128317 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +I, [2018-08-07T00:15:51.128751 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-07T00:15:51.128817 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T00:15:51.135014 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-07T00:15:51.135166 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-07T00:15:56.146466 #6] 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.13:9094 +E, [2018-08-07T00:15:56.359280 #6] 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.13:9094 +I, [2018-08-07T00:15:56.433983 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-07T00:15:56.434104 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T00:15:56.437239 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-07T00:15:56.437784 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T00:15:56.450271 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-07T00:15:56.451423 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-07T00:15:56.453881 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-07T00:15:56.454004 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-07T00:16:02.263854 #6] 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.13:9094 +I, [2018-08-07T00:16:02.279459 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-07T00:16:02.279583 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T00:16:02.376129 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-07T00:16:02.376326 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-07T00:16:02.381451 #6] 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.13:9094 +I, [2018-08-07T00:16:02.450007 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-07T00:16:02.465702 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T00:16:02.468108 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-07T00:16:02.469375 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-07T00:16:07.386150 #6] 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.13:9094 +I, [2018-08-07T00:16:07.411888 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-07T00:16:07.412227 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T00:16:07.540935 #6] 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.13:9094 +I, [2018-08-07T00:16:07.666407 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-07T00:16:07.667209 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T00:16:07.697758 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-07T00:16:07.698339 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-07T00:16:07.772109 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-07T00:16:07.772281 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-07T00:16:12.705010 #6] 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.13:9094 +E, [2018-08-07T00:16:12.773319 #6] 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.13:9094 +I, [2018-08-07T00:16:13.063374 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-07T00:16:13.064106 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T00:16:13.319731 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-07T00:16:13.320220 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +I, [2018-08-07T00:16:13.444792 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-07T00:16:13.446015 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T00:16:16.184938 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-07T00:16:16.188661 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-07T00:16:18.773668 #6] 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.13:9094 +I, [2018-08-07T00:16:18.948381 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-07T00:16:18.948513 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T00:16:18.950746 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-07T00:16:18.950983 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-07T00:16:22.021806 #6] 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.13:9094 +I, [2018-08-07T00:16:22.753875 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-07T00:16:22.754113 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T00:16:22.776447 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-07T00:16:22.776773 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-07T00:16:24.032660 #6] 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.13:9094 +I, [2018-08-07T00:16:24.077299 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-07T00:16:24.077430 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T00:16:24.103442 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-07T00:16:24.145440 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-07T00:16:27.868575 #6] 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.13:9094 +I, [2018-08-07T00:16:28.060063 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-07T00:16:28.060413 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T00:16:28.073675 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-07T00:16:28.073892 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-07T00:16:29.110528 #6] 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.13:9094 +I, [2018-08-07T00:16:29.140869 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-07T00:16:29.140962 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T00:16:29.154108 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-07T00:16:29.154296 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-07T00:16:37.003354 #6] 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.13:9094 +E, [2018-08-07T00:16:37.615517 #6] 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.13:9094 +I, [2018-08-07T00:16:38.901677 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-07T00:16:39.382998 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-07T00:16:39.384561 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T00:16:39.378720 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T00:16:39.401084 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-07T00:16:39.401434 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-07T00:16:39.401615 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-07T00:16:39.401875 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-07T00:16:44.449780 #6] 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.13:9094 +E, [2018-08-07T00:16:44.472225 #6] 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.13:9094 +I, [2018-08-07T00:16:44.485885 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-07T00:16:44.487000 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T00:16:44.501869 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-07T00:16:44.507478 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T00:16:44.510616 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-07T00:16:44.511225 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-07T00:16:44.515901 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-07T00:16:44.516041 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-07T00:16:49.518468 #6] 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.13:9094 +I, [2018-08-07T00:16:49.736006 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-07T00:16:49.736192 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T00:16:49.770319 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-07T00:16:49.771335 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-07T00:16:49.774720 #6] 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.13:9094 +I, [2018-08-07T00:16:52.318229 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-07T00:16:52.319499 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T00:16:52.396612 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-07T00:16:52.397496 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-07T00:16:55.813422 #6] 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.13:9094 +E, [2018-08-07T00:16:57.812057 #6] 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.13:9094 +I, [2018-08-07T00:16:59.289612 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-07T00:16:59.297668 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T00:16:59.425562 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-07T00:16:59.425725 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T00:16:59.437432 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-07T00:16:59.437745 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-07T00:16:59.438598 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-07T00:16:59.438807 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-07T00:17:04.440797 #6] 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.13:9094 +E, [2018-08-07T00:17:07.632553 #6] 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.13:9094 +I, [2018-08-07T00:17:07.645629 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-07T00:17:07.645831 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T00:17:07.750004 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-07T00:17:08.021067 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T00:17:08.039452 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-07T00:17:08.039747 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-07T00:17:08.118195 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-07T00:17:08.118345 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-07T00:17:13.040406 #6] 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.13:9094 +I, [2018-08-07T00:17:13.081965 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-07T00:17:13.082449 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T00:17:13.087127 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-07T00:17:13.094241 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-07T00:17:13.118759 #6] 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.13:9094 +I, [2018-08-07T00:17:13.143808 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-07T00:17:13.143896 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T00:17:13.151187 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-07T00:17:13.151352 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-07T00:17:18.095820 #6] 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.13:9094 +I, [2018-08-07T00:17:18.098807 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-07T00:17:18.098909 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T00:17:18.151906 #6] 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.13:9094 +I, [2018-08-07T00:17:18.158216 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-07T00:17:18.158312 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T00:17:22.235031 #6] ERROR -- : No brokers in cluster +E, [2018-08-07T00:17:22.234226 #6] ERROR -- : No brokers in cluster +E, [2018-08-07T00:17:27.236180 #6] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: + +E, [2018-08-07T00:17:27.241014 #6] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: + +I, [2018-08-07T00:17:27.243359 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-07T00:17:27.243635 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T00:17:27.247944 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-07T00:17:27.248078 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T00:17:27.409207 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-07T00:17:27.409646 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-07T00:17:27.428289 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-07T00:17:27.428452 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-07T00:17:27.443394 #6] INFO -- : Will fetch at most 1048576 bytes at a time per partition from section_change +I, [2018-08-07T00:17:27.445220 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T00:17:27.457238 #6] INFO -- : Will fetch at most 1048576 bytes at a time per partition from course_change +I, [2018-08-07T00:17:27.484257 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T00:17:27.492125 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-07T00:17:27.492324 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:17:27.492463 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-07T00:17:27.492717 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:17:28.492798 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:17:28.493090 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:17:29.385420 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:17:29.385589 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:17:30.814979 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:17:30.825968 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:17:33.040067 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:17:33.139871 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:17:34.047478 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:17:34.191376 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:17:35.109336 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:17:35.474166 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:17:36.142791 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:17:36.475431 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:17:37.154610 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:17:37.566595 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:17:38.348081 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:17:38.569024 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:17:40.935520 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:17:41.243655 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:17:42.063765 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:17:42.257609 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:17:43.132008 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:17:43.299632 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:17:44.133517 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:17:44.315093 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:17:45.135561 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:17:45.323447 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:17:46.141389 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:17:46.336365 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:17:47.151864 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:17:47.346962 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:17:48.154512 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:17:48.690267 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:17:49.215532 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:17:49.866085 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:17:50.216555 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:17:50.905796 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:17:51.267020 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:17:51.906375 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:17:52.268324 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:17:52.906762 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:17:53.278262 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:17:53.970655 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:17:54.279794 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:17:54.555161 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-7893a611-ce95-4b53-9121-01d2721996dd` +I, [2018-08-07T00:17:54.555333 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-07T00:17:54.626622 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-6813f7a6-1bb5-4671-8f06-ebfc77ab05df` +I, [2018-08-07T00:17:54.626847 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-07T00:17:54.974407 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:17:55.280270 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:17:55.558132 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T00:17:55.579546 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-07T00:17:55.627529 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T00:17:55.633917 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-07T00:17:55.974868 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:17:56.032219 #6] INFO -- : Partitions assigned for `course_change`: 0 +I, [2018-08-07T00:17:56.042430 #6] INFO -- : Partitions assigned for `section_change`: 0 +I, [2018-08-07T00:17:56.280995 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-07T00:17:56.281544 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-07T00:17:56.281601 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T00:17:56.290947 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-07T00:17:56.975481 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-07T00:17:56.975795 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-07T00:17:56.975883 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T00:17:56.995339 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +E, [2018-08-07T00:18:04.518720 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- NoMethodError: undefined method `write' for # +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-07T00:18:04.570616 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-07T00:18:04.527393 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- NoMethodError: undefined method `write' for # +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-07T00:18:04.571252 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-07T00:18:04.758543 #6] ERROR -- : Client fetch loop error: undefined method `write' for # +I, [2018-08-07T00:18:04.760279 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-07T00:18:04.765045 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-08-07T00:18:04.766129 #6] ERROR -- : Client fetch loop error: undefined method `write' for # +I, [2018-08-07T00:18:04.766463 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-07T00:18:04.775228 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-07T00:18:04.780062 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-07T00:18:05.398449 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:18:05.765272 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-07T00:18:05.775601 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:18:05.780885 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-07T00:18:05.781284 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-74ffd7c3-2d32-4d79-8925-2dcb681f269b` +I, [2018-08-07T00:18:05.781319 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-07T00:18:05.817336 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-07T00:18:05.817472 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-07T00:18:05.852394 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-6b3c9b86-3e20-49b2-afc5-8d54a19b4902` +I, [2018-08-07T00:18:05.852464 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-07T00:18:05.878942 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-07T00:18:05.879044 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-07T00:18:06.401136 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:18:06.799933 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:18:07.403079 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:18:07.881040 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:18:08.403785 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:18:08.893723 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:18:09.405780 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:18:09.899311 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:18:10.427917 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:18:10.945176 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:18:11.431756 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:18:11.956091 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:18:12.432195 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:18:12.958027 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:18:13.433249 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:18:13.958770 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:18:14.436245 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:18:14.970781 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:18:15.437315 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:18:15.976890 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-07T00:18:16.389409 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:18:16.391389 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-07T00:18:16.440300 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:18:17.404994 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-07T00:18:17.441207 #6] INFO -- : Seeking course_change/0 to offset 0 +E, [2018-08-07T00:18:18.783489 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- NoMethodError: undefined method `write' for # +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-07T00:18:18.811495 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-07T00:18:18.868595 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- NoMethodError: undefined method `write' for # +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-07T00:18:18.868698 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-07T00:18:18.975080 #6] ERROR -- : Client fetch loop error: undefined method `write' for # +I, [2018-08-07T00:18:18.975933 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-07T00:18:18.988869 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-08-07T00:18:18.995448 #6] ERROR -- : Client fetch loop error: undefined method `write' for # +I, [2018-08-07T00:18:18.995962 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-07T00:18:19.007378 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-07T00:18:19.088279 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:18:19.090453 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:18:19.989242 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-07T00:18:20.008637 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-07T00:18:20.039070 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-7675e61c-d0b9-4387-84af-71ec3f98eaee` +I, [2018-08-07T00:18:20.039196 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-07T00:18:20.043322 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-07T00:18:20.043966 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-07T00:18:20.057526 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-e77c15fb-c5dc-4391-be4e-a64537c1eb4f` +I, [2018-08-07T00:18:20.057744 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-07T00:18:20.084501 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-07T00:18:20.084601 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-07T00:18:20.089261 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:18:20.090846 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:18:21.091405 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:18:21.091732 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:18:22.165842 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:18:22.171621 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:18:23.170949 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:18:23.173911 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:18:24.172063 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:18:24.175741 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:18:25.172706 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:18:25.176607 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:18:26.173361 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:18:26.177091 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:18:27.175212 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:18:27.178467 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:18:28.176165 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:18:28.180395 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:18:29.136152 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:18:29.140393 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:18:30.136902 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:18:30.140840 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:18:30.166238 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-07T00:18:30.192601 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-07T00:18:31.148020 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-07T00:18:31.149964 #6] INFO -- : Seeking course_change/0 to offset 0 +E, [2018-08-07T00:18:32.286586 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- NoMethodError: undefined method `write' for # +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-07T00:18:32.323577 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-07T00:18:32.424614 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- NoMethodError: undefined method `write' for # +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-07T00:18:32.424725 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-07T00:18:32.718970 #6] ERROR -- : Client fetch loop error: undefined method `write' for # +I, [2018-08-07T00:18:32.724864 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-07T00:18:32.750023 #6] ERROR -- : Client fetch loop error: undefined method `write' for # +I, [2018-08-07T00:18:32.750508 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-07T00:18:32.755553 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-07T00:18:32.755810 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-08-07T00:18:32.759797 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-07T00:18:32.890688 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:18:33.756203 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:18:33.756298 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-07T00:18:33.760169 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-07T00:18:33.777601 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-89a6ce08-1bd8-459f-96a0-38ba08f03b7d` +I, [2018-08-07T00:18:33.777666 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-07T00:18:33.784785 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-07T00:18:33.784922 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-07T00:18:33.839668 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-fa05197c-9b57-48f4-81b7-dda275ee7266` +I, [2018-08-07T00:18:33.839738 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-07T00:18:33.854975 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-07T00:18:33.855090 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-07T00:18:33.891709 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:18:34.756575 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:18:34.892617 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:18:36.500616 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:18:40.246078 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:18:40.248980 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:18:41.294840 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:18:41.324227 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:18:42.989841 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:18:43.097080 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:18:43.132402 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-07T00:18:43.164759 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-07T00:18:44.039868 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-07T00:18:44.925313 #6] INFO -- : Seeking section_change/0 to offset 0 +E, [2018-08-07T00:18:47.284171 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- NoMethodError: undefined method `write' for # +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-07T00:18:47.672233 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-07T00:18:50.541640 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- NoMethodError: undefined method `write' for # +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-07T00:18:50.554780 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-07T00:18:51.345647 #6] ERROR -- : Client fetch loop error: undefined method `write' for # +I, [2018-08-07T00:18:51.346947 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-07T00:18:51.371046 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-07T00:18:51.371912 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-07T00:18:51.372479 #6] ERROR -- : Client fetch loop error: undefined method `write' for # +I, [2018-08-07T00:18:51.373130 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-07T00:18:51.402221 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-07T00:18:51.446252 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:18:52.372935 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-07T00:18:52.373756 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:18:52.402656 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-07T00:18:52.447053 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:18:53.383214 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:18:53.403199 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-bc9b62e5-2147-4033-b783-854b3c9b566a` +I, [2018-08-07T00:18:53.403340 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-07T00:18:53.417081 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-3c568b7c-2a89-4f8b-8494-a3a913f76402` +I, [2018-08-07T00:18:53.417146 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-07T00:18:53.443679 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-07T00:18:53.443850 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-07T00:18:53.491036 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:18:53.570755 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-07T00:18:53.570853 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-07T00:18:54.384976 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:18:54.494468 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:18:55.386591 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:18:56.109535 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:18:56.397027 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:18:57.327068 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:18:58.331565 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:18:59.132074 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:18:59.349982 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:19:00.100416 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:19:00.350959 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:19:01.102272 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:19:01.451568 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:19:02.103663 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:19:02.388296 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-07T00:19:02.465541 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-07T00:19:03.096489 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-07T00:19:03.104234 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:19:04.114951 #6] INFO -- : Seeking course_change/0 to offset 0 +E, [2018-08-07T00:19:05.033231 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- NoMethodError: undefined method `write' for # +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-07T00:19:05.076970 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-07T00:19:05.165905 #6] ERROR -- : Client fetch loop error: undefined method `write' for # +I, [2018-08-07T00:19:05.166375 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-07T00:19:05.173513 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-08-07T00:19:05.200887 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- NoMethodError: undefined method `write' for # +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-07T00:19:05.201060 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-07T00:19:05.268163 #6] ERROR -- : Client fetch loop error: undefined method `write' for # +I, [2018-08-07T00:19:05.268541 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-07T00:19:05.292248 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-07T00:19:05.308789 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:19:05.671942 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:19:06.173858 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-07T00:19:06.199922 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-9867c73b-c59b-47fb-9349-63d5bc6c2040` +I, [2018-08-07T00:19:06.200042 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-07T00:19:06.209203 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-07T00:19:06.209295 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-07T00:19:06.292580 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-07T00:19:06.309229 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:19:06.315151 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-761c39a5-a30e-4144-8daa-25b9c338cbe4` +I, [2018-08-07T00:19:06.315208 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-07T00:19:06.333382 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-07T00:19:06.336438 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-07T00:19:06.769747 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:19:07.311472 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:19:07.770561 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:19:08.313969 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:19:08.771072 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:19:09.316375 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:19:09.771541 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:19:10.316943 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:19:10.772671 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:19:11.317440 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:19:11.774037 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:19:12.317917 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:19:12.775263 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:19:13.318271 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:19:13.776033 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:19:14.318892 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:19:14.776515 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:19:15.319777 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:19:15.777112 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:19:16.239129 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-07T00:19:16.324047 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:19:16.363713 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-07T00:19:16.780582 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-07T00:19:17.324549 #6] INFO -- : Seeking course_change/0 to offset 0 +E, [2018-08-07T00:19:18.256210 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- NoMethodError: undefined method `write' for # +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-07T00:19:18.290485 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-07T00:19:18.319186 #6] ERROR -- : Client fetch loop error: undefined method `write' for # +I, [2018-08-07T00:19:18.319419 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-07T00:19:18.329974 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-08-07T00:19:18.371406 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- NoMethodError: undefined method `write' for # +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-07T00:19:18.371496 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-07T00:19:18.406292 #6] ERROR -- : Client fetch loop error: undefined method `write' for # +I, [2018-08-07T00:19:18.407516 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-07T00:19:18.409987 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-07T00:19:18.633646 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:19:18.828038 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:19:19.330268 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-07T00:19:19.336332 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-c438fc65-c25a-4ced-a017-ebb55dc9405f` +I, [2018-08-07T00:19:19.336388 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-07T00:19:19.340493 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-07T00:19:19.340580 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-07T00:19:19.410241 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-07T00:19:19.417626 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-489ceca6-cf04-42d6-8d6a-a6389a3996ee` +I, [2018-08-07T00:19:19.417685 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-07T00:19:19.422422 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-07T00:19:19.422484 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-07T00:19:19.634476 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:19:19.828418 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:19:20.635760 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:19:20.830497 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:19:21.636199 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:19:21.830997 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:19:22.644564 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:19:22.831459 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:19:23.646660 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:19:23.831784 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:19:24.647154 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:19:24.832163 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:19:25.647587 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:19:25.832471 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:19:26.648115 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:19:26.886837 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:19:27.648777 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:19:27.900654 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:19:28.660211 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:19:28.901576 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:19:29.322455 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-07T00:19:29.457374 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-07T00:19:29.634786 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-07T00:19:29.874010 #6] INFO -- : Seeking course_change/0 to offset 0 +E, [2018-08-07T00:19:31.329088 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- NoMethodError: undefined method `write' for # +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-07T00:25:32.155097 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-07T00:25:32.155220 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T00:25:32.161925 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T00:25:32.162667 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +I, [2018-08-07T00:25:32.163578 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-07T00:25:32.163618 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T00:25:32.168592 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T00:25:32.168711 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T00:25:38.980872 #6] 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.14:9094 +I, [2018-08-07T00:25:39.000765 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-07T00:25:39.000970 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T00:25:39.002014 #6] 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.14:9094 +I, [2018-08-07T00:25:39.238518 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-07T00:25:39.238780 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T00:25:39.241076 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T00:25:39.241206 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T00:25:39.253366 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T00:25:39.254193 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T00:25:44.242024 #6] 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.14:9094 +I, [2018-08-07T00:25:44.243384 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-07T00:25:44.243462 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T00:25:44.247053 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T00:25:44.247199 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T00:25:44.254801 #6] 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.14:9094 +I, [2018-08-07T00:25:44.255967 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-07T00:25:44.256018 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T00:25:44.259610 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T00:25:44.260310 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T00:25:49.256918 #6] 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.14:9094 +E, [2018-08-07T00:25:49.272550 #6] 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.14:9094 +I, [2018-08-07T00:25:49.274318 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-07T00:25:49.278294 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T00:25:49.305882 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-07T00:25:49.306245 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T00:25:49.385244 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T00:25:49.385438 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T00:25:49.395469 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T00:25:49.395610 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T00:25:54.391519 #6] 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.14:9094 +E, [2018-08-07T00:25:54.402664 #6] 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.14:9094 +I, [2018-08-07T00:25:54.408233 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-07T00:25:54.408563 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T00:25:54.411631 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-07T00:25:54.411740 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T00:25:54.427199 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T00:25:54.427428 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T00:25:54.444315 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T00:25:54.445575 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T00:25:59.457450 #6] 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.14:9094 +I, [2018-08-07T00:25:59.487706 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-07T00:25:59.487901 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T00:25:59.489220 #6] 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.14:9094 +I, [2018-08-07T00:25:59.496102 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-07T00:25:59.496211 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T00:25:59.602619 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T00:25:59.602936 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T00:25:59.603524 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T00:25:59.603607 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T00:26:04.576321 #6] 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.14:9094 +I, [2018-08-07T00:26:04.601401 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-07T00:26:04.601703 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T00:26:04.601865 #6] 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.14:9094 +I, [2018-08-07T00:26:04.629141 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-07T00:26:04.636398 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T00:26:04.629775 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T00:26:04.649905 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T00:26:04.650579 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T00:26:04.650725 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T00:26:09.655021 #6] 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.14:9094 +E, [2018-08-07T00:26:09.709669 #6] 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.14:9094 +I, [2018-08-07T00:26:09.712051 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-07T00:26:09.712125 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T00:26:09.751513 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-07T00:26:09.751604 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T00:26:09.753513 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T00:26:09.969579 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T00:26:09.970395 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T00:26:09.973141 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T00:26:14.973942 #6] 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.14:9094 +E, [2018-08-07T00:26:14.995558 #6] 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.14:9094 +I, [2018-08-07T00:26:15.115515 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-07T00:26:15.115626 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T00:26:15.863521 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T00:26:15.864028 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +I, [2018-08-07T00:26:15.867317 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-07T00:26:15.867794 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T00:26:15.899290 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T00:26:15.906011 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T00:26:20.875651 #6] 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.14:9094 +E, [2018-08-07T00:26:21.082049 #6] 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.14:9094 +I, [2018-08-07T00:26:21.085305 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-07T00:26:21.085390 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T00:26:21.093849 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-07T00:26:21.094136 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T00:26:21.103566 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T00:26:21.107149 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T00:26:21.109027 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T00:26:21.109157 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T00:26:26.110321 #6] 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.14:9094 +I, [2018-08-07T00:26:27.199556 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-07T00:26:27.199772 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T00:26:26.975194 #6] 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.14:9094 +I, [2018-08-07T00:26:27.204937 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-07T00:26:27.204996 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T00:26:27.338172 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T00:26:27.338365 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T00:26:27.387029 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T00:26:27.387219 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T00:26:32.304610 #6] 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.14:9094 +I, [2018-08-07T00:26:32.308623 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-07T00:26:32.308689 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T00:26:32.316779 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T00:26:32.320260 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T00:26:32.352249 #6] 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.14:9094 +I, [2018-08-07T00:26:32.354148 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-07T00:26:32.354203 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T00:26:32.360242 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T00:26:32.360396 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T00:26:37.320627 #6] 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.14:9094 +I, [2018-08-07T00:26:37.322927 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-07T00:26:37.323005 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T00:26:37.378386 #6] 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.14:9094 +I, [2018-08-07T00:26:37.633654 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-07T00:26:37.633906 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T00:26:41.778032 #6] ERROR -- : No brokers in cluster +E, [2018-08-07T00:26:41.897640 #6] ERROR -- : No brokers in cluster +E, [2018-08-07T00:26:46.779530 #6] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: + +I, [2018-08-07T00:26:46.793606 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-07T00:26:46.793723 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T00:26:46.908445 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-07T00:26:46.911021 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-07T00:26:46.920297 #6] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: + +I, [2018-08-07T00:26:46.975870 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-07T00:26:46.975982 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T00:26:46.977557 #6] INFO -- : Will fetch at most 1048576 bytes at a time per partition from course_change +I, [2018-08-07T00:26:46.977889 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T00:26:47.008377 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-07T00:26:47.013896 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:26:47.193541 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-07T00:26:47.193727 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-07T00:26:47.285812 #6] INFO -- : Will fetch at most 1048576 bytes at a time per partition from section_change +I, [2018-08-07T00:26:47.286006 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T00:26:47.382017 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-07T00:26:47.382161 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:26:48.015240 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:26:48.383708 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:26:49.015855 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:26:49.384723 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:26:50.016576 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:26:50.398888 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:26:51.017101 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:26:51.404935 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:26:52.018801 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:26:52.633133 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:26:53.048183 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:26:53.523173 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-e050f0a6-49da-431b-9003-3b12ef5f30e8` +I, [2018-08-07T00:26:53.526038 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-07T00:26:53.639790 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:26:53.640574 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-9f64121f-9f28-431b-bcb7-756909438f7f` +I, [2018-08-07T00:26:53.640625 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-07T00:26:54.048995 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:26:54.535835 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T00:26:54.546227 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-07T00:26:54.640388 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:26:54.650999 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T00:26:54.666438 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-07T00:26:54.711744 #6] INFO -- : Partitions assigned for `section_change`: 0 +I, [2018-08-07T00:26:54.727015 #6] INFO -- : Partitions assigned for `course_change`: 0 +I, [2018-08-07T00:26:55.085486 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-07T00:26:55.085734 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-07T00:26:55.085838 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T00:26:55.237374 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-07T00:26:55.642069 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-07T00:26:55.642304 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-07T00:26:55.642357 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T00:26:55.656964 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +E, [2018-08-07T00:26:59.188890 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- NoMethodError: undefined method `publish' for # +Did you mean? public_send +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-07T00:26:59.204024 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-07T00:26:59.335031 #6] ERROR -- : Client fetch loop error: undefined method `publish' for # +Did you mean? public_send +I, [2018-08-07T00:26:59.335415 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-07T00:26:59.355778 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-07T00:26:59.573465 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:27:00.337832 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-07T00:27:00.472767 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-2512cc4f-50f2-47af-bf18-9a032d360e2b` +I, [2018-08-07T00:27:00.472830 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-07T00:27:00.508871 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-07T00:27:00.508985 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-07T00:27:00.555503 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-07T00:27:01.266956 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- NoMethodError: undefined method `publish' for # +Did you mean? public_send +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-07T00:27:01.267167 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-07T00:27:01.309361 #6] ERROR -- : Client fetch loop error: undefined method `publish' for # +Did you mean? public_send +I, [2018-08-07T00:27:01.310868 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-07T00:27:01.321563 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-07T00:27:01.392569 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:27:01.557780 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:27:02.322770 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-07T00:27:02.340714 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-fb92b90c-4b15-4059-a30b-b0830472eabe` +I, [2018-08-07T00:27:02.340782 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-07T00:27:02.384654 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-07T00:27:02.384735 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-07T00:27:02.394872 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:27:02.561632 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:27:03.396247 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:27:03.661302 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:27:04.426999 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:27:04.665346 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:27:05.428020 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:27:05.665675 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:27:06.428816 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:27:06.666044 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:27:07.429318 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:27:07.667218 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:27:08.429800 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:27:08.667973 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:27:09.430810 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:27:09.668703 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:27:10.433044 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:27:10.669256 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:27:10.740332 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-07T00:27:11.433635 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:27:11.669775 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-07T00:27:12.434075 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:27:12.743770 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +E, [2018-08-07T00:27:12.756499 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- NoMethodError: undefined method `publish' for # +Did you mean? public_send +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-07T00:27:12.775271 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-07T00:27:12.784965 #6] ERROR -- : Client fetch loop error: undefined method `publish' for # +Did you mean? public_send +I, [2018-08-07T00:27:12.786313 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-07T00:27:12.803852 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-07T00:27:13.034790 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:27:13.434638 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-07T00:27:13.804585 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-07T00:27:13.837897 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-a20f4bf1-9c36-46ef-b95b-1b900b205338` +I, [2018-08-07T00:27:13.838045 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-07T00:27:13.858583 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-07T00:27:13.858687 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-07T00:27:14.035210 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-07T00:27:14.787500 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- NoMethodError: undefined method `publish' for # +Did you mean? public_send +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-07T00:27:14.787598 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-07T00:27:14.820722 #6] ERROR -- : Client fetch loop error: undefined method `publish' for # +Did you mean? public_send +I, [2018-08-07T00:27:14.821034 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-07T00:27:14.837720 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-07T00:27:14.841840 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-07T00:27:15.035545 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:27:16.007528 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-07T00:27:16.586266 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:27:16.643977 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:27:17.411629 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-b4ed617b-7173-48dc-b72a-4919b8076843` +I, [2018-08-07T00:27:17.411712 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-07T00:27:17.684847 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:27:17.686470 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:27:19.438645 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:27:19.518791 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:27:20.648128 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:27:20.648654 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:27:21.667887 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:27:21.670664 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:27:21.978478 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-07T00:27:21.980323 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-07T00:27:22.689659 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:27:22.692167 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:27:23.521499 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-07T00:27:23.691430 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:27:23.709755 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:27:24.693791 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:27:24.710439 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:27:25.715358 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:27:25.725915 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-07T00:27:26.752996 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-07T00:27:27.057508 #6] INFO -- : Seeking section_change/0 to offset 0 +E, [2018-08-07T00:27:27.364914 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- NoMethodError: undefined method `publish' for # +Did you mean? public_send +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-07T00:27:27.634954 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-07T00:27:27.849691 #6] ERROR -- : Client fetch loop error: undefined method `publish' for # +Did you mean? public_send +I, [2018-08-07T00:27:27.851856 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-07T00:27:27.904336 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-07T00:27:27.922936 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:27:30.239299 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-07T00:27:30.355410 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- NoMethodError: undefined method `publish' for # +Did you mean? public_send +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-07T00:27:30.355697 #6] INFO -- : Leaving group `notifications_notifications` +I, [2018-08-07T00:27:30.357178 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:27:30.650684 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-36717040-f1e2-46b1-a98c-8e01844b138f` +I, [2018-08-07T00:27:30.650775 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-07T00:27:30.774570 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-07T00:27:30.775351 #6] WARN -- : Not fetching from course_change/0 due to pause +E, [2018-08-07T00:27:30.776393 #6] ERROR -- : Client fetch loop error: undefined method `publish' for # +Did you mean? public_send +I, [2018-08-07T00:27:30.802533 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-07T00:27:30.825110 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-07T00:27:30.857361 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-07T00:27:31.358560 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:27:31.827397 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:27:31.857679 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-07T00:27:31.887323 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-7b6b9de9-7edd-4067-8b64-057b4f5d512c` +I, [2018-08-07T00:27:31.887404 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-07T00:27:31.907362 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-07T00:27:31.907479 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-07T00:27:32.360995 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:27:32.828770 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:27:33.456652 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:27:33.829252 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:27:34.784868 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:27:34.842132 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:27:35.799021 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:27:35.870583 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:27:37.843589 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:27:38.315227 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:27:38.322972 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-07T00:27:38.871395 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-07T00:27:39.316488 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:27:40.324314 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-07T00:27:40.735222 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- NoMethodError: undefined method `publish' for # +Did you mean? public_send +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-07T00:32:55.131079 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-07T00:32:55.131171 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T00:32:55.134570 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-07T00:32:55.134663 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T00:32:55.135354 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T00:32:55.135697 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T00:32:55.139905 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T00:32:55.140335 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T00:33:00.100236 #6] 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.14:9094 +E, [2018-08-07T00:33:00.104458 #6] 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.14:9094 +I, [2018-08-07T00:33:00.106365 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-07T00:33:00.106441 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T00:33:00.107020 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-07T00:33:00.107070 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T00:33:00.112324 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T00:33:00.112489 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T00:33:00.112815 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T00:33:00.112915 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T00:33:05.112959 #6] 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.14:9094 +I, [2018-08-07T00:33:05.114181 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-07T00:33:05.114266 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T00:33:05.115496 #6] 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.14:9094 +I, [2018-08-07T00:33:05.116436 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-07T00:33:05.116486 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T00:33:05.118247 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T00:33:05.118678 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T00:33:05.119036 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T00:33:05.119161 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T00:33:10.119617 #6] 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.14:9094 +I, [2018-08-07T00:33:10.120934 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-07T00:33:10.120977 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T00:33:10.122638 #6] 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.14:9094 +I, [2018-08-07T00:33:10.124745 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-07T00:33:10.124882 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T00:33:10.126341 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T00:33:10.126526 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T00:33:10.126854 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T00:33:10.126965 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T00:33:15.737419 #6] 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.14:9094 +E, [2018-08-07T00:33:15.874313 #6] 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.14:9094 +I, [2018-08-07T00:33:16.530629 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-07T00:33:16.530982 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T00:33:16.895751 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-07T00:33:16.895884 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T00:33:16.896392 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T00:33:16.899194 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T00:33:16.900252 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T00:33:16.900361 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T00:33:21.991942 #6] 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.14:9094 +E, [2018-08-07T00:33:22.013722 #6] 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.14:9094 +I, [2018-08-07T00:33:22.436589 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-07T00:33:22.437091 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T00:33:22.970783 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-07T00:33:22.971084 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T00:33:23.007072 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T00:33:23.035349 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T00:33:23.036916 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T00:33:23.038111 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T00:33:28.042699 #6] 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.14:9094 +E, [2018-08-07T00:33:28.062537 #6] 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.14:9094 +I, [2018-08-07T00:33:28.233697 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-07T00:33:28.233776 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T00:33:28.229200 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-07T00:33:28.276105 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T00:33:31.123820 #6] ERROR -- : No brokers in cluster +E, [2018-08-07T00:33:31.129171 #6] ERROR -- : No brokers in cluster +E, [2018-08-07T00:33:36.157913 #6] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: + +E, [2018-08-07T00:33:36.292960 #6] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: + +I, [2018-08-07T00:33:36.305228 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-07T00:33:36.305914 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T00:33:36.335986 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-07T00:33:36.336072 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T00:33:36.983682 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-07T00:33:36.984557 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-07T00:33:36.998207 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-07T00:33:36.998381 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-07T00:33:37.047411 #6] INFO -- : Will fetch at most 1048576 bytes at a time per partition from section_change +I, [2018-08-07T00:33:37.048221 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T00:33:37.049336 #6] INFO -- : Will fetch at most 1048576 bytes at a time per partition from course_change +I, [2018-08-07T00:33:37.054189 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T00:33:37.065952 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-07T00:33:37.066813 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:33:37.089239 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-07T00:33:37.089368 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:33:38.073745 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:33:38.090250 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:33:39.074229 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:33:39.091234 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:33:40.075147 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:33:40.092031 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:33:41.077120 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:33:41.092452 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:33:42.078780 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:33:42.095715 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:33:42.810558 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-aa8d0d49-2e29-4400-bf5a-3e03b8821d09` +I, [2018-08-07T00:33:42.810662 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-07T00:33:42.856963 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-95a45233-aace-4153-963d-0004fd1ddf70` +I, [2018-08-07T00:33:42.857035 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-07T00:33:43.079351 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:33:43.098891 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:33:43.841144 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T00:33:43.854885 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-07T00:33:43.858258 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T00:33:43.981015 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-07T00:33:44.086134 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:33:44.102141 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:33:44.255744 #6] INFO -- : Partitions assigned for `section_change`: 0 +I, [2018-08-07T00:33:44.282599 #6] INFO -- : Partitions assigned for `course_change`: 0 +I, [2018-08-07T00:33:45.087537 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-07T00:33:45.087697 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-07T00:33:45.087732 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T00:33:45.094718 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-07T00:33:45.106755 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-07T00:33:45.106851 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-07T00:33:45.106883 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T00:33:45.119791 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +E, [2018-08-07T00:33:48.565030 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- NoMethodError: undefined method `publish' for # +Did you mean? public_send +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-07T00:33:48.581143 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-07T00:33:48.566709 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- NoMethodError: undefined method `publish' for # +Did you mean? public_send +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-07T00:33:48.581607 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-07T00:33:48.643711 #6] ERROR -- : Client fetch loop error: undefined method `publish' for # +Did you mean? public_send +I, [2018-08-07T00:33:48.644139 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-07T00:33:48.654104 #6] ERROR -- : Client fetch loop error: undefined method `publish' for # +Did you mean? public_send +I, [2018-08-07T00:33:48.654528 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-07T00:33:48.701108 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-08-07T00:33:48.701218 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-07T00:33:48.703722 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:33:48.872584 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:33:49.704029 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-07T00:33:49.718380 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:33:49.718583 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-07T00:33:49.764651 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-f2b4396e-cdc6-4596-b4bf-5ef49c2884ce` +I, [2018-08-07T00:33:49.764721 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-07T00:33:49.777811 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-8f630d9f-2e65-4e67-bc48-02c0f1361406` +I, [2018-08-07T00:33:49.778094 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-07T00:33:49.787194 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-07T00:33:49.787298 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-07T00:33:49.788990 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-07T00:33:49.789063 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-07T00:33:49.873396 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:33:50.719621 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:33:50.873958 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:33:51.720865 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:33:51.874957 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:33:52.722641 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:33:52.875944 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:33:53.723741 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:33:53.879057 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:33:54.744502 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:33:54.888187 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:33:55.751197 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:33:55.905940 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:33:57.456764 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:33:57.457348 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:33:58.457958 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:33:58.457790 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:33:59.458264 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:33:59.458648 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:34:00.324560 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-07T00:34:00.526800 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-07T00:34:00.532472 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:34:00.532756 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:34:01.539340 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-07T00:34:01.540180 #6] INFO -- : Seeking course_change/0 to offset 0 +E, [2018-08-07T00:34:02.568869 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- NoMethodError: undefined method `publish' for # +Did you mean? public_send +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-07T00:34:02.568955 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-07T00:34:02.579649 #6] ERROR -- : Client fetch loop error: undefined method `publish' for # +Did you mean? public_send +I, [2018-08-07T00:34:02.580308 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-07T00:34:02.581797 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-08-07T00:34:02.594900 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- NoMethodError: undefined method `publish' for # +Did you mean? public_send +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-07T00:34:02.594995 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-07T00:34:02.601356 #6] ERROR -- : Client fetch loop error: undefined method `publish' for # +Did you mean? public_send +I, [2018-08-07T00:34:02.601740 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-07T00:34:02.602931 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-07T00:34:02.610033 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-07T00:34:02.665488 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:34:03.582162 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-07T00:34:03.600500 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-0a8f6da5-47ff-4ed0-af2c-0f6ebe278d38` +I, [2018-08-07T00:34:03.601897 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-07T00:34:03.604442 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:34:03.611232 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-07T00:34:03.629265 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-65aa157e-5a4d-45a4-b582-c6894bb3760e` +I, [2018-08-07T00:34:03.629341 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-07T00:34:03.649965 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-07T00:34:03.650197 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-07T00:34:03.654906 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-07T00:34:03.654986 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-07T00:34:03.665852 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:34:04.604865 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:34:04.666337 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:34:05.606482 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:34:05.666763 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:34:06.607131 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:34:06.667471 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:34:07.607913 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:34:07.667822 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:34:08.610569 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:34:08.668363 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:34:09.611264 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:34:09.679731 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:34:10.621048 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:34:10.681514 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:34:11.622115 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:34:11.682446 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:34:12.623302 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:34:12.684468 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:34:13.624837 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:34:13.668166 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-07T00:34:13.699306 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-07T00:34:13.730292 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-07T00:34:14.625262 #6] INFO -- : Seeking section_change/0 to offset 0 +E, [2018-08-07T00:34:15.784524 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- NoMethodError: undefined method `publish' for # +Did you mean? public_send +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-07T00:34:15.784704 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-07T00:34:15.931180 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- NoMethodError: undefined method `publish' for # +Did you mean? public_send +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-07T00:34:15.943090 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-07T00:34:15.951739 #6] ERROR -- : Client fetch loop error: undefined method `publish' for # +Did you mean? public_send +I, [2018-08-07T00:34:15.951949 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-07T00:34:15.986898 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-08-07T00:34:15.989597 #6] ERROR -- : Client fetch loop error: undefined method `publish' for # +Did you mean? public_send +I, [2018-08-07T00:34:15.989781 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-07T00:34:16.037289 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-07T00:34:16.299436 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:34:16.396568 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:34:16.998910 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-07T00:34:17.037569 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-48256431-0712-4962-b2a8-022ab3db8e74` +I, [2018-08-07T00:34:17.037787 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-07T00:34:17.038552 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-07T00:34:17.048950 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-09c16feb-2a8b-4ee5-8b83-50cdc10a36d2` +I, [2018-08-07T00:34:17.049298 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-07T00:34:17.156799 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-07T00:34:17.156933 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-07T00:34:17.161371 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-07T00:34:17.161466 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-07T00:34:17.328560 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:34:17.406366 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:34:18.328910 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:34:18.407276 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:34:19.329715 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:34:19.407751 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:34:20.330844 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:34:20.408611 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:34:21.332855 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:34:21.415135 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:34:22.335234 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:34:22.416933 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:34:23.336902 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:34:23.417395 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:34:24.337452 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:34:24.418118 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:34:25.369540 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:34:25.419006 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:34:26.420015 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:34:26.426200 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:34:27.337930 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-07T00:34:27.339604 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-07T00:34:27.424819 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-07T00:34:27.458557 #6] INFO -- : Seeking section_change/0 to offset 0 +E, [2018-08-07T00:34:29.706854 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- NoMethodError: undefined method `publish' for # +Did you mean? public_send +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-07T00:34:29.709762 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-07T00:34:29.937951 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- NoMethodError: undefined method `publish' for # +Did you mean? public_send +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-07T00:34:29.944330 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-07T00:34:30.640740 #6] ERROR -- : Client fetch loop error: undefined method `publish' for # +Did you mean? public_send +I, [2018-08-07T00:34:30.641941 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-07T00:34:30.958072 #6] ERROR -- : Client fetch loop error: undefined method `publish' for # +Did you mean? public_send +I, [2018-08-07T00:34:30.960236 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-07T00:34:31.059318 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:34:31.061638 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-07T00:34:31.214382 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-08-07T00:34:31.214568 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-07T00:34:32.061671 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:34:32.066565 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:34:32.224123 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-07T00:34:32.241406 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-07T00:34:32.432311 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-a1df1f70-a6d4-4467-b85a-b41982e7c427` +I, [2018-08-07T00:34:32.432412 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-07T00:34:32.465338 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-b1dd2978-4424-4de8-b0de-a9c0d6d7464d` +I, [2018-08-07T00:34:32.465408 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-07T00:34:32.468325 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-07T00:34:32.468630 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-07T00:34:32.472657 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-07T00:34:32.472874 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-07T00:34:33.083274 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:34:33.084814 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:34:34.083687 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:34:34.086832 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:34:35.085115 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:34:35.088169 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:34:36.085687 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:34:36.089163 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:34:37.089271 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:34:37.092324 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:34:38.090857 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:34:38.093137 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:34:39.091950 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:34:39.094281 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:34:40.096039 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:34:40.096402 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:34:40.648726 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-07T00:34:41.097457 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-07T00:34:41.100296 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:34:42.103463 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-07T00:34:42.851641 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- NoMethodError: undefined method `publish' for # +Did you mean? public_send +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-07T00:34:42.852046 #6] INFO -- : Leaving group `notifications_course_change` +I, [2018-08-07T00:34:42.929817 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-07T00:34:43.117091 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:34:44.170086 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-07T00:34:44.564330 #6] ERROR -- : Client fetch loop error: undefined method `publish' for # +Did you mean? public_send +I, [2018-08-07T00:34:44.598624 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-07T00:34:44.662897 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-07T00:34:44.911698 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-07T00:34:45.320349 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-07T00:34:45.766597 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:34:45.919010 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-07T00:34:46.004420 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-ebab54df-5f33-4e22-a87c-df63b993041e` +I, [2018-08-07T00:34:46.019820 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-07T00:34:46.046680 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-07T00:34:46.046799 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-07T00:34:46.796019 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-07T00:34:46.898158 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- NoMethodError: undefined method `publish' for # +Did you mean? public_send +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-07T00:34:46.898281 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-07T00:34:47.386739 #6] ERROR -- : Client fetch loop error: undefined method `publish' for # +Did you mean? public_send +I, [2018-08-07T00:34:47.561582 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-07T00:34:47.823537 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:34:47.873223 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-07T00:34:47.904188 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-07T00:34:49.538146 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:34:49.371613 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:34:49.551848 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-07T00:34:50.819654 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:34:50.837285 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:34:50.903746 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-3082b15e-4b08-49da-951a-a9f52f8ab01a` +I, [2018-08-07T00:34:50.903825 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-07T00:34:51.290779 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-07T00:34:51.451370 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-07T00:34:51.831169 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:34:51.837938 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:34:52.839738 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:34:52.903765 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:34:53.967853 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:34:54.002195 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:34:54.971409 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:34:55.202479 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-07T00:34:55.440998 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:34:55.972211 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-07T00:34:56.466315 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:34:57.467366 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-07T00:34:57.747563 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- NoMethodError: undefined method `publish' for # +Did you mean? public_send +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-07T00:34:57.768019 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-07T00:34:57.933305 #6] ERROR -- : Client fetch loop error: undefined method `publish' for # +Did you mean? public_send +I, [2018-08-07T00:34:57.933938 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-07T00:34:57.952767 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-07T00:34:58.012085 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:34:58.469150 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:34:58.953037 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-07T00:34:58.963513 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-a7d03036-7f95-43f9-ad6f-e386213b47fc` +I, [2018-08-07T00:34:58.963594 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-07T00:34:58.968646 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-07T00:34:58.968757 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-07T00:34:59.012855 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:34:59.069589 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-07T00:34:59.476932 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-07T00:35:00.013235 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:35:01.309689 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-07T00:35:01.677309 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- NoMethodError: undefined method `publish' for # +Did you mean? public_send +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-07T00:35:01.677601 #6] INFO -- : Leaving group `notifications_notifications` +I, [2018-08-07T00:35:02.419972 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:35:03.950093 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-07T00:35:03.983326 #6] ERROR -- : Client fetch loop error: undefined method `publish' for # +Did you mean? public_send +I, [2018-08-07T00:35:04.128932 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-07T00:35:04.248287 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-07T00:35:04.248689 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-07T00:35:04.958012 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:35:05.293412 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:35:05.293729 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-07T00:35:05.729989 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-26f6b6fa-e7cb-4dfb-8a94-a057eae2f289` +I, [2018-08-07T00:35:05.730080 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-07T00:35:05.760211 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-07T00:35:05.760387 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-07T00:35:06.081837 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:35:06.515266 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:35:07.208947 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:35:07.964575 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:35:08.310092 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:35:08.927879 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-07T00:35:09.137327 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:35:09.541165 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:35:10.216659 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:35:10.583250 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-07T00:35:11.218927 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-07T00:35:11.817624 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- NoMethodError: undefined method `publish' for # +Did you mean? public_send +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-07T00:35:11.957936 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-07T00:35:12.021585 #6] ERROR -- : Client fetch loop error: undefined method `publish' for # +Did you mean? public_send +I, [2018-08-07T00:35:12.022453 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-07T00:35:12.024712 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-07T00:35:12.221568 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:35:12.360176 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:35:13.027520 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-07T00:35:13.110158 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-110013eb-8cfb-4ca9-81fe-4f3cc2938bd3` +I, [2018-08-07T00:35:13.110248 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-07T00:35:13.127883 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-07T00:35:13.128113 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-07T00:35:13.543785 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:35:13.545585 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:35:14.027188 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-07T00:35:14.544822 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-07T00:35:14.549821 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:35:15.550870 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-07T00:35:16.067818 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- NoMethodError: undefined method `publish' for # +Did you mean? public_send +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-07T00:35:16.068009 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-07T00:35:16.149474 #6] ERROR -- : Client fetch loop error: undefined method `publish' for # +Did you mean? public_send +I, [2018-08-07T00:35:16.149928 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-07T00:35:16.152632 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-07T00:35:16.196083 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:35:16.563451 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:35:17.153023 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-07T00:35:17.194406 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-88e4190c-e439-4a38-98dc-79c6460bd9c4` +I, [2018-08-07T00:35:17.194490 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-07T00:35:17.196569 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:35:17.225452 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-07T00:35:17.225800 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-07T00:35:17.564023 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:35:18.336750 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:35:18.573906 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:35:19.340814 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:35:19.576268 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:35:20.349867 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:35:20.576814 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:35:21.409163 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:35:21.578635 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:35:22.411164 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:35:22.579219 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:35:23.178012 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-07T00:35:23.411986 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:35:23.580584 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-07T00:35:24.413040 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-07T00:35:25.212150 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- NoMethodError: undefined method `publish' for # +Did you mean? public_send +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-07T00:35:25.233412 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-07T00:35:25.283271 #6] ERROR -- : Client fetch loop error: undefined method `publish' for # +Did you mean? public_send +I, [2018-08-07T00:35:25.283789 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-07T00:35:25.288428 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-07T00:35:25.414013 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:35:25.662199 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:35:26.289463 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-07T00:35:26.317253 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-4f0867db-0451-4861-9032-a8c5bf2eb118` +I, [2018-08-07T00:35:26.317688 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-07T00:35:26.332388 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-07T00:35:26.332501 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-07T00:35:26.416702 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:35:26.662719 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:35:27.304077 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-07T00:35:27.417176 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-07T00:35:27.663940 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:35:28.664401 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-07T00:35:29.308385 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- NoMethodError: undefined method `publish' for # +Did you mean? public_send +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-07T00:35:29.308449 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-07T00:35:29.311809 #6] ERROR -- : Client fetch loop error: undefined method `publish' for # +Did you mean? public_send +I, [2018-08-07T00:35:29.312195 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-07T00:35:29.313499 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-07T00:35:29.370106 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:35:29.665163 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:35:30.314544 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-07T00:35:30.318323 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-0f057063-80c4-4367-bd3d-3a08170ea256` +I, [2018-08-07T00:35:30.318370 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-07T00:35:30.321554 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-07T00:35:30.321701 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-07T00:35:30.370720 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:35:30.627359 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:35:31.337017 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:35:31.628223 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:35:32.337605 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:35:32.628807 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:35:33.338203 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:35:33.629334 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:35:34.338692 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:35:34.630985 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:35:35.339696 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:35:35.633932 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:35:36.309216 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-07T00:35:36.340357 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:35:36.634636 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-07T00:35:37.340924 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-07T00:35:38.313191 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- NoMethodError: undefined method `publish' for # +Did you mean? public_send +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-07T00:35:38.319618 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-07T00:35:38.326141 #6] ERROR -- : Client fetch loop error: undefined method `publish' for # +Did you mean? public_send +I, [2018-08-07T00:35:38.326687 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-07T00:35:38.344134 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-07T00:35:38.346142 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-07T00:35:38.414621 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:35:39.345344 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:35:39.346716 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-07T00:35:39.353614 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-ab7bfe2e-6361-46dc-949b-fae606659854` +I, [2018-08-07T00:35:39.354429 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-07T00:35:39.397557 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-07T00:35:39.397655 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-07T00:35:39.416041 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:35:40.293181 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-07T00:35:40.345654 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-07T00:35:40.417371 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:35:41.418064 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-07T00:35:42.303526 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- NoMethodError: undefined method `publish' for # +Did you mean? public_send +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-07T00:35:42.303610 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-07T00:35:42.314524 #6] ERROR -- : Client fetch loop error: undefined method `publish' for # +Did you mean? public_send +I, [2018-08-07T00:35:42.314723 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-07T00:35:42.317638 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-07T00:35:42.400949 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:35:42.418718 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:35:43.318061 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-07T00:35:43.323284 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-51d4623c-b2b8-4874-8bf0-fc3328fdb79c` +I, [2018-08-07T00:35:43.323407 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-07T00:35:43.335908 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-07T00:35:43.335973 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-07T00:35:43.401473 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:35:43.419626 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:35:44.402427 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:35:44.420338 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:35:45.403246 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:35:45.422536 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:35:46.403976 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:35:46.423108 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:35:47.404532 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:35:47.424937 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:35:48.404868 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:35:48.425337 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:35:49.403844 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-07T00:35:49.405771 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:35:49.427108 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-07T00:35:50.406388 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-07T00:35:51.408669 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- NoMethodError: undefined method `publish' for # +Did you mean? public_send +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-07T00:35:51.420257 #6] INFO -- : Leaving group `notifications_course_change` +I, [2018-08-07T00:35:51.422049 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-07T00:35:51.424222 #6] ERROR -- : Client fetch loop error: undefined method `publish' for # +Did you mean? public_send +I, [2018-08-07T00:35:51.424468 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-07T00:35:51.425356 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-07T00:35:51.638287 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:35:52.423268 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:35:52.425898 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-07T00:35:52.430171 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-b3aa86b4-ef21-45e0-b2d7-23921e5ae8d4` +I, [2018-08-07T00:35:52.430218 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-07T00:35:52.432430 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-07T00:35:52.432492 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-07T00:35:52.638709 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:35:53.342019 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-07T00:35:53.424326 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-07T00:35:53.639125 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:35:54.641890 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-07T00:35:55.390187 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- NoMethodError: undefined method `publish' for # +Did you mean? public_send +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-07T00:35:55.391174 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-07T00:35:55.408200 #6] ERROR -- : Client fetch loop error: undefined method `publish' for # +Did you mean? public_send +I, [2018-08-07T00:35:55.408709 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-07T00:35:55.422177 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-07T00:35:55.520663 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:35:55.646854 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:35:56.422617 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-07T00:35:56.435436 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-0ffb0fce-9dc3-4750-ad79-4d4c3bcafbc7` +I, [2018-08-07T00:35:56.435513 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-07T00:35:56.440997 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-07T00:35:56.441221 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-07T00:35:56.521560 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:35:56.648851 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:35:57.522096 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:35:57.649468 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:35:58.522930 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:35:58.650157 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:35:59.523626 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:35:59.651623 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:36:00.486673 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:36:00.613671 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:36:01.487042 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:36:01.614035 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:36:02.488114 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:36:02.614860 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:36:02.649473 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-07T00:36:03.488560 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:36:03.615634 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-07T00:36:04.489593 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-07T00:36:04.674914 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- NoMethodError: undefined method `publish' for # +Did you mean? public_send +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-07T00:36:04.675215 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-07T00:36:04.696886 #6] ERROR -- : Client fetch loop error: undefined method `publish' for # +Did you mean? public_send +I, [2018-08-07T00:36:04.697896 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-07T00:36:04.703502 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-07T00:36:05.457341 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:36:05.495608 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:36:05.704478 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-07T00:36:05.709852 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-953cbebb-a362-4655-8c7d-92a03f4fcfc4` +I, [2018-08-07T00:36:05.709920 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-07T00:36:05.714109 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-07T00:36:05.714657 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-07T00:36:06.418154 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-07T00:36:06.458001 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:36:06.496232 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-07T00:36:07.458328 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-07T00:36:08.427447 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- NoMethodError: undefined method `publish' for # +Did you mean? public_send +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-07T00:36:08.430587 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-07T00:36:08.432959 #6] ERROR -- : Client fetch loop error: undefined method `publish' for # +Did you mean? public_send +I, [2018-08-07T00:36:08.433185 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-07T00:36:08.434406 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-07T00:36:08.451925 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:36:08.458750 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:36:09.434655 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-07T00:36:09.439719 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-c889c87b-cd45-45c0-89cf-f22058dae5fe` +I, [2018-08-07T00:36:09.439774 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-07T00:36:09.443768 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-07T00:36:09.443839 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-07T00:36:09.452576 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:36:09.459558 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:36:10.453531 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:36:10.460207 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:36:11.453942 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:36:11.460497 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:36:12.454315 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:36:12.461241 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:36:13.454774 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:36:13.462266 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:36:14.455305 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:36:14.463125 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:36:15.456259 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:36:15.464344 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:36:15.720150 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-07T00:36:16.456961 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:36:16.464933 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-07T00:36:17.457695 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-07T00:36:17.723307 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- NoMethodError: undefined method `publish' for # +Did you mean? public_send +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-07T00:36:17.723367 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-07T00:36:17.725575 #6] ERROR -- : Client fetch loop error: undefined method `publish' for # +Did you mean? public_send +I, [2018-08-07T00:36:17.725749 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-07T00:36:17.726708 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-07T00:36:18.025428 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:36:18.458774 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:36:18.727028 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-07T00:36:18.730228 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-cc45f4a2-039f-4bcf-b175-cd94e6ca688a` +I, [2018-08-07T00:36:18.730271 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-07T00:36:18.732368 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-07T00:36:18.732428 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-07T00:36:19.025829 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:36:19.450110 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-07T00:36:19.461088 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-07T00:36:20.027915 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:36:21.028719 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-07T00:36:21.455317 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- NoMethodError: undefined method `publish' for # +Did you mean? public_send +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-07T00:36:21.461287 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-07T00:36:21.466573 #6] ERROR -- : Client fetch loop error: undefined method `publish' for # +Did you mean? public_send +I, [2018-08-07T00:36:21.466835 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-07T00:36:21.468488 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-07T00:36:21.523561 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:36:22.029247 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:36:22.468880 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-07T00:36:22.477394 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-339b9742-e645-4bef-8fd2-185e6fde015a` +I, [2018-08-07T00:36:22.477480 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-07T00:36:22.484474 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-07T00:36:22.484566 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-07T00:36:22.524482 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:36:23.029913 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:36:23.524988 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:36:24.033563 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:36:24.525674 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:36:25.034420 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:36:25.526512 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:36:26.034865 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:36:26.527800 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:36:27.035415 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:36:27.528443 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:36:28.036874 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:36:28.529186 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:36:28.737726 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-07T00:36:29.037176 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-07T00:36:29.537842 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:36:30.502645 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-07T00:36:30.728014 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- NoMethodError: undefined method `publish' for # +Did you mean? public_send +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-07T00:36:30.728136 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-07T00:36:30.732243 #6] ERROR -- : Client fetch loop error: undefined method `publish' for # +Did you mean? public_send +I, [2018-08-07T00:36:30.733630 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-07T00:36:30.736019 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-07T00:36:31.029702 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:36:31.504103 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:36:31.736882 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-07T00:36:31.741991 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-f6b7eed7-5b19-41e1-92c1-90b5b2527b53` +I, [2018-08-07T00:36:31.742037 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-07T00:36:31.744537 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-07T00:36:31.744598 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-07T00:36:32.030705 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:36:32.479229 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-07T00:36:32.504426 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-07T00:36:33.031850 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:36:34.032343 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-07T00:36:34.482470 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- NoMethodError: undefined method `publish' for # +Did you mean? public_send +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-07T00:36:34.488374 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-07T00:36:34.493824 #6] ERROR -- : Client fetch loop error: undefined method `publish' for # +Did you mean? public_send +I, [2018-08-07T00:36:34.494066 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-07T00:36:34.496351 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-07T00:36:34.590170 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:36:35.032919 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:36:35.497392 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-07T00:36:35.502643 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-fe0b9ed3-6bef-44e2-922b-c4de1382ebee` +I, [2018-08-07T00:36:35.502690 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-07T00:36:35.505887 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-07T00:36:35.505963 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-07T00:36:35.590799 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:36:36.033592 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:36:36.591859 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:36:37.034113 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:36:37.592357 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:36:38.034990 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:36:38.592797 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:36:39.036110 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:36:39.593528 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:36:40.037186 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:36:40.594031 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:36:41.038290 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:36:41.594409 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:36:41.752152 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-07T00:36:42.039448 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-07T00:36:42.594943 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:36:43.595306 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-07T00:36:43.759190 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- NoMethodError: undefined method `publish' for # +Did you mean? public_send +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-07T00:36:43.759278 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-07T00:36:43.761996 #6] ERROR -- : Client fetch loop error: undefined method `publish' for # +Did you mean? public_send +I, [2018-08-07T00:36:43.762256 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-07T00:36:43.763388 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-07T00:36:43.989495 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:36:44.595692 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:36:44.764120 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-07T00:36:44.769882 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-fd808444-1879-4928-8eab-ad4c587b56da` +I, [2018-08-07T00:36:44.769940 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-07T00:36:44.776307 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-07T00:36:44.776374 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-07T00:36:44.990919 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:36:45.514504 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-07T00:36:45.596351 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-07T00:36:45.991328 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:36:46.992298 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-07T00:36:47.518886 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- NoMethodError: undefined method `publish' for # +Did you mean? public_send +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-07T00:36:47.527202 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-07T00:36:47.540476 #6] ERROR -- : Client fetch loop error: undefined method `publish' for # +Did you mean? public_send +I, [2018-08-07T00:36:47.540797 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-07T00:36:47.543682 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-07T00:36:47.567231 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:36:47.992843 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:36:48.544202 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-07T00:36:48.549183 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-6b359435-0e9e-477c-af71-1d0e852a33b5` +I, [2018-08-07T00:36:48.549242 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-07T00:36:48.556525 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-07T00:36:48.556601 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-07T00:36:48.567741 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:36:48.993520 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:36:49.629332 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:36:49.994304 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:36:50.882573 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:36:50.995813 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:36:51.892105 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:36:51.996183 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:36:52.892793 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:36:52.996774 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:36:53.893715 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:36:53.998229 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:36:54.894645 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:36:54.925048 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-07T00:36:54.999171 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-07T00:36:55.895429 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:36:56.895869 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-07T00:36:56.941850 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- NoMethodError: undefined method `publish' for # +Did you mean? public_send +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-07T00:36:56.944530 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-07T00:36:56.959700 #6] ERROR -- : Client fetch loop error: undefined method `publish' for # +Did you mean? public_send +I, [2018-08-07T00:36:56.960861 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-07T00:36:56.964037 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-07T00:36:58.115012 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:36:58.115472 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-07T00:36:58.118098 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:36:58.125930 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-80cdaf3d-41b2-466f-903e-de51962b6662` +I, [2018-08-07T00:36:58.126339 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-07T00:36:58.136902 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-07T00:36:58.136995 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-07T00:36:58.988934 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-07T00:36:59.115519 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-07T00:36:59.121595 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:37:00.122110 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-07T00:37:00.941505 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- NoMethodError: undefined method `publish' for # +Did you mean? public_send +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-07T00:43:01.673488 #7] INFO -- : New topics added to target list: course_change +I, [2018-08-07T00:43:01.673585 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T00:43:01.680068 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T00:43:01.680487 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +I, [2018-08-07T00:43:01.678599 #7] INFO -- : New topics added to target list: section_change +I, [2018-08-07T00:43:01.681448 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T00:43:01.684626 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T00:43:01.684732 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T00:43:06.681884 #7] 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.14:9094 +I, [2018-08-07T00:43:06.683203 #7] INFO -- : New topics added to target list: course_change +I, [2018-08-07T00:43:06.683281 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T00:43:06.685784 #7] 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.14:9094 +I, [2018-08-07T00:43:06.692714 #7] INFO -- : New topics added to target list: section_change +I, [2018-08-07T00:43:06.692817 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T00:43:06.706833 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T00:43:06.707981 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T00:43:06.710596 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T00:43:06.711502 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T00:43:11.710341 #7] 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.14:9094 +I, [2018-08-07T00:43:11.715721 #7] INFO -- : New topics added to target list: course_change +I, [2018-08-07T00:43:11.716476 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T00:43:11.719145 #7] 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.14:9094 +I, [2018-08-07T00:43:11.736674 #7] INFO -- : New topics added to target list: section_change +I, [2018-08-07T00:43:11.736775 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T00:43:11.744348 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T00:43:11.747897 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T00:43:11.756252 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T00:43:11.761844 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T00:43:16.805766 #7] 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.14:9094 +E, [2018-08-07T00:43:17.409192 #7] 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.14:9094 +I, [2018-08-07T00:43:18.410702 #7] INFO -- : New topics added to target list: section_change +I, [2018-08-07T00:43:18.411211 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T00:43:18.422540 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T00:43:18.422887 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +I, [2018-08-07T00:43:18.465420 #7] INFO -- : New topics added to target list: course_change +I, [2018-08-07T00:43:18.465530 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T00:43:18.470347 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T00:43:18.476723 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T00:43:23.478306 #7] 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.14:9094 +I, [2018-08-07T00:43:23.485871 #7] INFO -- : New topics added to target list: course_change +I, [2018-08-07T00:43:23.486299 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T00:43:23.488333 #7] 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.14:9094 +I, [2018-08-07T00:43:23.490983 #7] INFO -- : New topics added to target list: section_change +I, [2018-08-07T00:43:23.491348 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T00:43:24.541817 #7] ERROR -- : No brokers in cluster +E, [2018-08-07T00:43:24.592468 #7] ERROR -- : No brokers in cluster +E, [2018-08-07T00:43:29.623506 #7] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: + +I, [2018-08-07T00:43:29.640370 #7] INFO -- : New topics added to target list: course_change +I, [2018-08-07T00:43:29.641523 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T00:43:29.641870 #7] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: + +I, [2018-08-07T00:43:29.651504 #7] INFO -- : New topics added to target list: section_change +I, [2018-08-07T00:43:29.658588 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T00:43:30.112689 #7] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-07T00:43:30.113709 #7] INFO -- : Joining group `notifications_course_change` +I, [2018-08-07T00:43:30.116120 #7] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-07T00:43:30.116663 #7] INFO -- : Joining group `notifications_notifications` +I, [2018-08-07T00:43:30.162792 #7] INFO -- : Will fetch at most 1048576 bytes at a time per partition from course_change +I, [2018-08-07T00:43:30.163294 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T00:43:30.168239 #7] INFO -- : Will fetch at most 1048576 bytes at a time per partition from section_change +I, [2018-08-07T00:43:30.168848 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T00:43:30.176915 #7] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-07T00:43:30.178139 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:43:30.189376 #7] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-07T00:43:30.189501 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:43:31.143987 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:43:31.155010 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:43:32.145318 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:43:32.156083 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:43:33.152126 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:43:33.156924 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:43:34.152998 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:43:34.160054 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:43:35.153713 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:43:35.160896 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-07T00:43:35.736994 #7] ERROR -- : Failed to find coordinator for group `notifications_course_change`; retrying... +I, [2018-08-07T00:43:36.154639 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:43:36.161741 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:43:36.737667 #7] INFO -- : Joining group `notifications_course_change` +I, [2018-08-07T00:43:36.825693 #7] INFO -- : Joined group `notifications_notifications` with member id `notifications-49e17880-c42f-400c-860d-4ff6532f7cff` +I, [2018-08-07T00:43:36.827024 #7] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-07T00:43:36.889402 #7] INFO -- : Joined group `notifications_course_change` with member id `notifications-fe0e0492-13cb-4186-9c47-13d158d1be8d` +I, [2018-08-07T00:43:36.889455 #7] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-07T00:43:37.161201 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:43:37.162548 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:43:37.835211 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T00:43:37.839734 #7] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-07T00:43:37.892146 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T00:43:37.937767 #7] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-07T00:43:37.997216 #7] INFO -- : Partitions assigned for `course_change`: 0 +I, [2018-08-07T00:43:38.040684 #7] INFO -- : Partitions assigned for `section_change`: 0 +I, [2018-08-07T00:43:38.162193 #7] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-07T00:43:38.163537 #7] INFO -- : New topics added to target list: section_change +I, [2018-08-07T00:43:38.163589 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T00:43:38.165923 #7] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-07T00:43:38.166007 #7] INFO -- : New topics added to target list: course_change +I, [2018-08-07T00:43:38.166038 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T00:43:38.172483 #7] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-07T00:43:38.176593 #7] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +E, [2018-08-07T00:43:42.198024 #7] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- TypeError: wrong argument type Karafka::Params::Params (expected String) +/usr/src/app/app/controllers/eventstream.rb:19:in `publish' +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-07T00:43:42.198232 #7] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-07T00:43:42.205979 #7] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- TypeError: wrong argument type Karafka::Params::Params (expected String) +/usr/src/app/app/controllers/eventstream.rb:19:in `publish' +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-07T00:43:42.208564 #7] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-07T00:43:42.275582 #7] ERROR -- : Client fetch loop error: wrong argument type Karafka::Params::Params (expected String) +I, [2018-08-07T00:43:42.276606 #7] INFO -- : Joining group `notifications_notifications` +E, [2018-08-07T00:43:42.286606 #7] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-08-07T00:43:42.287564 #7] ERROR -- : Client fetch loop error: wrong argument type Karafka::Params::Params (expected String) +I, [2018-08-07T00:43:42.288471 #7] INFO -- : Joining group `notifications_course_change` +E, [2018-08-07T00:43:42.289992 #7] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-07T00:43:42.347668 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:43:42.371226 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:43:43.287498 #7] INFO -- : Joining group `notifications_notifications` +I, [2018-08-07T00:43:43.290254 #7] INFO -- : Joining group `notifications_course_change` +I, [2018-08-07T00:43:43.336433 #7] INFO -- : Joined group `notifications_notifications` with member id `notifications-fb7ad3ac-e6e2-4360-930d-386284f85bc5` +I, [2018-08-07T00:43:43.336491 #7] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-07T00:43:43.344946 #7] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-07T00:43:43.345057 #7] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-07T00:43:43.348301 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:43:43.375470 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:43:43.439399 #7] INFO -- : Joined group `notifications_course_change` with member id `notifications-3089b24c-a056-4cb9-8d13-b8e4d0e54012` +I, [2018-08-07T00:43:43.439471 #7] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-07T00:43:43.467753 #7] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-07T00:43:43.467890 #7] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-07T00:43:44.349362 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:43:44.375774 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:43:45.355083 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:43:45.376444 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:43:46.377418 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:43:46.382872 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:43:47.378923 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:43:47.383971 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:43:48.379388 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:43:48.384602 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:43:49.380543 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:43:49.385480 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:43:50.382453 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:43:50.386596 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:43:51.389378 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:43:51.394318 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:43:52.391161 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:43:52.395526 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:43:53.392301 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:43:53.396218 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:43:53.442913 #7] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-07T00:43:53.531967 #7] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-07T00:43:54.398844 #7] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-07T00:43:54.401608 #7] INFO -- : Seeking section_change/0 to offset 0 +E, [2018-08-07T00:43:55.486751 #7] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- TypeError: wrong argument type Karafka::Params::Params (expected String) +/usr/src/app/app/controllers/eventstream.rb:19:in `publish' +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-07T00:43:55.488309 #7] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-07T00:43:55.576343 #7] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- TypeError: wrong argument type Karafka::Params::Params (expected String) +/usr/src/app/app/controllers/eventstream.rb:19:in `publish' +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-07T00:43:55.646309 #7] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-07T00:43:55.690093 #7] ERROR -- : Client fetch loop error: wrong argument type Karafka::Params::Params (expected String) +I, [2018-08-07T00:43:55.690504 #7] INFO -- : Joining group `notifications_course_change` +E, [2018-08-07T00:43:55.692268 #7] ERROR -- : Client fetch loop error: wrong argument type Karafka::Params::Params (expected String) +I, [2018-08-07T00:43:55.692539 #7] INFO -- : Joining group `notifications_notifications` +E, [2018-08-07T00:43:55.693811 #7] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-08-07T00:43:55.741250 #7] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-07T00:43:55.744219 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:43:55.828027 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:43:56.694007 #7] INFO -- : Joining group `notifications_course_change` +I, [2018-08-07T00:43:56.702216 #7] INFO -- : Joined group `notifications_course_change` with member id `notifications-dae45e66-d348-4465-979c-001d82761ad5` +I, [2018-08-07T00:43:56.702261 #7] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-07T00:43:56.704896 #7] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-07T00:43:56.704960 #7] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-07T00:43:56.741517 #7] INFO -- : Joining group `notifications_notifications` +I, [2018-08-07T00:43:56.745370 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:43:56.747413 #7] INFO -- : Joined group `notifications_notifications` with member id `notifications-645309d7-4d12-4f9a-b2fb-499f9a081fed` +I, [2018-08-07T00:43:56.747481 #7] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-07T00:43:56.750220 #7] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-07T00:43:56.750297 #7] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-07T00:43:56.829201 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:43:57.761992 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:43:57.830076 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:43:58.773010 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:43:58.830556 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:43:59.776476 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:43:59.831194 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:44:00.746129 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:44:00.799630 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:44:01.755049 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:44:01.804493 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:44:02.796472 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:44:02.867235 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:44:03.896766 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:44:03.921136 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:44:04.921517 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:44:04.921670 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:44:05.922368 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:44:05.922505 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:44:06.881548 #7] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-07T00:44:06.886454 #7] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-07T00:44:06.922867 #7] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-07T00:44:06.925770 #7] INFO -- : Seeking section_change/0 to offset 0 +E, [2018-08-07T00:44:08.914146 #7] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- TypeError: wrong argument type Karafka::Params::Params (expected String) +/usr/src/app/app/controllers/eventstream.rb:19:in `publish' +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-07T00:44:08.948793 #7] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-07T00:44:08.946398 #7] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- TypeError: wrong argument type Karafka::Params::Params (expected String) +/usr/src/app/app/controllers/eventstream.rb:19:in `publish' +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-07T00:44:08.949147 #7] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-07T00:44:09.515725 #7] ERROR -- : Client fetch loop error: wrong argument type Karafka::Params::Params (expected String) +I, [2018-08-07T00:44:09.529503 #7] INFO -- : Joining group `notifications_notifications` +E, [2018-08-07T00:44:09.708052 #7] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-07T00:44:09.732045 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-07T00:44:09.764759 #7] ERROR -- : Client fetch loop error: wrong argument type Karafka::Params::Params (expected String) +I, [2018-08-07T00:44:09.766000 #7] INFO -- : Joining group `notifications_course_change` +I, [2018-08-07T00:44:09.778980 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-07T00:44:09.790954 #7] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-07T00:44:10.709142 #7] INFO -- : Joining group `notifications_notifications` +I, [2018-08-07T00:44:10.743129 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:44:10.756770 #7] INFO -- : Joined group `notifications_notifications` with member id `notifications-617d4355-9138-4285-ad35-73581c5375e4` +I, [2018-08-07T00:44:10.756844 #7] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-07T00:44:10.780100 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:44:10.799466 #7] INFO -- : Joining group `notifications_course_change` +I, [2018-08-07T00:44:10.842461 #7] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-07T00:44:10.842647 #7] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-07T00:44:10.866513 #7] INFO -- : Joined group `notifications_course_change` with member id `notifications-96f0cb07-56a1-44a4-8031-c8e2bdc752b3` +I, [2018-08-07T00:44:10.866581 #7] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-07T00:44:10.920822 #7] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-07T00:44:10.920954 #7] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-07T00:44:11.745798 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:44:11.780637 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:44:12.747097 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:44:12.786011 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:44:13.800059 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:44:13.800427 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:44:14.802085 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:44:14.802272 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:44:15.803287 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:44:15.803579 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:44:16.804626 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:44:16.804892 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:44:17.805556 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:44:17.805753 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:44:18.806802 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:44:18.807048 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:44:19.807171 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:44:19.807371 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:44:20.808043 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:44:20.808443 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:44:20.965682 #7] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-07T00:44:21.283362 #7] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-07T00:44:21.809055 #7] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-07T00:44:21.810785 #7] INFO -- : Seeking course_change/0 to offset 0 +E, [2018-08-07T00:44:23.048994 #7] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- TypeError: wrong argument type Karafka::Params::Params (expected String) +/usr/src/app/app/controllers/eventstream.rb:19:in `publish' +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-07T00:44:23.049975 #7] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-07T00:44:23.098132 #7] ERROR -- : Client fetch loop error: wrong argument type Karafka::Params::Params (expected String) +I, [2018-08-07T00:44:23.099548 #7] INFO -- : Joining group `notifications_notifications` +E, [2018-08-07T00:44:23.104904 #7] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-07T00:44:23.161937 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-07T00:44:23.341167 #7] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- TypeError: wrong argument type Karafka::Params::Params (expected String) +/usr/src/app/app/controllers/eventstream.rb:19:in `publish' +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-07T00:44:23.341244 #7] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-07T00:44:23.382295 #7] ERROR -- : Client fetch loop error: wrong argument type Karafka::Params::Params (expected String) +I, [2018-08-07T00:44:23.382935 #7] INFO -- : Joining group `notifications_course_change` +E, [2018-08-07T00:44:23.416288 #7] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-07T00:44:23.454341 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:44:24.105333 #7] INFO -- : Joining group `notifications_notifications` +I, [2018-08-07T00:44:24.147218 #7] INFO -- : Joined group `notifications_notifications` with member id `notifications-ef839401-5e84-4031-98f8-89eda6fd4e89` +I, [2018-08-07T00:44:24.170427 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:44:24.168004 #7] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-07T00:44:24.194862 #7] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-07T00:44:24.195012 #7] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-07T00:44:24.417046 #7] INFO -- : Joining group `notifications_course_change` +I, [2018-08-07T00:44:24.447230 #7] INFO -- : Joined group `notifications_course_change` with member id `notifications-a2b70d86-3a5a-4cd4-9ec6-67d74bac2df8` +I, [2018-08-07T00:44:24.447284 #7] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-07T00:44:24.454851 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:44:24.457096 #7] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-07T00:44:24.457175 #7] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-07T00:44:25.173183 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:44:25.456181 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:44:26.180210 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:44:26.457799 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:44:27.181020 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:44:27.458156 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:44:28.181774 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:44:28.459933 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:44:29.182541 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:44:29.460370 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:44:30.184674 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:44:30.460966 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:44:31.147764 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:44:31.423590 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:44:32.148483 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:44:32.423951 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:44:33.149477 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:44:33.424611 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:44:34.152025 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:44:34.212458 #7] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-07T00:44:34.425811 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:44:34.430230 #7] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-07T00:44:35.152334 #7] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-07T00:44:35.427519 #7] INFO -- : Seeking course_change/0 to offset 0 +E, [2018-08-07T00:44:36.216414 #7] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- TypeError: wrong argument type Karafka::Params::Params (expected String) +/usr/src/app/app/controllers/eventstream.rb:19:in `publish' +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-07T00:44:36.216591 #7] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-07T00:44:36.223890 #7] ERROR -- : Client fetch loop error: wrong argument type Karafka::Params::Params (expected String) +I, [2018-08-07T00:44:36.224739 #7] INFO -- : Joining group `notifications_notifications` +E, [2018-08-07T00:44:36.225826 #7] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-07T00:44:36.309590 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-07T00:44:36.435843 #7] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- TypeError: wrong argument type Karafka::Params::Params (expected String) +/usr/src/app/app/controllers/eventstream.rb:19:in `publish' +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-07T00:44:36.438784 #7] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-07T00:44:36.458676 #7] ERROR -- : Client fetch loop error: wrong argument type Karafka::Params::Params (expected String) +I, [2018-08-07T00:44:36.461335 #7] INFO -- : Joining group `notifications_course_change` +E, [2018-08-07T00:44:36.468685 #7] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-07T00:44:36.517332 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:44:37.226695 #7] INFO -- : Joining group `notifications_notifications` +I, [2018-08-07T00:44:37.256289 #7] INFO -- : Joined group `notifications_notifications` with member id `notifications-aef6214a-59f7-4d0d-a8d2-39819c75e64f` +I, [2018-08-07T00:44:37.256377 #7] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-07T00:44:37.280452 #7] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-07T00:44:37.280666 #7] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-07T00:44:37.310508 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:44:37.469092 #7] INFO -- : Joining group `notifications_course_change` +I, [2018-08-07T00:44:37.473566 #7] INFO -- : Joined group `notifications_course_change` with member id `notifications-39235dad-cbab-4095-8ec7-d07968e6d8cd` +I, [2018-08-07T00:44:37.473610 #7] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-07T00:44:37.475586 #7] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-07T00:44:37.476379 #7] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-07T00:44:37.518372 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:44:38.312231 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:44:38.518774 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:44:39.314058 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:44:39.519243 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:44:40.354347 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:44:40.563845 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:44:41.365675 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:44:41.571890 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:44:42.667404 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:44:42.679190 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:44:43.713444 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:44:43.727380 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:44:44.714777 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:44:44.728513 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:44:45.717354 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:44:45.730473 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:44:46.724877 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:44:46.730924 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:44:47.633938 #7] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-07T00:44:47.702107 #7] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-07T00:44:47.725416 #7] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-07T00:44:47.731396 #7] INFO -- : Seeking course_change/0 to offset 0 +E, [2018-08-07T00:44:49.703218 #7] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- TypeError: wrong argument type Karafka::Params::Params (expected String) +/usr/src/app/app/controllers/eventstream.rb:19:in `publish' +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-07T00:44:49.703411 #7] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-07T00:44:49.706881 #7] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- TypeError: wrong argument type Karafka::Params::Params (expected String) +/usr/src/app/app/controllers/eventstream.rb:19:in `publish' +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-07T00:47:47.566693 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-07T00:47:47.566793 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T00:47:47.574646 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.5:9094 +E, [2018-08-07T00:47:47.575100 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.5:9094 +I, [2018-08-07T00:47:47.572386 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-07T00:47:47.575226 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T00:47:47.578312 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.5:9094 +E, [2018-08-07T00:47:47.578507 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.5:9094 +E, [2018-08-07T00:47:52.575585 #6] 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.5:9094 +I, [2018-08-07T00:47:52.576373 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-07T00:47:52.576418 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T00:47:52.578824 #6] 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.5:9094 +I, [2018-08-07T00:47:52.579519 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-07T00:47:52.579562 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T00:47:52.580642 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.5:9094 +E, [2018-08-07T00:47:52.580787 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.5:9094 +E, [2018-08-07T00:47:52.581026 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.5:9094 +E, [2018-08-07T00:47:52.581108 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.5:9094 +E, [2018-08-07T00:47:57.581705 #6] 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.5:9094 +I, [2018-08-07T00:47:57.582710 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-07T00:47:57.582792 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T00:47:57.586050 #6] 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.5:9094 +I, [2018-08-07T00:47:57.589129 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-07T00:47:57.589227 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T00:47:57.595794 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.5:9094 +E, [2018-08-07T00:47:57.596632 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.5:9094 +E, [2018-08-07T00:47:57.596838 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.5:9094 +E, [2018-08-07T00:47:57.597032 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.5:9094 +E, [2018-08-07T00:48:02.565615 #6] 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.5:9094 +E, [2018-08-07T00:48:02.731382 #6] 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.5:9094 +I, [2018-08-07T00:48:02.767930 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-07T00:48:02.768434 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T00:48:02.790300 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-07T00:48:02.790623 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T00:48:04.887224 #6] ERROR -- : No brokers in cluster +E, [2018-08-07T00:48:04.923202 #6] ERROR -- : No brokers in cluster +E, [2018-08-07T00:48:09.888854 #6] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: + +I, [2018-08-07T00:48:09.896066 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-07T00:48:09.896152 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T00:48:09.923963 #6] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: + +I, [2018-08-07T00:48:09.924970 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-07T00:48:09.925012 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T00:48:10.101098 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-07T00:48:10.101512 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-07T00:48:10.127031 #6] INFO -- : Will fetch at most 1048576 bytes at a time per partition from course_change +I, [2018-08-07T00:48:10.127292 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T00:48:10.155767 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-07T00:48:10.155965 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:48:10.216073 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-07T00:48:10.216818 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-07T00:48:10.307601 #6] INFO -- : Will fetch at most 1048576 bytes at a time per partition from section_change +I, [2018-08-07T00:48:10.307791 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T00:48:10.313837 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-07T00:48:10.314092 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:48:11.161726 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:48:11.314415 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:48:12.162610 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:48:12.325762 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:48:13.162995 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:48:13.326307 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:48:14.163288 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:48:14.327428 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:48:15.163962 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:48:15.328207 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:48:16.119506 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-e85fa871-547d-4654-afcc-973819c589ae` +I, [2018-08-07T00:48:16.119608 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-07T00:48:16.164293 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:48:16.179763 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-e98966ff-3491-4788-bd4f-9585de35ecd4` +I, [2018-08-07T00:48:16.179827 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-07T00:48:16.330059 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:48:17.127497 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T00:48:17.156717 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-07T00:48:17.164987 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:48:17.180765 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T00:48:17.187199 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-07T00:48:17.331930 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:48:17.611813 #6] INFO -- : Partitions assigned for `course_change`: 0 +I, [2018-08-07T00:48:17.637490 #6] INFO -- : Partitions assigned for `section_change`: 0 +I, [2018-08-07T00:48:18.165596 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-07T00:48:18.165719 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-07T00:48:18.165754 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T00:48:18.186566 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-07T00:48:18.332709 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-07T00:48:18.332939 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-07T00:48:18.332980 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T00:48:18.361460 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +E, [2018-08-07T00:48:21.813481 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- TypeError: wrong argument type Karafka::Params::Params (expected String) +/usr/src/app/app/controllers/eventstream.rb:19:in `publish' +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-07T00:48:21.815744 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-07T00:48:21.816196 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- TypeError: wrong argument type Karafka::Params::Params (expected String) +/usr/src/app/app/controllers/eventstream.rb:19:in `publish' +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-07T00:48:21.818402 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-07T00:48:21.856475 #6] ERROR -- : Client fetch loop error: wrong argument type Karafka::Params::Params (expected String) +I, [2018-08-07T00:48:21.857097 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-07T00:48:21.860392 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-08-07T00:48:21.876110 #6] ERROR -- : Client fetch loop error: wrong argument type Karafka::Params::Params (expected String) +I, [2018-08-07T00:48:21.876466 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-07T00:48:21.879069 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-07T00:48:21.943207 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:48:22.324064 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:48:22.861234 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-07T00:48:22.885982 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-07T00:48:22.917107 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-115d7eec-dbe0-433a-8545-20d9d7b7123c` +I, [2018-08-07T00:48:22.917163 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-07T00:48:22.922269 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-07T00:48:22.922354 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-07T00:48:22.929695 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-9b7458e6-47c0-4416-b526-66f67ce06a1e` +I, [2018-08-07T00:48:22.929753 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-07T00:48:22.944313 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:48:22.949964 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-07T00:48:22.951572 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-07T00:48:23.324416 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:48:23.944828 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:48:24.327436 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:48:24.945165 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:48:25.328572 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:48:25.945586 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:48:26.330333 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:48:26.947007 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:48:27.331209 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:48:27.947827 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:48:28.331546 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:48:28.948374 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:48:29.331986 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:48:29.948773 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:48:30.332706 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:48:30.912335 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:48:31.296580 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:48:31.912764 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:48:32.297387 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:48:32.896987 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-07T00:48:32.913813 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:48:32.958623 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-07T00:48:33.297635 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-07T00:48:33.914571 #6] INFO -- : Seeking section_change/0 to offset 0 +E, [2018-08-07T00:48:34.933496 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- TypeError: wrong argument type Karafka::Params::Params (expected String) +/usr/src/app/app/controllers/eventstream.rb:19:in `publish' +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-07T00:48:34.933614 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-07T00:48:35.015044 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- TypeError: wrong argument type Karafka::Params::Params (expected String) +/usr/src/app/app/controllers/eventstream.rb:19:in `publish' +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-07T00:48:35.032532 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-07T00:48:35.096811 #6] ERROR -- : Client fetch loop error: wrong argument type Karafka::Params::Params (expected String) +I, [2018-08-07T00:48:35.097591 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-07T00:48:35.111867 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-07T00:48:35.114381 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-07T00:48:35.170145 #6] ERROR -- : Client fetch loop error: wrong argument type Karafka::Params::Params (expected String) +I, [2018-08-07T00:48:35.325981 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-07T00:48:35.344960 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-07T00:48:35.682309 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:48:36.112180 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-07T00:48:36.114973 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:48:36.117752 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-bfd1a498-24c8-43df-abaf-f1208fef6822` +I, [2018-08-07T00:48:36.117805 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-07T00:48:36.120915 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-07T00:48:36.120999 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-07T00:48:36.369506 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-07T00:48:36.490215 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-42b1cd64-8b4d-4bfd-b24d-db49bd1df80f` +I, [2018-08-07T00:48:36.491096 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-07T00:48:36.501195 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-07T00:48:36.501289 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-07T00:48:36.685218 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:48:37.115416 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:48:37.686097 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:48:38.115911 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:48:38.686444 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:48:39.116335 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:48:39.687085 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:48:40.139077 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:48:40.897730 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:48:41.255898 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:48:42.108624 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:48:42.386285 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:48:43.109870 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:48:43.406419 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:48:44.110646 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:48:44.411184 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:48:45.111130 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:48:45.412241 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:48:46.807938 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:48:46.858965 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-07T00:48:46.868433 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:48:46.913368 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-07T00:48:47.971659 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:48:47.810972 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-07T00:48:49.058518 #6] INFO -- : Seeking course_change/0 to offset 0 +E, [2018-08-07T00:48:55.656114 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- TypeError: wrong argument type Karafka::Params::Params (expected String) +/usr/src/app/app/controllers/eventstream.rb:19:in `publish' +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-07T00:48:55.656902 #6] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-07T00:48:55.800373 #6] ERROR -- : Client fetch loop error: wrong argument type Karafka::Params::Params (expected String) +I, [2018-08-07T00:48:55.801467 #6] INFO -- : Joining group `notifications_course_change` +E, [2018-08-07T00:48:55.808803 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-07T00:48:56.439228 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-07T00:48:56.781727 #6] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- TypeError: wrong argument type Karafka::Params::Params (expected String) +/usr/src/app/app/controllers/eventstream.rb:19:in `publish' +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +======= +I, [2018-07-25T18:15:47.442318 #5] INFO -- : New topics added to target list: section_change +I, [2018-07-25T18:15:47.442393 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-07-25T18:15:47.443337 #5] INFO -- : New topics added to target list: course_change +I, [2018-07-25T18:15:47.443369 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-07-25T18:15:47.443644 #5] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.5:9094 +E, [2018-07-25T18:15:47.443730 #5] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.5:9094 +E, [2018-07-25T18:15:47.444063 #5] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.5:9094 +E, [2018-07-25T18:15:47.444152 #5] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.5:9094 +E, [2018-07-25T18:15:52.444301 #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.5:9094 +I, [2018-07-25T18:15:52.446037 #5] INFO -- : New topics added to target list: section_change +I, [2018-07-25T18:15:52.446089 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-07-25T18:15:52.449668 #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.5:9094 +I, [2018-07-25T18:15:52.450474 #5] INFO -- : New topics added to target list: course_change +I, [2018-07-25T18:15:52.450527 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-07-25T18:15:52.483028 #5] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-07-25T18:15:52.483169 #5] INFO -- : Joining group `notifications_notifications` +I, [2018-07-25T18:15:52.503845 #5] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-07-25T18:15:52.504005 #5] INFO -- : Joining group `notifications_course_change` +I, [2018-07-25T18:15:52.550783 #5] INFO -- : Will fetch at most 1048576 bytes at a time per partition from course_change +I, [2018-07-25T18:15:52.550910 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-07-25T18:15:52.553781 #5] INFO -- : Will fetch at most 1048576 bytes at a time per partition from section_change +I, [2018-07-25T18:15:52.553888 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-07-25T18:15:52.557020 #5] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-07-25T18:15:52.557128 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T18:15:52.573750 #5] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-07-25T18:15:52.573882 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T18:15:52.579392 #5] INFO -- : Joined group `notifications_course_change` with member id `notifications-9cd3647f-c95d-47d6-9c33-3541044cfb89` +I, [2018-07-25T18:15:52.579669 #5] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-07-25T18:15:52.593442 #5] INFO -- : Joined group `notifications_notifications` with member id `notifications-055181e9-a062-43fa-9169-b82bcf6bade5` +I, [2018-07-25T18:15:52.593493 #5] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-07-25T18:15:52.730434 #5] INFO -- : Partitions assigned for `course_change`: 0 +I, [2018-07-25T18:15:52.733689 #5] INFO -- : Partitions assigned for `section_change`: 0 +I, [2018-07-25T18:15:53.557315 #5] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-07-25T18:15:53.557402 #5] INFO -- : New topics added to target list: course_change +I, [2018-07-25T18:15:53.557428 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-07-25T18:15:53.559838 #5] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-07-25T18:15:53.574338 #5] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-07-25T18:15:53.574424 #5] INFO -- : New topics added to target list: section_change +I, [2018-07-25T18:15:53.574450 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-07-25T18:15:53.593444 #5] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-07-25T18:15:54.790128 #5] INFO -- : Inline processing of topic section_change with 1 messages took 3.32 ms +I, [2018-07-25T18:15:54.790180 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:54.790228 #5] INFO -- : Committing offsets with recommit: section_change/0:1 +I, [2018-07-25T18:15:54.790695 #5] INFO -- : Inline processing of topic course_change with 1 messages took 1.6 ms +I, [2018-07-25T18:15:54.790734 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:54.790772 #5] INFO -- : Committing offsets with recommit: course_change/0:1 +I, [2018-07-25T18:15:54.831482 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T18:15:54.831520 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:54.831704 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T18:15:54.831727 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:54.831963 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T18:15:54.833744 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:54.834002 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T18:15:54.834027 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:54.834168 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T18:15:54.834191 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:54.834343 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T18:15:54.834363 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:54.834512 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T18:15:54.834534 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:54.834683 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T18:15:54.834704 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:54.834835 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T18:15:54.834858 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:54.835098 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T18:15:54.835121 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:54.835293 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T18:15:54.835316 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:54.835506 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T18:15:54.835530 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:54.835676 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T18:15:54.835700 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:54.835838 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T18:15:54.835858 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:54.837725 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T18:15:54.837761 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:54.837942 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T18:15:54.837974 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:54.838114 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T18:15:54.838139 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:54.838291 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T18:15:54.838312 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:54.838460 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T18:15:54.838486 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:54.838640 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T18:15:54.838661 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:54.838786 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-25T18:15:54.838809 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:54.838978 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T18:15:54.839002 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:54.839133 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T18:15:54.839153 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:54.839284 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T18:15:54.839327 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:54.839498 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T18:15:54.839523 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:54.841284 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.68 ms +I, [2018-07-25T18:15:54.841330 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:54.841584 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T18:15:54.841613 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:54.841773 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T18:15:54.841795 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:54.841927 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T18:15:54.841970 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:54.842152 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T18:15:54.842170 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:54.842281 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-25T18:15:54.842300 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:54.842426 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T18:15:54.842494 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:54.842649 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T18:15:54.842670 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:54.842818 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T18:15:54.842839 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:54.843017 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T18:15:54.843037 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:54.843175 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T18:15:54.843193 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:54.843300 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-25T18:15:54.843317 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:54.844002 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-07-25T18:15:54.844177 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:54.844763 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-25T18:15:54.844805 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:54.845061 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T18:15:54.845089 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:54.845242 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T18:15:54.845264 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:54.846146 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.79 ms +I, [2018-07-25T18:15:54.846191 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:54.846426 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T18:15:54.846489 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:54.846739 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T18:15:54.846799 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:54.847115 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T18:15:54.847158 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:54.847402 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T18:15:54.847436 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:54.847727 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T18:15:54.847755 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:54.848056 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T18:15:54.848095 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:54.848394 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T18:15:54.848418 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:54.848585 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T18:15:54.848609 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:54.848748 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-25T18:15:54.848785 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:54.848926 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T18:15:54.848946 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:54.849110 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T18:15:54.849131 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:54.849272 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T18:15:54.849291 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:54.849408 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-25T18:15:54.849426 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:54.849615 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T18:15:54.849636 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:54.849763 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-25T18:15:54.849783 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:54.849917 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T18:15:54.849936 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:54.850173 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T18:15:54.850198 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:54.850750 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.49 ms +I, [2018-07-25T18:15:54.850781 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:54.850933 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T18:15:54.850954 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:54.851147 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T18:15:54.851168 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:54.851589 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-07-25T18:15:54.851620 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:54.851827 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T18:15:54.851851 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:54.852032 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T18:15:54.852058 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:54.852202 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T18:15:54.852243 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:54.852371 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T18:15:54.852391 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:54.852554 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T18:15:54.852594 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:54.852732 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T18:15:54.852752 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:54.852897 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T18:15:54.852917 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:54.855681 #5] INFO -- : Inline processing of topic section_change with 1 messages took 2.62 ms +I, [2018-07-25T18:15:54.855774 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:54.856133 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T18:15:54.856162 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:54.856345 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T18:15:54.856368 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:54.858189 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.71 ms +I, [2018-07-25T18:15:54.858238 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:54.858554 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T18:15:54.858580 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:54.858733 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T18:15:54.858755 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:54.858920 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T18:15:54.858940 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:54.859113 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T18:15:54.859139 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:54.859291 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-25T18:15:54.859312 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:54.859450 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T18:15:54.859473 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:54.859661 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T18:15:54.859681 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:54.859831 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T18:15:54.861356 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:54.861725 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T18:15:54.861753 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:54.861895 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T18:15:54.861916 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:54.862099 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T18:15:54.862121 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:54.862261 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T18:15:54.862282 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:54.862432 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T18:15:54.862452 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:54.862628 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T18:15:54.862654 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:54.862803 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T18:15:54.862824 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:54.862950 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T18:15:54.862972 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:54.863133 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T18:15:54.863175 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:54.863297 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-25T18:15:54.863317 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:54.863444 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T18:15:54.870582 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:54.870990 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T18:15:54.871048 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:54.871217 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T18:15:54.871239 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:54.871407 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T18:15:54.871427 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:54.871594 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T18:15:54.871617 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:54.871785 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T18:15:54.871806 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:54.871941 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T18:15:54.871962 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:54.872160 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T18:15:54.872182 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:54.872314 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T18:15:54.872335 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:54.872501 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T18:15:54.872543 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:54.872682 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T18:15:54.872703 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:54.872846 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T18:15:54.872887 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:54.873044 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-25T18:15:54.873070 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:54.873218 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T18:15:54.873238 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:54.873378 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T18:15:54.873417 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:54.875569 #5] INFO -- : Inline processing of topic section_change with 1 messages took 2.05 ms +I, [2018-07-25T18:15:54.875621 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:54.875867 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T18:15:54.875891 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:54.876090 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T18:15:54.876118 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:54.876301 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T18:15:54.876325 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:54.876471 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T18:15:54.876493 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:54.876672 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T18:15:54.876699 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:54.876858 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T18:15:54.876879 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:54.878268 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T18:15:54.878313 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:54.878517 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T18:15:54.878562 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:54.878702 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T18:15:54.878726 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:54.878875 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T18:15:54.878895 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:54.879017 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-25T18:15:54.879055 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:54.879226 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T18:15:54.879247 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:54.879386 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T18:15:54.879406 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:54.879577 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T18:15:54.879599 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:54.879731 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T18:15:54.879750 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:54.879896 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T18:15:54.880648 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:54.880822 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T18:15:54.880877 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:54.882449 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T18:15:54.882477 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:54.882659 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T18:15:54.882684 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:54.882815 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T18:15:54.882836 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:54.882978 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T18:15:54.882999 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:54.883155 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T18:15:54.883181 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:54.883320 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-25T18:15:54.883339 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:54.883479 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T18:15:54.883500 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:54.883671 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T18:15:54.883697 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:54.883880 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T18:15:54.883912 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:54.884215 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T18:15:54.884319 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:54.884632 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T18:15:54.884670 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:54.887281 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-07-25T18:15:54.887382 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:54.887702 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T18:15:54.887750 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:54.888032 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T18:15:54.888077 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:54.888244 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T18:15:54.888272 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:54.888443 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T18:15:54.888462 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:54.888638 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T18:15:54.888660 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:54.888798 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T18:15:54.888816 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:54.888933 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-25T18:15:54.888964 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:54.889075 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-25T18:15:54.889142 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:54.889282 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T18:15:54.889300 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:54.880207 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T18:15:54.889440 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:54.890285 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.76 ms +I, [2018-07-25T18:15:54.890320 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:54.890495 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-07-25T18:15:54.890517 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:54.890692 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-07-25T18:15:54.890714 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:54.890844 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.07 ms +I, [2018-07-25T18:15:54.890864 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:54.891003 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.07 ms +I, [2018-07-25T18:15:54.891026 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:54.891183 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-07-25T18:15:54.891218 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:54.891342 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.07 ms +I, [2018-07-25T18:15:54.891361 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:54.891509 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-07-25T18:15:54.891529 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:54.891680 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-07-25T18:15:54.891705 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:54.891848 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-07-25T18:15:54.891868 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:54.891988 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.07 ms +I, [2018-07-25T18:15:54.892008 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:54.892171 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-07-25T18:15:54.897832 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:54.898114 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-07-25T18:15:54.898147 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:54.898331 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-07-25T18:15:54.898353 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:54.898500 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-07-25T18:15:54.898522 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:54.898716 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-07-25T18:15:54.898738 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:54.898876 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-07-25T18:15:54.898897 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:54.899025 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.07 ms +I, [2018-07-25T18:15:54.899047 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:54.899211 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-07-25T18:15:54.899232 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:54.899373 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-07-25T18:15:54.899393 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:54.899514 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.07 ms +I, [2018-07-25T18:15:54.899534 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:54.900217 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.41 ms +I, [2018-07-25T18:15:54.900268 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:54.901245 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.44 ms +I, [2018-07-25T18:15:54.901424 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:54.902451 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-07-25T18:15:54.902480 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:54.902681 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-07-25T18:15:54.902705 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:54.902860 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-07-25T18:15:54.902887 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:54.903033 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-07-25T18:15:54.903053 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:54.903253 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T18:15:54.903407 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:54.905699 #5] INFO -- : Inline processing of topic course_change with 1 messages took 1.7 ms +I, [2018-07-25T18:15:54.905752 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:54.905995 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-07-25T18:15:54.906024 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:54.906220 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T18:15:54.906242 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:54.906444 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-07-25T18:15:54.906479 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:54.907461 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.87 ms +I, [2018-07-25T18:15:54.907510 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:54.908424 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-07-25T18:15:54.908467 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:54.909193 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.53 ms +I, [2018-07-25T18:15:54.909277 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:54.909553 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-07-25T18:15:54.910922 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:54.911160 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-07-25T18:15:54.911185 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:54.911348 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-07-25T18:15:54.911370 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:54.911515 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.07 ms +I, [2018-07-25T18:15:54.911536 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:54.911685 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-07-25T18:15:54.911707 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:54.911853 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-07-25T18:15:54.911874 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:54.912019 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.07 ms +I, [2018-07-25T18:15:54.912041 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:54.912248 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T18:15:54.912280 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:54.912512 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-07-25T18:15:54.912569 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:54.912797 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-07-25T18:15:54.912821 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:54.912952 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.07 ms +I, [2018-07-25T18:15:54.913374 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:54.915539 #5] INFO -- : Inline processing of topic course_change with 1 messages took 2.03 ms +I, [2018-07-25T18:15:54.915658 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:54.915926 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-07-25T18:15:54.915957 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:54.916256 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-07-25T18:15:54.916290 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:54.916516 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-07-25T18:15:54.916546 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:54.917383 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-07-25T18:15:54.917427 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:54.917730 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T18:15:54.917763 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:54.917982 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-07-25T18:15:54.918011 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:54.918248 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-07-25T18:15:54.918279 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:54.918454 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-07-25T18:15:54.918482 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:54.918703 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-07-25T18:15:54.918733 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:54.924693 #5] INFO -- : Inline processing of topic course_change with 1 messages took 5.83 ms +I, [2018-07-25T18:15:54.926208 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:54.928477 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-07-25T18:15:54.928628 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:54.929138 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.23 ms +I, [2018-07-25T18:15:54.929188 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:54.929542 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-07-25T18:15:54.929581 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:54.929906 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-07-25T18:15:54.929996 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:54.930259 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-07-25T18:15:54.930292 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:54.930626 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-07-25T18:15:54.930684 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:54.930973 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-07-25T18:15:54.931017 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:54.931321 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-07-25T18:15:54.931365 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:54.931643 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-07-25T18:15:54.931683 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:54.931947 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-07-25T18:15:54.931989 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:54.932262 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-07-25T18:15:54.932303 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:54.926352 #5] INFO -- : Inline processing of topic section_change with 1 messages took 36.97 ms +I, [2018-07-25T18:15:54.933035 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:54.932928 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.45 ms +I, [2018-07-25T18:15:54.935458 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:54.935860 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-07-25T18:15:54.935888 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:54.936023 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-07-25T18:15:54.936045 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:54.936427 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.25 ms +I, [2018-07-25T18:15:54.936467 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:54.936778 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-07-25T18:15:54.936813 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:54.937099 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-07-25T18:15:54.938495 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:54.938916 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-07-25T18:15:54.938953 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:54.939271 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.23 ms +I, [2018-07-25T18:15:54.939307 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:54.939568 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-07-25T18:15:54.939604 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:54.939924 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-07-25T18:15:54.939959 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:54.940274 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-07-25T18:15:54.940310 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:54.940498 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T18:15:54.940593 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:54.940855 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-07-25T18:15:54.940885 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:54.949604 #5] INFO -- : Inline processing of topic course_change with 1 messages took 8.6 ms +I, [2018-07-25T18:15:54.949696 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:54.949953 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-07-25T18:15:54.950002 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:54.950142 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-07-25T18:15:54.950183 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:54.950340 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-07-25T18:15:54.950359 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:54.950475 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.07 ms +I, [2018-07-25T18:15:54.950517 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:54.950724 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-07-25T18:15:54.950756 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:54.950955 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-07-25T18:15:54.950977 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:54.951100 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.07 ms +I, [2018-07-25T18:15:54.951148 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:54.951295 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.07 ms +I, [2018-07-25T18:15:54.951315 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:54.951468 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-07-25T18:15:54.951488 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:54.951667 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-07-25T18:15:54.951692 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:54.951813 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.07 ms +I, [2018-07-25T18:15:54.951832 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:54.953122 #5] INFO -- : Inline processing of topic course_change with 1 messages took 1.24 ms +I, [2018-07-25T18:15:54.953179 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:54.953359 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T18:15:54.953379 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:54.953494 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.07 ms +I, [2018-07-25T18:15:54.953513 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:54.953688 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T18:15:54.953711 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:54.953867 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-07-25T18:15:54.953887 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:54.954000 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.07 ms +I, [2018-07-25T18:15:54.954018 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:54.954148 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-07-25T18:15:54.954196 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:54.954342 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-07-25T18:15:54.954361 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:54.954472 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.06 ms +I, [2018-07-25T18:15:54.954490 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:54.954620 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-07-25T18:15:54.954678 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:54.954827 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-07-25T18:15:54.954846 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:54.956298 #5] INFO -- : Inline processing of topic course_change with 1 messages took 1.39 ms +I, [2018-07-25T18:15:54.956328 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:54.956513 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T18:15:54.956534 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:54.956700 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T18:15:54.956723 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:54.956844 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.07 ms +I, [2018-07-25T18:15:54.956862 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:54.956998 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.07 ms +I, [2018-07-25T18:15:54.957016 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:54.957150 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-07-25T18:15:54.957198 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:54.957325 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.07 ms +I, [2018-07-25T18:15:54.957344 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:54.957486 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.07 ms +I, [2018-07-25T18:15:54.957504 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:54.957633 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-07-25T18:15:54.957651 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:54.957864 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-07-25T18:15:54.957887 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:54.959309 #5] INFO -- : Inline processing of topic course_change with 1 messages took 1.31 ms +I, [2018-07-25T18:15:54.959339 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:54.959519 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T18:15:54.959542 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:54.959666 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.07 ms +I, [2018-07-25T18:15:54.960279 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:54.960429 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-07-25T18:15:54.960450 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:54.960597 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-07-25T18:15:54.960617 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:54.960759 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-07-25T18:15:54.960805 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:54.960932 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.07 ms +I, [2018-07-25T18:15:54.960952 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:54.961090 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-07-25T18:15:54.961110 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:54.961292 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-07-25T18:15:54.961315 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:54.961725 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T18:15:54.961749 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:54.961479 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T18:15:54.961893 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:54.963344 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T18:15:54.963382 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:54.963562 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T18:15:54.963584 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:54.963850 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T18:15:54.963886 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:54.964238 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T18:15:54.964452 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:54.965722 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.03 ms +I, [2018-07-25T18:15:54.965792 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:54.966101 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T18:15:54.966133 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:54.966459 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T18:15:54.966498 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:54.966728 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T18:15:54.966767 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:54.967020 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T18:15:54.967047 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:54.967276 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T18:15:54.967330 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:54.967524 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T18:15:54.967556 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:54.970003 #5] INFO -- : Inline processing of topic section_change with 1 messages took 2.25 ms +I, [2018-07-25T18:15:54.970052 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:54.970361 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T18:15:54.970390 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:54.970612 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T18:15:54.970639 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:54.970824 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T18:15:54.970852 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:54.971046 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T18:15:54.971072 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:54.971286 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T18:15:54.971314 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:54.971479 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T18:15:54.971505 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:54.971696 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T18:15:54.971752 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:54.971951 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T18:15:54.971976 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:54.972136 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T18:15:54.972162 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:54.972379 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T18:15:54.972407 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:54.973027 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T18:15:54.973056 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:54.973279 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T18:15:54.973313 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:54.973577 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T18:15:54.973612 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:54.973860 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T18:15:54.973896 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:54.974092 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T18:15:54.974154 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:54.974374 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T18:15:54.974410 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:54.974633 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T18:15:54.974667 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:54.974910 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T18:15:54.974946 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:54.975135 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T18:15:54.975163 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:54.975391 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T18:15:54.975419 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:54.975635 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T18:15:54.975675 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:54.976400 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.59 ms +I, [2018-07-25T18:15:54.976448 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:54.976744 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T18:15:54.977039 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:54.977351 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T18:15:54.977389 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:54.977640 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T18:15:54.977674 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:54.977905 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T18:15:54.977940 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:54.978273 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T18:15:54.978316 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:54.978560 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T18:15:54.978589 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:54.978789 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T18:15:54.978818 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:54.979018 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T18:15:54.979043 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:54.979278 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T18:15:54.979307 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:54.979532 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T18:15:54.979558 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:54.979806 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T18:15:54.979834 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:54.976967 #5] INFO -- : Inline processing of topic course_change with 1 messages took 15.15 ms +I, [2018-07-25T18:15:54.980093 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:54.980805 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.62 ms +I, [2018-07-25T18:15:54.980844 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:54.981100 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-07-25T18:15:54.981135 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:54.981419 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-07-25T18:15:54.981456 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:54.981675 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T18:15:54.981710 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:54.981955 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T18:15:54.981990 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:54.982206 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T18:15:54.982270 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:54.982530 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-07-25T18:15:54.982570 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:54.982783 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-07-25T18:15:54.982813 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:54.982998 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T18:15:54.983024 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:54.983185 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-07-25T18:15:54.983229 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:54.983415 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-07-25T18:15:54.983442 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:54.983618 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-07-25T18:15:54.984325 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:54.984892 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.24 ms +I, [2018-07-25T18:15:54.984944 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:54.985225 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-07-25T18:15:54.985337 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:54.985592 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-07-25T18:15:54.985630 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:54.985871 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-07-25T18:15:54.985930 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:54.986152 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-07-25T18:15:54.986191 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:54.986488 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-07-25T18:15:54.986523 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:54.986726 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T18:15:54.986779 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:54.986990 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T18:15:54.987017 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:54.987247 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-07-25T18:15:54.987296 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:54.987474 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-07-25T18:15:54.987502 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:54.987697 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T18:15:54.987723 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:54.988436 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.61 ms +I, [2018-07-25T18:15:54.988554 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:54.988848 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-07-25T18:15:54.988884 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:54.989142 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-07-25T18:15:54.989177 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:54.989451 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-07-25T18:15:54.989488 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:54.989706 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-07-25T18:15:54.989741 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:54.989986 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-07-25T18:15:54.990022 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:54.990240 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-07-25T18:15:54.990293 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:54.990484 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T18:15:54.990512 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:54.990714 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-07-25T18:15:54.990740 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:54.991008 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-07-25T18:15:54.991036 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:54.991230 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-07-25T18:15:54.991256 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:54.991478 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-07-25T18:15:54.991929 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:54.992106 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-07-25T18:15:54.992128 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:54.992300 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-07-25T18:15:54.992324 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:54.992477 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-07-25T18:15:54.992497 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:54.992640 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-07-25T18:15:54.992659 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:54.992835 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T18:15:54.992858 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:54.993014 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-07-25T18:15:54.993034 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:54.993172 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-07-25T18:15:54.993191 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:54.993342 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-07-25T18:15:54.993362 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:54.993495 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-07-25T18:15:54.993515 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:54.993659 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-07-25T18:15:54.993679 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:54.993856 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T18:15:54.993878 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:54.994343 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.37 ms +I, [2018-07-25T18:15:54.994372 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:54.994523 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-07-25T18:15:54.994544 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:54.994686 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-07-25T18:15:54.994720 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:54.994884 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T18:15:54.994907 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:54.995058 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-07-25T18:15:54.995078 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:54.995266 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-07-25T18:15:54.995305 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:54.995461 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-07-25T18:15:54.995482 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:54.995759 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-07-25T18:15:54.995804 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:54.995953 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-07-25T18:15:54.995990 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:54.996122 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-07-25T18:15:54.996142 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:54.996286 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-07-25T18:15:54.996329 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:54.996472 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-07-25T18:15:54.996861 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:54.997028 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-07-25T18:15:54.997049 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:54.997199 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-07-25T18:15:54.997219 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:54.997428 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-07-25T18:15:54.997471 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:54.997601 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.07 ms +I, [2018-07-25T18:15:54.997630 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:54.998067 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-07-25T18:15:54.998092 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:54.998243 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-07-25T18:15:54.998263 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:54.998445 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T18:15:54.998467 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:54.998601 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-07-25T18:15:54.998621 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:54.998751 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-07-25T18:15:54.998804 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:54.998956 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-07-25T18:15:54.998976 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:54.999111 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-07-25T18:15:54.999131 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:54.999266 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-07-25T18:15:54.999315 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:54.999463 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-07-25T18:15:54.999492 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:54.999622 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-07-25T18:15:54.999650 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:54.999809 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-07-25T18:15:54.999833 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:54.997838 #5] INFO -- : Inline processing of topic section_change with 1 messages took 17.93 ms +I, [2018-07-25T18:15:55.000009 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.000587 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T18:15:55.000615 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.000768 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T18:15:55.000829 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.000997 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T18:15:55.001017 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.001184 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T18:15:55.001204 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.001469 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T18:15:55.001502 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.001663 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T18:15:55.001695 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.001872 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T18:15:55.001894 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.002048 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T18:15:55.002073 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.002224 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T18:15:55.002249 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.002429 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T18:15:55.002451 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.002919 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-07-25T18:15:55.002951 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.003133 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T18:15:55.003155 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.003335 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T18:15:55.003366 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.003544 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T18:15:55.003567 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.005528 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.85 ms +I, [2018-07-25T18:15:55.005596 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.005942 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T18:15:55.013452 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.013780 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T18:15:55.013808 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.014034 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T18:15:55.014061 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.014233 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T18:15:55.014258 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.014477 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T18:15:55.014504 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.014718 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T18:15:55.016135 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.016526 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-07-25T18:15:55.016562 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.016790 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T18:15:55.016905 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.017130 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T18:15:55.017160 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.017379 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T18:15:55.017434 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.017625 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T18:15:55.017700 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.017968 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T18:15:55.018004 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.018228 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T18:15:55.018262 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.018501 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T18:15:55.018530 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.018689 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T18:15:55.018714 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.018960 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T18:15:55.018985 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.019627 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.56 ms +I, [2018-07-25T18:15:55.019667 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.019911 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T18:15:55.019947 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.020174 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T18:15:55.020207 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.020449 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T18:15:55.020483 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.020673 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T18:15:55.020706 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.020943 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T18:15:55.020974 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.021165 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T18:15:55.021190 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.021422 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T18:15:55.021502 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.021666 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T18:15:55.021692 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.021888 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T18:15:55.021915 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.022102 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T18:15:55.022127 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.022278 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T18:15:55.022738 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.023108 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-07-25T18:15:55.023143 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.023412 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T18:15:55.023447 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.023638 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T18:15:55.023698 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.024142 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-07-25T18:15:55.024230 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.024814 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T18:15:55.024905 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.025206 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T18:15:55.025241 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.025517 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T18:15:55.025582 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.025776 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T18:15:55.025805 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.026096 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T18:15:55.026130 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.026372 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T18:15:55.026415 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.027326 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.78 ms +I, [2018-07-25T18:15:55.027394 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.027661 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T18:15:55.027685 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.027841 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T18:15:55.027918 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.028091 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T18:15:55.028114 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.028268 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T18:15:55.028290 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.029213 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.84 ms +I, [2018-07-25T18:15:55.029458 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.029673 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T18:15:55.029696 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.029860 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T18:15:55.029904 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.030507 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T18:15:55.030532 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.030703 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T18:15:55.030724 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.030894 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T18:15:55.030923 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.031051 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-25T18:15:55.031070 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.031216 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T18:15:55.031236 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.031410 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T18:15:55.031434 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.031561 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-25T18:15:55.031581 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.030214 #5] INFO -- : Inline processing of topic course_change with 1 messages took 30.31 ms +I, [2018-07-25T18:15:55.038199 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:55.038443 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-07-25T18:15:55.038466 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:55.038619 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-07-25T18:15:55.038640 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:55.038789 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-07-25T18:15:55.038810 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:55.039443 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.56 ms +I, [2018-07-25T18:15:55.039477 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:55.039660 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T18:15:55.039681 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:55.039807 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.07 ms +I, [2018-07-25T18:15:55.039826 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:55.039999 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-07-25T18:15:55.040021 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:55.040163 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-07-25T18:15:55.040183 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:55.040300 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.07 ms +I, [2018-07-25T18:15:55.040319 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:55.040526 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T18:15:55.040556 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:55.040706 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-07-25T18:15:55.040726 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:55.040846 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.07 ms +I, [2018-07-25T18:15:55.040913 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:55.041051 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-07-25T18:15:55.041071 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:55.041209 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-07-25T18:15:55.041229 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:55.041347 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.07 ms +I, [2018-07-25T18:15:55.041740 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:55.041890 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-07-25T18:15:55.041931 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:55.042084 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-07-25T18:15:55.042105 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:55.042225 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.07 ms +I, [2018-07-25T18:15:55.042271 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:55.042390 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.07 ms +I, [2018-07-25T18:15:55.042429 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:55.042577 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-07-25T18:15:55.042598 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:55.042736 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.07 ms +I, [2018-07-25T18:15:55.042756 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:55.042873 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.07 ms +I, [2018-07-25T18:15:55.042892 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:55.043072 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-07-25T18:15:55.043092 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:55.043231 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-07-25T18:15:55.043251 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:55.043368 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.07 ms +I, [2018-07-25T18:15:55.043387 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:55.043556 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-07-25T18:15:55.043578 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:55.044396 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.7 ms +I, [2018-07-25T18:15:55.044557 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:55.044855 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-07-25T18:15:55.044895 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:55.045221 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-07-25T18:15:55.045322 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:55.045675 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-07-25T18:15:55.045711 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:55.045978 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-07-25T18:15:55.046027 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:55.046318 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-07-25T18:15:55.046351 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:55.046614 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-07-25T18:15:55.046647 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:55.046836 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T18:15:55.046864 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:55.047121 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T18:15:55.047152 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:55.047366 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-07-25T18:15:55.047394 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:55.047872 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.26 ms +I, [2018-07-25T18:15:55.047961 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:55.048247 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-07-25T18:15:55.048907 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:55.049182 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-07-25T18:15:55.049218 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:55.049480 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-07-25T18:15:55.049516 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:55.049742 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T18:15:55.049776 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:55.050017 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-07-25T18:15:55.050052 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:55.050265 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-07-25T18:15:55.050297 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:55.050580 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-07-25T18:15:55.050614 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:55.050795 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-07-25T18:15:55.050821 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:55.051067 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-07-25T18:15:55.051108 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:55.051300 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T18:15:55.051324 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:55.051491 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-07-25T18:15:55.051517 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:55.051701 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T18:15:55.051726 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:55.052319 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.5 ms +I, [2018-07-25T18:15:55.052361 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:55.052576 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T18:15:55.052610 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:55.052834 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-07-25T18:15:55.052867 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:55.053156 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-07-25T18:15:55.053190 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:55.053377 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T18:15:55.053409 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:55.053687 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-07-25T18:15:55.053721 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:55.053950 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-07-25T18:15:55.053985 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:55.054163 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-07-25T18:15:55.054190 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:55.054370 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-07-25T18:15:55.054394 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:55.054647 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-07-25T18:15:55.054673 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:55.054823 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-07-25T18:15:55.054846 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:55.055079 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-07-25T18:15:55.055627 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:55.056004 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.25 ms +I, [2018-07-25T18:15:55.056039 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:55.056198 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-07-25T18:15:55.056219 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:55.056370 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-07-25T18:15:55.056390 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:55.056573 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-07-25T18:15:55.056594 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:55.056710 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.07 ms +I, [2018-07-25T18:15:55.057062 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:55.057260 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-07-25T18:15:55.057285 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:55.057485 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T18:15:55.057511 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:55.057666 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-07-25T18:15:55.057686 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:55.057808 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.07 ms +I, [2018-07-25T18:15:55.057828 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:55.057986 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-07-25T18:15:55.058009 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:55.058161 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-07-25T18:15:55.058181 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:55.058301 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.07 ms +I, [2018-07-25T18:15:55.058321 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:55.058483 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T18:15:55.058506 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:55.058653 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-07-25T18:15:55.058673 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:55.058793 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.07 ms +I, [2018-07-25T18:15:55.058812 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:55.058989 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T18:15:55.059013 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:55.059602 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T18:15:55.059627 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:55.059774 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-07-25T18:15:55.059795 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:55.059915 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.07 ms +I, [2018-07-25T18:15:55.059973 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:55.060104 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-07-25T18:15:55.060140 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:55.060276 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.07 ms +I, [2018-07-25T18:15:55.060297 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:55.060438 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.07 ms +I, [2018-07-25T18:15:55.060482 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:55.060611 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-07-25T18:15:55.060631 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:55.060897 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-07-25T18:15:55.060920 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:55.061117 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-07-25T18:15:55.061140 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:55.061287 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-07-25T18:15:55.061307 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:55.061497 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-07-25T18:15:55.061521 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:55.057006 #5] INFO -- : Inline processing of topic section_change with 1 messages took 25.34 ms +I, [2018-07-25T18:15:55.061687 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.071336 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T18:15:55.071388 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.071700 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T18:15:55.071741 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.072005 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T18:15:55.072535 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.072781 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T18:15:55.072810 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.073050 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T18:15:55.073081 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.073287 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T18:15:55.073314 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.073536 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T18:15:55.073566 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.073739 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T18:15:55.073766 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.073966 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T18:15:55.074031 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.074243 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T18:15:55.074270 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.074463 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T18:15:55.074923 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.075251 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T18:15:55.075311 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.075609 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T18:15:55.075650 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.075908 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T18:15:55.076004 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.076238 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T18:15:55.076272 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.076531 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T18:15:55.076567 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.076781 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T18:15:55.076830 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.077062 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T18:15:55.077105 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.077302 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T18:15:55.077328 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.077620 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T18:15:55.077650 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.077861 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T18:15:55.077887 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.078458 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.5 ms +I, [2018-07-25T18:15:55.078547 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.078809 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T18:15:55.078844 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.079116 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T18:15:55.079152 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.079393 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T18:15:55.079427 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.079695 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T18:15:55.079731 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.079986 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T18:15:55.080040 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.080259 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T18:15:55.080286 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.080487 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T18:15:55.080534 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.080756 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T18:15:55.080782 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.080994 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T18:15:55.081028 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.081697 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.59 ms +I, [2018-07-25T18:15:55.081738 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.081991 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T18:15:55.082061 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.082374 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T18:15:55.082409 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.082715 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T18:15:55.082751 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.083044 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T18:15:55.083082 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.083366 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T18:15:55.083396 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.083626 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T18:15:55.083654 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.083968 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T18:15:55.084268 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.084898 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-25T18:15:55.084946 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.090120 #5] INFO -- : Inline processing of topic section_change with 1 messages took 5.0 ms +I, [2018-07-25T18:15:55.090183 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.090432 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T18:15:55.090453 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.090715 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T18:15:55.090739 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.090922 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T18:15:55.090941 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.091157 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T18:15:55.091179 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.091320 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T18:15:55.091338 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.091481 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T18:15:55.091500 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.091654 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T18:15:55.091684 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.091829 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T18:15:55.091848 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.092082 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T18:15:55.092579 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.092800 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T18:15:55.092823 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.092978 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T18:15:55.093022 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.093221 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T18:15:55.093244 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.093439 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T18:15:55.093460 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.093672 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T18:15:55.093697 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.093886 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T18:15:55.093908 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.094093 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T18:15:55.094120 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.094298 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T18:15:55.094329 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.094507 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T18:15:55.094527 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.092496 #5] INFO -- : Inline processing of topic course_change with 1 messages took 30.91 ms +I, [2018-07-25T18:15:55.094756 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:55.095988 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-07-25T18:15:55.096021 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:55.096276 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-07-25T18:15:55.096300 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:55.096462 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-07-25T18:15:55.096495 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:55.096665 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T18:15:55.096688 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:55.096876 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-07-25T18:15:55.096902 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:55.097061 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-07-25T18:15:55.097089 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:55.097241 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-07-25T18:15:55.097265 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:55.097414 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-07-25T18:15:55.097439 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:55.097606 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T18:15:55.097629 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:55.097806 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T18:15:55.097827 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:55.097976 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-07-25T18:15:55.097996 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:55.098611 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.54 ms +I, [2018-07-25T18:15:55.098643 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:55.098797 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-07-25T18:15:55.098825 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:55.098975 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-07-25T18:15:55.099001 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:55.099181 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T18:15:55.099208 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:55.100533 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T18:15:55.100591 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:55.100749 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-07-25T18:15:55.100770 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:55.100924 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-07-25T18:15:55.100945 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:55.101129 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-07-25T18:15:55.101153 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:55.101284 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-07-25T18:15:55.101304 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:55.101460 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T18:15:55.101480 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:55.101706 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-07-25T18:15:55.101731 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:55.101861 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.07 ms +I, [2018-07-25T18:15:55.102283 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:55.102463 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T18:15:55.102484 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:55.102694 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-07-25T18:15:55.102717 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:55.102846 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.07 ms +I, [2018-07-25T18:15:55.102866 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:55.103032 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-07-25T18:15:55.103053 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:55.103242 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T18:15:55.103264 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:55.103383 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.07 ms +I, [2018-07-25T18:15:55.103403 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:55.103544 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.07 ms +I, [2018-07-25T18:15:55.103579 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:55.103838 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-07-25T18:15:55.103871 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:55.104175 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-07-25T18:15:55.104214 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:55.104482 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-07-25T18:15:55.104547 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:55.105045 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.25 ms +I, [2018-07-25T18:15:55.105211 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:55.106197 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.82 ms +I, [2018-07-25T18:15:55.106257 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:55.106596 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-07-25T18:15:55.106633 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:55.106877 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-07-25T18:15:55.106902 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:55.107062 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-07-25T18:15:55.107129 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:55.107335 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T18:15:55.107370 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:55.107542 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-07-25T18:15:55.107563 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:55.107861 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-07-25T18:15:55.107887 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:55.108019 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-07-25T18:15:55.108039 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:55.108274 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-07-25T18:15:55.108302 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:55.108460 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-07-25T18:15:55.108481 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:55.108869 #5] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-07-25T18:15:55.108936 #5] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-07-25T18:15:55.111235 #5] INFO -- : Inline processing of topic section_change with 1 messages took 16.36 ms +I, [2018-07-25T18:15:55.111400 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.111788 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T18:15:55.111838 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.112207 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T18:15:55.112251 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.112913 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.5 ms +I, [2018-07-25T18:15:55.112953 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.113219 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T18:15:55.113244 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.113409 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T18:15:55.113430 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.113578 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T18:15:55.113636 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.113804 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T18:15:55.113825 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.113958 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T18:15:55.113978 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.114154 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T18:15:55.114177 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.114353 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T18:15:55.114374 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.114971 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T18:15:55.114999 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.115161 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T18:15:55.115185 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.115342 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T18:15:55.115364 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.115506 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T18:15:55.115526 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.115676 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T18:15:55.115699 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.115866 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T18:15:55.115886 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.116032 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T18:15:55.116073 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.116228 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T18:15:55.116268 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.116393 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-25T18:15:55.116413 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.116556 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T18:15:55.116576 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.117143 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.45 ms +I, [2018-07-25T18:15:55.117178 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.117349 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T18:15:55.117376 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.117538 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T18:15:55.117561 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.117790 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T18:15:55.117814 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.117948 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-25T18:15:55.117969 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.118142 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T18:15:55.118165 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.118315 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T18:15:55.118335 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.118455 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-25T18:15:55.118474 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.118641 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T18:15:55.118665 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.118816 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T18:15:55.118836 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.118954 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-25T18:15:55.118996 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.119138 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T18:15:55.119161 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.119576 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T18:15:55.119599 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.119799 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T18:15:55.119821 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.119943 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-25T18:15:55.119963 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.120122 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T18:15:55.120149 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.120301 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T18:15:55.120321 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.120441 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-25T18:15:55.120461 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.120599 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T18:15:55.120650 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.120803 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T18:15:55.120822 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.120940 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-25T18:15:55.120959 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.121099 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-25T18:15:55.121176 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.121336 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T18:15:55.121355 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.121774 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-07-25T18:15:55.121801 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.121963 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T18:15:55.121984 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.122172 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T18:15:55.122196 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.122325 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T18:15:55.122364 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.122485 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-25T18:15:55.122505 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.122717 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T18:15:55.122740 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.122887 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T18:15:55.122907 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.123027 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-25T18:15:55.123047 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.123221 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T18:15:55.123243 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.123386 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T18:15:55.123406 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.123573 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T18:15:55.123596 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.123781 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T18:15:55.124296 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.124977 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.4 ms +I, [2018-07-25T18:15:55.125113 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.126069 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-07-25T18:15:55.126404 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.126883 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-07-25T18:15:55.126934 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.127321 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-25T18:15:55.127361 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.127662 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T18:15:55.127704 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.127949 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T18:15:55.127986 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.128227 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T18:15:55.128263 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.128526 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T18:15:55.128561 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.128863 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T18:15:55.128895 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.129751 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.72 ms +I, [2018-07-25T18:15:55.129809 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.130066 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T18:15:55.130120 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.130460 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T18:15:55.130495 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.130799 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T18:15:55.130833 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.131084 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T18:15:55.131116 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.131343 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T18:15:55.131409 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.131592 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T18:15:55.131619 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.131887 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T18:15:55.131933 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.132274 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T18:15:55.132324 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.132586 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T18:15:55.132624 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.133381 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.59 ms +I, [2018-07-25T18:15:55.133419 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.133738 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T18:15:55.133773 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.134032 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T18:15:55.134062 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.134283 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T18:15:55.134315 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.134543 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T18:15:55.134574 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.134815 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T18:15:55.134847 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.135095 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T18:15:55.135125 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.135357 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T18:15:55.135389 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.135620 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T18:15:55.135665 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.135894 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T18:15:55.135923 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.136576 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.56 ms +I, [2018-07-25T18:15:55.136611 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.136871 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T18:15:55.136903 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.137139 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T18:15:55.137228 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.137478 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T18:15:55.137507 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.137749 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T18:15:55.137785 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.138011 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T18:15:55.138082 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.138455 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T18:15:55.138497 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.138833 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T18:15:55.138875 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.139223 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T18:15:55.139280 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.139547 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T18:15:55.139620 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.140399 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.63 ms +I, [2018-07-25T18:15:55.140442 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.140707 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T18:15:55.140741 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.140955 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T18:15:55.140984 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.141161 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T18:15:55.141224 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.141431 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T18:15:55.141463 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.141696 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T18:15:55.141727 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.141925 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T18:15:55.141951 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.142133 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T18:15:55.142159 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.142367 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T18:15:55.142394 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.142585 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T18:15:55.142610 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.142812 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T18:15:55.142838 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.143024 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T18:15:55.143433 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.143621 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T18:15:55.143710 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.143913 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T18:15:55.143941 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.144150 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T18:15:55.144197 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.144650 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-07-25T18:15:55.145450 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.145935 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-07-25T18:15:55.145976 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.146255 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T18:15:55.146289 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.146538 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T18:15:55.146569 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.146790 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T18:15:55.146824 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.147050 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T18:15:55.147082 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.147349 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T18:15:55.147384 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.147619 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T18:15:55.147652 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.148589 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.66 ms +I, [2018-07-25T18:15:55.148651 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.149045 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T18:15:55.149079 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.149394 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T18:15:55.149479 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.149746 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T18:15:55.149779 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.150015 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T18:15:55.150053 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.150339 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T18:15:55.150378 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.150629 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T18:15:55.150666 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.150930 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T18:15:55.150974 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.151296 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T18:15:55.151335 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.151614 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T18:15:55.151652 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.151922 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T18:15:55.151960 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.152208 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T18:15:55.152620 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.152900 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T18:15:55.152931 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.153143 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T18:15:55.153171 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.153407 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T18:15:55.153437 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.153649 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T18:15:55.153676 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.153921 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T18:15:55.153956 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.154165 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T18:15:55.154192 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.154408 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T18:15:55.154435 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.154633 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T18:15:55.154660 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.154884 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T18:15:55.154913 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.155107 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T18:15:55.155134 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.155435 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T18:15:55.155465 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.156070 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.52 ms +I, [2018-07-25T18:15:55.156131 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.156362 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T18:15:55.156390 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.156620 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T18:15:55.156653 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.156914 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T18:15:55.156942 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.157180 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T18:15:55.157206 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.157509 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T18:15:55.157542 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.157853 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T18:15:55.157889 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.158132 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T18:15:55.158175 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.158464 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T18:15:55.158865 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.159140 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T18:15:55.159176 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.159510 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T18:15:55.159547 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.159817 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T18:15:55.159853 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.160129 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T18:15:55.160164 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.160434 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T18:15:55.160470 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.160773 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T18:15:55.160810 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.161077 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T18:15:55.161112 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.161413 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T18:15:55.161471 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.162127 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.55 ms +I, [2018-07-25T18:15:55.162202 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.162563 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T18:15:55.162600 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.162888 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T18:15:55.162923 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.163287 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T18:15:55.163325 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.163613 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T18:15:55.163648 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.164031 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T18:15:55.164101 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.164422 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T18:15:55.164584 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.165088 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-07-25T18:15:55.165218 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.165567 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T18:15:55.165608 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.166522 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.78 ms +I, [2018-07-25T18:15:55.166587 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.167057 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T18:15:55.167135 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.167524 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T18:15:55.167553 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.167729 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T18:15:55.167784 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.167965 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T18:15:55.167984 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.168170 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T18:15:55.168189 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.168430 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T18:15:55.168451 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.168605 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T18:15:55.168624 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.168795 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T18:15:55.169087 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.169346 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T18:15:55.169377 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.169544 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T18:15:55.169566 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.169721 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T18:15:55.169787 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.169975 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T18:15:55.169998 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.170180 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T18:15:55.170209 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.170461 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T18:15:55.170490 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.170672 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T18:15:55.170700 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.171908 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.08 ms +I, [2018-07-25T18:15:55.171941 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.172125 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T18:15:55.172146 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.172626 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.41 ms +I, [2018-07-25T18:15:55.172659 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.172914 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T18:15:55.172941 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.173111 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T18:15:55.173133 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.173312 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T18:15:55.173345 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.173537 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T18:15:55.173558 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.173737 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T18:15:55.173780 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.173978 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T18:15:55.173999 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.174168 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T18:15:55.174189 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.174362 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T18:15:55.174384 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.174553 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-25T18:15:55.174573 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.175015 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-07-25T18:15:55.175042 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.175230 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T18:15:55.175250 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.175434 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T18:15:55.175456 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.175656 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T18:15:55.175686 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.175933 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T18:15:55.175965 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.176157 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T18:15:55.176179 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.176327 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T18:15:55.176351 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.176502 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-25T18:15:55.176522 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.176673 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T18:15:55.176693 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.176837 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T18:15:55.176859 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.177005 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-25T18:15:55.177025 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.177464 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-07-25T18:15:55.177490 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.177628 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T18:15:55.177669 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.177879 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T18:15:55.177902 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.178060 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T18:15:55.178081 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.178227 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T18:15:55.178248 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.178397 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T18:15:55.178418 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.178559 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T18:15:55.178579 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.178723 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T18:15:55.178743 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.178890 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T18:15:55.178912 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.179056 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-25T18:15:55.179076 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.179218 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T18:15:55.179238 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.179386 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T18:15:55.179432 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.179862 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T18:15:55.179887 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.180040 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T18:15:55.180061 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.180204 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-25T18:15:55.180224 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.180370 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T18:15:55.180392 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.180541 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T18:15:55.180560 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.180714 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T18:15:55.180734 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.180892 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T18:15:55.180940 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.181062 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-25T18:15:55.181082 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.181244 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T18:15:55.181263 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.181478 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T18:15:55.181500 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.181959 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-07-25T18:15:55.181991 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.182195 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T18:15:55.182218 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.182459 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T18:15:55.182484 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.182669 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T18:15:55.182690 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.182875 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T18:15:55.182898 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.183050 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T18:15:55.183070 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.183243 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T18:15:55.183263 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.183453 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T18:15:55.183476 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.183622 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T18:15:55.183662 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.184216 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.41 ms +I, [2018-07-25T18:15:55.184541 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.184917 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T18:15:55.184958 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.185230 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T18:15:55.185264 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.185593 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T18:15:55.185619 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.185784 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T18:15:55.185871 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.186036 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T18:15:55.186085 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.186240 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T18:15:55.186265 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.186550 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T18:15:55.186597 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.186853 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T18:15:55.186892 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.187471 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.49 ms +I, [2018-07-25T18:15:55.187520 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.187760 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T18:15:55.187784 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.188110 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T18:15:55.188150 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.188678 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.42 ms +I, [2018-07-25T18:15:55.188721 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.189036 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T18:15:55.189063 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.189249 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T18:15:55.189270 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.189477 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T18:15:55.189500 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.189647 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T18:15:55.189667 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.189832 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T18:15:55.189855 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.189982 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-25T18:15:55.190021 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.190464 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-07-25T18:15:55.190490 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.190655 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T18:15:55.190676 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.190868 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-25T18:15:55.190897 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.191028 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T18:15:55.191048 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.191190 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T18:15:55.191209 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.191380 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T18:15:55.191402 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.191529 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-25T18:15:55.191548 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.191687 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T18:15:55.191706 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.191871 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T18:15:55.191893 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.192018 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-25T18:15:55.192038 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.192177 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-25T18:15:55.192228 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.192399 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T18:15:55.192666 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.192841 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T18:15:55.192868 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.193026 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T18:15:55.193046 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.193246 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T18:15:55.193270 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.193459 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T18:15:55.193482 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T18:15:55.193610 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-25T18:15:55.193630 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:13:25.350400 #6] INFO -- : New topics added to target list: section_change +I, [2018-07-25T19:13:25.350522 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-07-25T19:13:25.351626 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.6:9094 +E, [2018-07-25T19:13:25.351749 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.6:9094 +E, [2018-07-25T19:13:30.353384 #6] 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.6:9094 +I, [2018-07-25T19:13:30.354194 #6] INFO -- : New topics added to target list: section_change +I, [2018-07-25T19:13:30.354259 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-07-25T19:13:30.354696 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.6:9094 +E, [2018-07-25T19:13:30.357387 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.6:9094 +E, [2018-07-25T19:13:35.361751 #6] 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.6:9094 +I, [2018-07-25T19:13:35.362964 #6] INFO -- : New topics added to target list: section_change +I, [2018-07-25T19:13:35.363038 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-07-25T19:13:35.364218 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.6:9094 +E, [2018-07-25T19:13:35.364347 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.6:9094 +E, [2018-07-25T19:13:40.365058 #6] 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.6:9094 +I, [2018-07-25T19:13:40.366257 #6] INFO -- : New topics added to target list: section_change +I, [2018-07-25T19:13:40.366339 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-07-25T19:13:40.396266 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-07-25T19:13:40.396456 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-07-25T19:13:40.466474 #6] ERROR -- : Failed to find coordinator for group `notifications_notifications`; retrying... +I, [2018-07-25T19:13:40.474061 #6] INFO -- : Will fetch at most 1048576 bytes at a time per partition from section_change +I, [2018-07-25T19:13:40.474200 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-07-25T19:13:40.499795 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-07-25T19:13:40.500183 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T19:13:41.468294 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-07-25T19:13:41.500463 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-07-25T19:13:41.505741 #6] ERROR -- : Failed to find coordinator for group `notifications_notifications`; retrying... +I, [2018-07-25T19:13:42.506206 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-07-25T19:13:42.506511 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-07-25T19:13:42.564971 #6] ERROR -- : Failed to find coordinator for group `notifications_notifications`; retrying... +I, [2018-07-25T19:13:43.506952 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T19:13:43.569609 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-07-25T19:13:44.507177 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T19:13:45.507898 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T19:13:46.508508 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T19:13:47.508850 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T19:13:48.509140 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T19:13:49.509534 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T19:13:50.510035 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T19:13:51.510288 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T19:13:52.511318 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T19:13:53.511516 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T19:13:54.512140 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T19:13:55.512641 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T19:13:56.512978 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T19:13:57.513163 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T19:13:58.513725 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T19:13:59.514167 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T19:14:00.520418 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T19:14:01.520881 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T19:14:02.523635 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T19:14:03.524553 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T19:14:04.525988 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T19:14:05.526993 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T19:14:06.531602 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T19:14:07.531861 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T19:14:08.532378 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T19:14:09.533354 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T19:14:10.533627 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T19:14:11.534046 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T19:14:12.534394 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T19:14:13.379611 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-09215a4c-ae0a-46e6-b3e0-2bc5962b244d` +I, [2018-07-25T19:14:13.379704 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-07-25T19:14:13.521776 #6] INFO -- : Partitions assigned for `section_change`: 0 +I, [2018-07-25T19:14:13.534985 #6] INFO -- : Seeking section_change/0 to offset 1 +I, [2018-07-25T19:14:13.535101 #6] INFO -- : New topics added to target list: section_change +I, [2018-07-25T19:14:13.535128 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-07-25T19:14:13.543524 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-07-25T19:14:15.543128 #6] INFO -- : Committing offsets with recommit: section_change/0:1 +E, [2018-07-25T19:14:15.633410 #6] ERROR -- : Exception raised when processing section_change/0 at offset 1 -- NameError: uninitialized constant EventStream::ExampleCtrl +/usr/src/app/app/controllers/eventstream.rb:273:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:8:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-07-25T19:16:01.638595 #5] INFO -- : New topics added to target list: section_change +I, [2018-07-25T19:16:01.638673 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-07-25T19:16:01.646971 #5] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-07-25T19:16:01.647415 #5] INFO -- : Joining group `notifications_notifications` +I, [2018-07-25T19:16:01.656696 #5] INFO -- : Joined group `notifications_notifications` with member id `notifications-cef862e5-179b-454d-8404-73fe579141e8` +I, [2018-07-25T19:16:01.656751 #5] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-07-25T19:16:01.660712 #5] INFO -- : Partitions assigned for `section_change`: 0 +I, [2018-07-25T19:16:01.738768 #5] INFO -- : Will fetch at most 1048576 bytes at a time per partition from section_change +I, [2018-07-25T19:16:01.738837 #5] INFO -- : Seeking section_change/0 to offset 1 +I, [2018-07-25T19:16:01.738963 #5] INFO -- : New topics added to target list: section_change +I, [2018-07-25T19:16:01.738999 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-07-25T19:16:01.743053 #5] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-07-25T19:16:03.663189 #5] INFO -- : Committing offsets with recommit: section_change/0:1 +I, [2018-07-25T19:16:03.667100 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.92 ms +I, [2018-07-25T19:16:03.667134 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.667303 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T19:16:03.667322 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.667504 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T19:16:03.667540 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.667687 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T19:16:03.667705 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.667834 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T19:16:03.667852 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.667976 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T19:16:03.668013 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.668139 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T19:16:03.668157 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.668280 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T19:16:03.668296 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.668424 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T19:16:03.668481 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.668700 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T19:16:03.668734 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.668976 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T19:16:03.669002 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.669192 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T19:16:03.669214 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.669362 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T19:16:03.669382 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.669576 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T19:16:03.669629 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.669789 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T19:16:03.669810 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.669987 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T19:16:03.670009 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.670162 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T19:16:03.670181 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.670332 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T19:16:03.670352 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.670525 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T19:16:03.670547 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.670698 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T19:16:03.670718 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.671520 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T19:16:03.671549 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.671745 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T19:16:03.671763 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.671903 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-25T19:16:03.671921 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.672118 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T19:16:03.672138 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.672278 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T19:16:03.672295 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.672432 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T19:16:03.672468 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.672648 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T19:16:03.672665 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.672798 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T19:16:03.672815 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.672944 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T19:16:03.672997 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.673148 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T19:16:03.673165 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.673292 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T19:16:03.673336 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.673798 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T19:16:03.673830 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.674029 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T19:16:03.674053 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.674212 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T19:16:03.674233 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.674378 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T19:16:03.674398 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.674568 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T19:16:03.674590 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.674733 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T19:16:03.674754 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.675488 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.68 ms +I, [2018-07-25T19:16:03.675557 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.675759 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T19:16:03.675787 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.675945 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T19:16:03.675983 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.676141 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T19:16:03.676161 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.676319 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T19:16:03.676338 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.676500 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T19:16:03.676523 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.676672 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T19:16:03.676757 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.677157 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T19:16:03.677180 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.677326 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T19:16:03.677346 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.677517 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T19:16:03.677540 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.677685 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T19:16:03.677705 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.677845 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-25T19:16:03.677878 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.678103 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T19:16:03.678122 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.678254 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-25T19:16:03.678272 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.678376 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-25T19:16:03.678393 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.678591 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T19:16:03.678612 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.678777 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T19:16:03.678793 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.678921 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T19:16:03.678938 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.679209 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T19:16:03.679231 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.679426 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T19:16:03.679448 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.679595 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T19:16:03.679615 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.679752 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T19:16:03.679771 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.679909 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T19:16:03.679928 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.680083 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T19:16:03.680104 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.680268 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T19:16:03.680287 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.680438 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T19:16:03.680468 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.680592 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T19:16:03.680609 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.680731 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T19:16:03.680747 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.680869 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T19:16:03.680939 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.681334 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T19:16:03.681357 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.681513 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T19:16:03.681533 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.683499 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T19:16:03.683537 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.683709 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T19:16:03.683731 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.683949 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T19:16:03.683992 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.684179 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T19:16:03.684201 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.684343 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T19:16:03.684364 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.684499 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T19:16:03.684523 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.684671 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T19:16:03.684690 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.684834 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T19:16:03.684861 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.685354 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.4 ms +I, [2018-07-25T19:16:03.685383 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.685563 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T19:16:03.685585 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.685757 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T19:16:03.685783 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.685953 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T19:16:03.685976 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.686122 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T19:16:03.686142 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.686278 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T19:16:03.686297 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.686463 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T19:16:03.686485 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.686626 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T19:16:03.686646 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.686789 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T19:16:03.686810 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.687015 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T19:16:03.687040 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.687188 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T19:16:03.687209 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.687482 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T19:16:03.687509 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.687664 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T19:16:03.687686 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.687881 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T19:16:03.687905 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.688059 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T19:16:03.688079 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.688218 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T19:16:03.688238 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.688411 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T19:16:03.688497 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.688652 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T19:16:03.688672 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.688884 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T19:16:03.688906 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.689049 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T19:16:03.689074 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.689218 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T19:16:03.689238 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.689425 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T19:16:03.689448 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.689607 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T19:16:03.689977 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.690197 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T19:16:03.690224 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.690401 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T19:16:03.690421 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.690583 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T19:16:03.690606 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.690790 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T19:16:03.690824 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.691000 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T19:16:03.691061 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.691258 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T19:16:03.692488 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.692671 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T19:16:03.692694 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.692872 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T19:16:03.692894 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.693035 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T19:16:03.693056 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.693215 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T19:16:03.693266 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.693751 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.41 ms +I, [2018-07-25T19:16:03.693778 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.693931 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T19:16:03.693951 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.694089 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T19:16:03.694109 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.694245 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-25T19:16:03.694265 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.694402 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T19:16:03.694421 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.694553 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T19:16:03.694572 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.694760 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T19:16:03.694783 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.694972 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T19:16:03.695024 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.695234 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T19:16:03.695255 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.695453 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T19:16:03.695474 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.695771 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T19:16:03.695796 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.696141 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T19:16:03.696171 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.696374 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T19:16:03.696399 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.696571 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T19:16:03.696592 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.696761 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T19:16:03.696783 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.696931 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-25T19:16:03.696951 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.697094 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-25T19:16:03.697114 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.697307 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T19:16:03.697329 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.697478 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-25T19:16:03.697499 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.697681 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T19:16:03.697706 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.697852 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T19:16:03.697872 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.698012 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T19:16:03.698048 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.698190 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T19:16:03.698470 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.698653 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T19:16:03.698698 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.698852 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T19:16:03.698872 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.699021 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T19:16:03.699041 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.699187 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T19:16:03.699207 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.699346 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T19:16:03.699366 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.699512 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T19:16:03.699532 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.699721 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T19:16:03.699745 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.699907 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T19:16:03.699928 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.700122 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T19:16:03.700144 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.700307 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T19:16:03.700340 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.700629 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T19:16:03.700657 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.700850 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T19:16:03.700872 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.701023 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T19:16:03.701043 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.701190 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T19:16:03.701209 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.701399 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T19:16:03.701420 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.701606 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T19:16:03.701629 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.701778 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T19:16:03.701797 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.701940 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T19:16:03.701959 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.702107 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T19:16:03.702126 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.702266 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T19:16:03.702285 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.702439 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T19:16:03.702459 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.702898 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-07-25T19:16:03.702929 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.703128 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T19:16:03.703176 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.703311 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T19:16:03.703332 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.703489 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T19:16:03.703510 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.703725 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T19:16:03.703747 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.703900 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T19:16:03.703920 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.704087 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T19:16:03.704109 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.704276 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T19:16:03.704296 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.704462 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T19:16:03.704483 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.704681 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T19:16:03.704705 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.704854 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T19:16:03.704875 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.705183 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-25T19:16:03.705208 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.705362 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T19:16:03.705382 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.705564 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T19:16:03.705588 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.705745 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T19:16:03.705767 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.705909 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T19:16:03.705928 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.706060 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T19:16:03.706080 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.706215 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T19:16:03.706235 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.706379 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T19:16:03.706397 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.706553 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T19:16:03.706573 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.706706 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T19:16:03.706725 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.706858 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T19:16:03.706876 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.707002 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T19:16:03.707020 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.707476 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T19:16:03.707517 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.707669 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T19:16:03.707690 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.707810 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-25T19:16:03.707851 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.707973 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-25T19:16:03.707993 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.708140 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T19:16:03.708159 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.708303 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T19:16:03.708323 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.708489 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T19:16:03.708511 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.708658 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T19:16:03.708678 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.708852 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T19:16:03.708873 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.709025 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T19:16:03.709046 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.709192 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T19:16:03.709266 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.709508 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T19:16:03.709532 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.709687 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T19:16:03.709707 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.709850 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T19:16:03.709870 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.710106 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T19:16:03.710129 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.710279 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T19:16:03.710300 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.710454 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T19:16:03.710476 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.710637 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T19:16:03.710657 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.710808 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T19:16:03.710828 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.710980 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T19:16:03.711000 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.711151 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T19:16:03.711170 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.711585 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-07-25T19:16:03.711610 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.711788 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T19:16:03.711810 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.711966 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T19:16:03.711986 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.712157 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T19:16:03.712176 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.712309 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T19:16:03.712336 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.712511 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T19:16:03.712542 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.712660 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-25T19:16:03.712678 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.712822 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T19:16:03.712840 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.712987 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T19:16:03.713005 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.713135 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T19:16:03.713154 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.713298 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T19:16:03.713450 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.713682 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T19:16:03.713705 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.713860 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T19:16:03.713881 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.714038 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T19:16:03.714070 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.714204 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-25T19:16:03.714224 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.714395 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T19:16:03.714431 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.714586 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T19:16:03.714614 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.714818 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T19:16:03.714840 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.714997 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T19:16:03.715022 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.715194 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T19:16:03.715214 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.715384 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T19:16:03.715648 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.715821 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T19:16:03.715842 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.715993 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T19:16:03.716018 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.716164 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T19:16:03.716189 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.716393 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T19:16:03.716415 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.716570 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T19:16:03.716593 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.716752 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T19:16:03.716772 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.716920 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T19:16:03.716946 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.717097 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T19:16:03.717122 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.718686 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.49 ms +I, [2018-07-25T19:16:03.718714 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.718885 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T19:16:03.718906 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.719051 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T19:16:03.719072 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.719297 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T19:16:03.719400 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.719559 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T19:16:03.719580 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.719722 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T19:16:03.719742 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.719903 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T19:16:03.719925 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.720074 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-25T19:16:03.720093 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.720260 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T19:16:03.720281 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.720428 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T19:16:03.720448 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.720587 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T19:16:03.720606 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.720763 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T19:16:03.720783 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.720949 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T19:16:03.720973 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.721124 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T19:16:03.721149 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.721553 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-07-25T19:16:03.721584 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.721747 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T19:16:03.721766 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.721937 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T19:16:03.721975 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.722111 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-25T19:16:03.722130 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.722267 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-25T19:16:03.722302 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.722436 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T19:16:03.722455 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.722588 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T19:16:03.722606 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.722715 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-25T19:16:03.722750 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.722882 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T19:16:03.722900 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.723010 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-25T19:16:03.723067 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.723211 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T19:16:03.723232 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.723651 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-07-25T19:16:03.723690 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.723849 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T19:16:03.723869 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.724032 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T19:16:03.724055 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.724231 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T19:16:03.724252 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.724416 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T19:16:03.724436 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.724587 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T19:16:03.724606 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.724768 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T19:16:03.724788 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.724938 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T19:16:03.724957 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.725088 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T19:16:03.725134 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.725337 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T19:16:03.725369 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.725565 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T19:16:03.725587 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.725920 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T19:16:03.725943 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.726104 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T19:16:03.726131 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.726278 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T19:16:03.726298 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.726446 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T19:16:03.726465 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.726607 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T19:16:03.726627 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.726773 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T19:16:03.726792 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.726931 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T19:16:03.726950 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.727120 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T19:16:03.727142 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.727287 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T19:16:03.727306 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.727441 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T19:16:03.727460 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.727632 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T19:16:03.727903 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.728097 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T19:16:03.728131 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.728345 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T19:16:03.728372 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.728515 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T19:16:03.728535 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.728677 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T19:16:03.728697 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.728846 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T19:16:03.728864 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.728997 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T19:16:03.729015 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.729170 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T19:16:03.729190 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.729312 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T19:16:03.729331 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.729459 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T19:16:03.729477 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.729649 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T19:16:03.729670 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.729810 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T19:16:03.729981 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.730174 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T19:16:03.730195 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.730347 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T19:16:03.730366 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.730530 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T19:16:03.730550 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.730694 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T19:16:03.730713 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.730854 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T19:16:03.730891 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.731067 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T19:16:03.731090 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.731242 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T19:16:03.731262 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.731404 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T19:16:03.731423 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.731573 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T19:16:03.731614 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.731993 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-07-25T19:16:03.732044 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.732194 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T19:16:03.732232 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.732369 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T19:16:03.732388 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.732571 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T19:16:03.732590 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.732767 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T19:16:03.732785 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.732969 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T19:16:03.732994 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.733150 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T19:16:03.733168 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.733309 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T19:16:03.733327 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.733502 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T19:16:03.733523 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.733723 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T19:16:03.733826 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.734027 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T19:16:03.734069 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.734234 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T19:16:03.734254 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.734417 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T19:16:03.734436 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.734599 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T19:16:03.734618 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.734782 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T19:16:03.734800 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.734948 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T19:16:03.734969 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.735111 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T19:16:03.735129 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.735257 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T19:16:03.735275 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.735414 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T19:16:03.735438 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.735845 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T19:16:03.735868 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.736071 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T19:16:03.736100 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.736245 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T19:16:03.736270 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.736416 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T19:16:03.736441 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.736587 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T19:16:03.736606 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.736775 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T19:16:03.736794 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.736975 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T19:16:03.737000 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.737168 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T19:16:03.737188 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.737340 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T19:16:03.737359 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.739072 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T19:16:03.739178 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.739454 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T19:16:03.739504 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.739669 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T19:16:03.739690 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.739870 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T19:16:03.739923 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.740127 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T19:16:03.740148 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.740298 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T19:16:03.740319 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.740459 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T19:16:03.740480 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.740622 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T19:16:03.740642 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.740803 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T19:16:03.740844 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.741052 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T19:16:03.741074 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.741231 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T19:16:03.741251 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.749080 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.45 ms +I, [2018-07-25T19:16:03.749147 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.749389 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T19:16:03.749412 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.749586 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T19:16:03.749615 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.749815 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T19:16:03.749843 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.749998 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T19:16:03.750018 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.750163 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T19:16:03.750192 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.750364 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T19:16:03.750385 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.750529 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T19:16:03.750554 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.750796 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T19:16:03.750823 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.750984 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T19:16:03.751007 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.751165 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T19:16:03.751192 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.751468 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T19:16:03.751500 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.752541 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T19:16:03.752566 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.752795 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T19:16:03.752819 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.752982 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-25T19:16:03.753002 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.753150 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-25T19:16:03.753169 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.753353 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T19:16:03.753374 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.753528 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-25T19:16:03.753546 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.753737 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T19:16:03.753758 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.753922 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T19:16:03.753942 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.754091 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T19:16:03.754110 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.754257 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T19:16:03.754276 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.754435 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-25T19:16:03.754453 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.754961 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T19:16:03.754984 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.755151 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T19:16:03.755172 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.755372 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-25T19:16:03.755393 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.755590 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T19:16:03.755614 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.755787 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T19:16:03.755809 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.755971 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T19:16:03.755992 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.756155 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T19:16:03.756175 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.756333 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T19:16:03.756353 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.756536 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T19:16:03.756560 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.756730 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T19:16:03.756750 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.756913 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T19:16:03.756934 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.757187 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T19:16:03.757277 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.757505 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T19:16:03.757534 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.757713 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T19:16:03.757734 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.757899 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T19:16:03.757919 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.758084 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T19:16:03.758105 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.758262 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T19:16:03.758283 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.758442 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T19:16:03.758462 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.758658 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T19:16:03.758679 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.758840 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T19:16:03.758860 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.759011 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T19:16:03.759031 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.759188 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T19:16:03.759207 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.759359 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T19:16:03.759731 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.759964 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T19:16:03.759986 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.760186 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T19:16:03.760208 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.760406 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T19:16:03.760427 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.760678 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T19:16:03.760701 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.760896 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T19:16:03.760917 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.761130 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T19:16:03.761202 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.761400 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T19:16:03.761471 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.761680 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T19:16:03.761701 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.761891 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T19:16:03.761912 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.762329 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-07-25T19:16:03.762355 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.762581 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T19:16:03.762605 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.762811 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T19:16:03.762832 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.763005 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T19:16:03.763042 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.763232 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T19:16:03.763253 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.763472 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T19:16:03.763515 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.763697 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T19:16:03.763719 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.764201 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-25T19:16:03.764237 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.764524 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-25T19:16:03.764574 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.765327 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T19:16:03.765359 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.766928 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.37 ms +I, [2018-07-25T19:16:03.766977 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.767240 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T19:16:03.767270 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.767504 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T19:16:03.767535 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.767751 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T19:16:03.767780 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.768599 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.73 ms +I, [2018-07-25T19:16:03.768635 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.768877 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T19:16:03.768929 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.769341 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-07-25T19:16:03.769364 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.769895 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.43 ms +I, [2018-07-25T19:16:03.769939 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.770714 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-25T19:16:03.770750 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.771873 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T19:16:03.771901 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.772439 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.44 ms +I, [2018-07-25T19:16:03.772525 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.773064 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T19:16:03.773100 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.773762 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-07-25T19:16:03.773789 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.774225 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-07-25T19:16:03.774250 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.774405 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T19:16:03.774447 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.774856 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-07-25T19:16:03.774876 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.775760 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.47 ms +I, [2018-07-25T19:16:03.776348 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.786731 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-07-25T19:16:03.786825 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.787489 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.53 ms +I, [2018-07-25T19:16:03.787529 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.787810 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T19:16:03.787861 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.788730 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.45 ms +I, [2018-07-25T19:16:03.788844 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.789437 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-07-25T19:16:03.789482 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.789759 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T19:16:03.789802 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.790035 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T19:16:03.790079 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.790648 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T19:16:03.790681 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.791215 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T19:16:03.791249 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.791883 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T19:16:03.791917 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.792109 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T19:16:03.792139 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.792721 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T19:16:03.792754 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.792943 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T19:16:03.792972 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.793900 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.82 ms +I, [2018-07-25T19:16:03.793950 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.794210 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T19:16:03.794851 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.795450 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.5 ms +I, [2018-07-25T19:16:03.795490 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.795735 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T19:16:03.795772 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.796358 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.49 ms +I, [2018-07-25T19:16:03.796396 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.796651 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T19:16:03.796684 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.797042 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-07-25T19:16:03.797063 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.797267 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T19:16:03.797301 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.797925 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.53 ms +I, [2018-07-25T19:16:03.797963 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.798154 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T19:16:03.798181 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.798961 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.7 ms +I, [2018-07-25T19:16:03.799010 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.799273 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T19:16:03.799312 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.800184 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.76 ms +I, [2018-07-25T19:16:03.800235 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.801083 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.68 ms +I, [2018-07-25T19:16:03.801174 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.802205 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.8 ms +I, [2018-07-25T19:16:03.802250 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.802434 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T19:16:03.802456 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.802869 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-07-25T19:16:03.802892 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.803025 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T19:16:03.803045 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.803161 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-25T19:16:03.803415 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.803579 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T19:16:03.803600 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.803723 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-25T19:16:03.804105 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.804251 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T19:16:03.804271 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.804719 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-07-25T19:16:03.804745 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.804895 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T19:16:03.804918 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.805795 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.76 ms +I, [2018-07-25T19:16:03.806071 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.806324 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T19:16:03.806349 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.806803 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-07-25T19:16:03.806827 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.806964 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T19:16:03.806985 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.807357 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-07-25T19:16:03.807380 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.807546 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T19:16:03.807567 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.808085 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.46 ms +I, [2018-07-25T19:16:03.808109 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.808251 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T19:16:03.808274 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.808448 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T19:16:03.813383 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.813609 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T19:16:03.813631 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.814042 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-07-25T19:16:03.814067 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.814202 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T19:16:03.814222 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.814791 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.49 ms +I, [2018-07-25T19:16:03.814818 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.817575 #5] INFO -- : Inline processing of topic section_change with 1 messages took 2.67 ms +I, [2018-07-25T19:16:03.817611 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.817845 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T19:16:03.817866 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.818046 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T19:16:03.818064 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.818247 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T19:16:03.818269 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.818428 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T19:16:03.818480 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.818656 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T19:16:03.818674 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.818817 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T19:16:03.818835 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.818995 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T19:16:03.825653 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.826019 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-25T19:16:03.826066 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.826267 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T19:16:03.826301 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.826453 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T19:16:03.826473 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.826652 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T19:16:03.826672 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.826843 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T19:16:03.826863 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.827034 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T19:16:03.827059 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.827230 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T19:16:03.827249 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.827411 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T19:16:03.827445 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.827837 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-07-25T19:16:03.827863 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.828106 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T19:16:03.828129 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.828295 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T19:16:03.828316 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.828490 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T19:16:03.828509 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.828679 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T19:16:03.828699 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.828875 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T19:16:03.828895 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.829058 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T19:16:03.829098 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.829242 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T19:16:03.829279 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.829414 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-25T19:16:03.829434 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.829752 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T19:16:03.829780 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.829981 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T19:16:03.830009 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.830197 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T19:16:03.830237 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.830368 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T19:16:03.830388 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.830573 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T19:16:03.830593 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.830774 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T19:16:03.830795 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.831002 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T19:16:03.831026 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.831226 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T19:16:03.831246 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.831400 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T19:16:03.831673 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.831855 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T19:16:03.831876 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.832053 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T19:16:03.832075 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.832218 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T19:16:03.832238 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.832400 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T19:16:03.832420 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.832574 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T19:16:03.832594 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.832745 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T19:16:03.832765 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.832940 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T19:16:03.832962 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.833142 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T19:16:03.833182 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.833306 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-25T19:16:03.833346 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.833657 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T19:16:03.833683 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.833870 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T19:16:03.833910 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.834041 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T19:16:03.834082 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.834202 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-25T19:16:03.834221 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.834373 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T19:16:03.834411 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.834573 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T19:16:03.834592 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.834749 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T19:16:03.834768 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.834937 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T19:16:03.834958 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.835114 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T19:16:03.835134 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.835274 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-25T19:16:03.835293 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.835662 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-07-25T19:16:03.835688 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.835919 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-25T19:16:03.835943 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.836100 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T19:16:03.836120 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.836278 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T19:16:03.836298 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.836435 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T19:16:03.836455 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.836594 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T19:16:03.836613 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.836765 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-25T19:16:03.836785 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.836944 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T19:16:03.836993 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.837113 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-25T19:16:03.837132 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.837268 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-25T19:16:03.837288 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.837467 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T19:16:03.837488 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.839849 #5] INFO -- : Inline processing of topic section_change with 1 messages took 2.29 ms +I, [2018-07-25T19:16:03.839885 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.840081 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T19:16:03.840103 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.840254 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T19:16:03.840274 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.840417 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T19:16:03.840437 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.840579 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T19:16:03.840599 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.840741 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T19:16:03.840783 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.840932 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-25T19:16:03.840952 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.841089 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T19:16:03.841108 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.841247 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T19:16:03.841302 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.841449 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T19:16:03.841469 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.841612 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T19:16:03.841631 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.841792 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T19:16:03.842095 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.842261 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T19:16:03.842281 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.842424 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T19:16:03.842458 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.842602 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T19:16:03.842623 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.842790 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T19:16:03.842813 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.842949 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T19:16:03.842968 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.843134 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T19:16:03.843154 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.843301 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T19:16:03.843320 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.843469 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T19:16:03.843489 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.843657 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T19:16:03.843677 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.843845 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T19:16:03.843906 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.845745 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T19:16:03.845782 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.845938 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T19:16:03.845957 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.846103 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T19:16:03.846121 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.846335 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-25T19:16:03.846358 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.846529 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T19:16:03.846550 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.846746 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T19:16:03.846769 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.846962 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T19:16:03.846983 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.847136 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T19:16:03.847166 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.847302 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T19:16:03.847595 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.847792 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T19:16:03.847815 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.847977 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T19:16:03.848005 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.848163 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T19:16:03.848182 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.848347 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T19:16:03.848367 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.848531 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T19:16:03.848551 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.848746 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T19:16:03.848769 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.848950 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T19:16:03.848970 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.849197 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T19:16:03.849221 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.849385 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T19:16:03.849483 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.849809 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T19:16:03.849836 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.850011 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T19:16:03.850040 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.850197 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T19:16:03.850217 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.850380 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T19:16:03.850407 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.850608 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T19:16:03.850637 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.850833 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T19:16:03.850856 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.851010 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T19:16:03.851037 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.851237 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T19:16:03.851998 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.852172 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T19:16:03.852194 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.852613 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-07-25T19:16:03.852640 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.852826 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T19:16:03.852848 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.852995 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T19:16:03.853015 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.853150 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T19:16:03.853170 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.853304 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T19:16:03.853324 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.853463 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T19:16:03.853483 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.853675 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T19:16:03.853697 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.853839 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T19:16:03.853859 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.853996 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T19:16:03.854016 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.854155 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T19:16:03.854175 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.854313 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T19:16:03.854334 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.854554 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T19:16:03.854653 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.854834 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T19:16:03.854855 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.855000 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T19:16:03.855043 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.855188 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T19:16:03.855209 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.855357 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T19:16:03.855377 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.855606 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-25T19:16:03.855629 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.855779 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T19:16:03.855799 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.855942 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T19:16:03.855962 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.856145 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T19:16:03.856167 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.856316 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T19:16:03.856335 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.856498 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T19:16:03.856520 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.856663 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T19:16:03.856682 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.856876 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T19:16:03.856915 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.857055 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T19:16:03.857075 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.857210 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T19:16:03.857229 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.857365 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-25T19:16:03.857384 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.857561 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T19:16:03.857582 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.857722 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-25T19:16:03.857742 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.857880 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-25T19:16:03.857899 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.858030 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T19:16:03.858050 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.858195 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T19:16:03.858215 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.858348 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T19:16:03.858367 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.858535 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T19:16:03.858557 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.858700 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T19:16:03.858765 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.858915 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T19:16:03.858975 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.859118 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T19:16:03.859138 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T19:16:03.859292 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T20:38:13.996746 #5] INFO -- : New topics added to target list: section_change +I, [2018-07-25T20:38:13.996828 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-07-25T20:38:14.009622 #5] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.9:9094 +E, [2018-07-25T20:38:14.009738 #5] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.9:9094 +E, [2018-07-25T20:38:19.010661 #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.9:9094 +I, [2018-07-25T20:38:19.011872 #5] INFO -- : New topics added to target list: section_change +I, [2018-07-25T20:38:19.011935 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-07-25T20:38:19.012347 #5] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.9:9094 +E, [2018-07-25T20:38:19.012419 #5] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.9:9094 +E, [2018-07-25T20:38:24.020985 #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.9:9094 +I, [2018-07-25T20:38:24.021778 #5] INFO -- : New topics added to target list: section_change +I, [2018-07-25T20:38:24.021823 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-07-25T20:38:25.311486 #5] ERROR -- : No brokers in cluster +E, [2018-07-25T20:38:30.314498 #5] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: + +I, [2018-07-25T20:38:30.315349 #5] INFO -- : New topics added to target list: section_change +I, [2018-07-25T20:38:30.315394 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-07-25T20:38:30.423970 #5] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-07-25T20:38:30.424211 #5] INFO -- : Joining group `notifications_notifications` +I, [2018-07-25T20:38:30.521407 #5] INFO -- : Will fetch at most 1048576 bytes at a time per partition from section_change +I, [2018-07-25T20:38:30.521534 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-07-25T20:38:30.534718 #5] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-07-25T20:38:30.534809 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T20:38:31.535385 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T20:38:32.537598 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T20:38:33.538469 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T20:38:34.544045 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T20:38:35.545348 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T20:38:35.828748 #5] INFO -- : Joined group `notifications_notifications` with member id `notifications-f8e01dca-55ca-4ec5-83f5-8bb153edf020` +I, [2018-07-25T20:38:35.828791 #5] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-07-25T20:38:36.545696 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-25T20:38:36.829432 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-07-25T20:38:36.867932 #5] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-07-25T20:38:36.905897 #5] INFO -- : Partitions assigned for `section_change`: 0 +I, [2018-07-25T20:38:37.545835 #5] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-07-25T20:38:37.545977 #5] INFO -- : New topics added to target list: section_change +I, [2018-07-25T20:38:37.546015 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-07-25T20:38:37.554654 #5] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-07-25T20:38:41.149647 #5] INFO -- : Inline processing of topic section_change with 1 messages took 7.07 ms +I, [2018-07-25T20:38:41.149714 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T20:38:41.149757 #5] INFO -- : Committing offsets with recommit: section_change/0:1 +I, [2018-07-25T20:38:41.236359 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T20:38:41.236419 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T20:38:41.236568 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-25T20:38:41.236592 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T20:38:41.236765 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T20:38:41.236791 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T20:38:41.236925 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-25T20:38:41.236946 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T20:38:41.237064 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-25T20:38:41.237107 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T20:38:41.237273 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T20:38:41.237303 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T20:38:41.237433 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-25T20:38:41.237460 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T20:38:41.237572 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-25T20:38:41.237592 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T20:38:41.237986 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-07-25T20:38:41.238023 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T20:38:41.238313 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T20:38:41.238354 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T20:38:41.238494 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-25T20:38:41.238523 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T20:38:43.239021 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T20:38:43.239086 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T20:38:43.239254 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-25T20:38:43.239281 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T20:38:43.239424 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-25T20:38:43.260456 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T20:38:43.260795 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T20:38:43.260834 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T20:38:43.261036 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T20:38:43.261068 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T20:38:43.261238 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-25T20:38:43.261274 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T20:38:43.273743 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-25T20:38:43.273830 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T20:38:43.273979 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-25T20:38:43.274005 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T20:38:43.274144 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-25T20:38:43.274199 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T20:38:43.274361 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-25T20:38:43.274404 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T20:38:43.274541 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-25T20:38:43.274571 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T20:38:43.274797 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-25T20:38:43.274855 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T20:38:43.274997 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-25T20:38:43.275020 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T20:38:43.275150 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-25T20:38:43.275173 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T20:38:43.275344 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-25T20:38:43.275386 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T20:38:43.275680 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-25T20:38:43.275842 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T20:38:43.276281 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-25T20:38:43.276322 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T20:38:43.276481 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-25T20:38:43.276505 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T20:38:43.276618 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-25T20:38:43.276638 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T20:38:43.276775 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-25T20:38:43.276797 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T20:38:43.276898 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-25T20:38:43.276918 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T20:38:45.277264 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T20:38:45.277309 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T20:38:45.277449 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-25T20:38:45.277471 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T20:38:45.277660 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-25T20:38:45.277685 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T20:38:45.277826 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-25T20:38:45.277848 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T20:38:45.277950 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-25T20:38:45.277971 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T20:38:45.278138 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-25T20:38:45.278161 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T20:38:45.278259 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-25T20:38:45.278279 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T20:38:45.278403 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-25T20:38:45.278424 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T20:38:45.278560 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-25T20:38:45.278584 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T20:38:45.278717 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-25T20:38:45.278738 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T20:38:45.278836 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-25T20:38:45.278884 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T20:38:45.278982 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-25T20:38:45.279022 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T20:38:45.279153 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-25T20:38:45.279173 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T20:38:45.295780 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T20:38:45.295860 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T20:38:45.295985 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-25T20:38:45.296007 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T20:38:45.296186 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T20:38:45.296210 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T20:38:45.296314 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-25T20:38:45.296335 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T20:38:45.296467 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-25T20:38:45.296487 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T20:38:45.296606 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-25T20:38:45.296664 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T20:38:47.297181 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T20:38:47.297283 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T20:38:47.297508 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-25T20:38:47.297541 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T20:38:47.297691 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-25T20:38:47.297781 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T20:38:47.297998 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T20:38:47.298031 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T20:38:47.298210 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T20:38:47.298242 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T20:38:47.298418 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T20:38:47.298450 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T20:38:47.298615 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-25T20:38:47.298645 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T20:38:47.298818 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T20:38:47.298848 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T20:38:47.299017 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-25T20:38:47.299048 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T20:38:47.299224 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-25T20:38:47.299256 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T20:38:47.299428 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T20:38:47.299488 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T20:38:47.299637 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-25T20:38:47.299667 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T20:38:47.299838 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-25T20:38:47.299867 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T20:38:47.300064 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-25T20:38:47.300095 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T20:38:47.300241 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-25T20:38:47.300273 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T20:38:47.300461 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-25T20:38:47.300493 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T20:38:47.300663 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-25T20:38:47.300729 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T20:38:47.300923 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-25T20:38:47.300957 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T20:38:47.301113 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-25T20:38:47.301143 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T20:38:47.301326 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-25T20:38:47.301358 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T20:38:47.301544 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-25T20:38:47.301575 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T20:38:49.302029 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T20:38:49.302121 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T20:38:49.302365 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T20:38:49.302410 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T20:38:49.302593 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-25T20:38:49.302651 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T20:38:49.302888 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T20:38:49.302915 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T20:38:49.303067 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T20:38:49.303160 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T20:38:49.303406 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-25T20:38:49.303431 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T20:38:49.314673 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T20:38:49.314720 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T20:38:49.314912 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-25T20:38:49.314937 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T20:38:49.315062 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-25T20:38:49.315084 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T20:38:49.315223 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-25T20:38:49.315264 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T20:38:49.315381 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-25T20:38:49.315413 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T20:38:49.315511 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-25T20:38:49.315561 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T20:38:49.315657 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.03 ms +I, [2018-07-25T20:38:49.315677 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T20:38:49.315809 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-25T20:38:49.315847 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T20:38:49.315943 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.03 ms +I, [2018-07-25T20:38:49.315963 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T20:38:49.316086 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-25T20:38:49.316106 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T20:38:49.316212 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-25T20:38:49.316232 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T20:38:49.316376 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-25T20:38:49.316397 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T20:38:49.316539 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-25T20:38:49.316559 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T20:38:49.316671 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-25T20:38:49.316691 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T20:38:49.316864 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-25T20:38:49.316887 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T20:38:49.317007 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-25T20:38:49.317027 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T20:38:51.317518 #5] INFO -- : Committing offsets: section_change/0:95 +I, [2018-07-25T20:38:51.329362 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T20:38:51.329410 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T20:38:51.329552 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-25T20:38:51.329572 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T20:38:51.329687 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-25T20:38:51.329713 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T20:38:51.329829 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-25T20:38:51.329850 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T20:38:51.329993 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-25T20:38:51.330020 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T20:38:51.330187 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-25T20:38:51.330215 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T20:38:51.330346 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-25T20:38:51.330367 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T20:38:51.330494 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-25T20:38:51.330515 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T20:38:51.330640 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-25T20:38:51.330671 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T20:38:51.330792 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-25T20:38:51.330812 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T20:38:51.330934 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-25T20:38:51.330963 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T20:38:51.331077 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-25T20:38:51.331102 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T20:38:51.331265 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-25T20:38:51.331292 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T20:38:51.331416 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-25T20:38:51.346065 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T20:38:51.352555 #5] INFO -- : Inline processing of topic section_change with 1 messages took 6.28 ms +I, [2018-07-25T20:38:51.352612 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T20:38:51.363388 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-25T20:38:51.363436 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T20:38:51.363631 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-25T20:38:51.363655 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T20:38:51.363814 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-25T20:38:51.363863 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T20:38:51.363967 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-25T20:38:51.363988 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T20:38:51.364234 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-25T20:38:51.364265 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T20:38:51.364381 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-25T20:38:51.364402 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T20:38:51.364541 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-25T20:38:51.364562 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T20:38:51.364661 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-25T20:38:51.364726 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T20:38:51.364879 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-25T20:38:51.364902 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T20:38:51.365027 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-25T20:38:51.365047 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T20:38:53.366196 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-25T20:38:53.366243 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T20:38:53.366440 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-25T20:38:53.366466 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T20:38:53.366575 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-25T20:38:53.366597 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T20:38:53.366752 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-25T20:38:53.366777 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T20:38:53.366907 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-25T20:38:53.366958 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T20:38:53.367062 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-25T20:38:53.367083 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T20:38:53.367202 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.03 ms +I, [2018-07-25T20:38:53.367223 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T20:38:53.367375 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-25T20:38:53.367399 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T20:38:53.367504 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-25T20:38:53.367548 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T20:38:53.367644 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.03 ms +I, [2018-07-25T20:38:53.367665 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T20:38:53.367777 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.03 ms +I, [2018-07-25T20:38:53.367797 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T20:38:53.367941 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-25T20:38:53.367964 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T20:38:53.368084 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-25T20:38:53.368105 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T20:38:53.368201 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-25T20:38:53.368221 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T20:38:53.368361 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T20:38:53.368384 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T20:38:53.368511 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-25T20:38:53.368538 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T20:38:53.368666 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-25T20:38:53.368686 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T20:38:53.368812 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-25T20:38:53.368858 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T20:38:53.368970 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-25T20:38:53.368990 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T20:38:53.371056 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-25T20:38:53.371137 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T20:38:53.383982 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T20:38:53.384024 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T20:38:53.384586 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-25T20:38:53.384646 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T20:38:53.384766 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-25T20:38:53.384792 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T20:38:55.385859 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-25T20:38:55.385919 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T20:38:55.386140 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T20:38:55.386171 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T20:38:55.386340 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-25T20:38:55.386405 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T20:38:55.386560 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-25T20:38:55.386591 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T20:38:55.386764 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-25T20:38:55.386811 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T20:38:55.386971 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-25T20:38:55.387002 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T20:38:55.387188 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-25T20:38:55.387219 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T20:38:55.387412 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-25T20:38:55.387445 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T20:38:55.387630 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-25T20:38:55.387661 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T20:38:55.387837 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-25T20:38:55.387889 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T20:38:55.388052 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-25T20:38:55.388112 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T20:38:55.388262 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-25T20:38:55.388310 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T20:38:55.388505 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T20:38:55.388536 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T20:38:55.388688 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-25T20:38:55.388717 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T20:38:55.388912 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-25T20:38:55.388945 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T20:38:55.389095 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-25T20:38:55.389125 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T20:38:55.389354 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-25T20:38:55.389392 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T20:38:55.389551 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-25T20:38:55.389620 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T20:38:55.389811 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-25T20:38:55.389849 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T20:38:57.390246 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-25T20:38:57.390289 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-25T20:38:57.390403 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-26T18:17:09.826392 #5] INFO -- : New topics added to target list: section_change +I, [2018-07-26T18:17:09.826455 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-07-26T18:17:09.830137 #5] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +E, [2018-07-26T18:17:09.830304 #5] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +E, [2018-07-26T18:17:14.833841 #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-07-26T18:17:14.834785 #5] INFO -- : New topics added to target list: section_change +I, [2018-07-26T18:17:14.834835 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-07-26T18:17:14.837912 #5] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +E, [2018-07-26T18:17:14.838022 #5] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +E, [2018-07-26T18:17:19.838547 #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-07-26T18:17:19.839358 #5] INFO -- : New topics added to target list: section_change +I, [2018-07-26T18:17:19.839402 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-07-26T18:17:19.840019 #5] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +E, [2018-07-26T18:17:19.840113 #5] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +E, [2018-07-26T18:17:24.840718 #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-07-26T18:17:24.841467 #5] INFO -- : New topics added to target list: section_change +I, [2018-07-26T18:17:24.841506 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-07-26T18:17:24.847348 #5] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-07-26T18:17:24.847551 #5] INFO -- : Joining group `notifications_notifications` +I, [2018-07-26T18:17:24.885992 #5] INFO -- : Joined group `notifications_notifications` with member id `notifications-e9e28c79-8b15-4054-acb3-79ecc267bdc6` +I, [2018-07-26T18:17:24.886039 #5] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-07-26T18:17:24.942985 #5] INFO -- : Will fetch at most 1048576 bytes at a time per partition from section_change +I, [2018-07-26T18:17:24.943179 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-07-26T18:17:24.958261 #5] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-07-26T18:17:24.958417 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-26T18:17:25.114842 #5] INFO -- : Partitions assigned for `section_change`: 0 +I, [2018-07-26T18:17:25.958551 #5] INFO -- : Seeking section_change/0 to offset 95 +I, [2018-07-26T18:17:25.958650 #5] INFO -- : New topics added to target list: section_change +I, [2018-07-26T18:17:25.958675 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-07-26T18:17:25.960684 #5] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-07-26T18:17:27.143635 #5] INFO -- : Committing offsets with recommit: section_change/0:95 +I, [2018-07-26T18:17:27.175909 #5] INFO -- : Inline processing of topic section_change with 1 messages took 5.44 ms +I, [2018-07-26T18:17:27.176002 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.176229 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:27.176254 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.176396 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:27.176425 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.176562 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:27.176584 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.176713 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:27.176735 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.176868 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:27.176890 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.177088 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:27.177116 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.177236 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:27.177270 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.177408 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:27.177543 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.177796 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-26T18:17:27.177823 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.178090 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-26T18:17:27.178120 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.178267 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:27.178304 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.178440 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:27.178464 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.178608 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:27.178630 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.178771 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:27.178791 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.178943 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:27.178993 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.179164 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:27.179213 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.191612 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-26T18:17:27.191684 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.191883 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:27.191907 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.192051 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:27.192073 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.192196 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:27.196790 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.197067 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-26T18:17:27.197112 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.197277 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:27.197300 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.197447 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:27.197474 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.197730 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-26T18:17:27.197761 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.197910 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:27.197932 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.198071 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:27.198154 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.198309 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:27.198330 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.198452 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:27.198474 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.198624 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:27.198648 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.198797 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:27.198819 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.198943 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:27.198963 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.199079 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:27.199150 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.199286 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:27.199308 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.199440 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:27.199461 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.199585 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:27.199684 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.199822 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:27.199856 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.199977 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:27.199998 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.200148 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:27.200173 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.200311 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:27.200333 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.200452 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:27.200484 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.200625 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:27.200654 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.200797 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:27.200818 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.200946 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:27.200967 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.201097 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:27.203167 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.203407 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-26T18:17:27.203433 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.203589 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:27.203649 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.203815 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:27.203837 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.203988 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:27.204010 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.204162 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:27.204188 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.204361 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:27.204385 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.204524 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:27.204546 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.204705 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:27.204730 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.205274 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.47 ms +I, [2018-07-26T18:17:27.205322 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.205574 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:27.205609 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.205995 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-26T18:17:27.206038 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.206401 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-26T18:17:27.206459 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.206735 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-26T18:17:27.206797 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.207015 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:27.207065 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.207309 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-26T18:17:27.207346 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.207564 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-26T18:17:27.207601 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.207822 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:27.207875 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.208068 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:27.208104 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.208333 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:27.208361 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.208496 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:27.208517 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.208667 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:27.208690 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.208811 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:27.208832 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.208993 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:27.209016 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.213001 #5] INFO -- : Inline processing of topic section_change with 1 messages took 3.92 ms +I, [2018-07-26T18:17:27.213045 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.213266 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:27.213290 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.213408 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:27.213429 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.213557 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:27.213578 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.213701 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:27.213721 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.213848 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:27.213868 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.213976 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:27.214006 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.214223 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-26T18:17:27.214247 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.214382 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:27.214402 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.214521 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:27.214542 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.214649 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:27.214687 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.214819 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:27.214857 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.215957 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.04 ms +I, [2018-07-26T18:17:27.216000 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.216208 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:27.216232 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.216360 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:27.216381 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.216494 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:27.216514 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.216647 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:27.216667 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.216790 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:27.216809 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.216937 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:27.216957 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.217117 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:27.217140 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.217265 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:27.217285 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.217410 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:27.217429 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.217655 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-26T18:17:27.217679 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.217799 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:27.217820 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.217942 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:27.217963 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.218163 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:27.218206 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.218335 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:27.218355 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.218467 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:27.218497 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.218643 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:27.218665 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.218791 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:27.218811 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.218988 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-26T18:17:27.219012 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.219133 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:27.219168 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.222138 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-26T18:17:27.222181 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.222342 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:27.222370 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.222499 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:27.222519 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.222653 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:27.222673 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.222799 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:27.222822 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.222987 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:27.223011 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.223141 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:27.223161 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.223287 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:27.223307 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.223429 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:27.223454 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.223576 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:27.223596 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.223721 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:27.223741 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.231938 #5] INFO -- : Inline processing of topic section_change with 1 messages took 5.98 ms +I, [2018-07-26T18:17:27.231988 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.232192 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:27.232216 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.232361 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:27.232383 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.232523 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:27.232550 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.232686 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:27.232742 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.232890 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:27.232912 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.233047 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:27.233072 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.233209 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:27.233236 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.233361 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:27.233382 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.233522 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:27.233543 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.234047 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:27.234083 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.234263 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:27.234296 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.234431 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:27.234453 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.234588 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:27.234610 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.234835 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-26T18:17:27.234882 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.235053 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:27.235076 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.235216 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:27.235241 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.235390 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:27.235410 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.235547 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:27.235568 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.235871 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:27.235905 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.236049 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:27.236101 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.236235 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:27.236258 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.236412 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:27.236433 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.236598 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:27.236620 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.236948 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-26T18:17:27.236989 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.237157 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:27.237180 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.237370 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:27.237394 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.237594 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:27.237676 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.237850 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:27.237872 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.238023 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:27.238053 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.238199 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:27.238219 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.238358 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:27.238403 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.248979 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.47 ms +I, [2018-07-26T18:17:27.249032 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.249221 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:27.249244 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.249497 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-26T18:17:27.249526 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.252172 #5] INFO -- : Inline processing of topic section_change with 1 messages took 2.57 ms +I, [2018-07-26T18:17:27.252212 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.252460 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-26T18:17:27.252492 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.252648 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:27.252675 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.252817 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:27.255300 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.255744 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-26T18:17:27.255805 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.256109 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-26T18:17:27.256153 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.256628 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-07-26T18:17:27.256669 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.256855 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:27.256884 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.257158 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-26T18:17:27.257188 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.257375 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:27.257411 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.257599 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:27.257634 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.262348 #5] INFO -- : Inline processing of topic section_change with 1 messages took 4.61 ms +I, [2018-07-26T18:17:27.262414 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.268853 #5] INFO -- : Inline processing of topic section_change with 1 messages took 6.29 ms +I, [2018-07-26T18:17:27.268899 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.269131 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-26T18:17:27.269158 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.269302 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:27.269324 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.269457 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:27.269478 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.270909 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.36 ms +I, [2018-07-26T18:17:27.270953 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.271172 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:27.271197 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.271343 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:27.271365 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.271478 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:27.271510 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.271626 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:27.271724 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.271845 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:27.271866 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.272027 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:27.272051 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.272178 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:27.272199 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.272321 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:27.272341 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.272682 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:27.272708 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.272834 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:27.272854 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.273022 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:27.273046 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.275293 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-26T18:17:27.275340 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.275579 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:27.275605 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.275856 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-26T18:17:27.275897 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.276043 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:27.276064 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.276183 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:27.276204 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.276430 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-26T18:17:27.276454 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.276587 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:27.276608 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.276717 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:27.276775 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.276945 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:27.276968 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.277152 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-26T18:17:27.277175 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.277328 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:27.277348 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.277547 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-26T18:17:27.277580 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.277740 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:27.277760 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.277954 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:27.277978 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.278136 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:27.278194 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.278335 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:27.278360 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.278538 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:27.278561 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.278690 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:27.278710 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.278864 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:27.278887 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.279013 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:27.279045 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.279153 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:27.279189 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.279297 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:27.279333 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.279441 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:27.279461 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.279587 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:27.279607 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.279732 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:27.279752 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.280117 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:27.280141 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.280271 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:27.280291 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.280459 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:27.280481 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.280597 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:27.280634 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.280779 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:27.285623 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.286176 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-07-26T18:17:27.286229 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.286628 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-26T18:17:27.286724 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.287326 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-26T18:17:27.287388 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.287648 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-26T18:17:27.287715 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.288087 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-26T18:17:27.288147 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.288510 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-26T18:17:27.288555 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.288881 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-26T18:17:27.288921 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.289223 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-26T18:17:27.289289 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.289755 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-07-26T18:17:27.289792 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.290026 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:27.290060 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.290267 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-26T18:17:27.290299 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.290497 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:27.290529 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.290721 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:27.290780 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.290948 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:27.290977 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.291165 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:27.291193 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.291376 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:27.291404 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.291613 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:27.291651 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.292070 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:27.292105 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.292299 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:27.292328 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.292647 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-26T18:17:27.292690 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.292987 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-26T18:17:27.293018 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.293157 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:27.293197 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.293312 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:27.293337 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.293473 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:27.293495 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.293679 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-26T18:17:27.293705 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.293854 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:27.293875 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.293991 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:27.294012 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.294152 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:27.294172 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.294299 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:27.294320 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.294445 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:27.294465 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.294625 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:27.294650 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.294767 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:27.294786 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.294915 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:27.294935 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.298146 #5] INFO -- : Inline processing of topic section_change with 1 messages took 3.04 ms +I, [2018-07-26T18:17:27.298272 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.298863 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-26T18:17:27.298928 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.299212 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-26T18:17:27.299322 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.299558 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:27.299603 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.299836 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-26T18:17:27.299875 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.300124 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-26T18:17:27.300165 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.300395 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:27.300435 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.300665 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-26T18:17:27.300705 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.300936 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:27.300975 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.301226 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-26T18:17:27.301265 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.301491 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-26T18:17:27.301529 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.303716 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-26T18:17:27.303772 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.303972 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:27.304004 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.304240 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:27.304276 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.304452 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:27.304476 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.304761 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-26T18:17:27.304786 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.304911 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:27.304952 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.305091 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:27.305117 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.305367 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-26T18:17:27.305391 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.305641 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-26T18:17:27.305693 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.306002 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-26T18:17:27.306040 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.306391 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-26T18:17:27.306445 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.306688 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:27.306715 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.306869 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:27.306892 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.307115 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-26T18:17:27.307164 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.307447 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-26T18:17:27.307508 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.307787 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-26T18:17:27.307827 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.308045 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:27.308111 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.308269 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:27.308291 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.308500 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-26T18:17:27.308525 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.308675 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:27.308729 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.308965 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-26T18:17:27.309022 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.314886 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-26T18:17:27.314956 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.315181 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:27.315208 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.315351 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:27.315373 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.315490 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:27.315511 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.315647 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:27.315668 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.315800 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:27.315822 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.315977 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:27.316007 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.316182 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:27.316221 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.316335 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:27.316356 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.316492 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:27.316513 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.316644 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:27.316665 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.316797 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:27.316818 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.316928 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:27.316997 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.317121 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:27.317142 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.317276 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:27.317297 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.317515 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-26T18:17:27.317550 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.317765 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:27.317803 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.318021 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-26T18:17:27.318049 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.318206 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:27.318227 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.318680 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-07-26T18:17:27.318822 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.319677 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.44 ms +I, [2018-07-26T18:17:27.319723 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.319929 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:27.319979 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.320111 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:27.320132 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.320275 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:27.320296 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.320436 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:27.320457 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.320626 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:27.320651 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.320905 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:27.320961 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.321169 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-26T18:17:27.321194 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.321342 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:27.321363 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.321505 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:27.321527 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.321673 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:27.321703 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.330041 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-26T18:17:27.330088 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.330450 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:27.330492 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.330798 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-26T18:17:27.330828 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.330998 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:27.331021 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.331175 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:27.331197 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.331342 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:27.331364 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.331505 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:27.331528 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.331708 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:27.331740 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.331897 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:27.331926 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.332062 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:27.332093 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.332225 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:27.332257 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.332382 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:27.332404 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.332543 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:27.332601 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.332816 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:27.332845 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.332986 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:27.333008 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.333148 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:27.333211 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.333374 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:27.333396 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.344613 #5] INFO -- : Inline processing of topic section_change with 1 messages took 11.12 ms +I, [2018-07-26T18:17:27.344666 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.344896 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-26T18:17:27.344920 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.345073 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:27.345095 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.345242 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:27.345263 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.345469 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:27.345501 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.345666 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:27.345688 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.345823 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:27.345845 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.345972 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:27.346014 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.346138 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:27.346160 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.346289 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:27.346319 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.346479 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:27.346513 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.346654 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:27.346675 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.346808 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:27.346829 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.346951 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:27.346986 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.347108 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:27.347148 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.348801 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:27.348881 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.349051 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:27.349081 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.349220 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:27.349252 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.349455 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-26T18:17:27.349481 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.349710 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:27.349738 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.349888 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:27.349910 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.350052 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:27.350073 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.350213 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:27.350235 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.350455 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-26T18:17:27.350495 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.350672 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:27.350702 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.350839 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:27.350866 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.351001 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:27.351022 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.351157 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:27.351184 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.351383 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-26T18:17:27.351412 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.351564 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:27.351592 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.354104 #5] INFO -- : Inline processing of topic section_change with 1 messages took 2.4 ms +I, [2018-07-26T18:17:27.354150 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.355462 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.21 ms +I, [2018-07-26T18:17:27.355502 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.355716 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:27.355741 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.355881 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:27.355903 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.356039 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:27.356065 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.356225 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:27.356250 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.356393 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:27.356415 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.369621 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:27.369713 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.373797 #5] INFO -- : Inline processing of topic section_change with 1 messages took 3.92 ms +I, [2018-07-26T18:17:27.373843 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.374051 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:27.374111 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.374235 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:27.374277 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.374394 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:27.374437 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.374552 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:27.374573 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.374707 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:27.374728 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.374880 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:27.374905 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.375045 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:27.375066 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.375283 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:27.375308 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.375515 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:27.375540 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.375678 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:27.375699 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.375851 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:27.375876 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.376015 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:27.376036 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.376173 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:27.376194 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.376324 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:27.376345 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.376474 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:27.376495 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.376635 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:27.376656 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.376797 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:27.376856 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.377007 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:27.377028 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.377165 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:27.377186 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.377326 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:27.377347 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.377497 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:27.377519 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.377667 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:27.377704 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.385750 #5] INFO -- : Inline processing of topic section_change with 1 messages took 7.95 ms +I, [2018-07-26T18:17:27.385811 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.386126 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-26T18:17:27.386159 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.386361 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-26T18:17:27.386392 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.386574 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:27.386604 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.386827 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:27.386882 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.387052 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:27.387104 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.387273 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:27.387324 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.387496 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:27.387545 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.387798 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:27.387829 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.388026 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:27.388055 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.388264 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-26T18:17:27.388293 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.388504 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-26T18:17:27.388532 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.388806 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-26T18:17:27.388839 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.389017 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:27.389073 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.389230 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:27.389259 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.409720 #5] INFO -- : Inline processing of topic section_change with 1 messages took 20.35 ms +I, [2018-07-26T18:17:27.409774 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.409998 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:27.411053 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.411423 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-26T18:17:27.411453 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.411595 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:27.411638 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.411770 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:27.411792 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.411930 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:27.411956 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.412138 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:27.412162 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.412309 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:27.412331 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.412456 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:27.412495 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.412613 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:27.412634 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.412767 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:27.412788 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.412926 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:27.412946 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.413110 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:27.413134 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.413263 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:27.413284 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.413401 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:27.413422 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.426020 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-26T18:17:27.426068 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.426247 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:27.426271 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.426409 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:27.426429 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.426562 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:27.426582 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.426967 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:27.426997 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.427138 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:27.427158 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.427285 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:27.427306 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.427431 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:27.427451 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.427579 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:27.427599 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.427738 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:27.427782 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.427904 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:27.427924 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.428055 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:27.428075 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.428200 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:27.428219 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.428350 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:27.428369 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.428518 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:27.428559 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.428698 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:27.428732 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.428938 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:27.428966 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.429100 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:27.429120 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.438640 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-26T18:17:27.438684 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.438824 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:27.438865 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.438977 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:27.438997 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.439127 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:27.439146 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.439272 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:27.439291 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.439420 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:27.439439 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.439705 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-26T18:17:27.439729 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.439839 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:27.439859 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.439983 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:27.440002 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.440127 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:27.440147 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.440378 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:27.440399 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.440546 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:27.440569 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.440677 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:27.440697 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.440821 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:27.440841 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.440997 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:27.441019 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.441151 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:27.441170 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.441290 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:27.441309 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.441413 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:27.441475 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.441590 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:27.441610 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.441734 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:27.441754 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.441880 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:27.441900 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.472412 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-26T18:17:27.472460 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.472887 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-07-26T18:17:27.472950 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.473106 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:27.473130 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.473279 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:27.473302 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.473546 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:27.473574 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.481814 #5] INFO -- : Inline processing of topic section_change with 1 messages took 8.14 ms +I, [2018-07-26T18:17:27.481868 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.482107 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:27.482131 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.482492 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-07-26T18:17:27.482518 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.482692 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:27.482717 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.482866 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:27.482887 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.483024 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:27.483066 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.488309 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-26T18:17:27.488475 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.488675 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:27.488701 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.488845 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:27.488866 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.489012 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:27.489033 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.489175 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:27.489196 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.489337 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:27.489358 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.489471 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:27.489539 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.489675 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:27.489697 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.489834 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:27.489856 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.489994 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:27.490019 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.490197 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:27.490221 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.490337 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:27.490374 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.490512 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:27.490538 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.490689 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:27.490710 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.490853 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:27.490873 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.491004 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:27.491025 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.491137 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:27.491176 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.491297 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:27.491317 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.491455 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:27.491497 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.491639 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:27.491669 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.491804 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:27.491825 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.502185 #5] INFO -- : Inline processing of topic section_change with 1 messages took 10.07 ms +I, [2018-07-26T18:17:27.502233 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.502427 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:27.502491 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.502638 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:27.502660 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.502802 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:27.502824 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.502971 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:27.502997 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.503140 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:27.503170 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.503303 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:27.503324 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.503473 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:27.503498 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.503638 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:27.503672 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.504032 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-07-26T18:17:27.504072 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.508750 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-26T18:17:27.508808 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.509002 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:27.509038 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.509193 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:27.509217 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.509362 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:27.509386 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.522078 #5] INFO -- : Inline processing of topic section_change with 1 messages took 12.61 ms +I, [2018-07-26T18:17:27.522143 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.522413 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-26T18:17:27.522446 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.522729 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:27.522764 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.522953 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:27.522985 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.523401 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:27.523435 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.523941 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-26T18:17:27.523983 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.524248 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-26T18:17:27.524286 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.524520 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:27.524558 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.524776 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:27.524812 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.525943 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.79 ms +I, [2018-07-26T18:17:27.531166 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.531430 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-26T18:17:27.531458 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.531635 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:27.531669 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.531802 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:27.531835 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.531959 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:27.531980 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.532146 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:27.532171 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.532308 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:27.532329 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.532459 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:27.532480 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.532644 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:27.532842 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.533081 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-26T18:17:27.533107 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.533263 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:27.533285 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.533406 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:27.533441 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.538264 #5] INFO -- : Inline processing of topic section_change with 1 messages took 4.62 ms +I, [2018-07-26T18:17:27.538672 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.549747 #5] INFO -- : Inline processing of topic section_change with 1 messages took 10.79 ms +I, [2018-07-26T18:17:27.549892 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.550429 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-07-26T18:17:27.550532 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.550888 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-26T18:17:27.550941 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.551266 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-26T18:17:27.551333 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.551663 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-26T18:17:27.551725 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.551973 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:27.569191 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.569546 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-26T18:17:27.569582 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.569812 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:27.569848 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.569999 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:27.570021 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.570197 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:27.570228 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.570378 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:27.570400 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.570553 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:27.570574 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.570742 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:27.570766 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.570911 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:27.570938 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.571083 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:27.571110 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.571356 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-26T18:17:27.571399 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.573018 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:27.573131 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.573309 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:27.573332 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.573467 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:27.573488 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.601885 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:27.601990 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.602236 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-26T18:17:27.602287 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.602436 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:27.602478 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.602602 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:27.602645 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.602798 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:27.602842 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.602963 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:27.603005 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.603124 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:27.603145 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.603317 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:27.603341 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.603537 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:27.603559 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.603692 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:27.603748 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.603895 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:27.603917 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.604098 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:27.604123 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.604287 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:27.604311 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.604448 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:27.604469 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.604600 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:27.604621 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.604806 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:27.604831 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.604970 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:27.604992 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.605122 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:27.605142 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.605349 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:27.605374 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.605506 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:27.605541 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.605673 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:27.605695 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.608691 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-26T18:17:27.608765 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.608941 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:27.608964 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.609108 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:27.609130 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.609306 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:27.609331 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.609467 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:27.609489 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.609617 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:27.609637 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.609847 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:27.609879 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.610100 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:27.610136 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.610362 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-26T18:17:27.610388 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.610529 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:27.610551 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.610681 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:27.610702 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.610865 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:27.610889 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.611018 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:27.611040 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.611198 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:27.611233 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.611388 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:27.611409 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.611544 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:27.611565 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.611695 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:27.611716 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.611867 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:27.611911 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.612023 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:27.612044 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.612182 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:27.612204 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.612370 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:27.612394 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.612530 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:27.612551 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.612686 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:27.612707 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.612894 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:27.612918 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.613038 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:27.613086 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.613267 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:27.613291 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.613435 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:27.613456 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.613592 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:27.613613 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.613806 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-26T18:17:27.632979 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.633271 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-26T18:17:27.633344 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.633486 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:27.633508 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.633647 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:27.633669 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.633840 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:27.633865 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.634011 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:27.634032 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.634167 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:27.634188 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.634344 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:27.634390 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.634513 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:27.634534 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.634662 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:27.634683 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.634839 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:27.634863 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.635004 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:27.635025 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.635157 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:27.635179 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.635317 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:27.635358 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.635487 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:27.635509 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.635649 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:27.635670 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.635829 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:27.635853 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.635992 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:27.636013 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.636143 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:27.636163 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.636272 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:27.636345 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.636510 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:27.636564 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.636739 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:27.643047 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.643344 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-26T18:17:27.643375 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.643518 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:27.643563 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.643680 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:27.643701 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.643859 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:27.643884 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.644026 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:27.644047 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.644179 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:27.644200 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.644356 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:27.644380 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.644502 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:27.644542 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.644653 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:27.644674 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.644807 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:27.644835 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.648043 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-26T18:17:27.648087 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.648256 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:27.648278 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.648528 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-26T18:17:27.648564 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.648777 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:27.648802 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.648961 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:27.648986 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.649124 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:27.649145 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.649282 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:27.649303 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.649521 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:27.649546 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.649682 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:27.649704 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.649869 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:27.649921 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.650056 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:27.650080 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.650228 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:27.650250 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.650433 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:27.650458 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.650619 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:27.650641 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.650786 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:27.650808 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.650992 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:27.651017 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.651140 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:27.651163 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.651299 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:27.651321 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.651500 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:27.651525 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.651718 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-26T18:17:27.651741 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.651919 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:27.651945 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.652084 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:27.652106 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.652216 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:27.652255 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.652449 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:27.652473 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.652608 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:27.652629 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.652760 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:27.652780 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.652972 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:27.652996 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.653132 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:27.653153 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.653263 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:27.653285 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.653470 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:27.653495 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.653633 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:27.653654 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.653782 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:27.653820 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.654019 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:27.654043 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.654159 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:27.654199 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.654324 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:27.654390 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.654553 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:27.654574 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.654715 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:27.654736 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.654903 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:27.654927 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.655078 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:27.655100 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.655228 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:27.655272 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.655457 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-26T18:17:27.655481 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.655635 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:27.655657 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.655913 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-26T18:17:27.655954 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.656092 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:27.656113 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.656250 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:27.656271 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.656437 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:27.656461 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.656593 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:27.656624 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.660966 #5] INFO -- : Inline processing of topic section_change with 1 messages took 4.25 ms +I, [2018-07-26T18:17:27.661020 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.661281 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-26T18:17:27.661331 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.661554 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:27.661589 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.661759 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:27.661783 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.662015 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-26T18:17:27.662054 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.662224 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:27.662247 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.662443 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-26T18:17:27.662468 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.662632 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:27.662654 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.663063 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-07-26T18:17:27.663090 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.664051 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-26T18:17:27.664078 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.664243 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:27.664265 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.664448 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:27.664472 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.664621 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:27.664642 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.664792 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:27.664814 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.664973 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:27.664998 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.665149 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:27.665195 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.665653 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-07-26T18:17:27.665680 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.665831 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:27.665856 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.667993 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.79 ms +I, [2018-07-26T18:17:27.668064 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.671525 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-07-26T18:17:27.671626 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.671941 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-26T18:17:27.672009 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.672243 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-26T18:17:27.672272 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.672584 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-26T18:17:27.672631 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.674605 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.87 ms +I, [2018-07-26T18:17:27.674719 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.675188 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-07-26T18:17:27.675267 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.675667 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-26T18:17:27.675715 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.676109 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-26T18:17:27.676160 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.676566 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-07-26T18:17:27.676611 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.676822 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-26T18:17:27.676852 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.677106 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-26T18:17:27.677136 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.677338 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:27.677385 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.677702 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-26T18:17:27.677750 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.680161 #5] INFO -- : Inline processing of topic section_change with 1 messages took 2.27 ms +I, [2018-07-26T18:17:27.680218 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.680599 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-26T18:17:27.680646 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.680883 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-26T18:17:27.680933 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.686397 #5] INFO -- : Inline processing of topic section_change with 1 messages took 5.29 ms +I, [2018-07-26T18:17:27.686521 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.696811 #5] INFO -- : Inline processing of topic section_change with 1 messages took 10.14 ms +I, [2018-07-26T18:17:27.696881 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.697158 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:27.697191 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.697346 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:27.697397 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.697621 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-26T18:17:27.697656 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.697811 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:27.697839 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.702622 #5] INFO -- : Inline processing of topic section_change with 1 messages took 4.69 ms +I, [2018-07-26T18:17:27.702679 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.702908 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-26T18:17:27.702940 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.703126 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:27.703154 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.706344 #5] INFO -- : Inline processing of topic section_change with 1 messages took 3.07 ms +I, [2018-07-26T18:17:27.706406 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.706670 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-26T18:17:27.706708 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.708195 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:27.708225 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.708384 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:27.708463 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.735333 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-07-26T18:17:27.735395 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.735739 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-26T18:17:27.735776 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.736004 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:27.736058 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.736395 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-26T18:17:27.736473 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.736856 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-26T18:17:27.737049 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.739180 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-26T18:17:27.739241 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.739391 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:27.739435 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.739559 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:27.739625 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.739765 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:27.739806 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.739937 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:27.739978 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.740136 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:27.740180 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.740330 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:27.740352 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.740493 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:27.740514 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.740719 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-26T18:17:27.740743 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.740889 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:27.740910 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.741047 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:27.741068 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.741240 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:27.741261 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.741399 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:27.741421 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.741558 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:27.741588 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.741727 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:27.741749 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.741884 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:27.741905 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.742042 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:27.742068 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.742268 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:27.742291 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.742426 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:27.742447 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.742609 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:27.742636 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.742783 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:27.742820 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.742955 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:27.742976 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.743137 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:27.743161 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.743295 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:27.743316 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.743451 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:27.743472 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.743616 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:27.743638 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.769042 #5] INFO -- : Inline processing of topic section_change with 1 messages took 25.31 ms +I, [2018-07-26T18:17:27.769109 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.769985 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-26T18:17:27.770026 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.770301 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-26T18:17:27.770340 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.770553 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-26T18:17:27.770589 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.770860 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-26T18:17:27.770897 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.771110 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-26T18:17:27.771146 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.771416 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-26T18:17:27.771453 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.771712 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-26T18:17:27.771781 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.772000 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:27.772036 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.772300 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-26T18:17:27.772360 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.772574 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-26T18:17:27.772610 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.772880 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-26T18:17:27.772917 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.773127 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:27.773181 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.773462 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-26T18:17:27.773498 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.785814 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:27.785905 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.786134 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-26T18:17:27.786159 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.786350 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:27.786376 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.786517 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:27.786538 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.786677 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:27.786718 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.786869 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:27.786890 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.787025 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:27.787046 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.787159 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:27.787216 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.787346 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:27.787367 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.787497 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:27.787519 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.787649 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:27.787670 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.787830 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:27.787854 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.787986 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:27.788007 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.788140 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:27.788161 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.788301 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:27.788342 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.788455 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:27.788476 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.788606 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:27.788627 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.788780 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:27.788824 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.814563 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-26T18:17:27.814607 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.814765 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:27.814787 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.814918 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:27.814938 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.815048 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:27.815085 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.815227 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:27.815262 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.815520 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-26T18:17:27.815551 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.815711 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:27.815733 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.815871 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:27.815892 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.816025 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:27.816046 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.816204 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:27.816229 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.816374 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:27.816396 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.816507 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:27.816528 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.816669 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:27.816718 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.816860 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:27.816882 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.817091 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:27.817123 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.817307 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:27.817333 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.820007 #5] INFO -- : Inline processing of topic section_change with 1 messages took 2.6 ms +I, [2018-07-26T18:17:27.820055 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.820285 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:27.820311 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.820434 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:27.820476 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.820593 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:27.820614 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.820748 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:27.820769 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.820904 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:27.820926 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.821061 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:27.821104 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.821251 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:27.821272 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.821399 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:27.821420 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.821533 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:27.821575 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.821687 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:27.821709 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.821840 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:27.821861 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.822014 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:27.822037 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.822264 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-26T18:17:27.822300 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.822445 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:27.822467 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.846971 #5] INFO -- : Inline processing of topic section_change with 1 messages took 24.41 ms +I, [2018-07-26T18:17:27.847022 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.847194 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:27.847237 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.847351 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:27.847372 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.847502 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:27.847522 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.847686 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:27.847710 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.847837 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:27.847857 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.847983 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:27.848002 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.848124 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:27.848143 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.848247 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:27.848289 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.848394 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:27.848413 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.848770 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-07-26T18:17:27.848793 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.848926 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:27.848946 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.849074 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:27.849094 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.849223 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:27.849242 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.849366 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:27.849386 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.849491 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:27.865817 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.866176 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-26T18:17:27.866236 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.866462 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:27.866487 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.866650 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:27.866674 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.866827 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:27.866894 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.867063 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:27.867086 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.867290 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:27.867321 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.867457 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:27.867498 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.867622 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:27.867643 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.867773 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:27.867794 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.868171 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-07-26T18:17:27.868219 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.868366 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:27.868395 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.868533 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:27.868553 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.868694 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:27.868715 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.868856 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:27.868876 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.869005 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:27.869039 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.869176 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:27.869225 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.893929 #5] INFO -- : Inline processing of topic section_change with 1 messages took 15.98 ms +I, [2018-07-26T18:17:27.894029 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.894365 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-26T18:17:27.894399 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.894621 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:27.894653 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.894937 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-26T18:17:27.895003 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.895228 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-26T18:17:27.895278 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.897894 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-26T18:17:27.897936 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.898097 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:27.898120 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.898294 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:27.898331 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.898467 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:27.898498 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.898627 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:27.898648 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.898809 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:27.898833 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.898967 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:27.898989 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.899127 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:27.899148 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.899337 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:27.899361 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.899511 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:27.899532 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.899698 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:27.899749 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.899980 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-26T18:17:27.900005 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.900167 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:27.900272 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.900470 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:27.900501 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.900652 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:27.900713 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.901015 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-26T18:17:27.901051 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.901244 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:27.901269 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.901412 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:27.901440 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.901586 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:27.901607 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.922615 #5] INFO -- : Inline processing of topic section_change with 1 messages took 20.91 ms +I, [2018-07-26T18:17:27.922683 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.922960 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-26T18:17:27.929658 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.930044 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-26T18:17:27.930083 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.930333 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-26T18:17:27.930364 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.930570 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:27.930601 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.930803 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:27.930848 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.931074 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-26T18:17:27.931110 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.939541 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-26T18:17:27.939617 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.939941 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-26T18:17:27.939982 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.940229 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-26T18:17:27.940273 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.940544 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-26T18:17:27.940583 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.940856 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-26T18:17:27.940896 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.941182 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-26T18:17:27.941234 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.941477 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-26T18:17:27.941530 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.941789 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-26T18:17:27.941824 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.942047 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-26T18:17:27.942077 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.942284 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:27.942315 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.942524 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:27.942552 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.947258 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-26T18:17:27.947325 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.947634 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-26T18:17:27.947682 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.951039 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.13 ms +I, [2018-07-26T18:17:27.951154 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.951685 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-07-26T18:17:27.951739 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.952104 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-26T18:17:27.952153 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.952512 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-26T18:17:27.952544 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.952761 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-26T18:17:27.952792 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.952978 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:27.953007 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.953202 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:27.953237 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.953462 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-26T18:17:27.953496 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.953698 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-26T18:17:27.953728 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.953956 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-26T18:17:27.953992 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.954270 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-26T18:17:27.954321 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.954557 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-26T18:17:27.954590 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.954793 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:27.954823 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.955023 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:27.955053 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.955264 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:27.955295 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.955557 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-26T18:17:27.955635 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.955872 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-26T18:17:27.955994 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.956263 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-26T18:17:27.956305 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.956622 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-26T18:17:27.956690 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.958863 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-26T18:17:27.958907 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.959070 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:27.959092 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.959230 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:27.959251 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.959422 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:27.959446 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.959583 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:27.959617 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.959802 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:27.959822 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.959946 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:27.959966 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.960103 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:27.960123 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.960295 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:27.960344 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.960504 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:27.960525 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.960664 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:27.960685 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.960825 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:27.960862 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.960996 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:27.961016 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.961213 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:27.961238 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.961396 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:27.961420 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.961549 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:27.961571 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.961697 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:27.961718 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.961892 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:27.961916 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.962048 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:27.962069 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.962198 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:27.962219 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.962384 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:27.962408 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.962539 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:27.962560 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.962688 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:27.962708 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.962836 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:27.962856 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.965264 #5] INFO -- : Inline processing of topic section_change with 1 messages took 2.31 ms +I, [2018-07-26T18:17:27.965309 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.965494 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:27.965535 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.965665 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:27.965816 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.965989 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:27.966043 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.966296 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-26T18:17:27.966336 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.966565 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:27.966587 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.966723 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:27.966744 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.967115 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:27.967177 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.967339 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:27.967361 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.967499 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:27.967520 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.967672 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:27.967714 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.967829 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:27.967851 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.967985 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:27.968006 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.968162 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:27.968187 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.968325 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:27.968346 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.968475 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:27.968496 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.968624 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:27.968645 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.968776 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:27.968797 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.968908 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:27.968947 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.969058 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:27.969078 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.969254 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:27.969298 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.969465 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:27.969486 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.969614 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:27.969635 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.969763 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:27.969784 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.969943 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:27.969976 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.970151 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:27.970176 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.970314 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:27.970336 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.970447 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:27.970487 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.970598 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:27.970619 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.970746 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:27.970767 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.970896 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:27.970917 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.971044 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:27.971132 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.971283 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:27.971304 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.971433 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:27.971453 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.971582 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:27.971603 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.971737 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:27.971758 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.971869 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:27.971908 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.972018 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:27.972040 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.972212 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:27.972250 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.972386 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:27.972407 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.972536 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:27.972557 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.972687 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:27.972708 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.972832 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:27.972853 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.972981 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:27.973002 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.973165 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:27.973189 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.973301 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:27.973344 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.973609 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-26T18:17:27.973658 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.973802 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:27.973824 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.973955 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:27.973976 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.974152 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:27.974176 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.974309 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:27.974330 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.974456 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:27.974477 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.974608 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:27.974628 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.974761 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:27.974781 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.974890 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:27.974911 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.975069 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:27.975093 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.975225 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:27.975246 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.975373 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:27.975393 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.975521 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:27.975542 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.975725 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-26T18:17:27.975755 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.975950 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:27.976007 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.976159 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:27.976180 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.976292 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:27.976330 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.976442 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:27.976463 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.976599 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:27.976621 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.976750 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:27.976771 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.976901 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:27.976923 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.977093 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:27.977117 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.977248 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:27.977270 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.977512 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-26T18:17:27.977537 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.983228 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.41 ms +I, [2018-07-26T18:17:27.983282 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.983455 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:27.983498 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.983620 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:27.983641 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.983776 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:27.983798 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.983971 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:27.983996 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.984131 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:27.984152 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.984275 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:27.984296 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.984440 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:27.984461 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.984592 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:27.984613 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.984744 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:27.984765 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.984927 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:27.984952 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.985075 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:27.985096 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.985223 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:27.985248 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.985502 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:27.985539 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.985720 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:27.985755 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.989984 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-26T18:17:27.990028 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.990192 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:27.990214 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.990341 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:27.990361 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.990486 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:27.990514 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.990640 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:27.990660 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.990945 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-26T18:17:27.990979 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.991128 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:27.991275 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.991416 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:27.991437 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.991588 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:27.991613 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.991789 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:27.991813 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.991955 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:27.991975 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.992109 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:27.992129 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.992255 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:27.992280 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.992408 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:27.992428 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.992558 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:27.992586 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.992816 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-26T18:17:27.992871 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.993016 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:27.995382 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.995831 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-26T18:17:27.995866 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.996054 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:27.996077 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.996238 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:27.996261 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.996416 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:27.996439 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.996636 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:27.996664 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.996819 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:27.996847 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.996987 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:27.997023 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.997180 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:27.997218 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.997431 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-26T18:17:27.997471 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.997678 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-26T18:17:27.997716 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.997865 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:27.997893 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.998038 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:27.998068 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.998316 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-26T18:17:27.998345 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.998498 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:27.998529 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.998698 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:27.998739 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.998944 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-26T18:17:27.998968 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.999167 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-26T18:17:27.999193 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.999351 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:27.999434 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.999601 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:27.999649 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:27.999814 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:27.999836 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.009880 #5] INFO -- : Inline processing of topic section_change with 1 messages took 6.12 ms +I, [2018-07-26T18:17:28.010332 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.011221 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-26T18:17:28.011265 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.011452 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:28.011483 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.015086 #5] INFO -- : Inline processing of topic section_change with 1 messages took 3.51 ms +I, [2018-07-26T18:17:28.015142 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.019930 #5] INFO -- : Inline processing of topic section_change with 1 messages took 4.44 ms +I, [2018-07-26T18:17:28.020014 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.020332 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-26T18:17:28.020370 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.020690 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-26T18:17:28.020727 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.020955 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:28.021046 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.021254 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-26T18:17:28.021310 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.026855 #5] INFO -- : Inline processing of topic section_change with 1 messages took 5.26 ms +I, [2018-07-26T18:17:28.027075 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.028048 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.5 ms +I, [2018-07-26T18:17:28.028430 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.028868 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-26T18:17:28.028902 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.029067 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:28.029089 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.029229 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:28.029250 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.029388 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:28.029409 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.029544 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:28.029564 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.029775 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-26T18:17:28.029826 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.029975 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:28.029996 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.030126 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:28.030164 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.030279 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:28.030315 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.030446 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:28.030466 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.030596 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:28.030616 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.030747 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:28.030765 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.030925 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:28.030947 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.031073 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:28.031093 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.031237 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:28.031256 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.031618 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:28.031641 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.031788 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:28.031811 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.031947 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:28.031981 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.032104 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:28.032124 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.032251 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:28.032270 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.032396 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:28.032427 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.032552 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:28.032571 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.032697 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:28.032716 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.032940 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:28.032963 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.033093 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:28.033113 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.033263 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:28.033290 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.033430 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:28.033449 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.033827 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-07-26T18:17:28.033866 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.034034 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:28.034054 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.034192 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:28.034211 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.034348 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:28.034367 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.034493 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:28.034549 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.044993 #5] INFO -- : Inline processing of topic section_change with 1 messages took 10.38 ms +I, [2018-07-26T18:17:28.045112 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.045366 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-26T18:17:28.045393 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.049343 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-26T18:17:28.049379 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.049607 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:28.049633 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.049790 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:28.049812 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.049962 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:28.049983 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.050124 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:28.050145 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.050286 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:28.050307 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.050468 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:28.050492 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.050643 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:28.050664 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.050804 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:28.050826 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.064410 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-26T18:17:28.064484 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.064661 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:28.064685 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.064880 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:28.064914 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.065175 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-26T18:17:28.065212 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.066550 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.22 ms +I, [2018-07-26T18:17:28.066641 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.067264 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.49 ms +I, [2018-07-26T18:17:28.067536 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.067913 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-26T18:17:28.067943 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.068174 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-26T18:17:28.068201 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.068407 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:28.068432 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.068639 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:28.068664 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.068863 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:28.068889 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.069115 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:28.069203 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.069352 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:28.069374 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.090687 #5] INFO -- : Inline processing of topic section_change with 1 messages took 21.13 ms +I, [2018-07-26T18:17:28.090747 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.092246 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-26T18:17:28.092285 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.092457 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:28.092481 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.092669 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-26T18:17:28.092718 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.096268 #5] INFO -- : Inline processing of topic section_change with 1 messages took 3.46 ms +I, [2018-07-26T18:17:28.096314 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.096596 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-26T18:17:28.096623 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.096802 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:28.096824 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.097086 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:28.097115 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.097341 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-26T18:17:28.097377 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.097687 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-26T18:17:28.097747 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.097936 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:28.105889 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.106153 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-26T18:17:28.106182 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.106341 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:28.106364 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.106502 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:28.106524 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.106703 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:28.106727 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.106880 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:28.106901 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.107049 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:28.107070 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.115399 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-26T18:17:28.115438 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.115611 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:28.115636 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.115793 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:28.115815 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.115976 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:28.116027 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.116184 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:28.116229 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.116344 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:28.116365 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.124730 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:28.124800 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.125052 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:28.125077 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.125224 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:28.125245 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.125378 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:28.125399 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.125524 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:28.125544 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.125673 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:28.125692 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.125901 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:28.125947 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.126106 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:28.126128 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.126260 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:28.126282 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.126394 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:28.126435 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.126546 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:28.126585 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.126698 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:28.126720 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.126888 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:28.126913 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.127047 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:28.127068 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.127210 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:28.127231 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.127369 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:28.127409 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.127980 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:28.128009 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.142002 #5] INFO -- : Inline processing of topic section_change with 1 messages took 13.76 ms +I, [2018-07-26T18:17:28.142069 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.142382 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-26T18:17:28.142415 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.142730 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-26T18:17:28.142763 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.142972 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:28.143004 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.143213 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:28.143312 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.143572 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-26T18:17:28.143605 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.143831 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:28.143883 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.144071 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:28.144102 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.144292 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:28.144323 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.144558 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-26T18:17:28.144592 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.144802 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-26T18:17:28.144833 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.145009 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:28.145039 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.145239 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:28.145269 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.160368 #5] INFO -- : Inline processing of topic section_change with 1 messages took 14.97 ms +I, [2018-07-26T18:17:28.160442 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.160686 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-26T18:17:28.160710 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.160858 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:28.160880 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.161070 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-26T18:17:28.161105 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.161304 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:28.161350 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.165919 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-26T18:17:28.165960 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.166270 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-26T18:17:28.166299 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.166443 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:28.166475 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.166822 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-07-26T18:17:28.166854 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.166989 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:28.167010 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.167197 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:28.167229 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.167357 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:28.167377 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.167496 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:28.167522 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.167645 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:28.167665 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.167788 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:28.167808 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.167932 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:28.167952 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.168108 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:28.168132 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.183993 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-26T18:17:28.184042 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.184221 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:28.184244 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.184386 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:28.184408 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.184545 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:28.184573 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.184735 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:28.184760 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.184905 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:28.184927 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.185069 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:28.185118 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.185258 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:28.185295 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.185437 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:28.185458 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.185605 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:28.185626 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.198081 #5] INFO -- : Inline processing of topic section_change with 1 messages took 12.37 ms +I, [2018-07-26T18:17:28.198170 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.198404 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-26T18:17:28.198429 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.200144 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.64 ms +I, [2018-07-26T18:17:28.200200 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.200374 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:28.200411 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.200579 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:28.200618 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.200767 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:28.200799 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.200944 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:28.200973 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.201256 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:28.201289 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.201436 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:28.201467 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.206115 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.44 ms +I, [2018-07-26T18:17:28.206164 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.206390 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:28.206417 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.206619 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-26T18:17:28.206654 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.206804 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:28.206832 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.206975 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:28.207000 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.207190 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:28.207220 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.207373 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:28.207394 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.207576 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:28.207611 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.207793 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:28.207822 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.215736 #5] INFO -- : Inline processing of topic section_change with 1 messages took 7.82 ms +I, [2018-07-26T18:17:28.215786 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.232287 #5] INFO -- : Inline processing of topic section_change with 1 messages took 16.38 ms +I, [2018-07-26T18:17:28.232339 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.232589 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-26T18:17:28.232648 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.232841 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:28.232882 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.254390 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-26T18:17:28.254443 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.254687 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:28.254716 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.254935 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:28.255002 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.255242 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:28.255288 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.255500 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-26T18:17:28.255527 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.255732 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-26T18:17:28.255795 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.255991 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:28.256020 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.256279 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-26T18:17:28.256342 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.256521 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:28.256547 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.256721 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:28.256784 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.256976 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:28.257008 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.257343 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-26T18:17:28.257397 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.257664 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:28.257699 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.275510 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.58 ms +I, [2018-07-26T18:17:28.275971 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.278466 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.39 ms +I, [2018-07-26T18:17:28.278514 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.278737 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:28.278785 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.278981 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:28.279004 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.279182 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:28.279203 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.281514 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-26T18:17:28.281556 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.281817 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-26T18:17:28.281844 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.282012 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:28.282033 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.282213 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:28.282243 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.282413 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:28.282433 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.282841 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-07-26T18:17:28.282871 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.283052 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:28.283073 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.283237 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:28.283257 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.283405 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:28.283425 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.283581 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:28.283602 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.283752 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:28.283809 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.283935 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:28.283991 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.284107 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:28.284164 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.291814 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-26T18:17:28.291855 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.292029 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:28.292051 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.292213 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:28.292234 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.292391 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:28.292412 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.293778 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.3 ms +I, [2018-07-26T18:17:28.293828 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.294111 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-26T18:17:28.294143 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.294436 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-26T18:17:28.294507 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.294727 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-26T18:17:28.294750 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.294906 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:28.294928 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.295077 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:28.295098 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.295243 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:28.295263 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.295407 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:28.295460 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.295718 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:28.295758 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.295987 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-26T18:17:28.301890 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.302250 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-26T18:17:28.302347 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.302700 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-26T18:17:28.302736 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.302969 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:28.303082 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.303412 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-26T18:17:28.303446 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.303766 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:28.303805 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.304313 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-26T18:17:28.304345 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.304620 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-26T18:17:28.304660 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.304897 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-26T18:17:28.304974 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.305328 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-26T18:17:28.312215 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.312778 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-07-26T18:17:28.312831 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.313239 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-26T18:17:28.313312 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.313966 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-26T18:17:28.314004 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.314253 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-26T18:17:28.314282 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.314484 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-26T18:17:28.314513 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.314719 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:28.314748 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.314981 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-26T18:17:28.315039 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.315241 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-26T18:17:28.315292 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.315492 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:28.322866 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.323150 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-26T18:17:28.323173 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.323359 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:28.323381 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.323542 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:28.323563 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.323720 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:28.333485 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.333799 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-26T18:17:28.333827 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.333986 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:28.334007 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.334163 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:28.334196 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.334350 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:28.334388 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.334575 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-26T18:17:28.334599 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.334770 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:28.334791 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.334944 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:28.334964 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.335115 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:28.335143 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.335310 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:28.335337 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.335929 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.53 ms +I, [2018-07-26T18:17:28.335954 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.336193 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:28.336217 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.336836 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.56 ms +I, [2018-07-26T18:17:28.336863 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.337009 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:28.337031 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.360537 #5] INFO -- : Inline processing of topic section_change with 1 messages took 23.42 ms +I, [2018-07-26T18:17:28.360589 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.360812 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-26T18:17:28.360836 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.361436 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:28.361470 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.361622 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:28.361643 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.361819 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:28.361847 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.369105 #5] INFO -- : Inline processing of topic section_change with 1 messages took 7.19 ms +I, [2018-07-26T18:17:28.369153 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.369323 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:28.369346 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.369881 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.45 ms +I, [2018-07-26T18:17:28.369911 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.370066 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:28.370088 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.370645 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.5 ms +I, [2018-07-26T18:17:28.370670 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.370814 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:28.370852 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.371285 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:28.371309 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.371453 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:28.371475 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.371607 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:28.371628 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.383467 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-26T18:17:28.383516 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.383729 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-26T18:17:28.383756 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.384347 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.52 ms +I, [2018-07-26T18:17:28.384373 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.384532 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:28.384556 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.384745 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:28.384770 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.385416 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:28.385444 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.385637 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-26T18:17:28.385664 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.386224 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.5 ms +I, [2018-07-26T18:17:28.386250 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.386382 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:28.386405 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.386906 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.44 ms +I, [2018-07-26T18:17:28.386933 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.387066 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:28.387089 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.387626 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.48 ms +I, [2018-07-26T18:17:28.387651 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.387786 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:28.387809 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.388325 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.46 ms +I, [2018-07-26T18:17:28.388351 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.388497 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:28.388542 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.389087 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.43 ms +I, [2018-07-26T18:17:28.389113 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.389268 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:28.389291 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.389412 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:28.389812 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.389967 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:28.389990 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.390124 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:28.390146 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.390816 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:28.390841 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.390970 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:28.390993 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.391595 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:28.391623 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.391763 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:28.391785 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.392350 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:28.392376 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.392558 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:28.392583 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.393195 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.55 ms +I, [2018-07-26T18:17:28.393250 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.393467 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:28.393498 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.394064 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.5 ms +I, [2018-07-26T18:17:28.394090 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.394246 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:28.394268 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.394714 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-07-26T18:17:28.394740 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.394900 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:28.394942 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.395657 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.61 ms +I, [2018-07-26T18:17:28.395688 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.395845 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:28.395868 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.396364 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:28.396410 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.396555 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:28.396577 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.396708 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:28.396950 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.397104 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:28.397126 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.397249 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:28.397271 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.413213 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-26T18:17:28.413260 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.413428 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:28.413451 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.413966 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.46 ms +I, [2018-07-26T18:17:28.413994 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.414148 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:28.414171 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.414317 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:28.414339 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.414785 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:28.414810 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.414995 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:28.415021 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.415406 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-07-26T18:17:28.415430 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.415573 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:28.415595 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.415984 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:28.416011 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.416160 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:28.416182 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.416317 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:28.416339 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.416726 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:28.416750 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.416905 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:28.416931 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.417066 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:28.417442 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.422037 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-26T18:17:28.422083 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.422259 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:28.422282 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.422865 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.52 ms +I, [2018-07-26T18:17:28.422893 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.423042 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:28.423065 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.423197 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:28.423218 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.423670 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.4 ms +I, [2018-07-26T18:17:28.423719 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.426203 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-26T18:17:28.426243 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.426390 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:28.426411 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.426553 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:28.426573 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.440839 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-26T18:17:28.440885 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.441065 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:28.441088 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.441218 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:28.441240 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.441398 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:28.441421 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.441565 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:28.441585 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.441701 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:28.441719 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.441839 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:28.444920 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.445117 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-26T18:17:28.445139 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.445286 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:28.445314 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.445500 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-26T18:17:28.445524 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.445672 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:28.445692 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.446941 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:28.446967 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.447090 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:28.447110 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.447281 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:28.447304 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.447430 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:28.447450 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.447563 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:28.447599 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.447718 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:28.447737 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.447850 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:28.447869 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.447998 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:28.448018 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.448130 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:28.448150 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.448289 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:28.448311 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.448464 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:28.448485 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.448636 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:28.448659 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.448787 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:28.448807 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.448979 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:28.449001 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.449124 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:28.449145 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.449298 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:28.449323 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.449481 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:28.449504 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.449632 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:28.449652 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.453890 #5] INFO -- : Inline processing of topic section_change with 1 messages took 4.18 ms +I, [2018-07-26T18:17:28.453939 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.454186 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:28.454213 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.454343 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:28.454384 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.454650 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:28.454675 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.454838 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:28.454904 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.455091 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:28.455119 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.455289 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:28.455312 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.455440 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:28.455480 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.455595 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:28.455615 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.455764 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:28.455785 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.455912 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:28.455933 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.456078 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:28.456105 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.456265 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:28.456286 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.456398 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:28.456419 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.456541 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:28.456565 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.456719 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:28.456741 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.456866 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:28.456886 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.458116 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.17 ms +I, [2018-07-26T18:17:28.458150 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.458357 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:28.458382 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.458518 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:28.458540 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.458653 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:28.458673 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.458819 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:28.458841 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.458951 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:28.458971 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.459129 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:28.459189 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.459302 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:28.459324 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.459434 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:28.459454 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.459591 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:28.459613 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.459724 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:28.459745 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.469536 #5] INFO -- : Inline processing of topic section_change with 1 messages took 9.71 ms +I, [2018-07-26T18:17:28.469594 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.469876 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-26T18:17:28.469927 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.470080 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:28.470102 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.470221 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:28.470242 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.470386 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:28.470408 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.470522 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:28.470543 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.471390 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.78 ms +I, [2018-07-26T18:17:28.471421 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.471642 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:28.471668 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.471818 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:28.471843 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.471993 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:28.472016 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.472131 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:28.472151 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.472273 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:28.472297 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.472441 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:28.472462 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.472573 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:28.472594 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.472705 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:28.472730 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.472900 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:28.472924 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.493598 #5] INFO -- : Inline processing of topic section_change with 1 messages took 20.56 ms +I, [2018-07-26T18:17:28.493658 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.493894 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:28.493984 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.494215 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:28.494251 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.494560 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-26T18:17:28.494602 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.494887 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-26T18:17:28.494923 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.495107 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:28.495135 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.495300 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:28.495372 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.495594 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-26T18:17:28.495623 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.495782 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:28.495811 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.496036 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:28.496067 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.496260 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:28.496289 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.496510 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-26T18:17:28.496543 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.496736 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:28.496766 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.497007 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:28.497056 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.497245 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:28.497299 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.497601 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-26T18:17:28.497669 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.503954 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-26T18:17:28.504010 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.504243 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:28.504292 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.504543 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-26T18:17:28.504572 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.504717 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:28.504743 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.504931 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:28.505006 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.505156 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:28.505200 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.510032 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-07-26T18:17:28.510084 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.510372 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-26T18:17:28.510450 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.510652 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:28.510686 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.510866 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:28.510947 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.511185 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-26T18:17:28.511220 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.511395 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:28.511428 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.511607 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:28.511640 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.511844 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:28.511877 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.512128 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:28.512162 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.512366 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:28.512402 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.512580 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:28.512613 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.512791 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:28.512828 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.513132 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-26T18:17:28.513168 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.514954 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.69 ms +I, [2018-07-26T18:17:28.514992 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.515162 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:28.515209 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.515370 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:28.515393 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.515510 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:28.515532 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.515652 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:28.515674 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.515846 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:28.515875 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.516000 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:28.516021 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.516139 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:28.516163 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.516322 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:28.516344 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.516457 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:28.516478 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.516590 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:28.516610 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.516754 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:28.516775 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.516918 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:28.516942 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.517050 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:28.517071 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.517220 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:28.517242 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.517376 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:28.517408 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.517546 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:28.517569 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.517714 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:28.517734 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.521220 #5] INFO -- : Inline processing of topic section_change with 1 messages took 3.38 ms +I, [2018-07-26T18:17:28.521265 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.521493 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:28.521520 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.521684 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:28.521723 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.521887 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:28.521911 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.522029 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:28.522050 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.522198 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:28.522220 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.522334 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:28.522355 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.522470 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:28.522491 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.522637 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:28.522659 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.524727 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.99 ms +I, [2018-07-26T18:17:28.524761 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.524914 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:28.524939 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.525099 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:28.525122 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.525234 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:28.525255 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.525371 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:28.525395 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.525543 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:28.525565 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.525900 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-07-26T18:17:28.525939 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.526099 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:28.526128 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.526279 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:28.526301 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.526414 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:28.526435 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.526548 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:28.526572 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.530712 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-26T18:17:28.530763 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.530923 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:28.530945 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.531065 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:28.531086 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.531239 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:28.531262 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.531379 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:28.531400 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.531511 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:28.531560 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.531762 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:28.531783 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.531897 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:28.531918 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.532028 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:28.532048 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.532192 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:28.532213 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.532325 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:28.532345 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.532462 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:28.532500 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.532718 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:28.532742 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.532857 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:28.532877 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.533235 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:28.533259 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.533406 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:28.533428 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.533602 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:28.533627 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.533798 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:28.533821 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.534047 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:28.534076 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.534238 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:28.534259 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.534408 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:28.534430 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.534653 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:28.534680 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.534829 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:28.534850 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.534997 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:28.535018 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.535395 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-07-26T18:17:28.535423 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.535693 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-26T18:17:28.535739 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.535986 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-26T18:17:28.536025 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.536341 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-26T18:17:28.536378 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.536694 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-26T18:17:28.536732 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.536976 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-26T18:17:28.537010 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.537247 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-26T18:17:28.537399 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.537662 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-26T18:17:28.537693 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.537930 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-26T18:17:28.537961 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.538194 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-26T18:17:28.538268 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.538632 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-07-26T18:17:28.538668 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.538869 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-26T18:17:28.538901 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.539203 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-26T18:17:28.539298 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.539529 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-26T18:17:28.539562 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.539760 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:28.539795 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.540012 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-26T18:17:28.540079 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.540289 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-26T18:17:28.540318 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.540560 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-26T18:17:28.540591 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.540807 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-26T18:17:28.540840 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.541145 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-26T18:17:28.541179 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.541417 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-26T18:17:28.541450 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.541650 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:28.541680 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.553163 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:28.553275 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.553526 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-26T18:17:28.553553 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.553712 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:28.553733 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.553902 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:28.553923 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.554060 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:28.554079 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.567114 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-26T18:17:28.567165 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.567468 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-26T18:17:28.567496 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.567645 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:28.567669 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.567811 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:28.567850 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.568136 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-26T18:17:28.568161 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.568302 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:28.568323 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.568464 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:28.568485 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.568684 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:28.568708 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.568869 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:28.568893 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.569276 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-26T18:17:28.569331 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.570099 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.57 ms +I, [2018-07-26T18:17:28.570139 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.570327 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:28.570365 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.570734 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-07-26T18:17:28.570820 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.571248 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-26T18:17:28.571322 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.571742 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-07-26T18:17:28.571787 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.571971 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:28.571994 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.572180 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:28.572202 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.572352 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:28.572377 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.572534 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:28.572557 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.572806 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-26T18:17:28.572838 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.573011 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:28.573037 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.573189 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:28.573210 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.573425 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:28.573449 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.573597 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:28.584339 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.584762 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-26T18:17:28.584795 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.584984 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:28.585008 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.585156 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:28.585177 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.585323 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:28.585344 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.585548 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:28.585574 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.585727 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:28.585750 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.585895 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:28.585917 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.586089 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:28.586112 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.586285 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:28.586308 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.586445 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:28.586471 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.594317 #5] INFO -- : Inline processing of topic section_change with 1 messages took 3.64 ms +I, [2018-07-26T18:17:28.594418 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.594632 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:28.594656 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.594804 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:28.594826 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.594995 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:28.595017 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.595165 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:28.595192 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.595399 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:28.595427 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.595622 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-26T18:17:28.595647 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.595784 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:28.595809 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.595978 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:28.596006 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.596179 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:28.596202 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.596341 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:28.596369 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.596522 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:28.596544 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.596720 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:28.596742 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.596905 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:28.596929 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.597070 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:28.597092 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.597273 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:28.597306 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.597465 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:28.597493 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.597626 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:28.597650 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.597897 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-26T18:17:28.597950 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.598244 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-26T18:17:28.598315 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.599042 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-07-26T18:17:28.599084 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.604184 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-07-26T18:17:28.604230 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.604438 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-26T18:17:28.604465 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.604593 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:28.604619 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.604785 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:28.604832 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.604992 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:28.605015 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.605131 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:28.605152 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.605302 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:28.605324 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.605502 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:28.605527 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.605652 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:28.605678 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.605834 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:28.605950 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.606122 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:28.606144 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.606269 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:28.606295 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.606488 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-26T18:17:28.606514 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.606689 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:28.606713 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.606834 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:28.606898 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.607079 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:28.607103 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.607222 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:28.607244 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.607393 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:28.607423 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.607590 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:28.607613 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.607726 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:28.607749 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.607886 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:28.607910 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.608069 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:28.608091 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.608202 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:28.608223 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.608340 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:28.608382 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.609071 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:28.609098 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.609222 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:28.609244 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.609419 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:28.609446 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.609606 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:28.609629 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.609747 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:28.609769 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.609922 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:28.609951 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.610179 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-26T18:17:28.610222 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.610349 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:28.610413 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.610582 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:28.610604 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.610780 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-26T18:17:28.610802 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.610998 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-26T18:17:28.611023 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.611161 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:28.611183 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.611351 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:28.611373 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.611499 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:28.611520 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.611658 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:28.611677 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.611812 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:28.611832 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.612020 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:28.612043 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.612169 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:28.612192 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.612424 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-26T18:17:28.612453 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.612576 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:28.612596 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.612719 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:28.612738 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.612928 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-26T18:17:28.612952 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.613085 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:28.613105 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.613225 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:28.613246 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.665401 #5] INFO -- : Inline processing of topic section_change with 1 messages took 52.06 ms +I, [2018-07-26T18:17:28.665454 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.665684 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-26T18:17:28.665708 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.665916 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-26T18:17:28.665942 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.666134 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:28.666157 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.666296 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:28.666317 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.666450 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:28.666475 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.666643 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:28.666665 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.666791 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:28.666843 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.666990 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:28.667012 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.667179 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:28.667201 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.667332 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:28.667353 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.667488 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:28.667512 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.667662 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:28.667684 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.668066 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:28.668095 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.668239 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:28.668260 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.669586 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-26T18:17:28.669628 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.669856 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-26T18:17:28.669883 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.670030 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:28.670052 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.670577 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-26T18:17:28.670605 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.670770 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:28.670795 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.670941 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:28.670963 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.671130 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:28.671154 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.671279 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:28.671300 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.671431 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:28.671453 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.671587 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:28.671638 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.671785 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:28.671810 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.671945 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:28.671967 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.672104 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:28.672156 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.672290 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:28.672333 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.672452 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:28.672473 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.672604 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:28.672655 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.672809 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:28.672834 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.672975 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:28.672997 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.673130 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:28.673166 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.673301 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:28.673323 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.673575 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-26T18:17:28.673600 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.681752 #5] INFO -- : Inline processing of topic section_change with 1 messages took 8.07 ms +I, [2018-07-26T18:17:28.681800 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.681991 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:28.682018 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.682169 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:28.682191 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.682326 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:28.682348 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.682488 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:28.682537 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.682672 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:28.682695 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.682832 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:28.682853 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.683039 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:28.683087 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.683217 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:28.683238 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.683404 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:28.683425 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.683570 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:28.683610 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.694110 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-26T18:17:28.694156 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.694324 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:28.694350 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.694495 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:28.694517 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.694661 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:28.694683 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.694810 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:28.694833 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.695008 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:28.695031 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.695152 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:28.695174 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.695346 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:28.695377 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.695535 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:28.695557 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.695677 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:28.695701 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.695883 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-26T18:17:28.695909 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.696048 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:28.696069 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.696210 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:28.696232 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.696427 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:28.696453 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.696588 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:28.696609 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.696754 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:28.696820 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.697038 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:28.697062 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.697196 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:28.697217 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.697493 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:28.697517 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.697661 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:28.697682 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.710050 #5] INFO -- : Inline processing of topic section_change with 1 messages took 12.29 ms +I, [2018-07-26T18:17:28.710100 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.710321 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:28.710358 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.710555 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:28.710578 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.710731 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:28.710753 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.710937 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:28.710965 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.711109 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:28.711131 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.711247 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:28.711271 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.711426 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:28.711447 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.711564 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:28.711585 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.711731 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:28.711753 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.725126 #5] INFO -- : Inline processing of topic section_change with 1 messages took 13.28 ms +I, [2018-07-26T18:17:28.725175 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.725620 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-26T18:17:28.725649 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.726073 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:28.726099 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.726234 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:28.726256 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.726412 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:28.726434 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.726594 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:28.726622 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.726796 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:28.726818 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.726949 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:28.726970 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.727115 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:28.727137 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.727274 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:28.727296 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.727409 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:28.727430 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.727594 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:28.727618 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.727735 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:28.727759 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.727875 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:28.727896 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.728271 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-26T18:17:28.728309 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.728452 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:28.728494 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.728656 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:28.728677 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.728802 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:28.728829 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.728963 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:28.728984 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.729116 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:28.729146 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.729292 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:28.729313 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.735196 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:28.735268 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.735746 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-26T18:17:28.735773 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.735937 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:28.735959 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.736110 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:28.736163 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.736338 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:28.736370 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.736553 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:28.736581 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.736761 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:28.736783 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.736956 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:28.736978 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.737134 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:28.737155 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.737367 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-26T18:17:28.737399 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.737826 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-07-26T18:17:28.737873 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.738084 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:28.738173 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.738397 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-26T18:17:28.738425 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.748677 #5] INFO -- : Inline processing of topic section_change with 1 messages took 7.2 ms +I, [2018-07-26T18:17:28.748786 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.749034 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-26T18:17:28.749059 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.749271 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:28.749297 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.749466 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:28.749487 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.749647 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:28.749674 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.749834 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:28.749860 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.750024 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:28.750045 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.750298 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-26T18:17:28.750322 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.750587 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:28.750619 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.750763 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:28.750791 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.750943 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:28.761941 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.762215 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-26T18:17:28.762245 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.762393 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:28.762415 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.762555 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:28.762584 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.762736 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:28.762762 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.762944 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:28.762981 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.764870 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:28.764901 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.765028 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:28.765072 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.765183 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:28.765203 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.765343 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:28.765391 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.765506 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:28.765526 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.765654 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:28.765674 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.765814 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:28.765837 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.765972 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:28.765992 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.766096 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:28.766116 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.766243 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:28.766262 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.766364 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:28.766383 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.776451 #5] INFO -- : Inline processing of topic section_change with 1 messages took 6.75 ms +I, [2018-07-26T18:17:28.776500 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.776932 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-26T18:17:28.776965 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.777103 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:28.777125 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.781901 #5] INFO -- : Inline processing of topic section_change with 1 messages took 4.67 ms +I, [2018-07-26T18:17:28.781949 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.782135 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:28.782158 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.782307 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:28.782329 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.782464 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:28.782495 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.782649 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:28.782671 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.782783 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:28.782803 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.782938 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:28.782959 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.783068 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:28.783088 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.783223 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:28.783243 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.783351 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:28.783371 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.783764 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-07-26T18:17:28.783790 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.783910 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:28.783931 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.784081 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:28.784101 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.784210 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:28.784230 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.784364 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:28.784384 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.784524 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:28.784573 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.784684 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:28.784704 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.784811 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:28.784856 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.784965 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:28.784986 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.785119 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:28.785141 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.785249 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:28.785269 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.790237 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:28.790342 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.790568 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:28.790591 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.790744 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:28.790766 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.790880 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:28.790901 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.791039 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:28.791059 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.791172 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:28.791192 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.791363 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:28.791388 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.791517 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:28.791538 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.793469 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-07-26T18:17:28.793513 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.793675 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:28.793698 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.793914 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-26T18:17:28.793955 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.794570 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:28.794603 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.794763 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:28.794805 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.794925 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:28.794947 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.795089 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:28.795111 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.802003 #5] INFO -- : Inline processing of topic section_change with 1 messages took 6.81 ms +I, [2018-07-26T18:17:28.802055 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.802355 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-26T18:17:28.802383 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.802532 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:28.802554 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.802716 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:28.802760 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.803137 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-07-26T18:17:28.803161 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.803336 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:28.803361 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.803495 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:28.803542 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.803671 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:28.803692 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.803846 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:28.803896 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.804031 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:28.804052 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.804205 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:28.804227 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.804395 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:28.804416 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.804569 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:28.804590 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.804714 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:28.804758 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.805041 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-26T18:17:28.805287 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.805535 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-26T18:17:28.805578 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.810951 #5] INFO -- : Inline processing of topic section_change with 1 messages took 5.25 ms +I, [2018-07-26T18:17:28.811019 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.811319 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-26T18:17:28.811359 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.811627 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-26T18:17:28.811665 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.811911 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-26T18:17:28.811950 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.812212 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-26T18:17:28.812250 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.812703 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-26T18:17:28.812763 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.813029 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-26T18:17:28.813067 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.813288 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-26T18:17:28.817495 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.820435 #5] INFO -- : Inline processing of topic section_change with 1 messages took 2.63 ms +I, [2018-07-26T18:17:28.820512 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.820872 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-26T18:17:28.820912 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.821204 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-26T18:17:28.821236 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.830126 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-26T18:17:28.830174 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.830372 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-26T18:17:28.830448 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.830610 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:28.830631 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.830792 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:28.830812 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.830945 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:28.830964 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.831122 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:28.831142 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.831273 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:28.831293 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.831501 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:28.831524 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.831651 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:28.831696 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.831822 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:28.831842 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.831964 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:28.832008 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.832144 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:28.832163 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.832318 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:28.832338 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.832507 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:28.832528 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.832676 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:28.832696 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.832827 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:28.832846 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.832997 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:28.833017 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.833134 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:28.833154 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.833306 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:28.833344 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.833496 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:28.833516 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.833646 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:28.833666 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.833767 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:28.833786 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.833929 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:28.833949 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.834078 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:28.834097 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.857236 #5] INFO -- : Inline processing of topic section_change with 1 messages took 22.94 ms +I, [2018-07-26T18:17:28.857320 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.857540 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:28.857565 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.873765 #5] INFO -- : Inline processing of topic section_change with 1 messages took 16.09 ms +I, [2018-07-26T18:17:28.873828 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.874114 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-26T18:17:28.874144 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.874373 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-26T18:17:28.874402 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.874581 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:28.874613 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.874813 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:28.874840 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.887757 #5] INFO -- : Inline processing of topic section_change with 1 messages took 11.61 ms +I, [2018-07-26T18:17:28.887893 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.893908 #5] INFO -- : Inline processing of topic section_change with 1 messages took 5.65 ms +I, [2018-07-26T18:17:28.893966 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.894227 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-26T18:17:28.894256 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.894438 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:28.894461 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.894586 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:28.894633 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.894748 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:28.894770 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.894896 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:28.894948 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.895062 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:28.895198 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.895365 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:28.895387 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.895501 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:28.895522 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.895682 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:28.895808 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.895936 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:28.895958 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.896092 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:28.896142 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.896291 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:28.896315 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.896452 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:28.896473 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.896582 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:28.896604 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.896775 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:28.896799 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.896914 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:28.896935 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.897071 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:28.897092 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.897232 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:28.897265 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.897419 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:28.897441 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.905987 #5] INFO -- : Inline processing of topic section_change with 1 messages took 8.48 ms +I, [2018-07-26T18:17:28.906037 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.906280 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-26T18:17:28.906306 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.906432 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:28.906454 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.906595 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:28.906617 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.906754 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:28.906778 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.906925 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:28.906946 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.907062 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:28.907083 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.907254 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:28.907279 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.907401 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:28.907422 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.907569 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:28.907590 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.907735 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:28.907791 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.933678 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-26T18:17:28.933730 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.933932 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:28.933985 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.934104 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:28.934126 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.934282 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:28.934309 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.934433 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:28.934454 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.934593 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:28.934614 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.934723 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:28.934743 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.934908 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:28.934932 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.935042 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:28.935063 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.935196 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:28.935217 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.935353 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:28.935377 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.935516 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:28.935537 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.935646 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:28.935666 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.935826 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:28.935850 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.935966 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:28.935987 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.936143 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:28.936163 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.936312 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:28.936336 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.936524 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:28.936545 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.936670 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:28.936690 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.936875 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-26T18:17:28.936898 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.937022 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:28.937043 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.937191 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:28.937213 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.937405 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-26T18:17:28.939100 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.939485 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-26T18:17:28.939522 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.939730 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-26T18:17:28.939760 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.940035 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-26T18:17:28.940068 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.940266 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:28.940354 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.940568 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-26T18:17:28.940598 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.940802 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:28.940873 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.941071 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:28.941101 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.941342 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-26T18:17:28.941375 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.941561 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:28.951365 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.951763 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-26T18:17:28.951823 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.952079 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-26T18:17:28.952117 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.952393 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-26T18:17:28.952434 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.952674 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-26T18:17:28.952713 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.953024 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-26T18:17:28.953079 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.953298 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-26T18:17:28.965596 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.965900 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-26T18:17:28.965929 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.966089 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:28.966111 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.966272 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:28.966293 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.966455 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:28.966479 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.966657 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-26T18:17:28.966679 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.966790 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:28.966810 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.967037 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-26T18:17:28.967061 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.967199 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:28.967220 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.967397 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:28.967422 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.967542 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:28.967563 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.967699 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:28.967720 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.967827 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:28.967863 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.968034 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:28.968055 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.968181 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:28.968202 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.968374 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:28.968398 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.968533 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:28.968580 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.968736 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:28.968757 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.968913 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:28.968962 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.969089 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:28.969111 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.969236 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:28.969282 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.993618 #5] INFO -- : Inline processing of topic section_change with 1 messages took 24.24 ms +I, [2018-07-26T18:17:28.993682 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.994040 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-26T18:17:28.994075 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.994242 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:28.994265 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.994409 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:28.994456 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.994602 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:28.994623 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:28.994988 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-26T18:17:28.995015 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.006189 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-26T18:17:29.006235 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.006406 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:29.006429 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.006599 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:29.006624 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.006787 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:29.006808 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.006942 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:29.006986 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.007156 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:29.007177 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.007310 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:29.007330 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.007700 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-07-26T18:17:29.007738 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.007930 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:29.007972 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.008160 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:29.008182 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.008294 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:29.008315 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.008502 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:29.008526 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.008698 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:29.008724 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.008887 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:29.008909 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.009123 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:29.009174 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.009308 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:29.009330 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.019820 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:29.020784 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.022037 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.71 ms +I, [2018-07-26T18:17:29.022069 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.022259 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:29.022283 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.022406 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:29.022428 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.022621 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-26T18:17:29.022646 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.022815 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:29.022840 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.023033 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-26T18:17:29.023058 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.023199 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:29.023220 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.023380 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:29.023402 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.023558 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:29.023581 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.030396 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-26T18:17:29.030456 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.030670 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:29.030701 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.030879 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:29.030901 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.031061 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:29.031086 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.031261 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:29.033959 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.034213 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-26T18:17:29.034240 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.034408 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:29.034430 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.034593 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:29.034617 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.034790 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:29.034811 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.034924 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:29.034944 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.035132 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:29.035156 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.035289 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:29.035310 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.035456 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:29.035476 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.035677 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-26T18:17:29.035702 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.035865 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:29.035887 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.035999 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:29.036019 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.036191 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:29.036212 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.036323 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:29.036368 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.036479 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:29.036500 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.036644 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:29.036695 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.036809 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:29.036830 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.049638 #5] INFO -- : Inline processing of topic section_change with 1 messages took 4.1 ms +I, [2018-07-26T18:17:29.049748 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.050141 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-26T18:17:29.050195 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.050477 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-26T18:17:29.050516 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.068148 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-26T18:17:29.068217 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.068500 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-26T18:17:29.068537 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.071845 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-07-26T18:17:29.071939 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.072319 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-26T18:17:29.072368 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.072654 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-26T18:17:29.072707 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.073034 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-26T18:17:29.073071 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.073330 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-26T18:17:29.073370 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.083432 #5] INFO -- : Inline processing of topic section_change with 1 messages took 9.7 ms +I, [2018-07-26T18:17:29.083516 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.083819 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-26T18:17:29.083853 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.084076 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-26T18:17:29.084099 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.084278 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:29.084303 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.084484 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:29.084506 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.093730 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-26T18:17:29.093825 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.094028 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:29.094080 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.094252 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:29.094278 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.094468 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-26T18:17:29.094491 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.094661 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:29.094701 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.094868 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:29.094891 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.095068 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:29.095091 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.095275 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-26T18:17:29.095301 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.095467 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:29.095488 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.095645 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:29.095667 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.095848 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:29.095872 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.096042 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:29.096063 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.096234 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:29.096258 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.096419 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:29.096440 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.096579 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:29.096600 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.096772 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:29.096811 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.096972 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:29.096993 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.097134 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:29.097156 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.097344 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:29.097368 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.097524 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:29.097546 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.097774 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-26T18:17:29.097805 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.098000 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-26T18:17:29.098060 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.099112 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.86 ms +I, [2018-07-26T18:17:29.099175 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.099501 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-26T18:17:29.099532 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.099749 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:29.099776 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.100022 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-26T18:17:29.100048 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.100239 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:29.100264 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.113618 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-26T18:17:29.113673 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.113906 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:29.113933 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.114090 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:29.114112 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.114274 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:29.114300 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.114451 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:29.126105 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.130167 #5] INFO -- : Inline processing of topic section_change with 1 messages took 3.08 ms +I, [2018-07-26T18:17:29.130217 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.130484 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-26T18:17:29.130512 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.130671 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:29.130692 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.130866 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:29.130891 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.131044 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:29.131066 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.131237 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:29.131259 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.131427 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:29.131451 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.131586 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:29.131608 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.131744 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:29.131764 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.131927 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:29.131950 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.132086 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:29.132108 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.132245 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:29.132267 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.132438 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:29.132463 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.132603 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:29.132624 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.132759 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:29.132780 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.132976 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:29.132999 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.133148 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:29.133170 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.133337 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:29.133363 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.133509 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:29.133531 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.133661 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:29.133682 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.133862 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:29.133886 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.134019 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:29.134040 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.134169 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:29.134190 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.134971 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.7 ms +I, [2018-07-26T18:17:29.135016 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.135218 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:29.135241 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.135420 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:29.135445 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.135582 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:29.135603 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.135736 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:29.135758 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.135977 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:29.136002 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.136187 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:29.136208 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.136762 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.48 ms +I, [2018-07-26T18:17:29.136948 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.139191 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.55 ms +I, [2018-07-26T18:17:29.139237 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.141573 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.66 ms +I, [2018-07-26T18:17:29.141606 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.141919 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-26T18:17:29.153888 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.162355 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-26T18:17:29.162450 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.162753 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-26T18:17:29.162777 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.162990 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-26T18:17:29.163016 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.163203 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:29.163225 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.163430 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-26T18:17:29.163454 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.163638 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:29.163660 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.163795 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:29.163816 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.163994 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:29.164047 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.164208 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:29.164229 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.164413 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:29.164438 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.164599 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:29.164620 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.164769 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:29.164790 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.164975 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:29.164999 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.165153 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:29.165174 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.165315 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:29.165337 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.165500 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:29.165524 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.165682 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:29.165704 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.165843 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:29.165864 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.182368 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-26T18:17:29.182414 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.182688 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-26T18:17:29.182714 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.182909 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:29.182954 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.183101 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:29.183123 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.183260 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:29.183282 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.183483 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-26T18:17:29.183508 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.183695 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:29.183716 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.183959 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-26T18:17:29.183984 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.184175 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:29.184196 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.184327 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:29.184348 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.184514 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:29.198340 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.200383 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-26T18:17:29.200430 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.208695 #5] INFO -- : Inline processing of topic section_change with 1 messages took 8.15 ms +I, [2018-07-26T18:17:29.208746 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.209046 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-26T18:17:29.209074 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.209231 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:29.209253 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.209429 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:29.209453 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.209682 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-26T18:17:29.209716 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.209904 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-26T18:17:29.209926 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.210140 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-26T18:17:29.210168 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.210364 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-26T18:17:29.210388 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.210627 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-26T18:17:29.210652 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.211392 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-26T18:17:29.211433 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.211637 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-26T18:17:29.211664 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.211833 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:29.211860 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.212030 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:29.212055 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.212213 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:29.212236 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.212483 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:29.212528 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.212693 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:29.212715 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.212861 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:29.212893 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.213086 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-26T18:17:29.213110 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.213275 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:29.213297 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.213426 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:29.213447 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.213646 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:29.213679 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.213816 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:29.213851 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.213983 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:29.214025 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.214177 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:29.214198 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.214349 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:29.214370 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.214536 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:29.214570 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.214735 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:29.214757 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.214877 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:29.214908 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.215084 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:29.215107 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.215246 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:29.215277 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.246485 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-26T18:17:29.246534 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.247311 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-26T18:17:29.247343 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.247519 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:29.247542 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.248258 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:29.248298 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.248438 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:29.248470 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.249191 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.64 ms +I, [2018-07-26T18:17:29.249233 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.249452 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:29.249485 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.250253 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.68 ms +I, [2018-07-26T18:17:29.250295 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.250484 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:29.250507 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.251260 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.68 ms +I, [2018-07-26T18:17:29.251299 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.251481 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:29.251503 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.252688 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.11 ms +I, [2018-07-26T18:17:29.252723 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.252907 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:29.252936 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.253174 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:29.253207 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.253397 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-26T18:17:29.253425 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.253584 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:29.253663 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.253841 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:29.253870 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.254033 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:29.254056 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.254340 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-26T18:17:29.254373 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.254531 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:29.254560 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.255401 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.74 ms +I, [2018-07-26T18:17:29.255463 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.255684 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-26T18:17:29.255714 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.255906 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:29.255932 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.256107 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:29.256223 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.295576 #5] INFO -- : Inline processing of topic section_change with 1 messages took 39.19 ms +I, [2018-07-26T18:17:29.295632 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.296201 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-26T18:17:29.296284 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.296551 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:29.296585 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.296833 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-26T18:17:29.296875 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.297113 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:29.297151 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.297463 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-26T18:17:29.297532 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.297719 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:29.297874 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.298138 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:29.301531 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.313173 #5] INFO -- : Inline processing of topic section_change with 1 messages took 10.01 ms +I, [2018-07-26T18:17:29.313310 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.313667 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-26T18:17:29.313693 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.314000 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-26T18:17:29.319393 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.319738 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-26T18:17:29.319767 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.320043 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:29.320071 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.320250 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:29.320273 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.320465 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:29.320489 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.320649 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:29.320670 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.338002 #5] INFO -- : Inline processing of topic section_change with 1 messages took 17.25 ms +I, [2018-07-26T18:17:29.338056 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.338309 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-26T18:17:29.338354 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.338654 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-26T18:17:29.341529 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.341944 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-26T18:17:29.341979 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.342213 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:29.342246 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.342421 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:29.342447 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.342864 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:29.342896 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.343058 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:29.343079 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.343237 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:29.343258 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.343440 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:29.343479 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.343661 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:29.343727 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.343925 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:29.343951 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.344135 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:29.344159 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.344315 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:29.344338 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.344550 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:29.344576 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.344714 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:29.344735 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.350648 #5] INFO -- : Inline processing of topic section_change with 1 messages took 5.82 ms +I, [2018-07-26T18:17:29.350696 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.353705 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-26T18:17:29.353778 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.353989 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-26T18:17:29.354015 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.354193 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:29.354215 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.354333 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:29.354354 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.354545 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:29.354569 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.354726 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:29.354748 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.362354 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.97 ms +I, [2018-07-26T18:17:29.362422 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.362597 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:29.362620 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.362769 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:29.362791 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.362926 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:29.362951 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.363097 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:29.363119 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.363230 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:29.363251 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.363388 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:29.363432 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.363556 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:29.363576 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.363713 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:29.363734 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.363843 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:29.363890 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.364042 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:29.364066 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.364200 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:29.364221 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.364341 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:29.364363 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.364527 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:29.364552 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.364665 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:29.364686 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.364821 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:29.364842 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.364994 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:29.365018 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.365167 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:29.365188 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.365316 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:29.365337 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.381111 #5] INFO -- : Inline processing of topic section_change with 1 messages took 15.71 ms +I, [2018-07-26T18:17:29.381158 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.381342 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:29.381366 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.381613 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:29.381638 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.381778 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:29.381826 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.393664 #5] INFO -- : Inline processing of topic section_change with 1 messages took 11.75 ms +I, [2018-07-26T18:17:29.393715 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.393955 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:29.393998 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.394160 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:29.394182 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.394344 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:29.394365 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.394503 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:29.394529 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.394699 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:29.394721 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.394855 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:29.394876 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.395061 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-26T18:17:29.395113 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.395254 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:29.395292 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.406443 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-26T18:17:29.406488 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.406682 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:29.406708 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.406855 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:29.406877 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.408338 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:29.408369 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.408575 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:29.408601 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.408758 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:29.408805 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.419997 #5] INFO -- : Inline processing of topic section_change with 1 messages took 11.13 ms +I, [2018-07-26T18:17:29.420045 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.420250 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:29.420301 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.420444 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:29.420465 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.420649 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-26T18:17:29.420674 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.420815 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:29.420837 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.420996 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:29.421017 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.421194 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:29.421218 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.421380 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:29.421401 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.421533 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:29.421585 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.421807 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-26T18:17:29.421832 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.421971 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:29.421992 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.422176 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-26T18:17:29.422201 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.422357 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:29.422378 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.422518 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:29.422539 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.422714 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:29.422767 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.422912 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:29.422933 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.423132 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:29.423158 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.423280 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:29.423302 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.423438 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:29.423459 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.423592 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:29.423616 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.423762 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:29.423783 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.423894 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:29.423916 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.424053 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:29.424096 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.424217 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:29.424237 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.424374 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:29.424394 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.430474 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-26T18:17:29.430520 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.430733 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:29.430760 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.430882 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:29.430904 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.431043 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:29.431065 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.431269 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:29.431320 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.431436 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:29.431457 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.431611 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:29.431641 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.431777 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:29.431800 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.431940 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:29.431961 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.432071 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:29.436879 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.437200 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-26T18:17:29.437237 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.437423 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:29.437448 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.437714 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-26T18:17:29.437741 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.437900 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:29.437922 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.438064 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:29.438085 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.439093 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-26T18:17:29.439147 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.439573 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-26T18:17:29.439617 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.439813 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:29.439839 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.439996 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:29.440019 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.440154 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:29.440204 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.440323 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:29.440344 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.440482 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:29.440503 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.445862 #5] INFO -- : Inline processing of topic section_change with 1 messages took 5.3 ms +I, [2018-07-26T18:17:29.445910 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.446114 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:29.446167 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.447468 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.23 ms +I, [2018-07-26T18:17:29.447507 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.447720 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-26T18:17:29.447746 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.447871 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:29.447893 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.448055 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:29.448077 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.453596 #5] INFO -- : Inline processing of topic section_change with 1 messages took 5.46 ms +I, [2018-07-26T18:17:29.453686 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.453925 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-26T18:17:29.453948 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.454113 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:29.454135 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.454345 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:29.454421 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.459853 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-26T18:17:29.459899 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.460086 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:29.460108 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.460254 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:29.460306 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.460427 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:29.460448 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.460593 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:29.460614 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.460744 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:29.460766 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.460904 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:29.460926 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.461036 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:29.461058 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.461245 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-26T18:17:29.461296 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.461434 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:29.461455 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.461614 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:29.461635 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.461928 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:29.461955 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.462120 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:29.462142 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.462285 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:29.462308 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.462448 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:29.462469 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.462577 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:29.462598 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.462763 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:29.462788 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.467481 #5] INFO -- : Inline processing of topic section_change with 1 messages took 4.63 ms +I, [2018-07-26T18:17:29.467556 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.467772 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:29.467799 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.467952 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:29.467974 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.468090 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:29.468111 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.468302 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:29.468326 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.468442 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:29.468464 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.468601 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:29.468622 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.474832 #5] INFO -- : Inline processing of topic section_change with 1 messages took 6.14 ms +I, [2018-07-26T18:17:29.474883 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.475112 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-26T18:17:29.475137 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.475311 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:29.475336 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.475506 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:29.475528 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.475661 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:29.475682 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.482357 #5] INFO -- : Inline processing of topic section_change with 1 messages took 6.55 ms +I, [2018-07-26T18:17:29.482408 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.482630 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-26T18:17:29.482654 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.496404 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-26T18:17:29.496451 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.496623 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:29.496674 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.497061 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:29.497091 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.497337 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-26T18:17:29.497371 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.497542 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:29.497564 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.523996 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-07-26T18:17:29.524093 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.524376 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-26T18:17:29.524405 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.524600 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-26T18:17:29.524622 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.524796 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:29.524818 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.525048 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-26T18:17:29.525072 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.525234 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:29.525255 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.525475 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-26T18:17:29.525501 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.525668 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:29.525689 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.526129 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-26T18:17:29.526154 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.526369 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-26T18:17:29.526394 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.526585 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:29.526607 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.526758 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:29.526804 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.526985 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:29.527009 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.527203 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-26T18:17:29.527224 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.527400 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:29.527424 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.527566 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:29.527587 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.527707 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:29.527727 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.527886 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:29.527910 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.528248 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-07-26T18:17:29.528285 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.528513 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-26T18:17:29.528538 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.528678 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:29.528699 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.528883 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-26T18:17:29.528908 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.529052 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:29.529072 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.529231 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:29.529253 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.529449 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-26T18:17:29.529506 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.529661 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:29.529682 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.529852 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:29.529901 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.530139 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-26T18:17:29.530165 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.530355 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:29.530386 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.530509 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:29.530530 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.530716 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-26T18:17:29.530740 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.530880 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:29.530904 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.531089 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-26T18:17:29.531110 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.531221 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:29.531242 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.531494 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:29.531518 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.531631 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:29.531651 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.531795 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:29.531816 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.532072 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-26T18:17:29.532096 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.532251 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:29.532272 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.535629 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-26T18:17:29.535727 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.535993 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-26T18:17:29.536021 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.536198 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:29.536221 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.536343 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:29.536384 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.536541 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:29.536562 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.536728 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:29.536752 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.538184 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.35 ms +I, [2018-07-26T18:17:29.538253 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.538493 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-26T18:17:29.538521 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.538679 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:29.538702 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.538817 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:29.538838 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.539012 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:29.539036 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.539149 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:29.539170 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.539309 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:29.539329 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.539474 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:29.539498 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.539638 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:29.539659 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.539769 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:29.539818 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.539956 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:29.539980 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.540120 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:29.540141 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.540250 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:29.540271 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.540558 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:29.540585 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.540699 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:29.540720 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.540854 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:29.541012 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.541146 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:29.541167 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.541305 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:29.541326 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.541468 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:29.541492 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.541737 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:29.541761 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.541911 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:29.541940 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.542091 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:29.542113 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.542224 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:29.542245 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.542403 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:29.542428 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.542548 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:29.542595 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.542705 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:29.542725 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.542858 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:29.542898 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.543026 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:29.543046 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.543217 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:29.543242 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.543362 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:29.543403 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.543554 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:29.543575 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.543684 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:29.543705 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.543841 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:29.543861 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.544002 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:29.544026 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.560078 #5] INFO -- : Inline processing of topic section_change with 1 messages took 15.97 ms +I, [2018-07-26T18:17:29.560182 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.560399 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:29.560438 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.560670 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:29.560695 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.560844 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:29.560867 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.561039 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:29.561064 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.561194 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:29.561242 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.561369 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:29.561391 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.571656 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-26T18:17:29.571751 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.571995 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-26T18:17:29.572023 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.572223 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-26T18:17:29.572247 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.572392 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:29.585253 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.585599 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-26T18:17:29.585639 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.586130 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-26T18:17:29.586199 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.590674 #5] INFO -- : Inline processing of topic section_change with 1 messages took 4.34 ms +I, [2018-07-26T18:17:29.590732 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.595394 #5] INFO -- : Inline processing of topic section_change with 1 messages took 4.51 ms +I, [2018-07-26T18:17:29.595473 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.605016 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.38 ms +I, [2018-07-26T18:17:29.605139 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.608816 #5] INFO -- : Inline processing of topic section_change with 1 messages took 2.74 ms +I, [2018-07-26T18:17:29.608893 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.609193 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-26T18:17:29.609221 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.609392 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:29.609414 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.616634 #5] INFO -- : Inline processing of topic section_change with 1 messages took 7.11 ms +I, [2018-07-26T18:17:29.616690 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.616935 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-26T18:17:29.616959 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.617174 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-26T18:17:29.617205 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.617412 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-26T18:17:29.617437 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.617692 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-26T18:17:29.617718 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.618402 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-26T18:17:29.618641 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.618842 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:29.618865 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.619027 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:29.619048 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.621014 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-26T18:17:29.621073 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.621401 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:29.621429 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.625701 #5] INFO -- : Inline processing of topic section_change with 1 messages took 4.15 ms +I, [2018-07-26T18:17:29.625750 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.625984 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-26T18:17:29.626007 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.626212 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-26T18:17:29.626237 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.626400 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:29.626421 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.626577 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:29.626613 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.626773 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:29.626795 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.626959 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:29.626981 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.627149 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:29.627173 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.627335 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:29.627367 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.627510 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:29.627531 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.627701 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:29.627767 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.627915 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:29.627936 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.628061 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:29.628083 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.639410 #5] INFO -- : Inline processing of topic section_change with 1 messages took 3.15 ms +I, [2018-07-26T18:17:29.640006 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.641518 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-26T18:17:29.641556 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.650363 #5] INFO -- : Inline processing of topic section_change with 1 messages took 8.71 ms +I, [2018-07-26T18:17:29.650417 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.650644 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-26T18:17:29.650693 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.650860 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:29.650882 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.651019 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:29.651041 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.651190 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:29.651216 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.651358 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:29.651380 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.651512 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:29.651533 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.651682 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:29.651710 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.651848 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:29.651869 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.661358 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:29.661435 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.661676 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:29.663029 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.663300 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-26T18:17:29.663329 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.663488 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:29.663510 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.663648 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:29.663674 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.663841 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:29.663881 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.663998 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:29.664038 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.664154 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:29.664192 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.664338 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:29.664380 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.664490 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:29.664529 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.664658 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:29.664679 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.664851 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:29.664875 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.665009 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:29.665030 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.665159 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:29.665180 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.665353 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:29.665377 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.665507 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:29.665528 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.665659 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:29.665679 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.665931 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:29.665964 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.666162 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:29.666192 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.666535 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:29.666566 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.666732 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:29.687845 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.688252 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-26T18:17:29.688351 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.688618 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-26T18:17:29.688656 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.695851 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-26T18:17:29.695914 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.696187 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-26T18:17:29.696225 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.696569 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-26T18:17:29.696611 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.696871 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-26T18:17:29.696910 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.697132 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-26T18:17:29.697172 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.697446 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-26T18:17:29.697483 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.697705 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-26T18:17:29.697743 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.698069 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-26T18:17:29.698104 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.698342 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-26T18:17:29.698378 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.698582 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:29.698614 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.698834 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:29.698869 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.699068 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:29.699099 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.699318 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:29.699356 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.699556 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:29.699590 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.699814 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:29.699857 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.700478 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.5 ms +I, [2018-07-26T18:17:29.700526 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.700871 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-26T18:17:29.700919 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.701381 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-26T18:17:29.701507 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.701884 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-26T18:17:29.701961 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.702294 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-26T18:17:29.702743 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.703075 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-26T18:17:29.703153 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.703502 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-26T18:17:29.703542 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.703904 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-26T18:17:29.703946 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.704291 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-26T18:17:29.704379 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.704927 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-07-26T18:17:29.704980 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.705375 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-26T18:17:29.705416 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.705692 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-26T18:17:29.705727 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.710173 #5] INFO -- : Inline processing of topic section_change with 1 messages took 4.35 ms +I, [2018-07-26T18:17:29.710225 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.710498 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-26T18:17:29.710526 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.727143 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-26T18:17:29.727197 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.727467 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-26T18:17:29.727495 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.727703 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-26T18:17:29.727726 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.727961 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-26T18:17:29.727988 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.728191 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-26T18:17:29.728215 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.728431 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-26T18:17:29.728458 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.728670 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-26T18:17:29.728694 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.728935 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-26T18:17:29.729005 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.729197 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-26T18:17:29.729229 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.729363 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:29.738592 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.739032 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-26T18:17:29.739078 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.739241 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:29.739263 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.739423 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:29.739450 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.739606 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:29.739628 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.739823 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-26T18:17:29.739856 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.740094 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-26T18:17:29.740118 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.740325 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-26T18:17:29.740348 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.741069 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.66 ms +I, [2018-07-26T18:17:29.741115 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.741336 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-26T18:17:29.741359 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.741568 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:29.741593 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.741747 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:29.741769 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.741970 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-26T18:17:29.741996 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.742150 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:29.742171 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.742300 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:29.742321 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.742504 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-26T18:17:29.742528 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.742682 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:29.742717 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.742870 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:29.742901 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.743113 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:29.743142 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.743316 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:29.743338 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.743525 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-26T18:17:29.743556 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.743713 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:29.743749 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.743880 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:29.759053 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.759328 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-26T18:17:29.759354 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.759550 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:29.759582 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.759751 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:29.759773 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.759940 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:29.759995 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.761343 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-26T18:17:29.761385 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.761608 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-26T18:17:29.761634 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.761799 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:29.761820 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.762044 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:29.762081 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.762260 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:29.762282 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.762451 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:29.762499 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.762660 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:29.762691 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.762873 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:29.762895 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.763125 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:29.763163 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.763303 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:29.763330 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.763643 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:29.763682 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.763842 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:29.763868 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.764046 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:29.764075 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.764228 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:29.764253 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.764406 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:29.764444 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.766343 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:29.766372 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.769601 #5] INFO -- : Inline processing of topic section_change with 1 messages took 3.13 ms +I, [2018-07-26T18:17:29.769868 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.770117 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-26T18:17:29.770145 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.770315 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:29.770338 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.770460 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:29.770482 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.770661 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:29.770684 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.770816 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:29.770839 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.771001 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:29.771032 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.771158 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:29.771179 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.771318 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:29.771339 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.771474 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:29.771516 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.771641 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:29.771663 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.787021 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-26T18:17:29.787830 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.788273 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:29.788313 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.788469 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:29.788494 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.788867 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:29.788900 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.789107 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-26T18:17:29.789136 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.789334 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:29.789360 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.789509 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:29.789625 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.789775 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:29.789798 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.789970 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:29.789991 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.790204 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-26T18:17:29.790229 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.790394 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:29.790415 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.790589 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:29.790614 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.790785 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:29.790807 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.790953 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:29.790974 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.791181 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:29.791205 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.791350 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:29.791372 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.791587 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-26T18:17:29.791612 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.791781 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:29.791830 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.791947 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:29.791969 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.792675 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.65 ms +I, [2018-07-26T18:17:29.792702 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.792852 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:29.792874 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.793036 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:29.793391 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.793812 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-26T18:17:29.793875 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.794431 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-07-26T18:17:29.794586 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.795129 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.45 ms +I, [2018-07-26T18:17:29.795157 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.795340 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:29.795363 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.795511 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:29.801772 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.802041 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-26T18:17:29.803121 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.803361 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-26T18:17:29.803386 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.803529 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:29.803551 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.803742 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:29.803767 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.803899 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:29.803995 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.804201 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-26T18:17:29.804226 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.804365 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:29.804387 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.804527 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:29.804548 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.807710 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-26T18:17:29.807903 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.809198 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.71 ms +I, [2018-07-26T18:17:29.809536 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.810732 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.71 ms +I, [2018-07-26T18:17:29.810764 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.810905 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:29.810927 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.811072 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:29.811894 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.812051 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:29.812075 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.812786 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:29.812813 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.812936 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:29.812958 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.813131 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:29.813161 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.813289 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:29.813309 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.813446 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:29.813468 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.813581 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:29.814188 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.814363 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:29.814385 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.814529 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:29.814551 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.815876 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.27 ms +I, [2018-07-26T18:17:29.815908 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.816070 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:29.816092 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.816247 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:29.816270 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.816412 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:29.816433 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.816544 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:29.816565 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.816829 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:29.816854 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.816967 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:29.816988 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.817238 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-26T18:17:29.817274 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.817474 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:29.817531 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.838960 #5] INFO -- : Inline processing of topic section_change with 1 messages took 21.34 ms +I, [2018-07-26T18:17:29.839009 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.839263 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-26T18:17:29.839290 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.839421 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:29.839442 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.839588 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:29.839609 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.839758 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:29.839783 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.840870 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-26T18:17:29.840908 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.841039 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:29.841061 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.850510 #5] INFO -- : Inline processing of topic section_change with 1 messages took 9.34 ms +I, [2018-07-26T18:17:29.850560 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.850792 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-26T18:17:29.850846 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.850981 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:29.851003 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.851146 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:29.851167 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.851313 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:29.851337 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.851476 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:29.851497 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.851609 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:29.851630 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.861558 #5] INFO -- : Inline processing of topic section_change with 1 messages took 9.87 ms +I, [2018-07-26T18:17:29.861607 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.862916 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.21 ms +I, [2018-07-26T18:17:29.862956 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.863171 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:29.863194 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.863911 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:29.863965 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.864129 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:29.864151 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.865549 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.31 ms +I, [2018-07-26T18:17:29.865586 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.866366 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.7 ms +I, [2018-07-26T18:17:29.866396 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.866578 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:29.866600 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.866751 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:29.866782 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.866951 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:29.866972 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.867089 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:29.867110 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.868440 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.27 ms +I, [2018-07-26T18:17:29.868469 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.868620 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:29.868642 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.868834 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:29.868859 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.868999 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:29.869045 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.869158 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:29.869179 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.869422 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-26T18:17:29.869447 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.869613 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:29.869636 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.869819 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-26T18:17:29.869869 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.875819 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-26T18:17:29.875866 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.876080 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-26T18:17:29.876104 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.876233 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:29.876254 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.876454 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:29.880491 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.882077 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.04 ms +I, [2018-07-26T18:17:29.882352 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.883588 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.89 ms +I, [2018-07-26T18:17:29.883897 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.886184 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.49 ms +I, [2018-07-26T18:17:29.886678 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.886983 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-26T18:17:29.887015 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.887215 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:29.887243 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.887421 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:29.899530 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.899866 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-26T18:17:29.899897 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.900038 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:29.900061 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.900205 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:29.900226 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.900363 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:29.900387 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.900533 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:29.900554 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.900667 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:29.900714 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.900857 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:29.900887 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.901035 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:29.901057 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.901169 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:29.901190 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.901323 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:29.901370 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.901497 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:29.901518 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.901665 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:29.901687 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.903095 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.31 ms +I, [2018-07-26T18:17:29.903135 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.903317 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:29.903509 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.903658 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:29.903681 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.903828 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:29.903879 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.904094 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:29.904125 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.904310 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:29.904367 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.904534 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:29.904556 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.904673 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:29.904695 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.906758 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:29.906863 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.907092 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:29.907116 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.907321 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-26T18:17:29.907363 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.907502 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:29.907525 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.907666 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:29.907688 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.934626 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-07-26T18:17:29.934764 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.935129 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-26T18:17:29.935174 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.935470 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-26T18:17:29.935506 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.935721 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-26T18:17:29.935754 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.936025 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-26T18:17:29.936058 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.936269 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-26T18:17:29.936302 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.936561 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-26T18:17:29.936596 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.936798 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:29.936830 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.941823 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-26T18:17:29.941877 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.944181 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-26T18:17:29.944239 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.944541 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-26T18:17:29.944574 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.944787 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:29.944811 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.944939 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:29.945009 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.945182 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:29.945206 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.945329 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:29.945351 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.945533 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:29.945558 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.945678 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:29.945699 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.945994 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-26T18:17:29.946020 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.946142 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:29.946164 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.946301 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:29.946323 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.946561 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-26T18:17:29.946628 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.946792 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:29.946820 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.947029 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-26T18:17:29.947062 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.947235 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:29.947262 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.947494 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-26T18:17:29.947525 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.947717 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:29.947744 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.947987 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-26T18:17:29.948018 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.948199 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:29.948227 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.948406 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:29.948433 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.948627 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:29.948683 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.948990 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-26T18:17:29.949025 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.949244 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:29.968641 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.968990 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-26T18:17:29.969072 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.969358 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-26T18:17:29.969395 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.969624 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-26T18:17:29.969658 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.969862 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-26T18:17:29.969892 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.986467 #5] INFO -- : Inline processing of topic section_change with 1 messages took 16.46 ms +I, [2018-07-26T18:17:29.986531 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.986870 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-26T18:17:29.986936 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.987211 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-26T18:17:29.987245 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.987458 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:29.987492 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.987703 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-26T18:17:29.987796 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.987981 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:29.988014 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.988255 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-26T18:17:29.988289 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.988456 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:29.988506 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:29.988748 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-26T18:17:30.001536 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.002004 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-26T18:17:30.002048 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.002350 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-26T18:17:30.002388 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.002584 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:30.002642 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.002911 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-26T18:17:30.002946 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.003186 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-26T18:17:30.003260 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.003495 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-26T18:17:30.003531 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.003811 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-26T18:17:30.003843 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.004038 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:30.004067 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.004435 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-26T18:17:30.004481 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.004748 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-26T18:17:30.004781 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.005007 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-26T18:17:30.005040 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.005311 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-26T18:17:30.005345 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.005573 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-26T18:17:30.005604 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.014805 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-07-26T18:17:30.014860 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.015118 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-26T18:17:30.015189 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.015396 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:30.015468 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.015728 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-26T18:17:30.015758 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.015966 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-26T18:17:30.015993 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.031730 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-26T18:17:30.031804 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.032029 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-26T18:17:30.032057 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.032246 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:30.032291 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.032511 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-26T18:17:30.032557 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.032770 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-26T18:17:30.032814 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.032995 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:30.033021 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.033162 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:30.033286 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.033468 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:30.033495 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.033679 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:30.042545 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.042989 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-07-26T18:17:30.043041 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.043317 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-26T18:17:30.043361 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.043542 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:30.043569 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.043803 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-26T18:17:30.043831 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.043994 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:30.044021 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.044315 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-26T18:17:30.044343 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.044552 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-26T18:17:30.044579 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.044874 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-26T18:17:30.044903 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.045100 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-26T18:17:30.045157 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.045435 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-26T18:17:30.045464 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.045699 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-26T18:17:30.054081 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.054524 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-07-26T18:17:30.054561 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.054941 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-07-26T18:17:30.054983 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.055297 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-26T18:17:30.055353 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.055623 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-26T18:17:30.055660 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.065942 #5] INFO -- : Inline processing of topic section_change with 1 messages took 10.15 ms +I, [2018-07-26T18:17:30.065994 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.066244 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-26T18:17:30.066290 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.066458 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:30.066507 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.066655 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:30.066676 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.066877 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-26T18:17:30.066903 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.067059 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:30.067081 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.067255 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:30.067297 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.067461 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:30.076253 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.076687 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-26T18:17:30.076716 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.076948 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-26T18:17:30.076974 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.077174 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:30.077198 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.086719 #5] INFO -- : Inline processing of topic section_change with 1 messages took 9.45 ms +I, [2018-07-26T18:17:30.086767 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.087405 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-07-26T18:17:30.087451 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.087668 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:30.087692 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.087869 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:30.087894 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.088068 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:30.088090 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.088237 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:30.088259 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.088453 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-26T18:17:30.088478 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.088626 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:30.088648 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.088817 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:30.088885 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.089048 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:30.089069 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.089241 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:30.089262 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.090797 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.48 ms +I, [2018-07-26T18:17:30.090884 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.091182 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-26T18:17:30.091235 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.091454 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-26T18:17:30.091479 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.091638 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:30.091661 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.091820 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:30.091897 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.092366 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.4 ms +I, [2018-07-26T18:17:30.092397 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.092598 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:30.092620 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.092780 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:30.092802 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.093031 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:30.093056 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.093238 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:30.093259 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.093469 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-26T18:17:30.093494 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.093664 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:30.093685 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.093835 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:30.093883 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.094035 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:30.094056 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.094207 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:30.094228 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.094409 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-26T18:17:30.094434 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.094823 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:30.094880 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.107715 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-26T18:17:30.107758 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.107957 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-26T18:17:30.107984 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.108144 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:30.108166 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.108337 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:30.108359 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.108560 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:30.108585 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.108737 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:30.108770 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.108941 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:30.108964 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.109118 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:30.109154 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.109294 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:30.109316 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.109525 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-26T18:17:30.109551 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.109822 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-26T18:17:30.109846 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.110032 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:30.110068 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.110224 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:30.110246 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.110530 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:30.110555 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.110698 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:30.110718 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.110865 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:30.110904 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.111065 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:30.111087 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.111245 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:30.111266 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.111443 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:30.111469 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.111621 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:30.111642 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.111791 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:30.111813 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.112021 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-26T18:17:30.112046 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.112201 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:30.112223 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.112371 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:30.112410 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.112581 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:30.112603 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.112758 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:30.112779 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.112954 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:30.112979 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.113171 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:30.113197 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.113361 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:30.114211 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.114743 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-07-26T18:17:30.114893 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.115480 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-07-26T18:17:30.115571 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.116267 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-07-26T18:17:30.116609 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.133008 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-26T18:17:30.133053 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.133244 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:30.133267 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.133404 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:30.133426 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.133721 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-26T18:17:30.133759 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.134021 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-26T18:17:30.134057 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.134293 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-26T18:17:30.134326 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.134583 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-26T18:17:30.134616 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.134843 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-26T18:17:30.134877 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.135099 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-26T18:17:30.135132 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.135362 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-26T18:17:30.135394 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.135620 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-26T18:17:30.135654 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.135854 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:30.135886 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.136114 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:30.136149 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.136347 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:30.136379 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.136606 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:30.136664 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.136857 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:30.136888 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.137100 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-26T18:17:30.137134 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.137333 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:30.137363 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.137615 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-26T18:17:30.137649 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.137830 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:30.137857 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.155109 #5] INFO -- : Inline processing of topic section_change with 1 messages took 17.14 ms +I, [2018-07-26T18:17:30.155162 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.155417 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-26T18:17:30.155443 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.155616 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:30.155641 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.155788 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:30.155810 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.155944 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:30.155966 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.156135 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:30.156178 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.156316 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:30.156337 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.156466 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:30.156488 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.156650 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:30.156674 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.156801 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:30.156823 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.156953 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:30.156974 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.166606 #5] INFO -- : Inline processing of topic section_change with 1 messages took 8.13 ms +I, [2018-07-26T18:17:30.167082 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.168347 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.64 ms +I, [2018-07-26T18:17:30.168515 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.169352 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.48 ms +I, [2018-07-26T18:17:30.186434 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.186898 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-07-26T18:17:30.186957 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.187341 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-26T18:17:30.187382 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.187704 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-26T18:17:30.187753 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.187972 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:30.188003 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.188225 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:30.188279 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.188477 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:30.188509 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.188755 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-26T18:17:30.188805 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.189011 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:30.189046 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.189327 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-26T18:17:30.189360 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.189553 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:30.189586 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.214979 #5] INFO -- : Inline processing of topic section_change with 1 messages took 25.29 ms +I, [2018-07-26T18:17:30.215030 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.215238 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:30.215289 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.215445 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:30.215468 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.215608 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:30.215650 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.215791 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:30.215835 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.215981 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:30.216003 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.216134 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:30.216155 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.216313 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:30.216337 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.216474 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:30.216496 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.216631 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:30.216652 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.216792 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:30.216817 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.216964 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:30.216985 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.217117 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:30.217161 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.217422 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-26T18:17:30.217458 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.217669 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:30.217700 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.222027 #5] INFO -- : Inline processing of topic section_change with 1 messages took 4.25 ms +I, [2018-07-26T18:17:30.222068 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.222393 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-26T18:17:30.222459 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.222657 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:30.222689 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.223059 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-26T18:17:30.245139 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.245556 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-26T18:17:30.245587 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.245740 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:30.245770 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.245960 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-26T18:17:30.245985 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.246126 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:30.246148 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.246287 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:30.246309 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.246604 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:30.246635 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.246774 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:30.246796 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.246971 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:30.246996 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.247137 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:30.247158 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.247300 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:30.247321 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.247491 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:30.247520 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.247651 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:30.247677 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.247811 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:30.247834 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.247997 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:30.248026 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.248152 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:30.248173 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.248300 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:30.248330 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.248541 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:30.248572 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.253494 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:30.253577 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.253821 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-26T18:17:30.253844 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.254033 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:30.254057 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.254194 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:30.254338 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.254507 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:30.254531 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.254667 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:30.254693 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.254821 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:30.254991 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.255141 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:30.255166 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.255303 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:30.255329 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.255488 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:30.255526 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.255653 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:30.255674 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.255835 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:30.255884 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.262830 #5] INFO -- : Inline processing of topic section_change with 1 messages took 6.83 ms +I, [2018-07-26T18:17:30.262935 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.263517 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-26T18:17:30.263560 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.276673 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-26T18:17:30.276723 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.278743 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-26T18:17:30.278856 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.279175 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-26T18:17:30.279206 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.279416 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-26T18:17:30.279462 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.279605 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:30.279668 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.279857 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-26T18:17:30.279879 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.280059 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:30.280086 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.280284 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:30.280307 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.280551 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-26T18:17:30.280587 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.280805 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-26T18:17:30.280831 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.281177 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-07-26T18:17:30.281216 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.282801 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:30.282856 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.283170 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-26T18:17:30.283225 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.283477 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-26T18:17:30.283513 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.283768 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-26T18:17:30.283818 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.284162 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-26T18:17:30.284201 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.284468 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-26T18:17:30.284535 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.284856 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-26T18:17:30.284899 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.285290 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-26T18:17:30.285334 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.286048 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.61 ms +I, [2018-07-26T18:17:30.286088 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.286332 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-26T18:17:30.286373 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.286648 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:30.286689 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.286935 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:30.287014 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.287240 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:30.287280 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.287642 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-26T18:17:30.287685 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.287968 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-26T18:17:30.288014 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.288327 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-26T18:17:30.288368 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.288659 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-26T18:17:30.288702 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.289062 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-26T18:17:30.289104 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.289543 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-26T18:17:30.289641 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.289904 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-26T18:17:30.289936 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.295038 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-26T18:17:30.295111 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.295373 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-26T18:17:30.295409 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.303679 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.46 ms +I, [2018-07-26T18:17:30.303782 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.304277 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-07-26T18:17:30.304358 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.304553 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:30.304576 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.304762 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:30.304831 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.305057 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-26T18:17:30.305086 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.305333 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-26T18:17:30.305359 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.305512 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:30.305534 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.305732 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-26T18:17:30.305757 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.305915 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:30.305938 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.306080 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:30.306101 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.306242 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:30.306266 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.306442 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:30.306464 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.306866 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-07-26T18:17:30.306892 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.307035 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:30.307057 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.307237 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:30.307262 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.307404 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:30.307425 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.307594 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:30.307615 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.307830 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-26T18:17:30.307855 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.308026 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:30.308047 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.308207 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:30.308261 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.308405 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:30.308426 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.308561 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:30.308583 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.308935 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-26T18:17:30.308976 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.309158 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:30.309240 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.309606 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-26T18:17:30.309647 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.309938 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-26T18:17:30.310117 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.310429 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-26T18:17:30.310508 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.310775 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-26T18:17:30.310817 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.311066 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-26T18:17:30.311107 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.311385 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-26T18:17:30.311419 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.321498 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-26T18:17:30.321543 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.323035 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:30.323182 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.323588 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-26T18:17:30.323615 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.323931 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-26T18:17:30.324041 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.335237 #5] INFO -- : Inline processing of topic section_change with 1 messages took 11.09 ms +I, [2018-07-26T18:17:30.335334 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.335566 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:30.335591 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.335779 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:30.335814 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.336003 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-26T18:17:30.336024 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.336173 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:30.336194 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.336680 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.43 ms +I, [2018-07-26T18:17:30.336709 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.336907 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:30.336933 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.337102 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:30.337130 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.337458 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-26T18:17:30.337487 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.337690 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-26T18:17:30.337716 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.338156 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-26T18:17:30.338238 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.338534 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-26T18:17:30.338563 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.338739 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:30.338852 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.339049 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:30.339074 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.339223 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:30.339246 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.339569 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-26T18:17:30.339644 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.339995 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-26T18:17:30.340030 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.340302 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-26T18:17:30.340340 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.340562 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-26T18:17:30.340651 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.340977 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-26T18:17:30.341014 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.341407 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-07-26T18:17:30.341446 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.341759 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-26T18:17:30.341864 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.342410 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-07-26T18:17:30.342484 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.342752 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:30.343173 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.343541 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-26T18:17:30.343583 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.343841 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-26T18:17:30.343885 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.344135 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-26T18:17:30.344176 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.344434 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-26T18:17:30.359004 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.359628 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-07-26T18:17:30.359680 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.360850 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.74 ms +I, [2018-07-26T18:17:30.360905 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.361164 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:30.361199 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.361466 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-26T18:17:30.361502 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.361682 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:30.361714 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.361982 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-26T18:17:30.362018 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.362194 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:30.362227 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.374133 #5] INFO -- : Inline processing of topic section_change with 1 messages took 11.77 ms +I, [2018-07-26T18:17:30.374200 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.374515 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-26T18:17:30.374549 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.374764 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:30.374793 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.375087 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-26T18:17:30.375122 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.375348 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-26T18:17:30.380393 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.380755 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-26T18:17:30.380786 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.381011 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-26T18:17:30.392239 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.392554 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-26T18:17:30.392588 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.392744 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:30.392767 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.393179 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:30.393211 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.393353 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:30.399009 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.399421 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-26T18:17:30.400054 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.400345 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-26T18:17:30.400376 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.401119 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:30.401152 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.401339 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:30.401366 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.403233 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.78 ms +I, [2018-07-26T18:17:30.403306 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.404421 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-26T18:17:30.405605 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.405832 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:30.405894 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.407161 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:30.407197 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.408599 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-26T18:17:30.408651 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.410207 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-26T18:17:30.410265 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.410613 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-26T18:17:30.410651 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.410835 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:30.410868 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.411130 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-26T18:17:30.415591 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.426683 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.69 ms +I, [2018-07-26T18:17:30.426759 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.426940 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:30.426966 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.427198 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-26T18:17:30.427225 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.427349 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:30.427371 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.427538 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:30.427564 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.427689 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:30.427710 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.427849 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:30.427870 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.427981 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:30.428029 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.428181 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:30.428202 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.428338 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:30.428360 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.428471 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:30.428491 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.428663 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:30.428685 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.428796 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:30.428817 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.428955 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:30.428984 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.429148 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:30.429173 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.429311 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:30.429335 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.429460 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:30.429537 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.429679 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:30.429703 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.429843 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:30.429864 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.429974 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:30.429996 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.430174 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:30.430196 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.445888 #5] INFO -- : Inline processing of topic section_change with 1 messages took 15.59 ms +I, [2018-07-26T18:17:30.445957 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.446299 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-26T18:17:30.446335 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.446512 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:30.446626 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.446896 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-26T18:17:30.447023 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.447291 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-26T18:17:30.447342 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.447582 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-26T18:17:30.447636 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.447853 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:30.447887 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.448069 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:30.448128 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.448345 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-26T18:17:30.448377 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.448551 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:30.448685 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.448871 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:30.465787 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.466195 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-26T18:17:30.466227 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.470062 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-26T18:17:30.470128 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.470325 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:30.470349 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.470470 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:30.470492 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.470667 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:30.470692 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.470818 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:30.470840 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.470978 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:30.470999 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.471319 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-26T18:17:30.471350 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.471482 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:30.471504 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.471673 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:30.471698 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.471818 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:30.471840 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.471977 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:30.471998 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.481213 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-26T18:17:30.481261 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.481450 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:30.481474 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.481594 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:30.481655 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.481789 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:30.481810 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.481949 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:30.481970 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.482082 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:30.482103 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.482288 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:30.482313 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.482434 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:30.482456 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.482596 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:30.482617 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.482765 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:30.482817 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.482931 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:30.482952 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.483086 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:30.483107 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.483246 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:30.483269 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.483404 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:30.483425 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.483535 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:30.483555 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.483716 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:30.483741 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.483857 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:30.483904 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.484047 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:30.484068 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.484243 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:30.484267 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.490379 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-26T18:17:30.490427 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.490631 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:30.490654 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.490836 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:30.490860 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.491026 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:30.491047 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.491211 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:30.491235 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.491403 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:30.491425 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.491587 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:30.491609 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.491815 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-26T18:17:30.491850 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.492272 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-26T18:17:30.492308 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.492799 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.41 ms +I, [2018-07-26T18:17:30.492829 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.493011 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:30.493034 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.493186 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:30.493214 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.493377 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:30.493399 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.493558 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:30.493580 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.510189 #5] INFO -- : Inline processing of topic section_change with 1 messages took 16.51 ms +I, [2018-07-26T18:17:30.510320 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.510626 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-26T18:17:30.510657 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.510959 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-26T18:17:30.510993 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.511309 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-26T18:17:30.511365 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.511600 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-26T18:17:30.511632 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.511938 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-26T18:17:30.511973 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.512168 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:30.512252 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.512506 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-26T18:17:30.512542 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.512875 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-26T18:17:30.512914 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.513135 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-26T18:17:30.513169 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.513491 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-26T18:17:30.513525 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.533868 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-26T18:17:30.533972 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.534240 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-26T18:17:30.534265 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.534486 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-26T18:17:30.534539 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.534679 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:30.534701 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.534893 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-26T18:17:30.534917 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.535050 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:30.535072 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.535227 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:30.535267 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.548159 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-26T18:17:30.548206 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.548959 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.68 ms +I, [2018-07-26T18:17:30.548990 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.549140 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:30.549960 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.550246 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-26T18:17:30.550273 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.551063 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-26T18:17:30.551101 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.551278 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:30.551301 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.562776 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-26T18:17:30.562825 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.563077 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:30.563104 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.563286 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:30.563328 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.563527 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:30.563552 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.563724 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:30.563746 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.563921 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:30.563946 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.564087 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:30.564108 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.564269 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:30.564290 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.564454 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:30.564478 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.564643 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:30.564664 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.564794 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:30.564814 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.565005 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:30.565029 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.565166 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:30.565211 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.565347 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:30.581582 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.581934 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-26T18:17:30.581966 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.582128 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:30.582151 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.582317 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:30.582339 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.582591 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-26T18:17:30.582619 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.583350 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.63 ms +I, [2018-07-26T18:17:30.583384 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.592662 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-07-26T18:17:30.592742 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.593705 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-26T18:17:30.593756 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.593949 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:30.593981 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.594167 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:30.594190 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.594334 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:30.594355 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.594528 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:30.594553 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.595685 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-26T18:17:30.596492 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.596718 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-26T18:17:30.596742 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.596901 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:30.596923 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.612001 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-26T18:17:30.612084 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.612337 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-26T18:17:30.612367 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.612583 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-26T18:17:30.612614 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.612817 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:30.612864 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.613095 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-26T18:17:30.613126 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.613361 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-26T18:17:30.613390 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.623163 #5] INFO -- : Inline processing of topic section_change with 1 messages took 9.67 ms +I, [2018-07-26T18:17:30.623232 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.623459 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-26T18:17:30.623482 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.623697 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-26T18:17:30.623722 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.623906 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:30.623927 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.624126 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-26T18:17:30.624161 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.624345 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:30.624367 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.624542 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:30.624583 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.624842 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-26T18:17:30.624864 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.625066 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-26T18:17:30.625091 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.625258 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:30.625280 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.625431 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:30.625462 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.625644 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-26T18:17:30.625669 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.625828 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:30.625850 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.625998 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:30.626037 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.626197 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:30.626218 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.626365 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:30.626386 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.626560 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:30.626604 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.626742 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:30.626780 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.626989 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-26T18:17:30.638120 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.638473 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-26T18:17:30.638507 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.639268 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.67 ms +I, [2018-07-26T18:17:30.639300 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.639482 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:30.639506 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.639695 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-26T18:17:30.639735 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.640658 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-26T18:17:30.640690 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.640851 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:30.640873 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.641025 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:30.641047 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.641774 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:30.641801 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.641953 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:30.641993 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.642712 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.66 ms +I, [2018-07-26T18:17:30.642758 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.642934 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:30.642956 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.643624 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:30.643662 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.643873 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-26T18:17:30.643897 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.644234 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-26T18:17:30.644261 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.644436 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:30.644458 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.661205 #5] INFO -- : Inline processing of topic section_change with 1 messages took 16.67 ms +I, [2018-07-26T18:17:30.661256 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.661484 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-26T18:17:30.669024 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.669340 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-26T18:17:30.669369 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.669520 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:30.669543 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.669757 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-26T18:17:30.669783 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.669932 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:30.669973 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.670109 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:30.670130 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.670316 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:30.670339 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.680630 #5] INFO -- : Inline processing of topic section_change with 1 messages took 8.9 ms +I, [2018-07-26T18:17:30.680714 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.693014 #5] INFO -- : Inline processing of topic section_change with 1 messages took 12.17 ms +I, [2018-07-26T18:17:30.693066 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.693358 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-26T18:17:30.693384 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.693565 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:30.693588 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.693785 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-26T18:17:30.693810 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.693998 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:30.694019 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.694189 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:30.694248 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.694399 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:30.694440 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.694602 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:30.694625 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.694805 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:30.694830 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.694987 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:30.695009 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.695141 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:30.695162 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.697442 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.64 ms +I, [2018-07-26T18:17:30.697518 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.698402 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.74 ms +I, [2018-07-26T18:17:30.698465 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.698764 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-26T18:17:30.698812 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.699052 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-26T18:17:30.699093 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.700419 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.2 ms +I, [2018-07-26T18:17:30.700473 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.701322 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.69 ms +I, [2018-07-26T18:17:30.701373 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.701644 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-26T18:17:30.701712 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.704188 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-26T18:17:30.704816 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.705107 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-26T18:17:30.705135 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.713508 #5] INFO -- : Inline processing of topic section_change with 1 messages took 8.28 ms +I, [2018-07-26T18:17:30.713560 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.713903 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-26T18:17:30.713933 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.714103 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:30.714126 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.714360 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-26T18:17:30.714404 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.714680 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-26T18:17:30.714715 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.714956 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-26T18:17:30.714982 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.715155 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:30.715177 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.715374 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:30.715399 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.715561 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:30.715601 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.715822 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:30.715861 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.716056 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:30.716080 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.716213 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:30.716235 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.716407 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:30.716432 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.716586 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:30.716608 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.716794 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:30.716831 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.717214 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-07-26T18:17:30.717245 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.717430 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:30.717455 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.717597 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:30.717619 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.717753 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:30.726154 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.726585 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-26T18:17:30.726645 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.726890 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:30.726917 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.727080 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:30.727103 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.727321 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:30.727428 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.727596 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:30.727629 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.727775 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:30.727839 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.727998 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:30.728032 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.728168 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:30.728203 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.728354 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:30.728378 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.728524 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:30.728544 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.728685 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:30.728706 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.728861 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:30.728892 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.729035 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:30.729056 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.729182 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:30.729202 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.729363 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:30.729387 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.729527 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:30.729548 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.729679 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:30.729700 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.729979 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-26T18:17:30.730007 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.730154 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:30.730175 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.732688 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:30.732734 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.740732 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-26T18:17:30.740790 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.741059 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-26T18:17:30.741088 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.741268 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:30.741305 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.741520 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-26T18:17:30.741546 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.741730 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:30.741753 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.758553 #5] INFO -- : Inline processing of topic section_change with 1 messages took 16.7 ms +I, [2018-07-26T18:17:30.758716 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.765612 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-07-26T18:17:30.765802 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.766173 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-26T18:17:30.766208 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.766498 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-26T18:17:30.766576 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.766873 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-26T18:17:30.766934 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.767197 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-26T18:17:30.767228 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.767497 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-26T18:17:30.767539 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.767775 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-26T18:17:30.767810 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.768061 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-26T18:17:30.768098 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.768327 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-26T18:17:30.768361 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.808032 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-26T18:17:30.808082 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.808278 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:30.808302 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.808460 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:30.808486 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.808699 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-26T18:17:30.808730 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.821384 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:30.821487 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.821816 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-26T18:17:30.821846 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.822008 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:30.822031 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.822239 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-26T18:17:30.822264 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.822400 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:30.822421 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.822619 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:30.822644 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.822822 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:30.822844 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.823112 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-26T18:17:30.823137 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.823327 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-26T18:17:30.823349 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.823499 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:30.823520 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.823839 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-26T18:17:30.823864 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.824008 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:30.824078 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.824244 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:30.824266 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.824437 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:30.824459 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.824598 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:30.824624 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.824774 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:30.824795 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.824909 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:30.824955 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.825121 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:30.825147 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.825296 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:30.825318 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.825465 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:30.825487 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.835493 #5] INFO -- : Inline processing of topic section_change with 1 messages took 9.94 ms +I, [2018-07-26T18:17:30.835543 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.835784 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:30.835811 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.835986 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:30.836008 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.836178 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:30.836203 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.836377 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:30.836400 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.836558 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:30.836595 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.836756 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:30.836778 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.836941 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:30.853999 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.854402 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-26T18:17:30.854439 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.854607 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:30.854648 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.854836 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:30.854859 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.854996 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:30.855018 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.855203 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-26T18:17:30.855227 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.855366 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:30.855388 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.855540 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:30.855561 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.855747 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-26T18:17:30.855772 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.855914 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:30.855935 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.856334 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:30.856359 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.856474 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:30.856495 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.856658 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:30.856684 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.856823 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:30.856870 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.857058 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:30.857089 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.857290 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-26T18:17:30.857314 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.857451 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:30.857472 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.857626 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:30.869104 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.869720 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-07-26T18:17:30.869763 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.869974 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:30.869997 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.870235 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-26T18:17:30.870271 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.870438 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:30.870462 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.870622 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:30.870645 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.870762 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:30.870783 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.870923 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:30.870944 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.871100 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:30.871155 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.871300 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:30.871328 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.871472 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:30.871493 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.871630 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:30.871653 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.871814 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:30.871837 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.871974 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:30.872025 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.872193 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:30.872220 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.881297 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-26T18:17:30.881339 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.881542 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-26T18:17:30.881591 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.881751 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:30.881773 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.881977 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:30.882007 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.885416 #5] INFO -- : Inline processing of topic section_change with 1 messages took 3.31 ms +I, [2018-07-26T18:17:30.885453 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.885870 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-26T18:17:30.886005 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.886395 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-26T18:17:30.886475 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.886920 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-07-26T18:17:30.887122 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.888315 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.57 ms +I, [2018-07-26T18:17:30.888361 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.888546 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:30.888569 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.888691 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:30.888712 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.888889 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:30.888913 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.889054 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:30.889076 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.889211 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:30.889233 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.889390 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:30.889411 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.892651 #5] INFO -- : Inline processing of topic section_change with 1 messages took 3.18 ms +I, [2018-07-26T18:17:30.892722 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.892944 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:30.892967 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.893088 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:30.893133 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.893304 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:30.893328 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.893490 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:30.893511 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.893641 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:30.893694 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.893873 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:30.897804 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.898119 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-26T18:17:30.898147 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.898354 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:30.898377 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.898558 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:30.898620 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.898760 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:30.898781 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.898921 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:30.898943 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.899110 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:30.899138 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.903163 #5] INFO -- : Inline processing of topic section_change with 1 messages took 3.93 ms +I, [2018-07-26T18:17:30.903218 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.903512 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-26T18:17:30.903570 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.903774 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-26T18:17:30.903805 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.903997 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-26T18:17:30.908680 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.910440 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.07 ms +I, [2018-07-26T18:17:30.910673 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.911483 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-07-26T18:17:30.913874 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.914115 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-26T18:17:30.914171 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.914341 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:30.914366 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.914538 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:30.914560 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.914699 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:30.914720 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.914910 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:30.914931 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.915065 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:30.915087 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.915260 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:30.915293 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.915462 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:30.915484 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.915619 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:30.915639 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.915808 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:30.915829 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.915963 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:30.915983 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.916119 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:30.916140 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.916332 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-26T18:17:30.916381 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.925347 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-26T18:17:30.925391 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.925609 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-26T18:17:30.925635 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.925765 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:30.925787 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.926009 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-26T18:17:30.926040 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.926243 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:30.926267 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.926424 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:30.926447 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.926584 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:30.926606 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.926720 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:30.926740 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.926874 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:30.926896 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.927005 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:30.927049 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.927231 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:30.927252 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.927385 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:30.927406 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.927571 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:30.927591 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.927722 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:30.927742 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.927863 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:30.927884 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.928058 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:30.928082 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.935409 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-07-26T18:17:30.935454 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.936210 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-07-26T18:17:30.936243 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.936493 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-26T18:17:30.936519 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.936661 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:30.936682 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.936903 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-26T18:17:30.936929 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.937119 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-26T18:17:30.937150 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.937429 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-26T18:17:30.937455 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.937615 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:30.937662 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.937803 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:30.937859 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.938044 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:30.938065 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.938220 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:30.938240 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.938418 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-26T18:17:30.938468 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.938621 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:30.938643 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.938872 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-26T18:17:30.938896 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.939057 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:30.939079 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.939205 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:30.939226 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.939381 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:30.939403 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.939610 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:30.939635 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.939805 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:30.939832 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.939973 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:30.940019 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.940151 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:30.940171 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.940332 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:30.940353 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.940495 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:30.940516 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.940690 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:30.940710 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.940880 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:30.940904 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.941075 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:30.941096 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.941252 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:30.941303 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.941456 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:30.941477 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.941646 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:30.941667 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.941848 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-26T18:17:30.941872 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.942039 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:30.942061 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.942194 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:30.942331 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.942473 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:30.942495 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.942653 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:30.942674 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.942834 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:30.942858 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.943077 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-26T18:17:30.943101 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.943249 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:30.943269 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.943430 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:30.943451 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.943606 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:30.943628 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.943763 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:30.943787 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.943952 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:30.943973 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.944104 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:30.944125 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.944280 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:30.944300 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.944428 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:30.944473 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.944605 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:30.944626 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.944806 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-26T18:17:30.944830 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.944963 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:30.944984 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.945186 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-26T18:17:30.945303 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.945641 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:30.945728 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.945906 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:30.945928 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.946082 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:30.946104 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.946238 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:30.946259 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.946411 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:30.946432 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.946566 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:30.946587 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.946769 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-26T18:17:30.946793 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.946927 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:30.946972 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.947110 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:30.947131 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.947288 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:30.947309 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.947440 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:30.947462 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.947618 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:30.947680 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.947824 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:30.947846 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.947989 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:30.948010 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.948132 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:30.948176 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.948366 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:30.948390 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.948805 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:30.948830 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.948967 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:30.948989 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.950623 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.34 ms +I, [2018-07-26T18:17:30.950670 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.950863 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:30.950913 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.951052 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:30.951073 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.951211 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:30.951232 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.951364 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:30.951385 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.951542 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:30.951587 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.951744 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:30.951765 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.951903 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:30.951924 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.952059 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:30.952103 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.952261 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:30.952281 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.952432 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:30.952452 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.952598 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:30.952622 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.952893 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:30.952923 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.953086 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:30.953139 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.953263 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:30.953284 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.953436 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:30.953456 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.953627 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:30.953652 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.953824 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:30.953845 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.953967 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:30.954012 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.954180 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:30.954204 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.954362 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:30.954383 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.954515 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:30.954536 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.954720 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:30.954744 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.954880 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:30.954903 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.955047 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:30.955068 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.955234 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:30.955278 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.955390 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:30.955411 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.955547 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:30.955568 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.955710 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:30.955794 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.956408 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.55 ms +I, [2018-07-26T18:17:30.956447 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.956631 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:30.956668 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.956830 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:30.956856 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.957014 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:30.957041 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.957245 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:30.957284 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.957535 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-26T18:17:30.957878 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.958246 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-26T18:17:30.958287 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.967516 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-26T18:17:30.967571 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.967753 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:30.967808 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.974088 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-26T18:17:30.974146 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.976328 #5] INFO -- : Inline processing of topic section_change with 1 messages took 2.05 ms +I, [2018-07-26T18:17:30.976393 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.976615 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:30.976642 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.976797 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:30.976819 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.976971 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:30.976997 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.977188 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:30.977212 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.977356 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:30.977377 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.977594 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-26T18:17:30.977622 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.977768 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:30.977797 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.978193 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-26T18:17:30.978381 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.979000 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-26T18:17:30.979043 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.979178 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:30.979214 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.979342 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:30.979363 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.979483 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:30.979520 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.979644 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:30.979670 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.979797 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:30.979817 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.980046 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:30.980072 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.980270 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:30.980292 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.980519 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-26T18:17:30.980544 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.980681 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:30.980717 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.980840 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:30.980889 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.981029 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:30.981050 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.981262 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:30.981286 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.981489 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-26T18:17:30.981514 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.981689 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:30.981729 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.981886 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:30.981909 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.982042 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:30.982063 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.982188 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:30.982221 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.982342 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:30.982362 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.982801 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-07-26T18:17:30.982849 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.983000 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:30.983029 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.983193 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:30.983215 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.983345 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:30.983379 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.983520 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:30.983543 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.983690 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:30.983716 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.983940 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-26T18:17:30.983971 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.984127 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:30.984149 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.984275 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:30.984313 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.984442 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:30.984463 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.984587 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:30.984609 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.984735 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:30.984756 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.984999 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:30.985052 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.985267 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-26T18:17:30.985319 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.985490 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:30.985513 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.990111 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-26T18:17:30.990148 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.990300 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:30.990321 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.990578 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:30.990609 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.990775 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:30.990798 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.990928 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:30.990948 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.991184 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-26T18:17:30.991205 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.991328 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:30.991363 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.991482 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:30.991502 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.991623 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:30.991669 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:30.991804 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:31.013946 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.014292 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-26T18:17:31.014325 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.014481 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:31.014503 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.014630 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:31.014650 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.014774 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:31.014794 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.014919 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:31.014956 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.015081 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:31.015101 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.015285 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-26T18:17:31.015309 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.015444 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:31.015464 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.015584 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:31.015605 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.015737 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:31.015773 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.015924 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:31.015945 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.016063 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-26T18:17:31.016082 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.016245 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:31.016287 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.016462 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:31.016483 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.016609 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:31.016628 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.016746 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:31.016766 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.016884 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:31.016904 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.017120 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-26T18:17:31.048939 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.049400 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-26T18:17:31.049512 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.049806 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:31.049847 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.050070 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:31.050132 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.050331 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:31.050394 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.050631 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-26T18:17:31.050671 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.050896 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-26T18:17:31.050934 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.051162 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-26T18:17:31.051202 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.051434 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-26T18:17:31.051470 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.051759 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-26T18:17:31.051800 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.052059 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:31.052100 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.052338 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:31.052377 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.052655 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-26T18:17:31.052695 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.061275 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-07-26T18:17:31.061341 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.074325 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-26T18:17:31.074368 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.074601 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-26T18:17:31.074628 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.074775 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:31.074797 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.074962 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:31.074988 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.075124 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:31.075146 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.075454 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:31.075495 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.075632 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:31.075654 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.076118 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:31.076156 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.076322 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:31.076344 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.082344 #5] INFO -- : Inline processing of topic section_change with 1 messages took 5.86 ms +I, [2018-07-26T18:17:31.082395 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.082624 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-26T18:17:31.082651 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.083115 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-26T18:17:31.083148 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.083708 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:31.083776 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.092337 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:31.092436 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.099668 #5] INFO -- : Inline processing of topic section_change with 1 messages took 7.09 ms +I, [2018-07-26T18:17:31.099744 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.100088 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-26T18:17:31.100120 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.100294 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:31.100317 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.100548 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-26T18:17:31.100573 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.100775 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-26T18:17:31.100798 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.100982 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-26T18:17:31.101004 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.101221 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-26T18:17:31.101253 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.110377 #5] INFO -- : Inline processing of topic section_change with 1 messages took 9.02 ms +I, [2018-07-26T18:17:31.110501 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.111425 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.65 ms +I, [2018-07-26T18:17:31.111484 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.112056 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-07-26T18:17:31.119028 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.119785 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.55 ms +I, [2018-07-26T18:17:31.119844 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.120378 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-07-26T18:17:31.120422 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.120901 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-07-26T18:17:31.120938 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.126386 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.4 ms +I, [2018-07-26T18:17:31.126425 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.126995 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-07-26T18:17:31.127061 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.127429 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-07-26T18:17:31.127464 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.135031 #5] INFO -- : Inline processing of topic section_change with 1 messages took 7.39 ms +I, [2018-07-26T18:17:31.135097 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.135627 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-26T18:17:31.141419 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.148045 #5] INFO -- : Inline processing of topic section_change with 1 messages took 3.83 ms +I, [2018-07-26T18:17:31.148114 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.151566 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.94 ms +I, [2018-07-26T18:17:31.151623 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.152313 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.42 ms +I, [2018-07-26T18:17:31.152362 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.162864 #5] INFO -- : Inline processing of topic section_change with 1 messages took 10.35 ms +I, [2018-07-26T18:17:31.162943 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.163812 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.45 ms +I, [2018-07-26T18:17:31.163878 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.164563 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.49 ms +I, [2018-07-26T18:17:31.164615 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.165354 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.54 ms +I, [2018-07-26T18:17:31.165394 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.168507 #5] INFO -- : Inline processing of topic section_change with 1 messages took 3.01 ms +I, [2018-07-26T18:17:31.168663 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.169628 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.73 ms +I, [2018-07-26T18:17:31.177606 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.178378 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.57 ms +I, [2018-07-26T18:17:31.178456 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.179038 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.48 ms +I, [2018-07-26T18:17:31.179071 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.182320 #5] INFO -- : Inline processing of topic section_change with 1 messages took 3.14 ms +I, [2018-07-26T18:17:31.182372 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.182630 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-26T18:17:31.182678 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.183143 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-26T18:17:31.183308 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.183608 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-26T18:17:31.183657 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.184155 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-26T18:17:31.184184 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.184720 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.45 ms +I, [2018-07-26T18:17:31.184763 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.185336 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-07-26T18:17:31.185372 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.188282 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.78 ms +I, [2018-07-26T18:17:31.189305 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.192550 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.47 ms +I, [2018-07-26T18:17:31.192632 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.193209 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-07-26T18:17:31.193254 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.193505 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-26T18:17:31.193538 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.193873 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-26T18:17:31.193899 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.194161 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-26T18:17:31.194193 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.194742 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-07-26T18:17:31.194775 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.195197 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-26T18:17:31.195244 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.208761 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.42 ms +I, [2018-07-26T18:17:31.208886 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.209291 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-26T18:17:31.209331 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.209641 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-26T18:17:31.210239 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.210499 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-26T18:17:31.210569 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.210855 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-26T18:17:31.210890 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.220858 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-07-26T18:17:31.220903 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.221152 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-26T18:17:31.221178 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.221380 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-26T18:17:31.221402 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.221566 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:31.221617 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.221772 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:31.221794 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.223676 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.8 ms +I, [2018-07-26T18:17:31.223742 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.224842 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.94 ms +I, [2018-07-26T18:17:31.224999 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.225658 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.55 ms +I, [2018-07-26T18:17:31.225706 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.235162 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.44 ms +I, [2018-07-26T18:17:31.235240 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.235560 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-26T18:17:31.235765 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.236793 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-07-26T18:17:31.236837 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.242016 #5] INFO -- : Inline processing of topic section_change with 1 messages took 4.53 ms +I, [2018-07-26T18:17:31.242069 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.247286 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-07-26T18:17:31.247716 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.248186 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-07-26T18:17:31.248780 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.249238 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-07-26T18:17:31.249294 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.254756 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.62 ms +I, [2018-07-26T18:17:31.254805 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.255614 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-26T18:17:31.255789 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.256433 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-26T18:17:31.258435 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.266496 #5] INFO -- : Inline processing of topic section_change with 1 messages took 7.9 ms +I, [2018-07-26T18:17:31.266583 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.267137 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.4 ms +I, [2018-07-26T18:17:31.267174 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.267790 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.41 ms +I, [2018-07-26T18:17:31.267826 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.268168 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-26T18:17:31.268203 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.268407 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:31.268431 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.268617 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:31.268641 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.268758 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:31.268779 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.268989 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-26T18:17:31.269017 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.269233 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-26T18:17:31.269797 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.277651 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-26T18:17:31.277758 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.279121 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.17 ms +I, [2018-07-26T18:17:31.279165 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.279371 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:31.279394 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.279559 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:31.279580 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.279824 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-26T18:17:31.285768 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.286112 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-26T18:17:31.286141 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.286367 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-26T18:17:31.286391 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.286564 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:31.286589 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.286751 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:31.286773 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.286908 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:31.286929 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.287090 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:31.287111 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.287245 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:31.287266 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.287423 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:31.287450 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.298066 #5] INFO -- : Inline processing of topic section_change with 1 messages took 10.53 ms +I, [2018-07-26T18:17:31.298119 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.298766 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-07-26T18:17:31.298811 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.299392 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-26T18:17:31.299635 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.299969 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-26T18:17:31.300037 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.300637 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-26T18:17:31.300847 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.304154 #5] INFO -- : Inline processing of topic section_change with 1 messages took 3.18 ms +I, [2018-07-26T18:17:31.304632 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.305088 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-07-26T18:17:31.305125 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.307010 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.2 ms +I, [2018-07-26T18:17:31.307075 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.314109 #5] INFO -- : Inline processing of topic section_change with 1 messages took 6.89 ms +I, [2018-07-26T18:17:31.314212 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.314857 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.47 ms +I, [2018-07-26T18:17:31.314897 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.315478 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.43 ms +I, [2018-07-26T18:17:31.315557 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.316010 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-26T18:17:31.318094 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.319484 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.21 ms +I, [2018-07-26T18:17:31.319532 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.320075 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.45 ms +I, [2018-07-26T18:17:31.320113 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.320630 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-07-26T18:17:31.320665 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.322072 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.22 ms +I, [2018-07-26T18:17:31.322497 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.322796 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-26T18:17:31.322843 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.323028 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:31.323051 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.323195 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:31.326916 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.327862 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-26T18:17:31.327906 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.328091 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:31.328115 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.328239 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:31.328260 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.328490 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-26T18:17:31.328540 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.336657 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.59 ms +I, [2018-07-26T18:17:31.336735 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.337348 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.52 ms +I, [2018-07-26T18:17:31.337387 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.337986 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-26T18:17:31.338046 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.338296 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-26T18:17:31.338340 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.338693 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-26T18:17:31.338736 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.339416 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.58 ms +I, [2018-07-26T18:17:31.339469 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.339812 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-26T18:17:31.339934 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.340205 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-26T18:17:31.340245 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.340452 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:31.340490 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.341216 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:31.341272 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.352076 #5] INFO -- : Inline processing of topic section_change with 1 messages took 10.69 ms +I, [2018-07-26T18:17:31.352124 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.352467 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-26T18:17:31.352495 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.353036 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.47 ms +I, [2018-07-26T18:17:31.353069 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.353899 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.65 ms +I, [2018-07-26T18:17:31.354062 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.356636 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-26T18:17:31.359585 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.360178 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.42 ms +I, [2018-07-26T18:17:31.360222 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.360978 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.66 ms +I, [2018-07-26T18:17:31.361018 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.366801 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-26T18:17:31.367065 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.367303 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-26T18:17:31.368207 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.368777 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.43 ms +I, [2018-07-26T18:17:31.368818 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.369050 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-26T18:17:31.369074 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.369255 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:31.369294 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.369653 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-07-26T18:17:31.369691 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.375135 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-26T18:17:31.375231 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.375957 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.51 ms +I, [2018-07-26T18:17:31.375995 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.377580 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-07-26T18:17:31.377691 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.382994 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-07-26T18:17:31.383324 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.383856 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.43 ms +I, [2018-07-26T18:17:31.383894 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.384103 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-26T18:17:31.384231 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.389954 #5] INFO -- : Inline processing of topic section_change with 1 messages took 5.6 ms +I, [2018-07-26T18:17:31.390006 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.390858 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-26T18:17:31.391211 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.391896 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.55 ms +I, [2018-07-26T18:17:31.403159 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.403611 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-07-26T18:17:31.403651 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.404300 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-26T18:17:31.404377 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.404687 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-26T18:17:31.408760 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.409510 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.61 ms +I, [2018-07-26T18:17:31.409554 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.410221 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.52 ms +I, [2018-07-26T18:17:31.410262 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.410578 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-26T18:17:31.410628 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.411263 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-26T18:17:31.412031 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.412562 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.42 ms +I, [2018-07-26T18:17:31.412598 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.413039 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-07-26T18:17:31.413076 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.413412 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-26T18:17:31.413449 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.418753 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.76 ms +I, [2018-07-26T18:17:31.418838 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.419670 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.68 ms +I, [2018-07-26T18:17:31.420052 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.426688 #5] INFO -- : Inline processing of topic section_change with 1 messages took 6.42 ms +I, [2018-07-26T18:17:31.426780 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.428877 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.87 ms +I, [2018-07-26T18:17:31.429001 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.430500 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-07-26T18:17:31.430549 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.438921 #5] INFO -- : Inline processing of topic section_change with 1 messages took 8.2 ms +I, [2018-07-26T18:17:31.438981 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.439302 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-26T18:17:31.439373 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.439582 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:31.439618 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.440563 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-26T18:17:31.440617 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.440935 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-26T18:17:31.440972 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.441319 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-07-26T18:17:31.441356 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.441551 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:31.441619 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.441818 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:31.441850 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.442605 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-26T18:17:31.442674 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.442980 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-26T18:17:31.443547 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.457680 #5] INFO -- : Inline processing of topic section_change with 1 messages took 13.97 ms +I, [2018-07-26T18:17:31.457745 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.458118 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-26T18:17:31.458182 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.458381 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:31.458409 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.458678 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-26T18:17:31.458708 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.458886 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:31.458956 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.459281 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-26T18:17:31.459313 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.470401 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-07-26T18:17:31.470502 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.470763 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-26T18:17:31.470801 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.471108 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-26T18:17:31.471151 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.471434 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-26T18:17:31.471475 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.471835 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-26T18:17:31.471909 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.472179 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:31.472246 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.472445 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:31.472481 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.472728 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-26T18:17:31.472764 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.473093 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-26T18:17:31.473135 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.473409 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-26T18:17:31.473445 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.482454 #5] INFO -- : Inline processing of topic section_change with 1 messages took 8.86 ms +I, [2018-07-26T18:17:31.482589 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.483131 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-26T18:17:31.483167 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.483589 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-26T18:17:31.483640 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.483965 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:31.483997 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.488464 #5] INFO -- : Inline processing of topic section_change with 1 messages took 4.39 ms +I, [2018-07-26T18:17:31.488514 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.488749 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:31.488803 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.488942 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:31.488964 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.489177 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-26T18:17:31.489205 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.489344 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:31.489365 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.489547 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:31.489569 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.489783 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:31.489836 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.489965 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:31.489987 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.497534 #5] INFO -- : Inline processing of topic section_change with 1 messages took 7.25 ms +I, [2018-07-26T18:17:31.497992 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.509934 #5] INFO -- : Inline processing of topic section_change with 1 messages took 11.25 ms +I, [2018-07-26T18:17:31.510000 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.510379 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-26T18:17:31.510416 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.510632 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-26T18:17:31.510699 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.513655 #5] INFO -- : Inline processing of topic section_change with 1 messages took 2.81 ms +I, [2018-07-26T18:17:31.513764 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.514541 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.58 ms +I, [2018-07-26T18:17:31.514592 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.514861 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-26T18:17:31.514896 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.515280 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-26T18:17:31.515342 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.515686 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-26T18:17:31.515741 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.516112 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-26T18:17:31.533527 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.543542 #5] INFO -- : Inline processing of topic section_change with 1 messages took 8.8 ms +I, [2018-07-26T18:17:31.543619 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.543834 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:31.543859 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.544046 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:31.544068 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.544270 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:31.544293 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.544471 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:31.544497 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.544677 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:31.544701 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.544823 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:31.544844 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.545010 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:31.545055 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.545195 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:31.545238 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.545355 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:31.545376 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.551718 #5] INFO -- : Inline processing of topic section_change with 1 messages took 6.25 ms +I, [2018-07-26T18:17:31.551775 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.552026 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-26T18:17:31.552062 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.552521 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-07-26T18:17:31.552562 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.552770 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:31.552795 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.552959 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:31.552985 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.553153 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:31.553174 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.553327 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:31.553348 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.553547 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:31.553572 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.558364 #5] INFO -- : Inline processing of topic section_change with 1 messages took 4.37 ms +I, [2018-07-26T18:17:31.566915 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.567320 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-26T18:17:31.567421 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.567659 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-26T18:17:31.567690 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.567930 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-26T18:17:31.567963 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.568169 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:31.568199 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.568394 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:31.568424 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.568579 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:31.568608 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.568859 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-26T18:17:31.568906 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.569075 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:31.569105 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.569292 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:31.569322 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.573976 #5] INFO -- : Inline processing of topic section_change with 1 messages took 4.47 ms +I, [2018-07-26T18:17:31.574085 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.589602 #5] INFO -- : Inline processing of topic section_change with 1 messages took 15.34 ms +I, [2018-07-26T18:17:31.589655 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.589901 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-26T18:17:31.589926 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.595521 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-26T18:17:31.595564 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.595729 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:31.595752 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.595915 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:31.595937 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.596074 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:31.596096 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.596462 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-26T18:17:31.596490 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.596642 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:31.596664 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.596842 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:31.596863 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.597071 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-26T18:17:31.597108 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.597365 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-26T18:17:31.597449 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.597633 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:31.597655 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.597830 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:31.597861 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.598034 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:31.598056 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.598213 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:31.598255 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.598403 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:31.598425 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.598565 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:31.598586 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.598717 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:31.598737 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.598904 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:31.598925 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.599073 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:31.599094 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.599248 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:31.599272 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.599437 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:31.599459 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.599600 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:31.599621 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.599776 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:31.599797 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.599930 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:31.599951 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.600081 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:31.600102 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.600279 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-26T18:17:31.600303 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.600419 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:31.600440 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.600574 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:31.600598 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.600740 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:31.600761 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.600872 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:31.600927 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.601081 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:31.601103 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.614619 #5] INFO -- : Inline processing of topic section_change with 1 messages took 13.42 ms +I, [2018-07-26T18:17:31.614679 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.614902 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:31.622275 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.622555 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-26T18:17:31.622582 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.622708 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:31.622730 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.626303 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-26T18:17:31.626346 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.626563 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-26T18:17:31.626616 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.626778 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:31.626803 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.626942 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:31.626963 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.627091 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:31.627125 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.627253 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:31.627951 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.628181 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:31.628206 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.629312 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.01 ms +I, [2018-07-26T18:17:31.630996 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.631257 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-26T18:17:31.631291 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.632957 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.51 ms +I, [2018-07-26T18:17:31.633023 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.633282 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-26T18:17:31.633309 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.633486 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:31.633509 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.635777 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-26T18:17:31.635844 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.636128 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-26T18:17:31.636158 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.636332 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:31.636372 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.636537 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:31.636563 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.636711 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:31.636733 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.636883 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:31.636903 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.637059 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:31.637136 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.637308 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:31.637348 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.637480 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:31.638021 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.638252 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:31.638277 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.638425 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:31.638502 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.639669 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-26T18:17:31.639712 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.640012 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:31.640039 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.641799 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-07-26T18:17:31.641883 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.642089 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:31.642112 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.646901 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-26T18:17:31.646950 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.653272 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-26T18:17:31.653358 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.661176 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.86 ms +I, [2018-07-26T18:17:31.661381 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.661604 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:31.661629 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.661857 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-26T18:17:31.661884 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.662029 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:31.662069 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.662199 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:31.662220 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.662382 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:31.662406 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.662538 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:31.662560 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.662686 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:31.662706 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.662863 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:31.662888 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.663015 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:31.663052 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.663179 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:31.663200 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.663349 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:31.663373 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.663504 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:31.663524 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.663728 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-26T18:17:31.663751 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.663912 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:31.663935 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.664061 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:31.664083 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.664244 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:31.664284 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.664447 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:31.664467 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.664606 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:31.664652 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.664835 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-26T18:17:31.664859 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.665014 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:31.665035 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.665158 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:31.665179 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.665364 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:31.665405 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.665551 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:31.665572 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.665720 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:31.665740 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.671413 #5] INFO -- : Inline processing of topic section_change with 1 messages took 3.38 ms +I, [2018-07-26T18:17:31.671463 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.675892 #5] INFO -- : Inline processing of topic section_change with 1 messages took 4.31 ms +I, [2018-07-26T18:17:31.675942 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.676196 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-26T18:17:31.676652 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.676892 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:31.676996 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.679777 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.63 ms +I, [2018-07-26T18:17:31.680100 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.686809 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.74 ms +I, [2018-07-26T18:17:31.686879 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.688098 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-26T18:17:31.699438 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.699939 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-07-26T18:17:31.699989 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.700306 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-26T18:17:31.700361 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.700630 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-26T18:17:31.704582 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.704944 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-26T18:17:31.704980 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.711388 #5] INFO -- : Inline processing of topic section_change with 1 messages took 5.4 ms +I, [2018-07-26T18:17:31.711494 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.713882 #5] INFO -- : Inline processing of topic section_change with 1 messages took 2.22 ms +I, [2018-07-26T18:17:31.713971 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.715341 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.18 ms +I, [2018-07-26T18:17:31.715451 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.715882 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-07-26T18:17:31.715926 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.716251 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-26T18:17:31.716287 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.728195 #5] INFO -- : Inline processing of topic section_change with 1 messages took 3.58 ms +I, [2018-07-26T18:17:31.728271 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.729347 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.83 ms +I, [2018-07-26T18:17:31.729399 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.730836 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.3 ms +I, [2018-07-26T18:17:31.730886 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.732235 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.25 ms +I, [2018-07-26T18:17:31.732280 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.733077 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.64 ms +I, [2018-07-26T18:17:31.733125 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.733380 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-26T18:17:31.733776 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.746124 #5] INFO -- : Inline processing of topic section_change with 1 messages took 12.16 ms +I, [2018-07-26T18:17:31.746200 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.746497 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-26T18:17:31.746526 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.746718 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:31.746740 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.746949 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:31.746973 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.747129 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:31.747152 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.747341 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-26T18:17:31.747365 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.747528 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:31.747570 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.747732 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:31.747778 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.747985 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:31.748007 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.748168 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:31.748188 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.748341 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:31.748361 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.748520 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:31.748541 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.748695 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:31.748715 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.748894 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:31.748934 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.749094 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:31.749114 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.749315 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-26T18:17:31.749339 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.755702 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-26T18:17:31.755750 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.756594 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.76 ms +I, [2018-07-26T18:17:31.756634 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.756855 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-26T18:17:31.756897 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.762820 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-07-26T18:17:31.762923 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.765047 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-26T18:17:31.765155 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.765391 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-26T18:17:31.765418 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.765569 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:31.765601 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.771196 #5] INFO -- : Inline processing of topic section_change with 1 messages took 5.51 ms +I, [2018-07-26T18:17:31.771250 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.771807 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.43 ms +I, [2018-07-26T18:17:31.771853 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.772653 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.68 ms +I, [2018-07-26T18:17:31.772702 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.776210 #5] INFO -- : Inline processing of topic section_change with 1 messages took 2.65 ms +I, [2018-07-26T18:17:31.776267 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.776626 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-26T18:17:31.776662 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.776883 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:31.776908 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.777186 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-26T18:17:31.777227 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.777405 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:31.777439 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.777665 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-26T18:17:31.777690 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.777831 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:31.777861 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.778028 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:31.778057 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.778197 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:31.778224 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.778357 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:31.778382 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.778514 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:31.778535 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.778664 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:31.778690 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.778815 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:31.778835 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.778964 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:31.778999 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.779142 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:31.779168 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.779300 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:31.779320 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.779450 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:31.779470 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.779601 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:31.779622 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.779744 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:31.779793 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.779925 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:31.779953 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.780111 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:31.780141 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.780269 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:31.812566 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.814701 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.95 ms +I, [2018-07-26T18:17:31.814757 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.815073 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-26T18:17:31.815108 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.815263 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:31.815290 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.815470 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:31.815492 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.815636 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:31.815665 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.815805 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:31.815834 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.815992 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:31.816020 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.818046 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.93 ms +I, [2018-07-26T18:17:31.818094 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.823563 #5] INFO -- : Inline processing of topic section_change with 1 messages took 5.35 ms +I, [2018-07-26T18:17:31.823617 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.823977 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-26T18:17:31.824007 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.824207 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:31.824233 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.824367 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:31.824389 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.824542 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:31.824564 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.824710 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:31.824731 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.824896 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:31.824921 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.825068 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:31.825091 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.825248 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:31.825273 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.825435 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:31.825459 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.825607 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:31.825675 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.825811 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:31.825834 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.825990 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:31.826013 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.826169 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:31.826227 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.826354 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:31.826376 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.838230 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-26T18:17:31.838280 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.838429 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:31.838453 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.838608 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:31.838631 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.838801 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:31.838824 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.839003 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:31.839028 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.839193 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:31.839437 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.839591 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:31.839641 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.839782 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:31.839804 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.841066 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.17 ms +I, [2018-07-26T18:17:31.841113 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.841316 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:31.841345 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.863711 #5] INFO -- : Inline processing of topic section_change with 1 messages took 8.76 ms +I, [2018-07-26T18:17:31.863827 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.864368 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-07-26T18:17:31.864440 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.864986 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-26T18:17:31.865039 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.865453 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-07-26T18:17:31.865488 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.866583 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-26T18:17:31.866687 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.867070 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-07-26T18:17:31.867107 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.867398 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-26T18:17:31.867432 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.867634 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:31.867664 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.867921 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-26T18:17:31.867952 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.869403 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:31.869523 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.869958 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-07-26T18:17:31.869997 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.881464 #5] INFO -- : Inline processing of topic section_change with 1 messages took 11.35 ms +I, [2018-07-26T18:17:31.881690 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.882202 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-26T18:17:31.882252 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.882580 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-26T18:17:31.882616 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.882891 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-26T18:17:31.882973 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.883188 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:31.883224 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.883537 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-26T18:17:31.883571 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.883779 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-26T18:17:31.883870 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.884196 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-26T18:17:31.884230 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.884478 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-26T18:17:31.884512 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.884735 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-26T18:17:31.884770 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.885062 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:31.885100 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.885350 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-26T18:17:31.885388 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.894127 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-07-26T18:17:31.894204 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.894626 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-26T18:17:31.894757 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.895050 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-26T18:17:31.895143 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.895402 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-26T18:17:31.895445 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.895767 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-26T18:17:31.895797 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.895983 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:31.896013 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.896225 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:31.896280 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.896557 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-26T18:17:31.896591 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.896915 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-26T18:17:31.896968 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.897212 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-26T18:17:31.897246 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.897497 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-26T18:17:31.897528 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.898261 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-07-26T18:17:31.898539 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.898878 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-26T18:17:31.898903 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.899046 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:31.899097 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.899262 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:31.899283 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.899413 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:31.899459 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.899727 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-26T18:17:31.899758 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.899963 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-26T18:17:31.899990 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.900163 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:31.900189 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.900392 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:31.900419 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.902584 #5] INFO -- : Inline processing of topic section_change with 1 messages took 2.06 ms +I, [2018-07-26T18:17:31.902635 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.902861 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-26T18:17:31.902886 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.911442 #5] INFO -- : Inline processing of topic section_change with 1 messages took 8.47 ms +I, [2018-07-26T18:17:31.911493 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.911704 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:31.911728 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.911893 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:31.911916 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.912109 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:31.912132 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.912270 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:31.912291 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.912483 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:31.912507 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.912665 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:31.912687 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.912805 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:31.912827 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.912988 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:31.913009 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.913143 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:31.913164 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.913361 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:31.913396 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.913577 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:31.913599 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.913740 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:31.913761 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.913924 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:31.913945 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.914089 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:31.914135 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.914305 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:31.914333 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.915925 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.51 ms +I, [2018-07-26T18:17:31.915968 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.916748 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.69 ms +I, [2018-07-26T18:17:31.916782 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.916979 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:31.917003 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.917184 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:31.918564 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.918850 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-26T18:17:31.918893 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.919133 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-26T18:17:31.919159 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.934806 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-26T18:17:31.934852 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.935105 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-26T18:17:31.935131 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.935270 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:31.935293 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.935450 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:31.935472 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.935605 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:31.935650 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.935783 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:31.935804 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.936034 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:31.936061 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.936196 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:31.936218 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.936376 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:31.936398 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.936562 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:31.936584 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.936695 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:31.936715 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.936918 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-26T18:17:31.936982 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.937185 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:31.937210 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.937360 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:31.937381 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.937549 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-26T18:17:31.937570 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.937699 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:31.937720 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.945863 #5] INFO -- : Inline processing of topic section_change with 1 messages took 8.04 ms +I, [2018-07-26T18:17:31.945913 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.946104 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-26T18:17:31.946153 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.946277 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:31.946299 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.946440 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:31.946461 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.946575 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:31.946597 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.946777 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:31.946802 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.946940 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:31.946962 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.947073 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:31.947095 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.947230 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:31.947251 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.947361 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:31.947431 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.950566 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-26T18:17:31.951584 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.951781 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:31.951805 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.951936 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:31.951958 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.962666 #5] INFO -- : Inline processing of topic section_change with 1 messages took 10.61 ms +I, [2018-07-26T18:17:31.962716 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.962951 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-26T18:17:31.962978 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.963152 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:31.963179 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.963350 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:31.963372 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.963485 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-26T18:17:31.963506 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.969788 #5] INFO -- : Inline processing of topic section_change with 1 messages took 6.18 ms +I, [2018-07-26T18:17:31.969854 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.970308 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-07-26T18:17:31.970342 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.970569 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-26T18:17:31.970596 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.970886 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-26T18:17:31.970912 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.971072 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-26T18:17:31.971120 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.971242 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-26T18:17:31.971263 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.971419 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-26T18:17:31.971440 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.971581 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-26T18:17:31.971602 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-26T18:17:31.971739 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-30T17:24:20.280588 #5] INFO -- : New topics added to target list: section_change +I, [2018-07-30T17:24:20.280669 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-07-30T17:24:20.281715 #5] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +E, [2018-07-30T17:24:20.282827 #5] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +E, [2018-07-30T17:24:25.283597 #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-07-30T17:24:25.284221 #5] INFO -- : New topics added to target list: section_change +I, [2018-07-30T17:24:25.284263 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-07-30T17:24:25.284803 #5] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +E, [2018-07-30T17:24:25.284880 #5] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +E, [2018-07-30T17:24:30.288188 #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-07-30T17:24:30.289013 #5] INFO -- : New topics added to target list: section_change +I, [2018-07-30T17:24:30.289060 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-07-30T17:24:31.187927 #5] ERROR -- : No brokers in cluster +E, [2018-07-30T17:24:36.188254 #5] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: + +I, [2018-07-30T17:24:36.188913 #5] INFO -- : New topics added to target list: section_change +I, [2018-07-30T17:24:36.188948 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-07-30T17:24:36.190998 #5] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-07-30T17:24:36.191150 #5] INFO -- : Joining group `notifications_notifications` +I, [2018-07-30T17:24:36.289194 #5] INFO -- : Will fetch at most 1048576 bytes at a time per partition from section_change +I, [2018-07-30T17:24:36.289311 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-07-30T17:24:36.291202 #5] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-07-30T17:24:36.291320 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-30T17:24:37.291679 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-30T17:24:38.291929 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-30T17:24:39.292166 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-30T17:24:40.292845 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-30T17:24:41.293972 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-30T17:24:42.294227 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-30T17:24:43.294578 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-30T17:24:44.295322 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-30T17:24:45.296687 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-30T17:24:46.297377 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-30T17:24:47.297769 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-30T17:24:48.302419 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-30T17:24:49.303463 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-30T17:24:50.303900 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-30T17:24:51.304979 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-30T17:24:52.305670 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-30T17:24:53.305845 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-30T17:24:54.306980 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-30T17:24:55.307428 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-30T17:24:56.307673 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-30T17:24:57.308358 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-30T17:24:58.308972 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-30T17:24:59.309408 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-30T17:25:00.309675 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-30T17:25:01.310725 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-30T17:25:02.311396 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-30T17:25:03.312124 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-30T17:25:03.830550 #5] INFO -- : Joined group `notifications_notifications` with member id `notifications-87d966f3-d542-42c6-9b60-5629ceb7e926` +I, [2018-07-30T17:25:03.830597 #5] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-07-30T17:25:03.938889 #5] INFO -- : Partitions assigned for `section_change`: 0 +I, [2018-07-30T17:25:04.312533 #5] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-07-30T17:25:04.312650 #5] INFO -- : New topics added to target list: section_change +I, [2018-07-30T17:25:04.312685 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-07-30T17:25:04.314213 #5] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-07-30T17:25:08.082556 #5] INFO -- : Inline processing of topic section_change with 1 messages took 3.75 ms +I, [2018-07-30T17:25:08.082607 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:08.082651 #5] INFO -- : Committing offsets with recommit: section_change/0:1 +I, [2018-07-30T17:25:08.084864 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-30T17:25:08.084902 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:08.085140 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-30T17:25:08.091693 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:08.093101 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.68 ms +I, [2018-07-30T17:25:08.093177 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:08.093714 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-07-30T17:25:08.093751 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:08.094042 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-30T17:25:08.094066 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:08.094262 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-30T17:25:08.094284 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:08.094454 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-30T17:25:08.094474 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:08.094633 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-30T17:25:08.094653 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:08.103972 #5] INFO -- : Inline processing of topic section_change with 1 messages took 8.14 ms +I, [2018-07-30T17:25:08.126516 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:08.126858 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-30T17:25:08.126882 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:08.127061 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-30T17:25:08.127083 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:08.127286 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-30T17:25:08.127308 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:08.127505 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-30T17:25:08.127532 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:08.129388 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.74 ms +I, [2018-07-30T17:25:08.129439 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:08.129712 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-30T17:25:08.129764 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:08.129918 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-30T17:25:08.129938 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:08.130130 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-30T17:25:08.130161 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:08.130339 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-30T17:25:08.130359 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:08.130512 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-30T17:25:08.130531 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:08.130801 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-30T17:25:08.130821 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:08.130990 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-30T17:25:08.131020 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:08.131453 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-30T17:25:08.131519 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:08.132271 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.4 ms +I, [2018-07-30T17:25:08.132356 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:08.132724 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-30T17:25:08.132747 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:08.132915 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-30T17:25:08.132935 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:08.138825 #5] INFO -- : Inline processing of topic section_change with 1 messages took 5.74 ms +I, [2018-07-30T17:25:08.138887 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:08.139209 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-30T17:25:08.139233 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:08.139420 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-30T17:25:08.139440 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:08.146515 #5] INFO -- : Inline processing of topic section_change with 1 messages took 6.98 ms +I, [2018-07-30T17:25:08.146574 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:08.147020 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-30T17:25:08.147058 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:08.147328 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-30T17:25:08.147386 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:08.147613 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-30T17:25:08.147634 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:08.147877 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-30T17:25:08.147901 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:08.148079 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-30T17:25:08.148100 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:08.148266 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-30T17:25:08.148287 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:08.148452 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-30T17:25:08.148473 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:08.148635 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-30T17:25:08.148655 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:08.150899 #5] INFO -- : Inline processing of topic section_change with 1 messages took 2.14 ms +I, [2018-07-30T17:25:08.150953 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:08.151270 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-30T17:25:08.151305 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:08.151512 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-30T17:25:08.151534 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:08.151704 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-30T17:25:08.151771 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:08.151935 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-30T17:25:08.151976 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:10.152881 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-30T17:25:10.152943 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:10.153152 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-30T17:25:10.153174 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:10.153346 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-30T17:25:10.153366 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:10.153574 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-30T17:25:10.153626 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:10.153770 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-30T17:25:10.153791 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:10.155672 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-30T17:25:10.155721 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:10.155943 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-30T17:25:10.155989 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:10.156239 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-30T17:25:10.156368 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:10.156576 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-30T17:25:10.156597 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:10.156773 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-30T17:25:10.156821 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:10.157096 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-30T17:25:10.157118 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:10.157302 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-30T17:25:10.157322 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:10.157567 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-30T17:25:10.157589 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:10.157775 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-30T17:25:10.157795 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:10.158025 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-30T17:25:10.158048 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:10.158241 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-30T17:25:10.158260 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:10.158514 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-30T17:25:10.158537 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:10.158728 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-30T17:25:10.158748 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:10.159010 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-30T17:25:10.159040 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:10.161863 #5] INFO -- : Inline processing of topic section_change with 1 messages took 2.67 ms +I, [2018-07-30T17:25:10.161934 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:10.162209 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-30T17:25:10.162231 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:10.162426 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-30T17:25:10.162447 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:10.162694 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-30T17:25:10.162717 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:10.166899 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-30T17:25:10.166938 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:10.167148 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-30T17:25:10.167171 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:10.167339 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-30T17:25:10.167360 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:10.167531 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-30T17:25:10.167552 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:10.167869 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-30T17:25:10.167910 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:10.169009 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-30T17:25:10.169047 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:10.169392 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-30T17:25:10.169460 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:10.169799 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-30T17:25:10.172583 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:10.173021 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-30T17:25:10.173064 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:10.173457 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-30T17:25:10.173500 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:10.173851 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-30T17:25:10.173897 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:10.174305 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-30T17:25:10.174366 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:10.174756 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-30T17:25:10.174799 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:10.175211 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-30T17:25:10.175269 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:10.175590 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-30T17:25:10.175641 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:12.176344 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-30T17:25:12.176381 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:12.176581 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-30T17:25:12.176625 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:12.176792 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-30T17:25:12.176812 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:12.176964 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-30T17:25:12.176983 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:12.177341 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-30T17:25:12.177388 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:12.177594 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-30T17:25:12.177616 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:12.177807 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-30T17:25:12.177853 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:12.178003 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-30T17:25:12.178024 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:12.178181 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-30T17:25:12.178201 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:12.178427 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-30T17:25:12.179333 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:12.179564 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-30T17:25:12.179588 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:12.179760 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-30T17:25:12.179780 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:12.179948 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-30T17:25:12.179969 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:12.180130 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-30T17:25:12.180150 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:12.180302 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-30T17:25:12.180321 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:12.180505 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-30T17:25:12.180527 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:12.180757 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-30T17:25:12.180782 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:12.180951 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-30T17:25:12.180971 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:12.181128 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-30T17:25:12.181148 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:12.181311 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-30T17:25:12.181330 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:12.181528 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-30T17:25:12.181551 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:12.181715 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-30T17:25:12.181756 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:12.181890 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-30T17:25:12.181930 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:12.182105 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-30T17:25:12.182154 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:12.182302 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-30T17:25:12.182341 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:12.182505 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-30T17:25:12.182528 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:12.183095 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-30T17:25:12.183226 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:12.183408 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-30T17:25:12.183454 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:12.184619 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.07 ms +I, [2018-07-30T17:25:12.184660 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:12.184897 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-30T17:25:12.184919 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:12.185089 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-30T17:25:12.185111 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:12.191626 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-30T17:25:12.191663 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:12.191844 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-30T17:25:12.191887 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:14.194109 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-30T17:25:14.194148 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:14.194349 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-30T17:25:14.194370 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:14.194529 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-30T17:25:14.194548 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:14.194701 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-30T17:25:14.194720 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:14.194875 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-30T17:25:14.194894 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:14.195159 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-30T17:25:14.195180 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:14.195341 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-30T17:25:14.195360 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:14.195991 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.51 ms +I, [2018-07-30T17:25:14.196028 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:14.196232 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-30T17:25:14.196269 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:14.196435 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-30T17:25:14.196456 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:14.196615 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-30T17:25:14.196634 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:14.196796 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-30T17:25:14.196816 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:14.197001 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-30T17:25:14.197023 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:14.197200 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-30T17:25:14.197220 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:14.197366 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-30T17:25:14.197386 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:14.197537 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-30T17:25:14.197571 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:14.197711 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-30T17:25:14.197742 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:14.197892 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-30T17:25:14.197941 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:14.198185 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-30T17:25:14.198208 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:14.198481 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-30T17:25:14.198507 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:14.198677 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-30T17:25:14.198698 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:14.198856 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-30T17:25:14.198883 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:14.199080 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-30T17:25:14.199110 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:14.199269 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-30T17:25:14.199294 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:14.199475 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-30T17:25:14.199501 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:14.199668 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-30T17:25:14.199699 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:14.199864 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-30T17:25:14.199884 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:14.200079 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-30T17:25:14.200114 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:14.200283 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-30T17:25:14.200303 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:14.200492 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-30T17:25:14.200514 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:14.200676 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-30T17:25:14.200752 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:14.200974 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-30T17:25:14.200999 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:14.201169 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-30T17:25:14.201194 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:14.201358 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-30T17:25:14.201378 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:14.201614 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-30T17:25:14.201636 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:14.201810 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-30T17:25:14.201830 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:14.202088 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-30T17:25:14.202111 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:14.202315 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-30T17:25:14.202335 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:14.202562 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-30T17:25:14.202587 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:14.202814 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-30T17:25:14.202836 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:14.203045 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-30T17:25:14.203544 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:14.203889 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-30T17:25:14.203991 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:14.204971 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.85 ms +I, [2018-07-30T17:25:14.205002 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:14.205381 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-30T17:25:14.205414 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:14.205643 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-30T17:25:14.205668 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:16.206713 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.4 ms +I, [2018-07-30T17:25:16.206752 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:16.206964 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-30T17:25:16.206986 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:16.207157 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-30T17:25:16.207177 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:16.207372 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-30T17:25:16.207419 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:16.207610 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-30T17:25:16.207632 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:16.207800 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-30T17:25:16.207847 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:16.208031 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-30T17:25:16.208070 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:16.208238 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-30T17:25:16.208258 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:16.208786 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-30T17:25:16.208812 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:16.214439 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-30T17:25:16.214476 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:16.214817 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-30T17:25:16.214867 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:16.215059 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-30T17:25:16.215081 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:16.215245 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-30T17:25:16.215265 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:16.215403 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-30T17:25:16.215454 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:16.215591 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-30T17:25:16.215631 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:16.215770 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-30T17:25:16.215839 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:16.216060 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-30T17:25:16.216082 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:16.216240 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-30T17:25:16.216260 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:16.216422 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-30T17:25:16.216442 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:16.216597 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-30T17:25:16.216638 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:16.224220 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-30T17:25:16.224257 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:16.224463 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-30T17:25:16.224485 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:16.224693 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-30T17:25:16.224719 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:16.224899 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-30T17:25:16.224920 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:16.225086 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-30T17:25:16.225107 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:16.225272 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-30T17:25:16.225292 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:16.225556 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-30T17:25:16.225580 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:16.225972 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-30T17:25:16.225999 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:16.226529 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-30T17:25:16.226556 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:16.226782 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-30T17:25:16.226806 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:16.226978 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-30T17:25:16.226998 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:16.240147 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-30T17:25:16.240186 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:16.240415 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-30T17:25:16.240441 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:16.240705 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-30T17:25:16.240730 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:16.240907 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-30T17:25:16.240949 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:16.241123 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-30T17:25:16.241144 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:16.241315 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-30T17:25:16.241361 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:16.241536 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-30T17:25:16.241592 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:16.241745 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-30T17:25:16.241793 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:16.241942 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-30T17:25:16.241984 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:16.242133 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-30T17:25:16.242183 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:18.243105 #5] INFO -- : Committing offsets: section_change/0:200 +I, [2018-07-30T17:25:18.247835 #5] INFO -- : Inline processing of topic section_change with 1 messages took 2.02 ms +I, [2018-07-30T17:25:18.247888 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:18.248248 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-30T17:25:18.248274 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:18.248471 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-30T17:25:18.248492 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:18.248659 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-30T17:25:18.248679 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:18.249796 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.03 ms +I, [2018-07-30T17:25:18.249839 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:18.250171 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-30T17:25:18.250201 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:18.250400 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-30T17:25:18.250421 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:18.250610 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-30T17:25:18.251844 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:18.252579 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.57 ms +I, [2018-07-30T17:25:18.252618 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:18.252806 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-30T17:25:18.252830 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:18.252984 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-30T17:25:18.253043 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:18.253263 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-30T17:25:18.253303 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:18.255327 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-30T17:25:18.255358 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:18.255549 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-30T17:25:18.255587 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:18.255748 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-30T17:25:18.255773 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:18.256976 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.05 ms +I, [2018-07-30T17:25:18.257033 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:18.257306 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-30T17:25:18.257332 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:18.257955 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-30T17:25:18.258003 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:18.258233 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-30T17:25:18.258257 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:18.258978 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.62 ms +I, [2018-07-30T17:25:18.259011 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:18.259238 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-30T17:25:18.263767 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:18.264087 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-30T17:25:18.264110 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:18.264301 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-30T17:25:18.264323 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:18.267333 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-30T17:25:18.267370 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:18.267630 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-30T17:25:18.267653 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:18.269166 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.43 ms +I, [2018-07-30T17:25:18.269201 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:18.269410 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-30T17:25:18.269432 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:18.269599 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-30T17:25:18.269618 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:18.271075 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-30T17:25:18.271112 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:18.271378 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-30T17:25:18.271407 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:18.271585 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-30T17:25:18.271606 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:18.272965 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-30T17:25:18.272999 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:18.273203 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-30T17:25:18.273225 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:18.273391 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-30T17:25:18.273412 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:18.274622 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-30T17:25:18.274721 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:18.274998 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-30T17:25:18.275021 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:18.275188 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-30T17:25:18.275209 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:18.276714 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.41 ms +I, [2018-07-30T17:25:18.276749 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:18.277015 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-30T17:25:18.277038 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:18.277218 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-30T17:25:18.277272 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:18.277416 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-30T17:25:18.277437 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:18.278935 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.39 ms +I, [2018-07-30T17:25:18.278972 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:18.280810 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-30T17:25:18.280847 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:20.281584 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-30T17:25:20.281626 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:20.281822 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-30T17:25:20.281846 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:20.282125 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-30T17:25:20.288980 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:20.289311 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-30T17:25:20.289335 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:20.289500 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-30T17:25:20.289521 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:20.289709 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-30T17:25:20.289761 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:20.290201 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-30T17:25:20.290227 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:20.290401 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-30T17:25:20.290422 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:20.290622 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-30T17:25:20.290644 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:20.290809 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-30T17:25:20.290829 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:20.291036 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-30T17:25:20.291059 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:20.291227 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-30T17:25:20.291247 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:20.291454 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-30T17:25:20.291481 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:20.291662 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-30T17:25:20.291683 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:20.301338 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-30T17:25:20.301413 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:20.301639 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-30T17:25:20.301661 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:20.301963 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-30T17:25:20.301989 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:20.302647 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.58 ms +I, [2018-07-30T17:25:20.302674 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:20.303080 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-07-30T17:25:20.303104 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:20.303291 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-30T17:25:20.303312 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:20.303480 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-30T17:25:20.303527 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:20.303668 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-30T17:25:20.303710 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:20.303897 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-30T17:25:20.303922 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:20.304103 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-30T17:25:20.304123 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:20.313469 #5] INFO -- : Inline processing of topic section_change with 1 messages took 7.03 ms +I, [2018-07-30T17:25:20.313515 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:20.316605 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-30T17:25:20.316690 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:20.316972 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-30T17:25:20.316995 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:20.318144 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-30T17:25:20.318173 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:20.318466 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-30T17:25:20.318491 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:20.318673 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-30T17:25:20.318695 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:20.318876 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-30T17:25:20.318897 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:20.325228 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-30T17:25:20.325315 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:20.325601 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-30T17:25:20.325623 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:20.325805 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-30T17:25:20.325826 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:20.325988 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-30T17:25:20.326009 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:20.330260 #5] INFO -- : Inline processing of topic section_change with 1 messages took 4.13 ms +I, [2018-07-30T17:25:20.330318 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:20.330583 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-30T17:25:20.330605 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:20.343719 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.49 ms +I, [2018-07-30T17:25:20.343783 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:20.344110 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-30T17:25:20.344139 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:20.350695 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-07-30T17:25:20.355723 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:20.356291 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-30T17:25:20.356330 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:20.356645 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-30T17:25:20.356683 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:20.356931 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-30T17:25:20.356977 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:20.357213 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-30T17:25:20.357240 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:20.357467 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-30T17:25:20.357494 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:20.357770 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-30T17:25:20.357798 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:20.358031 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-30T17:25:20.358105 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:20.358368 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-30T17:25:20.358396 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:20.358786 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-30T17:25:20.369637 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:22.370594 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-30T17:25:22.370777 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:22.371073 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-30T17:25:22.371097 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:22.371322 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-30T17:25:22.371348 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:22.371556 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-30T17:25:22.371578 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:22.371948 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-30T17:25:22.371978 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:22.372242 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-30T17:25:22.372275 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:22.373650 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-07-30T17:25:22.373714 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:22.374259 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-30T17:25:22.374288 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:22.374528 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-30T17:25:22.374591 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:22.388161 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-30T17:25:22.388197 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:22.388412 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-30T17:25:22.388439 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:22.391660 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-30T17:25:22.391700 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:22.391935 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-30T17:25:22.391958 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:22.392162 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-30T17:25:22.392184 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:22.392390 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-30T17:25:22.392446 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:22.392615 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-30T17:25:22.392635 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:22.392818 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-30T17:25:22.392839 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:22.393005 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-30T17:25:22.393025 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:24.399641 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-30T17:25:24.399722 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:24.400047 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-30T17:25:24.400078 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:24.400366 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-30T17:25:24.400396 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:24.400662 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-30T17:25:24.400713 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:24.400967 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-30T17:25:24.400996 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:24.401277 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-30T17:25:24.401305 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:24.401562 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-30T17:25:24.401589 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:24.401886 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-30T17:25:24.401915 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:24.402172 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-30T17:25:24.402249 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:24.402510 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-30T17:25:24.402537 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:24.402855 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-30T17:25:24.402887 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:24.403138 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-30T17:25:24.403167 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:24.403484 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-30T17:25:24.403514 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:24.403763 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-30T17:25:24.403795 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:24.404036 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-30T17:25:24.404065 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:24.404317 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-30T17:25:24.404348 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:24.404596 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-30T17:25:24.404624 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:24.404871 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-30T17:25:24.404902 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:24.405126 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-30T17:25:24.405154 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:24.405426 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-30T17:25:24.405457 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:24.405662 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-30T17:25:24.405691 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:24.406000 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-30T17:25:24.406030 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:24.406372 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-30T17:25:24.406407 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:24.410101 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-30T17:25:24.410148 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:24.410513 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-30T17:25:24.410545 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:24.410856 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-30T17:25:24.410890 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:24.411133 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-30T17:25:24.411162 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:24.411420 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-30T17:25:24.411477 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:24.411711 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-30T17:25:24.411773 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:24.412044 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-30T17:25:24.412073 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:24.412355 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-30T17:25:24.412385 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:24.412756 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-30T17:25:24.412789 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:24.425281 #5] INFO -- : Inline processing of topic section_change with 1 messages took 11.18 ms +I, [2018-07-30T17:25:24.425350 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:24.425592 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-30T17:25:24.425642 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:24.425789 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-30T17:25:24.425809 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:24.426007 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-30T17:25:24.426032 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:24.429816 #5] INFO -- : Inline processing of topic section_change with 1 messages took 3.64 ms +I, [2018-07-30T17:25:24.430088 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:24.430852 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-07-30T17:25:24.430944 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:24.431274 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-30T17:25:24.431308 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:24.431553 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-30T17:25:24.431597 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:26.432294 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-30T17:25:26.432330 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:26.432509 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-30T17:25:26.432528 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:26.432683 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-30T17:25:26.432704 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:26.432862 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-30T17:25:26.432883 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:26.433053 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-30T17:25:26.433128 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:26.440614 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-30T17:25:26.440645 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:26.440829 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-30T17:25:26.441522 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:26.441669 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-30T17:25:26.441688 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:26.441834 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-30T17:25:26.441852 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:26.442136 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-30T17:25:26.442169 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:26.442314 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-30T17:25:26.442332 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:26.442479 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-30T17:25:26.442497 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:26.442629 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-30T17:25:26.442647 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:26.442783 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-30T17:25:26.442801 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:26.442996 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-30T17:25:26.443015 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:26.443164 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-30T17:25:26.443182 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:26.443334 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-30T17:25:26.443355 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:26.444630 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-30T17:25:26.444660 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:26.444894 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-30T17:25:26.444922 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:26.445100 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-30T17:25:26.445121 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:26.445278 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-30T17:25:26.445297 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:26.445466 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-30T17:25:26.445486 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:26.445653 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-30T17:25:26.445673 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:26.453026 #5] INFO -- : Inline processing of topic section_change with 1 messages took 7.24 ms +I, [2018-07-30T17:25:26.453082 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:26.454600 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.3 ms +I, [2018-07-30T17:25:26.454675 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:26.454927 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-30T17:25:26.454950 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:26.455687 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-30T17:25:26.455749 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:26.456244 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-07-30T17:25:26.456735 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:26.457223 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-07-30T17:25:26.457262 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:26.466667 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.49 ms +I, [2018-07-30T17:25:26.466715 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:26.466991 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-30T17:25:26.467024 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:26.467275 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-30T17:25:26.467308 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:26.470546 #5] INFO -- : Inline processing of topic section_change with 1 messages took 3.03 ms +I, [2018-07-30T17:25:26.470594 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:26.470929 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-30T17:25:26.470954 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:26.471142 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-30T17:25:26.471162 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:26.471375 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-30T17:25:26.471399 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:26.471583 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-30T17:25:26.471603 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:26.471787 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-30T17:25:26.471805 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:26.472294 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-07-30T17:25:26.472349 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:26.475783 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-30T17:25:26.475821 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:26.476428 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.49 ms +I, [2018-07-30T17:25:26.476483 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:26.476684 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-30T17:25:26.476705 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:26.476887 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-30T17:25:26.476909 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:26.477431 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-30T17:25:26.477460 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:26.477754 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-30T17:25:26.477779 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:26.477965 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-30T17:25:26.477985 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:26.478190 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-30T17:25:26.478273 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:26.478466 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-30T17:25:26.478486 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:26.478724 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-30T17:25:26.489120 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:28.489436 #5] INFO -- : Committing offsets: section_change/0:399 +I, [2018-07-30T17:25:28.493073 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-30T17:25:28.493109 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:28.493327 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-30T17:25:28.493354 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:28.493559 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-30T17:25:28.493581 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:28.493760 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-30T17:25:28.493781 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:28.494012 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-30T17:25:28.494035 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:28.494241 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-30T17:25:28.494262 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:28.494492 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-30T17:25:28.494514 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:28.494685 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-30T17:25:28.494705 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:28.494882 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-30T17:25:28.494915 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:28.495096 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-30T17:25:28.495117 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:28.495443 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-30T17:25:28.495466 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:28.495744 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-30T17:25:28.495770 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:28.495967 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-30T17:25:28.495988 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:28.496182 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-30T17:25:28.496203 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:28.497559 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.25 ms +I, [2018-07-30T17:25:28.497587 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:28.497815 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-30T17:25:28.497839 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:28.498056 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-30T17:25:28.498078 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:28.498311 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-30T17:25:28.498336 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:28.498551 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-30T17:25:28.498572 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:28.498768 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-30T17:25:28.498793 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:28.499031 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-30T17:25:28.499053 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:28.499219 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-30T17:25:28.499268 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:28.499445 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-30T17:25:28.499466 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:28.499644 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-30T17:25:28.499665 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:28.499868 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-30T17:25:28.499891 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:28.500065 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-30T17:25:28.500085 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:28.501387 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.2 ms +I, [2018-07-30T17:25:28.501438 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:28.501684 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-30T17:25:28.501706 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:28.501909 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-30T17:25:28.504162 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:28.504496 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-30T17:25:28.504523 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:28.506425 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.79 ms +I, [2018-07-30T17:25:28.506470 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:28.507188 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.59 ms +I, [2018-07-30T17:25:28.507363 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:28.507592 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-30T17:25:28.507623 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:28.507883 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-30T17:25:28.507907 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:28.508094 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-30T17:25:28.508120 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:28.508323 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-30T17:25:28.508347 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:28.547449 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-30T17:25:28.547494 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:28.548422 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.78 ms +I, [2018-07-30T17:25:28.548451 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:28.548653 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-30T17:25:28.548680 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:28.548865 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-30T17:25:28.548888 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:28.549066 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-30T17:25:28.549120 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:28.549274 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-30T17:25:28.549294 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:28.549459 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-30T17:25:28.549480 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:28.571438 #5] INFO -- : Inline processing of topic section_change with 1 messages took 17.16 ms +I, [2018-07-30T17:25:28.571505 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:28.571818 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-30T17:25:28.571842 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:28.572017 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-30T17:25:28.572037 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:28.572205 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-30T17:25:28.572224 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:28.572386 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-30T17:25:28.572436 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:28.572571 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-30T17:25:28.572590 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:28.572990 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-30T17:25:28.573017 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:28.573190 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-30T17:25:28.573211 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:28.573389 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-30T17:25:28.573410 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:28.573588 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-30T17:25:28.573648 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:28.574513 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.75 ms +I, [2018-07-30T17:25:28.574637 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:28.574994 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-30T17:25:28.575030 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:28.575388 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-30T17:25:28.584763 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:28.585056 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-30T17:25:28.585078 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:30.585517 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-30T17:25:30.585555 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:30.585747 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-30T17:25:30.585769 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:30.585943 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-30T17:25:30.585964 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:30.586203 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-30T17:25:30.586229 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:30.586427 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-30T17:25:30.586448 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:30.586616 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-30T17:25:30.586637 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:30.586809 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-30T17:25:30.586830 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:30.586998 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-30T17:25:30.587031 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:30.587230 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-30T17:25:30.587253 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:30.587410 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-30T17:25:30.587429 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:30.587681 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-30T17:25:30.587749 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:30.588024 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-30T17:25:30.588064 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:30.588305 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-30T17:25:30.588326 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:30.588560 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-30T17:25:30.588593 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:30.588862 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-30T17:25:30.588884 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:30.589116 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-30T17:25:30.589162 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:30.589358 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-30T17:25:30.589379 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:30.589601 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-30T17:25:30.589625 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:30.589818 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-30T17:25:30.589839 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:30.590100 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-30T17:25:30.590123 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:30.590393 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-30T17:25:30.590416 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:30.590604 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-30T17:25:30.590625 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:30.590801 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-30T17:25:30.590854 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:30.592201 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.27 ms +I, [2018-07-30T17:25:30.592247 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:30.592470 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-30T17:25:30.592491 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:30.593235 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.66 ms +I, [2018-07-30T17:25:30.593289 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:30.593980 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-30T17:25:30.594009 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:32.595429 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-30T17:25:32.595556 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:32.596657 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-30T17:25:32.596688 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:32.596961 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-30T17:25:32.596999 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:32.597210 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-30T17:25:32.597231 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:32.597420 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-30T17:25:32.597449 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:32.597639 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-30T17:25:32.597669 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:32.597831 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-30T17:25:32.597852 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:32.598787 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-30T17:25:32.598813 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:32.598994 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-30T17:25:32.599029 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:32.599243 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-30T17:25:32.599274 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:32.599496 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-30T17:25:32.599519 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:32.599718 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-30T17:25:32.599747 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:32.599957 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-30T17:25:32.599978 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:32.600171 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-30T17:25:32.600205 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:32.600399 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-30T17:25:32.600422 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:32.600601 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-30T17:25:32.600621 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:32.600814 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-30T17:25:32.600834 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:32.600997 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-30T17:25:32.601018 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:32.601177 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-30T17:25:32.601205 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:32.601420 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-30T17:25:32.601453 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:32.601636 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-30T17:25:32.601658 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:32.602633 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-30T17:25:32.602667 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:34.607417 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-30T17:25:34.607456 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:34.607747 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-30T17:25:34.607779 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:34.607971 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-30T17:25:34.607993 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:34.608190 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-30T17:25:34.608214 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:34.608431 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-30T17:25:34.608456 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:34.608655 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-30T17:25:34.608686 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:34.609154 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-30T17:25:34.609191 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:34.614071 #5] INFO -- : Inline processing of topic section_change with 1 messages took 4.68 ms +I, [2018-07-30T17:25:34.614149 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:34.614466 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-30T17:25:34.614489 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:34.614763 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-30T17:25:34.614789 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:34.614999 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-30T17:25:34.615021 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:34.615215 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-30T17:25:34.615235 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:34.615409 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-30T17:25:34.615429 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:34.615657 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-30T17:25:34.615703 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:34.615888 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-30T17:25:34.615936 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:34.616100 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-30T17:25:34.616120 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:34.616295 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-30T17:25:34.616314 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:34.616483 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-30T17:25:34.616502 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:34.616734 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-30T17:25:34.616756 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:34.617120 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-30T17:25:34.617179 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:34.617605 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-30T17:25:34.617682 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:34.617896 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-30T17:25:34.617918 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:34.618082 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-30T17:25:34.618103 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:34.618318 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-30T17:25:34.618341 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:34.618530 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-30T17:25:34.618559 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:34.618730 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-30T17:25:34.618750 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:34.618909 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-30T17:25:34.618929 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:34.619083 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-30T17:25:34.619103 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:34.619256 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-30T17:25:34.619276 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:34.619447 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-30T17:25:34.619469 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:34.619884 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-30T17:25:34.619976 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:34.620389 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-30T17:25:34.620435 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:34.620646 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-30T17:25:34.620669 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:34.620805 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-30T17:25:34.620844 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:34.620978 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-30T17:25:34.620998 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:34.621162 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-30T17:25:34.621182 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:34.621335 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-30T17:25:34.621354 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:34.625140 #5] INFO -- : Inline processing of topic section_change with 1 messages took 3.66 ms +I, [2018-07-30T17:25:34.625213 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:34.625872 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-30T17:25:34.625912 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:34.626402 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-30T17:25:34.634662 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:34.635152 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-30T17:25:34.635190 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:34.635664 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-07-30T17:25:34.636933 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:34.637396 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-30T17:25:34.637434 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:34.637710 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-30T17:25:34.637745 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:36.638679 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-07-30T17:25:36.638763 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:36.639246 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-30T17:25:36.639285 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:36.639611 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-30T17:25:36.639647 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:36.640007 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-30T17:25:36.640121 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:36.640476 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-30T17:25:36.640604 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:36.640976 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-30T17:25:36.641018 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:36.641294 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-30T17:25:36.641325 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:36.641761 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-30T17:25:36.642239 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:36.649672 #5] INFO -- : Inline processing of topic section_change with 1 messages took 7.3 ms +I, [2018-07-30T17:25:36.649793 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:36.650175 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-30T17:25:36.650207 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:36.650496 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-30T17:25:36.650528 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:36.650813 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-30T17:25:36.650846 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:36.651119 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-30T17:25:36.651150 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:36.651411 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-30T17:25:36.651445 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:36.651747 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-30T17:25:36.651780 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:36.652036 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-30T17:25:36.652066 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:36.652319 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-30T17:25:36.652352 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:36.652648 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-30T17:25:36.666977 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:36.667448 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-07-30T17:25:36.667489 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:36.667827 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-30T17:25:36.667861 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:36.668138 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-30T17:25:36.668185 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:38.668862 #5] INFO -- : Committing offsets: section_change/0:570 +I, [2018-07-30T17:25:38.672046 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-30T17:25:38.672083 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:38.672324 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-30T17:25:38.672373 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:38.672550 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-30T17:25:38.672572 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:38.672786 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-30T17:25:38.672808 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:38.672993 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-30T17:25:38.673014 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:38.673227 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-30T17:25:38.673250 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:38.673446 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-30T17:25:38.677457 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:38.677786 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-30T17:25:38.677817 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:38.678007 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-30T17:25:38.678052 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:38.680264 #5] INFO -- : Inline processing of topic section_change with 1 messages took 2.14 ms +I, [2018-07-30T17:25:38.680321 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:38.680503 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-30T17:25:38.680539 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:38.681071 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-30T17:25:38.681097 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:38.681309 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-30T17:25:38.681332 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:38.681486 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-30T17:25:38.681507 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:38.681690 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-30T17:25:38.681735 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:38.681880 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-30T17:25:38.681900 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:38.682058 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-30T17:25:38.682101 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:38.682308 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-30T17:25:38.682330 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:38.687291 #5] INFO -- : Inline processing of topic section_change with 1 messages took 4.83 ms +I, [2018-07-30T17:25:38.687370 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:38.687656 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-30T17:25:38.687682 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:38.687894 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-30T17:25:38.687918 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:38.688095 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-30T17:25:38.688160 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:38.689425 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-30T17:25:38.689464 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:38.689671 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-30T17:25:38.689693 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:38.689860 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-30T17:25:38.689881 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:38.690147 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-30T17:25:38.690171 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:38.690346 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-30T17:25:38.690366 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:38.690530 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-30T17:25:38.690551 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:38.690712 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-30T17:25:38.690732 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:38.690894 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-30T17:25:38.690915 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:38.691118 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-30T17:25:38.691228 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:38.692842 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.6 ms +I, [2018-07-30T17:25:38.692893 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:38.693254 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-30T17:25:38.693291 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:38.693580 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-30T17:25:38.693614 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:38.693876 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-30T17:25:38.693918 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:38.694221 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-30T17:25:38.694254 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:38.694504 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-30T17:25:38.694536 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:38.694783 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-30T17:25:38.694814 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:38.696457 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.47 ms +I, [2018-07-30T17:25:38.699845 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:38.708349 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-30T17:25:38.708409 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:38.708568 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-30T17:25:38.708589 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:38.708778 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-30T17:25:38.708823 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:38.709080 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-30T17:25:38.709111 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:38.709280 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-30T17:25:38.709300 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:38.709465 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-30T17:25:38.709484 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:38.709645 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-30T17:25:38.709690 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:38.712754 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-30T17:25:38.712791 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:38.713011 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-30T17:25:38.713032 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:38.713229 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-30T17:25:38.713284 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:38.713444 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-30T17:25:38.713492 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:38.713696 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-30T17:25:38.713773 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:38.714070 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-30T17:25:38.714109 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:40.720904 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-30T17:25:40.720943 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:40.721312 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-07-30T17:25:40.721343 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:40.721702 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-30T17:25:40.721729 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:40.721959 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-30T17:25:40.721982 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:40.722234 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-30T17:25:40.722278 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:40.722487 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-30T17:25:40.722530 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:40.722724 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-30T17:25:40.723093 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:40.723461 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-30T17:25:40.723529 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:40.723854 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-30T17:25:40.723899 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:40.724247 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-30T17:25:40.734119 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:40.734658 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-30T17:25:40.734709 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:40.735057 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-30T17:25:40.735091 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:40.735441 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-30T17:25:40.735482 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:40.735827 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-30T17:25:40.735860 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:40.736303 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-07-30T17:25:40.736371 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:40.741391 #5] INFO -- : Inline processing of topic section_change with 1 messages took 4.8 ms +I, [2018-07-30T17:25:40.741463 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:40.742622 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.0 ms +I, [2018-07-30T17:25:40.742658 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:40.743035 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-30T17:25:40.743062 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:40.743292 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-30T17:25:40.743352 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:40.743515 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-30T17:25:40.743576 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:40.743798 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-30T17:25:40.743821 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:40.744043 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-30T17:25:40.744066 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:40.744267 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-30T17:25:40.744290 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:40.744472 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-30T17:25:40.744492 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:40.746805 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-30T17:25:40.746841 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:40.752608 #5] INFO -- : Inline processing of topic section_change with 1 messages took 5.65 ms +I, [2018-07-30T17:25:40.752692 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:40.752911 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-30T17:25:40.752957 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:40.753167 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-30T17:25:40.753187 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:40.753378 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-30T17:25:40.753400 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:40.754034 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-30T17:25:40.754063 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:40.754265 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-30T17:25:40.754288 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:40.755777 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.35 ms +I, [2018-07-30T17:25:40.756791 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:40.757134 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-30T17:25:40.757158 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:40.757353 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-30T17:25:40.757374 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:40.757548 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-30T17:25:40.757568 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:40.757702 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-30T17:25:40.757754 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:40.757916 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-30T17:25:40.757956 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:40.758093 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-30T17:25:40.758134 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:40.758262 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-30T17:25:40.758302 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:40.758435 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-30T17:25:40.758475 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:40.758628 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-30T17:25:40.758648 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:40.758814 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-30T17:25:40.762171 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:42.763373 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-30T17:25:42.763412 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:42.763655 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-30T17:25:42.763678 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:42.763874 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-30T17:25:42.763905 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:42.764088 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-30T17:25:42.764108 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:42.764267 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-30T17:25:42.764287 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:42.764629 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-07-30T17:25:42.764656 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:42.764884 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-30T17:25:42.764927 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:42.765218 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-30T17:25:42.765244 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:42.765415 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-30T17:25:42.765435 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:42.765637 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-30T17:25:42.765656 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:42.765883 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-30T17:25:42.765906 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:42.766095 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-30T17:25:42.766115 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:42.766290 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-30T17:25:42.766442 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:42.766710 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-30T17:25:42.766732 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:42.780952 #5] INFO -- : Inline processing of topic section_change with 1 messages took 10.16 ms +I, [2018-07-30T17:25:42.781802 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:42.782050 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-30T17:25:42.782073 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:42.785340 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-30T17:25:42.785379 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:42.785623 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-30T17:25:42.785646 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:42.785949 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-30T17:25:42.785975 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:42.786179 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-30T17:25:42.786202 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:42.786469 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-30T17:25:42.786496 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:42.786681 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-30T17:25:42.786703 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:42.786937 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-30T17:25:42.786964 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:42.789515 #5] INFO -- : Inline processing of topic section_change with 1 messages took 2.35 ms +I, [2018-07-30T17:25:42.789554 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:42.789788 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-30T17:25:42.789836 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:42.790112 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-30T17:25:42.790148 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:42.790519 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-30T17:25:42.790546 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:42.790751 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-30T17:25:42.790773 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:42.790974 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-30T17:25:42.790995 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:42.791221 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-30T17:25:42.791247 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:42.791441 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-30T17:25:42.791474 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:42.791643 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-30T17:25:42.791664 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:42.791827 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-30T17:25:42.791847 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:42.792082 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-30T17:25:42.792292 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:42.794916 #5] INFO -- : Inline processing of topic section_change with 1 messages took 2.49 ms +I, [2018-07-30T17:25:42.794965 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:42.795333 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-30T17:25:42.795358 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:42.795563 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-30T17:25:42.795585 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:42.795748 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-30T17:25:42.795802 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:42.795978 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-30T17:25:42.796001 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:42.796219 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-30T17:25:42.796242 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:42.796428 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-30T17:25:42.796450 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:44.797343 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-30T17:25:44.797380 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:44.797586 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-30T17:25:44.797608 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:44.798518 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.82 ms +I, [2018-07-30T17:25:44.798541 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:44.798706 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-30T17:25:44.798725 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:44.802696 #5] INFO -- : Inline processing of topic section_change with 1 messages took 3.86 ms +I, [2018-07-30T17:25:44.802749 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:44.803025 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-30T17:25:44.803070 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:44.803277 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-30T17:25:44.803299 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:44.803465 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-30T17:25:44.803485 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:44.803783 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-30T17:25:44.803806 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:44.803992 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-30T17:25:44.804013 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:44.804228 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-30T17:25:44.804250 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:44.804435 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-30T17:25:44.804455 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:44.804643 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-30T17:25:44.804664 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:44.804797 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-30T17:25:44.804817 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:44.805087 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-30T17:25:44.805131 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:44.806239 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.02 ms +I, [2018-07-30T17:25:44.806269 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:44.806494 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-30T17:25:44.806516 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:44.806723 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-30T17:25:44.806744 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:44.809180 #5] INFO -- : Inline processing of topic section_change with 1 messages took 2.34 ms +I, [2018-07-30T17:25:44.809215 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:44.809544 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-30T17:25:44.809570 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:44.809775 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-30T17:25:44.809797 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:44.810012 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-30T17:25:44.810036 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:44.810215 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-30T17:25:44.810237 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:44.810416 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-30T17:25:44.810474 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:44.812028 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-30T17:25:44.812059 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:46.812745 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-30T17:25:46.812816 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:46.813006 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-30T17:25:46.813026 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:46.813150 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-30T17:25:46.813197 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:46.813366 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-30T17:25:46.813384 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:46.813535 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-30T17:25:46.813553 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:46.813873 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-30T17:25:46.813896 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:46.814053 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-30T17:25:46.814071 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:46.814215 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-30T17:25:46.814233 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:46.814591 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-07-30T17:25:46.814614 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:46.814865 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-30T17:25:46.814915 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:46.819301 #5] INFO -- : Inline processing of topic section_change with 1 messages took 4.24 ms +I, [2018-07-30T17:25:46.819340 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:46.819631 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-30T17:25:46.819655 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:46.819835 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-30T17:25:46.819855 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:46.820025 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-30T17:25:46.820048 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:46.820468 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-07-30T17:25:46.820557 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:46.820786 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-30T17:25:46.820807 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:46.821005 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-30T17:25:46.821026 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:46.821244 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-30T17:25:46.821264 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:46.821584 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-30T17:25:46.821615 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:46.823322 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.58 ms +I, [2018-07-30T17:25:46.823354 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:46.826344 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-30T17:25:46.826433 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:48.827427 #5] INFO -- : Committing offsets: section_change/0:751 +I, [2018-07-30T17:25:48.829324 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-30T17:25:48.829369 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:48.829642 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-30T17:25:48.829664 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:48.829841 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-30T17:25:48.829859 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:48.830016 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-30T17:25:48.830035 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:48.830189 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-30T17:25:48.830208 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:48.832104 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.81 ms +I, [2018-07-30T17:25:48.832145 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:48.834338 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-07-30T17:25:48.834371 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:48.834618 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-30T17:25:48.834640 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:48.834882 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-30T17:25:48.834903 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:48.835109 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-30T17:25:48.835130 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:48.835379 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-30T17:25:48.835401 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:48.835625 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-30T17:25:48.835721 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:50.852748 #5] INFO -- : Inline processing of topic section_change with 1 messages took 9.15 ms +I, [2018-07-30T17:25:50.852830 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:50.853197 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-30T17:25:50.853240 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:50.853490 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-30T17:25:50.853513 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:50.858272 #5] INFO -- : Inline processing of topic section_change with 1 messages took 4.66 ms +I, [2018-07-30T17:25:50.858327 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:50.858616 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-30T17:25:50.858653 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:50.858869 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-30T17:25:50.859039 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:50.859429 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-07-30T17:25:50.859455 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:50.859688 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-30T17:25:50.859713 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:50.862305 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-30T17:25:50.862342 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:50.862590 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-30T17:25:50.862613 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:50.862857 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-30T17:25:50.862879 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:50.866063 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-30T17:25:50.866099 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:50.866464 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-30T17:25:50.866499 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:52.867732 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-07-30T17:25:52.867793 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:52.868079 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-30T17:25:52.868105 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:52.874120 #5] INFO -- : Inline processing of topic section_change with 1 messages took 5.88 ms +I, [2018-07-30T17:25:52.874177 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:52.874487 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-30T17:25:52.874539 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:52.874813 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-30T17:25:52.874834 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:52.880874 #5] INFO -- : Inline processing of topic section_change with 1 messages took 5.81 ms +I, [2018-07-30T17:25:52.880944 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:52.881510 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-30T17:25:52.881547 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:52.881801 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-30T17:25:52.881823 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:52.882103 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-30T17:25:52.882130 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:54.885004 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-07-30T17:25:54.885047 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:54.885319 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-30T17:25:54.885342 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:54.885557 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-30T17:25:54.885602 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:54.886130 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.41 ms +I, [2018-07-30T17:25:54.886237 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:54.892243 #5] INFO -- : Inline processing of topic section_change with 1 messages took 5.69 ms +I, [2018-07-30T17:25:54.892336 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:54.892785 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-30T17:25:54.892829 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:54.893146 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-30T17:25:54.893176 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:54.893458 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-30T17:25:54.893527 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:54.899599 #5] INFO -- : Inline processing of topic section_change with 1 messages took 5.91 ms +I, [2018-07-30T17:25:54.899688 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:54.913761 #5] INFO -- : Inline processing of topic section_change with 1 messages took 13.85 ms +I, [2018-07-30T17:25:54.913819 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:54.914124 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-30T17:25:54.914148 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:56.915142 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-30T17:25:56.915210 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:56.915469 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-30T17:25:56.915490 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:56.915670 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-30T17:25:56.915690 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:56.915868 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-30T17:25:56.915888 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:56.916066 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-30T17:25:56.916085 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:56.916285 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-30T17:25:56.916327 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:56.916505 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-30T17:25:56.916524 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:56.918534 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-30T17:25:56.918617 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:56.918905 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-30T17:25:56.918928 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:56.919262 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-30T17:25:56.919305 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:56.919493 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-30T17:25:56.919513 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:56.926292 #5] INFO -- : Inline processing of topic section_change with 1 messages took 6.69 ms +I, [2018-07-30T17:25:56.926389 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:56.927525 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.62 ms +I, [2018-07-30T17:25:56.927574 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:56.927918 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-30T17:25:56.928013 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:58.928744 #5] INFO -- : Committing offsets: section_change/0:810 +I, [2018-07-30T17:25:58.930562 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-30T17:25:58.930625 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:58.930856 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-30T17:25:58.930878 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:58.945656 #5] INFO -- : Inline processing of topic section_change with 1 messages took 10.97 ms +I, [2018-07-30T17:25:58.945753 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:58.946100 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-30T17:25:58.946129 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:58.946361 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-30T17:25:58.946387 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:58.946588 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-30T17:25:58.946633 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:58.946853 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-30T17:25:58.946877 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:58.947072 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-30T17:25:58.947093 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:58.947316 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-30T17:25:58.947341 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:58.947557 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-30T17:25:58.947578 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:58.947790 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-30T17:25:58.947812 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:58.948048 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-30T17:25:58.948092 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:58.948316 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-30T17:25:58.948341 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:58.948550 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-30T17:25:58.948570 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:58.948783 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-30T17:25:58.948804 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:25:58.949015 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-30T17:25:58.949035 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:00.950483 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-07-30T17:26:00.950522 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:00.950730 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-30T17:26:00.950751 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:00.950940 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-30T17:26:00.950961 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:00.951196 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-30T17:26:00.951216 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:00.958289 #5] INFO -- : Inline processing of topic section_change with 1 messages took 6.93 ms +I, [2018-07-30T17:26:00.958349 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:00.958724 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-30T17:26:00.958777 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:00.959017 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-30T17:26:00.959124 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:00.959302 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-30T17:26:00.959323 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:00.959507 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-30T17:26:00.959551 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:00.959730 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-30T17:26:00.959791 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:00.959954 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-30T17:26:00.959979 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:00.960168 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-30T17:26:00.960190 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:00.960356 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-30T17:26:00.960377 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:00.960525 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-30T17:26:00.960546 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:00.969376 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-07-30T17:26:00.969533 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:00.969937 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-30T17:26:00.970219 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:00.978489 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-07-30T17:26:00.978567 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:00.978927 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-30T17:26:00.978964 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:00.979244 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-30T17:26:00.979303 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:00.979546 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-30T17:26:00.979576 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:00.979921 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-30T17:26:00.979998 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:00.981337 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-30T17:26:00.981531 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:00.981970 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-30T17:26:00.985317 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:00.993946 #5] INFO -- : Inline processing of topic section_change with 1 messages took 8.16 ms +I, [2018-07-30T17:26:00.994017 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:00.994490 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-30T17:26:00.994531 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:00.994868 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-30T17:26:00.994904 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:00.995205 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-30T17:26:00.995243 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:01.008395 #5] INFO -- : Inline processing of topic section_change with 1 messages took 13.0 ms +I, [2018-07-30T17:26:01.008453 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:01.008734 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-30T17:26:01.008759 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:01.008932 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-30T17:26:01.008953 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:01.009163 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-30T17:26:01.009187 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:01.009351 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-30T17:26:01.009372 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:01.015160 #5] INFO -- : Inline processing of topic section_change with 1 messages took 5.68 ms +I, [2018-07-30T17:26:01.015213 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:01.015653 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-07-30T17:26:01.015680 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:01.015886 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-30T17:26:01.015911 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:01.016083 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-30T17:26:01.016104 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:01.016267 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-30T17:26:01.016288 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:01.016450 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-30T17:26:01.016471 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:01.022620 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-30T17:26:01.022658 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:01.027117 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-30T17:26:01.027268 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:01.027544 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-30T17:26:01.027567 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:01.027841 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-30T17:26:01.027865 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:01.028037 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-30T17:26:01.028058 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:01.028232 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-30T17:26:01.028254 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:01.028411 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-30T17:26:01.028431 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:01.028624 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-30T17:26:01.028651 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:01.034285 #5] INFO -- : Inline processing of topic section_change with 1 messages took 5.55 ms +I, [2018-07-30T17:26:01.034326 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:01.034632 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-30T17:26:01.034656 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:01.034836 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-30T17:26:01.034857 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:01.035033 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-30T17:26:01.035054 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:01.035222 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-30T17:26:01.035243 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:01.035529 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-30T17:26:01.035555 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:01.035743 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-30T17:26:01.035764 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:01.035935 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-30T17:26:01.035956 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:01.036120 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-30T17:26:01.036140 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:01.036309 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-30T17:26:01.036329 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:01.036520 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-30T17:26:01.036542 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:03.037511 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-30T17:26:03.037575 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:03.037817 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-30T17:26:03.037839 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:03.038019 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-30T17:26:03.038040 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:03.038379 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-30T17:26:03.038407 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:03.038631 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-30T17:26:03.038654 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:03.038845 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-30T17:26:03.038866 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:03.044003 #5] INFO -- : Inline processing of topic section_change with 1 messages took 4.99 ms +I, [2018-07-30T17:26:03.044138 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:03.044580 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-30T17:26:03.044614 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:03.045701 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-30T17:26:03.045736 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:03.045995 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-30T17:26:03.046018 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:03.046199 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-30T17:26:03.046219 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:03.046415 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-30T17:26:03.046438 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:03.046620 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-30T17:26:03.046639 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:03.046773 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-30T17:26:03.046814 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:03.046971 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-30T17:26:03.046991 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:03.047157 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-30T17:26:03.047177 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:03.047306 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-30T17:26:03.047385 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:03.047532 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-30T17:26:03.047550 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:03.050819 #5] INFO -- : Inline processing of topic section_change with 1 messages took 3.12 ms +I, [2018-07-30T17:26:03.050873 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:03.051156 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-30T17:26:03.051179 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:03.051411 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-30T17:26:03.051435 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:03.051655 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-30T17:26:03.051678 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:03.051855 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-30T17:26:03.051876 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:03.052039 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-30T17:26:03.052068 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:03.052230 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-30T17:26:03.052251 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:03.052511 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-30T17:26:03.052534 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:03.052672 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-30T17:26:03.052692 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:03.053191 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-07-30T17:26:03.053222 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:03.053471 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-30T17:26:03.053494 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:03.053660 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-30T17:26:03.053681 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:03.054249 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-07-30T17:26:03.054319 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:03.054516 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-30T17:26:03.054537 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:03.054694 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-30T17:26:03.054739 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:03.054926 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-30T17:26:03.054946 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:03.062367 #5] INFO -- : Inline processing of topic section_change with 1 messages took 7.32 ms +I, [2018-07-30T17:26:03.062430 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:03.062784 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-30T17:26:03.062818 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:03.064774 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.81 ms +I, [2018-07-30T17:26:03.064866 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:03.065533 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.51 ms +I, [2018-07-30T17:26:03.065573 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:03.066086 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-07-30T17:26:03.066125 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:03.066443 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-30T17:26:03.066476 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:03.067140 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.55 ms +I, [2018-07-30T17:26:03.067178 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:03.067468 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-30T17:26:03.067498 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:03.067772 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-30T17:26:03.067802 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:05.070355 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.66 ms +I, [2018-07-30T17:26:05.070401 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:05.070720 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-30T17:26:05.070745 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:05.070960 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-30T17:26:05.071009 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:05.071201 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-30T17:26:05.071222 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:05.071384 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-30T17:26:05.071404 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:05.071611 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-30T17:26:05.071633 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:05.071944 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-30T17:26:05.071986 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:05.072354 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-30T17:26:05.072400 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:05.072632 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-30T17:26:05.072656 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:05.072854 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-30T17:26:05.072875 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:05.073057 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-30T17:26:05.073077 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:05.073279 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-30T17:26:05.073299 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:05.073482 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-30T17:26:05.073502 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:05.073864 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-30T17:26:05.073897 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:05.074209 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-30T17:26:05.074249 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:05.074853 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.48 ms +I, [2018-07-30T17:26:05.074945 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:05.075219 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-30T17:26:05.075250 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:05.076228 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.81 ms +I, [2018-07-30T17:26:05.076382 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:07.077139 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-30T17:26:07.077174 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:07.077456 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-30T17:26:07.077477 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:07.077675 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-30T17:26:07.077694 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:07.077931 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-30T17:26:07.077975 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:07.078615 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.56 ms +I, [2018-07-30T17:26:07.078647 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:07.082990 #5] INFO -- : Inline processing of topic section_change with 1 messages took 4.24 ms +I, [2018-07-30T17:26:07.083221 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:07.086545 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-30T17:26:07.086634 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:07.086930 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-30T17:26:07.086964 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:07.087209 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-30T17:26:07.087233 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:07.087436 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-30T17:26:07.087457 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:09.087599 #5] INFO -- : Committing offsets: section_change/0:954 +I, [2018-07-30T17:26:09.089271 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-30T17:26:09.089305 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:09.089534 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-30T17:26:09.089577 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:09.091340 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-30T17:26:09.091386 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:09.091692 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-30T17:26:09.091716 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:09.094589 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-30T17:26:09.094676 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:09.095009 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-30T17:26:09.095038 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:09.095255 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-30T17:26:09.095284 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:09.095454 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-30T17:26:09.095486 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:09.095677 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-30T17:26:09.095713 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:09.095935 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-30T17:26:09.095975 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:09.098426 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.81 ms +I, [2018-07-30T17:26:09.098473 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:09.098746 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-30T17:26:09.098768 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:09.099097 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-30T17:26:09.099155 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:09.102056 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-30T17:26:09.102134 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:11.102879 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-30T17:26:11.102915 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:11.103144 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-30T17:26:11.103166 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:11.103403 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-30T17:26:11.103424 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:11.103641 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-30T17:26:11.103662 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:11.103914 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-30T17:26:11.106537 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:11.107153 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-07-30T17:26:11.107197 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:11.107774 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-07-30T17:26:11.107852 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:11.108252 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-30T17:26:11.108288 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:11.108642 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-30T17:26:11.108750 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:11.109287 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-07-30T17:26:11.109324 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:11.109699 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-30T17:26:11.109731 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:11.110302 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.43 ms +I, [2018-07-30T17:26:11.110334 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:11.110570 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-30T17:26:11.110598 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:13.111351 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-30T17:26:13.111400 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:13.113293 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-30T17:26:13.113330 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:13.113604 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-30T17:26:13.113737 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:13.113962 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-30T17:26:13.113982 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:13.114177 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-30T17:26:13.114197 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:13.114453 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-30T17:26:13.114474 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:13.114735 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-30T17:26:13.114763 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:13.114967 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-30T17:26:13.114987 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:13.115221 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-30T17:26:13.115284 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:13.115503 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-30T17:26:13.115523 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:13.115732 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-30T17:26:13.115754 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:15.117281 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-30T17:26:15.117333 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:15.117702 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-30T17:26:15.117740 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:15.118010 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-30T17:26:15.118045 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:15.118412 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-30T17:26:15.118447 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:15.118733 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-30T17:26:15.118763 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:15.119067 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-30T17:26:15.119148 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:15.121951 #5] INFO -- : Inline processing of topic section_change with 1 messages took 2.58 ms +I, [2018-07-30T17:26:15.122034 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:15.122421 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-30T17:26:15.122453 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:15.129124 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-30T17:26:15.129166 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:15.129415 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-30T17:26:15.129437 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:15.129669 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-30T17:26:15.129691 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:15.129885 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-30T17:26:15.129905 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:15.130156 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-30T17:26:15.130177 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:17.130875 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-30T17:26:17.130936 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:17.131181 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-30T17:26:17.131204 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:17.131425 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-30T17:26:17.131449 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:17.131635 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-30T17:26:17.131656 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:17.131825 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-30T17:26:17.131846 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:17.132040 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-30T17:26:17.132062 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:17.132222 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-30T17:26:17.132272 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:17.132467 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-30T17:26:17.132489 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:17.132661 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-30T17:26:17.132681 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:17.132845 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-30T17:26:17.132866 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:17.133069 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-30T17:26:17.133091 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:17.133259 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-30T17:26:17.133279 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:17.133473 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-30T17:26:17.133503 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:17.133678 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-30T17:26:17.133699 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:17.133852 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-30T17:26:17.133872 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:17.134077 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-30T17:26:17.134098 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:17.134253 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-30T17:26:17.134274 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:17.134448 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-30T17:26:17.142535 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:17.143180 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-07-30T17:26:17.143523 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:17.145461 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-30T17:26:17.145504 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:17.145747 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-30T17:26:17.145776 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:17.146047 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-30T17:26:17.146076 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:17.146296 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-30T17:26:17.147822 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:17.148081 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-30T17:26:17.148133 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:17.148787 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-30T17:26:17.148836 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:17.149100 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-30T17:26:17.149135 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:17.149383 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-30T17:26:17.149447 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:17.149666 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-30T17:26:17.150760 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:17.151121 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-30T17:26:17.151154 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:17.151361 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-30T17:26:17.151433 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:17.153168 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.68 ms +I, [2018-07-30T17:26:17.153321 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:17.156065 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-30T17:26:17.157589 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:17.159614 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.13 ms +I, [2018-07-30T17:26:17.159650 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:17.159925 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-30T17:26:17.159954 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:17.160187 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-30T17:26:17.160216 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:17.160452 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-30T17:26:17.160480 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:17.175190 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-30T17:26:17.175309 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:17.175593 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-30T17:26:17.175615 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:17.175792 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-30T17:26:17.175812 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:17.175992 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-30T17:26:17.176012 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:17.176157 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-30T17:26:17.176186 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:17.176378 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-30T17:26:17.176399 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:17.179948 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-30T17:26:17.179987 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:17.180231 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-30T17:26:17.180255 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:17.180424 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-30T17:26:17.180445 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:17.180608 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-30T17:26:17.180629 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:17.180850 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-30T17:26:17.180872 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:17.181035 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-30T17:26:17.181056 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:17.181294 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-30T17:26:17.181318 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:17.194331 #5] INFO -- : Inline processing of topic section_change with 1 messages took 12.93 ms +I, [2018-07-30T17:26:17.194372 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:17.194626 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-30T17:26:17.194650 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:17.194949 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-30T17:26:17.194975 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:17.195129 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-30T17:26:17.195170 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:17.195308 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-30T17:26:17.195347 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:17.195485 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-30T17:26:17.195505 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:17.195672 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-30T17:26:17.195720 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:17.195912 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-30T17:26:17.195936 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:17.196111 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-30T17:26:17.196131 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:17.196294 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-30T17:26:17.196315 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:17.196481 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-30T17:26:17.196502 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:17.201930 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.52 ms +I, [2018-07-30T17:26:17.202002 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:17.202263 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-30T17:26:17.202287 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:17.202500 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-30T17:26:17.202526 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:17.202746 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-30T17:26:17.202771 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:17.202971 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-30T17:26:17.202992 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:17.203177 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-30T17:26:17.203212 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:17.203430 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-30T17:26:17.203471 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:17.203644 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-30T17:26:17.203675 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:17.203907 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-30T17:26:17.203930 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:17.204110 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-30T17:26:17.204142 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:17.204311 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-30T17:26:17.204331 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:17.204496 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-30T17:26:17.204534 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:17.204754 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-30T17:26:17.204778 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:17.204955 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-30T17:26:17.204976 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:17.205147 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-30T17:26:17.205176 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:17.205354 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-30T17:26:17.205375 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:17.205552 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-30T17:26:17.205573 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:17.205792 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-30T17:26:17.205814 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:17.205996 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-30T17:26:17.206017 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:17.206196 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-30T17:26:17.206229 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:17.206412 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-30T17:26:17.206435 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:17.206619 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-30T17:26:17.206699 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:19.207089 #5] INFO -- : Committing offsets: section_change/0:1087 +I, [2018-07-30T17:26:19.209092 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-30T17:26:19.209130 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:19.209372 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-30T17:26:19.209397 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:19.209919 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-07-30T17:26:19.209952 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:19.210393 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-07-30T17:26:19.210423 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:19.210660 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-30T17:26:19.210683 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:19.210904 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-30T17:26:19.210925 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:19.211091 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-30T17:26:19.211111 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:19.219383 #5] INFO -- : Inline processing of topic section_change with 1 messages took 8.14 ms +I, [2018-07-30T17:26:19.219452 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:19.219680 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-30T17:26:19.219700 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:19.219866 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-30T17:26:19.219885 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:19.220034 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-30T17:26:19.220053 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:19.220235 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-30T17:26:19.220276 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:19.220432 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-30T17:26:19.220451 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:19.220604 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-30T17:26:19.220623 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:19.221654 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.9 ms +I, [2018-07-30T17:26:19.221706 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:19.221914 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-30T17:26:19.221936 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:19.222132 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-30T17:26:19.222158 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:19.222340 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-30T17:26:19.222362 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:19.222532 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-30T17:26:19.222552 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:19.222812 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-30T17:26:19.222835 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:19.223006 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-30T17:26:19.223027 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:19.223369 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-30T17:26:19.223399 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:19.223611 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-30T17:26:19.223681 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:19.224388 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.45 ms +I, [2018-07-30T17:26:19.224449 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:19.224792 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-30T17:26:19.224818 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:19.225242 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-07-30T17:26:19.225269 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:19.225508 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-30T17:26:19.225529 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:19.225762 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-30T17:26:19.225785 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:19.225973 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-30T17:26:19.225994 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:19.226208 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-30T17:26:19.226231 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:19.226413 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-30T17:26:19.226458 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:19.226682 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-30T17:26:19.226704 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:21.227611 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-30T17:26:21.227669 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:21.227916 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-30T17:26:21.228024 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:21.231870 #5] INFO -- : Inline processing of topic section_change with 1 messages took 3.65 ms +I, [2018-07-30T17:26:21.231942 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:21.232201 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-30T17:26:21.232248 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:21.232441 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-30T17:26:21.232463 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:21.232662 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-30T17:26:21.232730 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:21.234338 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-30T17:26:21.234373 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:21.234602 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-30T17:26:21.234624 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:21.234871 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-30T17:26:21.234894 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:21.235235 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-30T17:26:21.235294 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:21.235509 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-30T17:26:21.235567 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:21.235803 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-30T17:26:21.235826 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:23.237852 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-30T17:26:23.237888 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:23.238170 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-30T17:26:23.238201 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:23.238444 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-30T17:26:23.238475 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:23.238677 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-30T17:26:23.238698 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:23.238962 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-30T17:26:23.239018 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:23.239430 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-07-30T17:26:23.239498 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:23.239720 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-30T17:26:23.239761 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:23.239959 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-30T17:26:23.239994 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:23.240198 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-30T17:26:23.240218 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:23.240448 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-30T17:26:23.240470 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:23.240650 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-30T17:26:23.240673 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:23.240846 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-30T17:26:23.240870 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:23.241097 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-30T17:26:23.241133 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:23.241524 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-07-30T17:26:23.241591 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:25.256117 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-07-30T17:26:25.256161 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:25.256489 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-30T17:26:25.256520 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:25.257494 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-30T17:26:25.257558 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:25.257837 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-30T17:26:25.257861 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:25.258105 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-30T17:26:25.258126 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:25.282405 #5] INFO -- : Inline processing of topic section_change with 1 messages took 21.85 ms +I, [2018-07-30T17:26:25.282499 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:25.284406 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.6 ms +I, [2018-07-30T17:26:25.284461 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:25.284798 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-30T17:26:25.284843 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:27.290818 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.41 ms +I, [2018-07-30T17:26:27.290894 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:27.291382 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-07-30T17:26:27.291473 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:27.292056 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-07-30T17:26:27.292152 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:27.292796 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.42 ms +I, [2018-07-30T17:26:27.292851 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:29.293178 #5] INFO -- : Committing offsets: section_change/0:1157 +I, [2018-07-30T17:26:29.296573 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-30T17:26:29.296614 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:29.296836 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-30T17:26:29.296856 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:29.297074 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-30T17:26:29.297097 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:29.297391 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-30T17:26:29.297448 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:29.297718 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-30T17:26:29.297741 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:29.297961 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-30T17:26:29.297983 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:29.298203 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-30T17:26:29.298226 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:29.298421 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-30T17:26:29.298441 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:29.298712 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-30T17:26:29.298734 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:29.298931 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-30T17:26:29.298952 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:29.299149 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-30T17:26:29.299171 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:31.300355 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.79 ms +I, [2018-07-30T17:26:31.300450 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:31.301012 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-30T17:26:31.301048 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:31.301356 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-30T17:26:31.301386 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:31.301698 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-30T17:26:31.301728 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:31.302074 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-30T17:26:31.302106 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:26:31.302621 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-30T17:27:53.959244 #5] INFO -- : New topics added to target list: section_change +I, [2018-07-30T17:27:53.959307 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-07-30T17:27:53.963300 #5] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.9:9094 +E, [2018-07-30T17:27:53.963408 #5] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.9:9094 +E, [2018-07-30T17:27:58.963925 #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.9:9094 +I, [2018-07-30T17:27:58.964928 #5] INFO -- : New topics added to target list: section_change +I, [2018-07-30T17:27:58.964988 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-07-30T17:27:58.965647 #5] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.9:9094 +E, [2018-07-30T17:27:58.965907 #5] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.9:9094 +E, [2018-07-30T17:28:03.969998 #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.9:9094 +I, [2018-07-30T17:28:03.970798 #5] INFO -- : New topics added to target list: section_change +I, [2018-07-30T17:28:03.977106 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-07-30T17:28:03.977757 #5] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.9:9094 +E, [2018-07-30T17:28:03.977853 #5] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.9:9094 +E, [2018-07-30T17:28:08.985525 #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.9:9094 +I, [2018-07-30T17:28:08.992555 #5] INFO -- : New topics added to target list: section_change +I, [2018-07-30T17:28:08.992613 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-07-30T17:28:08.998263 #5] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-07-30T17:28:08.998428 #5] INFO -- : Joining group `notifications_notifications` +E, [2018-07-30T17:28:09.029558 #5] ERROR -- : Failed to find coordinator for group `notifications_notifications`; retrying... +I, [2018-07-30T17:28:09.092725 #5] INFO -- : Will fetch at most 1048576 bytes at a time per partition from section_change +I, [2018-07-30T17:28:09.092853 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-07-30T17:28:09.104052 #5] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-07-30T17:28:09.104235 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-30T17:28:10.029943 #5] INFO -- : Joining group `notifications_notifications` +E, [2018-07-30T17:28:10.065089 #5] ERROR -- : Failed to find coordinator for group `notifications_notifications`; retrying... +I, [2018-07-30T17:28:10.104866 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-30T17:28:11.065271 #5] INFO -- : Joining group `notifications_notifications` +I, [2018-07-30T17:28:11.105377 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-30T17:28:12.105675 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-30T17:28:13.106033 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-30T17:28:14.106500 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-30T17:28:15.106812 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-30T17:28:16.107188 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-30T17:28:17.107775 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-30T17:28:18.108293 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-30T17:28:19.108945 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-30T17:28:20.109377 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-30T17:28:21.109728 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-30T17:28:22.110137 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-30T17:28:23.110481 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-30T17:28:24.110743 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-30T17:28:25.111294 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-30T17:28:26.112878 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-30T17:28:27.113141 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-30T17:28:28.113300 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-30T17:28:29.113878 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-30T17:28:30.115064 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-30T17:28:31.115945 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-30T17:28:32.117026 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-30T17:28:33.121894 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-30T17:28:34.126171 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-30T17:28:35.132572 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-30T17:28:36.134489 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-30T17:28:37.135082 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-30T17:28:38.136602 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-30T17:28:39.138017 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-30T17:28:40.143041 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-30T17:28:40.634847 #5] INFO -- : Joined group `notifications_notifications` with member id `notifications-95aede21-caed-4285-9be7-05bba21077e6` +I, [2018-07-30T17:28:40.634896 #5] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-07-30T17:28:40.763320 #5] INFO -- : Partitions assigned for `section_change`: 0 +I, [2018-07-30T17:28:40.803252 #5] INFO -- : Committing offsets with recommit: section_change/0:1157 +I, [2018-07-30T17:28:41.143367 #5] INFO -- : Seeking section_change/0 to offset 1157 +I, [2018-07-30T17:28:41.143464 #5] INFO -- : New topics added to target list: section_change +I, [2018-07-30T17:28:41.143627 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-07-30T17:28:41.146081 #5] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-07-30T17:28:42.890438 #5] INFO -- : Inline processing of topic section_change with 1 messages took 6.06 ms +I, [2018-07-30T17:28:42.890570 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:28:42.894652 #5] INFO -- : Inline processing of topic section_change with 1 messages took 3.86 ms +I, [2018-07-30T17:28:42.894720 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:28:42.896187 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.31 ms +I, [2018-07-30T17:28:42.896236 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:28:42.896543 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-30T17:28:42.896585 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:28:42.902173 #5] INFO -- : Inline processing of topic section_change with 1 messages took 5.49 ms +I, [2018-07-30T17:28:42.903136 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:28:42.903929 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.63 ms +I, [2018-07-30T17:28:42.903971 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:28:42.904617 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.55 ms +I, [2018-07-30T17:28:42.904648 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:28:42.905414 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-30T17:28:42.905468 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:28:42.905838 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-30T17:28:42.912647 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:28:42.913438 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.63 ms +I, [2018-07-30T17:28:42.913467 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:28:42.918662 #5] INFO -- : Inline processing of topic section_change with 1 messages took 5.09 ms +I, [2018-07-30T17:28:42.918716 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:28:42.919420 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.6 ms +I, [2018-07-30T17:28:42.919445 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:28:42.919622 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-30T17:28:42.919645 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:28:42.919801 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-30T17:28:42.920227 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:28:42.920393 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-30T17:28:42.920414 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:28:42.921051 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.58 ms +I, [2018-07-30T17:28:42.921077 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:28:42.929441 #5] INFO -- : Inline processing of topic section_change with 1 messages took 4.54 ms +I, [2018-07-30T17:28:42.929780 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:28:42.930794 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.54 ms +I, [2018-07-30T17:28:42.930833 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:28:42.934676 #5] INFO -- : Inline processing of topic section_change with 1 messages took 3.6 ms +I, [2018-07-30T17:28:42.934752 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:28:42.935097 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-30T17:28:42.936397 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:28:42.937235 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.56 ms +I, [2018-07-30T17:28:42.937272 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:28:42.939165 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.68 ms +I, [2018-07-30T17:28:42.939200 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:28:42.940884 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.57 ms +I, [2018-07-30T17:28:42.940936 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:28:42.944297 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-30T17:28:42.944364 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:28:42.953568 #5] INFO -- : Inline processing of topic section_change with 1 messages took 8.59 ms +I, [2018-07-30T17:28:42.953629 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:28:42.954445 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.7 ms +I, [2018-07-30T17:28:42.954478 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:28:42.954704 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-30T17:28:42.954725 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:28:42.955344 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-30T17:28:42.955370 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:28:42.956029 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.59 ms +I, [2018-07-30T17:28:42.956055 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:28:42.968056 #5] INFO -- : Inline processing of topic section_change with 1 messages took 11.92 ms +I, [2018-07-30T17:28:42.968107 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:28:42.984233 #5] INFO -- : Inline processing of topic section_change with 1 messages took 11.47 ms +I, [2018-07-30T17:28:42.984429 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:28:42.984798 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-30T17:28:42.984825 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:28:42.985005 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-30T17:28:42.985027 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:28:42.985221 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-30T17:28:42.985242 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:28:42.985404 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-30T17:28:42.985425 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:28:42.985581 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-30T17:28:42.985601 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:28:42.985822 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-30T17:28:42.985845 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:28:42.985986 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-30T17:28:42.986006 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:28:42.989952 #5] INFO -- : Inline processing of topic section_change with 1 messages took 3.83 ms +I, [2018-07-30T17:28:42.990004 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:28:42.990360 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-30T17:28:42.990388 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:28:42.990583 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-30T17:28:42.990606 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:28:42.990794 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-30T17:28:42.990814 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:28:42.990956 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-30T17:28:42.990976 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:28:42.991092 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-30T17:28:42.991111 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:28:42.991315 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-30T17:28:42.991335 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:28:42.991496 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-30T17:28:42.991561 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:28:42.991724 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-30T17:28:42.991744 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:28:42.993897 #5] INFO -- : Inline processing of topic section_change with 1 messages took 2.03 ms +I, [2018-07-30T17:28:42.993952 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:28:42.994323 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-30T17:28:42.994350 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:28:42.994606 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-30T17:28:42.994633 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:28:42.994844 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-30T17:28:42.994865 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:28:42.995042 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-30T17:28:42.995064 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:28:42.995282 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-30T17:28:42.995301 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:28:42.995503 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-30T17:28:42.995527 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:28:44.997012 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.49 ms +I, [2018-07-30T17:28:44.997060 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:28:44.997827 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.64 ms +I, [2018-07-30T17:28:44.997862 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:28:44.998313 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-07-30T17:28:44.998375 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:28:44.998776 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-07-30T17:28:44.998835 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:28:44.999264 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-30T17:28:44.999302 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:28:44.999675 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-30T17:28:44.999734 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:28:45.000016 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-30T17:28:45.000046 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:28:45.000522 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-07-30T17:28:45.000558 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:28:45.000806 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-30T17:28:45.000841 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:28:45.001510 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.52 ms +I, [2018-07-30T17:28:45.001552 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:28:45.001935 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-30T17:28:45.001966 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:28:47.005110 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-07-30T17:28:47.005151 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:28:47.005387 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-30T17:28:47.005435 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:28:47.005699 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-30T17:28:47.005724 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:28:47.005983 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-30T17:28:47.006004 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:28:47.006242 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-30T17:28:47.006276 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:28:47.007298 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.77 ms +I, [2018-07-30T17:28:47.007469 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:28:47.008101 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-07-30T17:28:47.008136 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:28:47.008293 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-30T17:28:47.008314 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:28:49.009575 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-07-30T17:28:49.009616 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:28:49.009806 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-30T17:28:49.009827 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:28:49.010286 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-30T17:28:49.010310 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:28:49.010529 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-30T17:28:49.010604 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:28:49.010754 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-30T17:28:49.010803 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:28:49.011001 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-30T17:28:49.011026 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:28:49.011195 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-30T17:28:49.011216 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:28:49.017836 #5] INFO -- : Inline processing of topic section_change with 1 messages took 6.5 ms +I, [2018-07-30T17:28:49.017922 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:28:49.018179 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-30T17:28:49.018202 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:28:49.018686 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.4 ms +I, [2018-07-30T17:28:49.018715 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:28:49.018930 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-30T17:28:49.018958 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:28:49.019165 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-30T17:28:49.019186 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:28:49.019328 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-30T17:28:49.019348 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:28:49.019578 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-30T17:28:49.019602 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:28:49.019776 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-30T17:28:49.019796 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:28:49.020023 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-30T17:28:49.020047 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:28:49.020220 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-30T17:28:49.020241 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:28:49.022117 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.77 ms +I, [2018-07-30T17:28:49.022156 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:28:51.022763 #5] INFO -- : Committing offsets: section_change/0:1248 +I, [2018-07-30T17:28:51.026279 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-07-30T17:28:51.026331 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:28:51.027170 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.53 ms +I, [2018-07-30T17:28:51.027321 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:28:51.027661 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-30T17:28:51.027712 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:28:51.027960 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-30T17:28:51.027982 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:28:51.028215 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-30T17:28:51.028245 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:28:51.028426 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-30T17:28:51.028446 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:28:51.028617 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-30T17:28:51.028638 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:28:51.028908 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-30T17:28:51.028971 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:28:51.029300 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-30T17:28:51.029325 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:28:51.029603 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-30T17:28:51.029627 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:28:51.029804 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-30T17:28:51.029827 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:28:51.030809 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.87 ms +I, [2018-07-30T17:28:51.030838 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:28:51.031063 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-30T17:28:51.031090 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:28:51.033040 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.85 ms +I, [2018-07-30T17:28:51.033073 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:28:51.033348 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-30T17:28:51.033374 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:28:51.033544 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-30T17:28:51.033567 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:28:51.033761 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-30T17:28:51.033787 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:28:51.033945 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-30T17:28:51.033966 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:28:51.034743 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.66 ms +I, [2018-07-30T17:28:51.034790 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:28:51.035006 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-30T17:28:51.035028 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:28:51.035245 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-30T17:28:51.035271 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:28:51.036803 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.44 ms +I, [2018-07-30T17:28:51.036844 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:28:51.037057 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-30T17:28:51.037105 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:28:51.037294 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-30T17:28:51.037316 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:28:51.037461 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-30T17:28:51.037511 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:28:51.037655 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-30T17:28:51.037700 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:28:51.037982 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-30T17:28:51.038006 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:28:51.038192 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-30T17:28:51.038214 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:28:51.038360 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-30T17:28:51.038382 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:28:53.039868 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-30T17:28:53.039923 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:28:53.040178 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-30T17:28:53.040214 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:28:53.040500 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-30T17:28:53.040530 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:28:53.040734 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-30T17:28:53.040765 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:28:53.041022 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-30T17:28:53.041051 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:28:53.041248 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-30T17:28:53.041275 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:28:53.041490 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-30T17:28:53.041517 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:28:53.041757 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-30T17:28:53.041785 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:28:53.042105 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-30T17:28:53.042155 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:28:53.042477 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-30T17:28:53.042503 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:28:53.042785 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-30T17:28:53.042821 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:28:53.043109 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-30T17:28:53.043138 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:28:53.043603 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-07-30T17:28:53.043635 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:28:53.043940 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-30T17:28:53.043970 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:28:53.044591 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.5 ms +I, [2018-07-30T17:28:53.044639 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:28:55.048020 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.49 ms +I, [2018-07-30T17:28:55.048214 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:28:55.048713 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-30T17:28:55.048747 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:28:55.049338 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.45 ms +I, [2018-07-30T17:28:55.049378 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:28:55.054955 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.4 ms +I, [2018-07-30T17:28:55.055012 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:28:55.055382 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-30T17:28:55.055412 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:28:55.055662 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-30T17:28:55.055697 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:28:55.055980 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-30T17:28:55.056005 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:28:55.061722 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-30T17:28:55.061764 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:28:55.062119 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-30T17:28:55.062156 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:28:57.063468 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.49 ms +I, [2018-07-30T17:28:57.063541 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:28:57.074619 #5] INFO -- : Inline processing of topic section_change with 1 messages took 9.24 ms +I, [2018-07-30T17:28:57.074680 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:28:57.075001 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-30T17:28:57.075025 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:28:57.075239 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-30T17:28:57.075261 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:28:57.075496 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-30T17:28:57.075522 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:28:57.075732 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-30T17:28:57.075753 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:28:57.075976 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-30T17:28:57.075996 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:28:57.076185 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-30T17:28:57.076205 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:28:59.077627 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.53 ms +I, [2018-07-30T17:28:59.077697 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:28:59.078219 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-07-30T17:28:59.078262 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:28:59.078657 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-07-30T17:28:59.078688 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:28:59.079012 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-30T17:28:59.079040 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:28:59.079461 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-30T17:28:59.079493 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:28:59.079809 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-30T17:28:59.079837 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:28:59.080068 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-30T17:28:59.080130 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:28:59.080598 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-07-30T17:28:59.080633 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:28:59.080876 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-30T17:28:59.081042 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:28:59.081301 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-30T17:28:59.081330 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:01.081701 #5] INFO -- : Committing offsets: section_change/0:1319 +I, [2018-07-30T17:29:01.085575 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-30T17:29:01.085619 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:01.085778 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-30T17:29:01.085798 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:01.085960 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-30T17:29:01.085980 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:01.086239 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-30T17:29:01.086262 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:01.086459 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-30T17:29:01.086478 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:01.086661 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-30T17:29:01.086684 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:01.086935 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-30T17:29:01.086954 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:01.087161 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-30T17:29:01.088475 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:01.088742 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-30T17:29:01.088797 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:01.089021 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-30T17:29:01.089054 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:01.089256 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-30T17:29:01.089277 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:01.089477 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-30T17:29:01.089498 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:03.090685 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-30T17:29:03.090724 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:03.090951 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-30T17:29:03.090971 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:03.091249 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-30T17:29:03.091276 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:03.091518 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-30T17:29:03.091539 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:03.092897 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.03 ms +I, [2018-07-30T17:29:03.092935 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:03.093222 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-30T17:29:03.093251 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:03.093476 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-30T17:29:03.093498 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:03.093694 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-30T17:29:03.093715 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:03.093855 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-30T17:29:03.093875 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:03.094075 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-30T17:29:03.094096 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:05.095097 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-07-30T17:29:05.095161 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:05.095527 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-30T17:29:05.095560 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:05.102118 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-07-30T17:29:05.102178 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:05.102615 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-30T17:29:05.102656 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:05.103230 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-07-30T17:29:05.103273 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:05.103613 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-30T17:29:05.103761 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:05.104080 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-30T17:29:05.104143 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:05.104356 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-30T17:29:05.104384 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:05.104601 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-30T17:29:05.104630 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:05.104959 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-30T17:29:05.104995 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:05.105273 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-30T17:29:05.105305 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:05.111155 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-30T17:29:05.111275 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:05.111781 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-07-30T17:29:05.111820 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:05.112296 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-07-30T17:29:05.112374 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:05.112724 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-30T17:29:05.112768 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:05.113126 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-30T17:29:05.113167 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:05.113556 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-30T17:29:05.113598 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:05.114033 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-30T17:29:05.114086 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:05.120203 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-30T17:29:05.120252 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:05.120486 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-30T17:29:05.120509 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:05.120686 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-30T17:29:05.120707 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:07.121177 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-30T17:29:07.121216 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:07.121413 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-30T17:29:07.128781 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:07.129390 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.41 ms +I, [2018-07-30T17:29:07.129424 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:07.129791 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-30T17:29:07.129816 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:07.130006 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-30T17:29:07.130026 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:07.130286 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-30T17:29:07.130309 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:07.130473 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-30T17:29:07.130493 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:07.130690 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-30T17:29:07.130715 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:07.130877 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-30T17:29:07.130897 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:07.131054 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-30T17:29:07.131074 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:07.131231 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-30T17:29:07.131251 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:07.131462 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-30T17:29:07.131483 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:07.131731 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-30T17:29:07.136712 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:07.137109 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-30T17:29:07.137137 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:07.137360 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-30T17:29:07.137381 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:07.137579 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-30T17:29:07.137603 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:07.137826 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-30T17:29:07.137848 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:07.138102 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-30T17:29:07.138154 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:09.139490 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-30T17:29:09.139529 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:09.139749 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-30T17:29:09.139771 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:09.139994 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-30T17:29:09.140016 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:09.140291 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-30T17:29:09.140314 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:09.140542 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-30T17:29:09.140562 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:09.140728 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-30T17:29:09.140749 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:09.140904 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-30T17:29:09.140924 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:09.141171 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-30T17:29:09.141193 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:09.141423 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-30T17:29:09.141443 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:11.142316 #5] INFO -- : Committing offsets: section_change/0:1389 +I, [2018-07-30T17:29:11.146775 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-30T17:29:11.146827 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:11.147124 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-30T17:29:11.147157 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:11.148267 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.93 ms +I, [2018-07-30T17:29:11.148299 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:11.148544 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-30T17:29:11.148568 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:11.148805 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-30T17:29:11.148826 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:11.149005 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-30T17:29:11.149027 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:11.149246 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-30T17:29:11.149269 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:11.149499 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-30T17:29:11.149521 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:11.149726 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-30T17:29:11.149767 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:11.150046 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-30T17:29:11.150109 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:13.150921 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-30T17:29:13.150974 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:13.151232 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-30T17:29:13.151257 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:13.151535 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-30T17:29:13.151560 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:13.151759 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-30T17:29:13.151777 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:13.151992 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-30T17:29:13.152026 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:13.152212 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-30T17:29:13.152241 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:13.152412 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-30T17:29:13.152466 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:13.156625 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.4 ms +I, [2018-07-30T17:29:13.156670 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:13.156955 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-30T17:29:13.156987 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:15.158176 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-30T17:29:15.158214 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:15.158396 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-30T17:29:15.158417 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:15.158667 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-30T17:29:15.158716 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:15.158923 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-30T17:29:15.158945 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:15.159111 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-30T17:29:15.159132 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:15.159265 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-30T17:29:15.159626 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:15.165053 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-30T17:29:15.165087 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:15.165261 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-30T17:29:15.165309 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:15.165447 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-30T17:29:15.165467 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:15.165705 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-30T17:29:15.165732 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:15.165943 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-30T17:29:15.165963 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:15.173278 #5] INFO -- : Inline processing of topic section_change with 1 messages took 7.18 ms +I, [2018-07-30T17:29:15.173349 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:15.173589 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-30T17:29:15.173611 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:15.173844 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-30T17:29:15.173868 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:15.174187 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-30T17:29:15.174215 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:17.175256 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-30T17:29:17.175295 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:17.175499 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-30T17:29:17.175519 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:17.175718 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-30T17:29:17.175738 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:17.176000 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-30T17:29:17.176020 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:17.176260 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-30T17:29:17.176280 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:17.176523 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-30T17:29:17.176542 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:17.180401 #5] INFO -- : Inline processing of topic section_change with 1 messages took 3.7 ms +I, [2018-07-30T17:29:17.180548 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:19.181382 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-30T17:29:19.181462 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:19.181684 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-30T17:29:19.181729 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:19.182012 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-30T17:29:19.182051 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:19.182288 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-30T17:29:19.182308 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:19.182623 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-30T17:29:19.182654 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:19.186798 #5] INFO -- : Inline processing of topic section_change with 1 messages took 3.99 ms +I, [2018-07-30T17:29:19.186855 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:21.187627 #5] INFO -- : Committing offsets: section_change/0:1436 +I, [2018-07-30T17:29:21.192243 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-30T17:29:21.192284 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:21.192557 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-30T17:29:21.192583 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:21.192799 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-30T17:29:21.192821 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:21.200641 #5] INFO -- : Inline processing of topic section_change with 1 messages took 7.71 ms +I, [2018-07-30T17:29:21.200691 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:21.201014 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-30T17:29:21.201040 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:21.201241 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-30T17:29:21.201263 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:21.201486 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-30T17:29:21.201515 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:21.214332 #5] INFO -- : Inline processing of topic section_change with 1 messages took 12.64 ms +I, [2018-07-30T17:29:21.214453 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:21.214930 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-30T17:29:21.214971 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:23.215837 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-30T17:29:23.215909 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:23.216177 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-30T17:29:23.216199 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:23.216470 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-30T17:29:23.216497 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:23.216736 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-30T17:29:23.216757 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:23.220691 #5] INFO -- : Inline processing of topic section_change with 1 messages took 3.74 ms +I, [2018-07-30T17:29:23.220769 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:23.221110 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-30T17:29:23.221134 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:25.222445 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-30T17:29:25.222572 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:25.222820 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-30T17:29:25.222842 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:25.223073 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-30T17:29:25.223097 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:25.223307 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-30T17:29:25.223327 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:25.227301 #5] INFO -- : Inline processing of topic section_change with 1 messages took 3.82 ms +I, [2018-07-30T17:29:25.227357 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:25.227677 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-30T17:29:25.227700 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:25.227959 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-30T17:29:25.227986 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:27.229044 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-07-30T17:29:27.229083 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:27.229325 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-30T17:29:27.229346 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:27.229656 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-30T17:29:27.229680 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:27.229890 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-30T17:29:27.233417 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:27.233684 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-30T17:29:27.233707 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:27.234007 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-30T17:29:27.234033 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:27.234251 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-30T17:29:27.234270 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:27.234523 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-30T17:29:27.234778 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:29.235736 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-30T17:29:29.235772 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:29.236044 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-30T17:29:29.236066 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:29.236257 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-30T17:29:29.236276 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:29.242348 #5] INFO -- : Inline processing of topic section_change with 1 messages took 5.45 ms +I, [2018-07-30T17:29:29.242451 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:29.242730 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-30T17:29:29.242752 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:29.243584 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-30T17:29:29.243613 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:29.243836 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-30T17:29:29.243875 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:29.244080 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-30T17:29:29.244101 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:29.244824 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-30T17:29:29.244895 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:31.245547 #5] INFO -- : Committing offsets: section_change/0:1475 +I, [2018-07-30T17:29:31.248439 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-30T17:29:31.248477 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:31.249174 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.59 ms +I, [2018-07-30T17:29:31.254312 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:31.254974 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-07-30T17:29:31.255021 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:31.255262 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-30T17:29:31.255298 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:31.255564 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-30T17:29:31.255586 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:31.255869 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-30T17:29:31.255897 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:33.256446 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-30T17:29:33.256485 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:33.256719 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-30T17:29:33.256743 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:33.257011 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-30T17:29:33.257085 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:33.257310 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-30T17:29:33.257351 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:33.257544 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-30T17:29:33.257585 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:33.257797 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-30T17:29:33.257844 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:33.258032 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-30T17:29:33.258078 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:33.264785 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-07-30T17:29:33.264834 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:33.265188 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-30T17:29:33.265218 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:35.266151 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-07-30T17:29:35.266207 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:35.266633 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-07-30T17:29:35.266694 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:35.266932 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-30T17:29:35.266989 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:35.267316 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-30T17:29:35.267343 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:35.267638 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-30T17:29:35.267668 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:35.267986 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-30T17:29:35.268013 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:35.268232 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-30T17:29:35.268258 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:35.268469 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-30T17:29:35.268494 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:35.268866 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-07-30T17:29:35.268903 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:37.270601 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.41 ms +I, [2018-07-30T17:29:37.270657 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:37.271017 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-30T17:29:37.271050 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:37.273911 #5] INFO -- : Inline processing of topic section_change with 1 messages took 2.65 ms +I, [2018-07-30T17:29:37.273956 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:37.274348 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-07-30T17:29:37.274455 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:37.274920 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-07-30T17:29:37.274946 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:37.275179 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-30T17:29:37.275202 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:37.275435 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-30T17:29:37.275460 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:37.276032 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.46 ms +I, [2018-07-30T17:29:37.276075 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:39.276756 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-30T17:29:39.276812 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:39.277108 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-30T17:29:39.277148 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:39.277501 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-30T17:29:39.277538 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:39.277936 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-07-30T17:29:39.277972 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:39.278357 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-07-30T17:29:39.278396 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:39.278717 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-30T17:29:39.278752 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:39.279042 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-30T17:29:39.279079 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:39.284826 #5] INFO -- : Inline processing of topic section_change with 1 messages took 5.59 ms +I, [2018-07-30T17:29:39.284887 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:39.285203 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-30T17:29:39.286234 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:39.286515 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-30T17:29:39.286536 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:39.286784 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-30T17:29:39.286810 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:39.287299 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-30T17:29:39.287382 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:39.287601 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-30T17:29:39.287624 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:39.287801 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-30T17:29:39.287822 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:39.288016 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-30T17:29:39.288038 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:39.288232 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-30T17:29:39.288277 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:39.288417 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-30T17:29:39.288438 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:39.288675 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-30T17:29:39.288699 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:39.288962 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-30T17:29:39.288987 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:39.289502 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-07-30T17:29:39.289551 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:39.290181 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-07-30T17:29:39.290293 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:39.290889 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-07-30T17:29:39.290936 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:39.291427 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-07-30T17:29:39.291674 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:39.292159 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-07-30T17:29:39.292199 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:39.292739 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-30T17:29:39.292773 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:41.292980 #5] INFO -- : Committing offsets: section_change/0:1532 +I, [2018-07-30T17:29:41.296979 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-30T17:29:41.297018 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:41.297251 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-30T17:29:41.297275 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:41.297440 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-30T17:29:41.297461 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:41.297637 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-30T17:29:41.297660 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:41.297861 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-30T17:29:41.297881 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:41.298072 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-30T17:29:41.298095 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:41.299556 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.34 ms +I, [2018-07-30T17:29:41.299632 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:41.300176 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-07-30T17:29:41.300229 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:41.301512 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.85 ms +I, [2018-07-30T17:29:41.301614 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:41.301904 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-30T17:29:41.302001 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:41.308465 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-30T17:29:41.308545 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:41.308918 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-30T17:29:41.308949 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:41.311215 #5] INFO -- : Inline processing of topic section_change with 1 messages took 2.14 ms +I, [2018-07-30T17:29:41.311260 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:41.311501 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-30T17:29:41.311549 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:41.311931 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-30T17:29:41.311961 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:41.312166 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-30T17:29:41.312188 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:41.312331 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-30T17:29:41.312352 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:41.312519 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-30T17:29:41.312539 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:41.326180 #5] INFO -- : Inline processing of topic section_change with 1 messages took 13.5 ms +I, [2018-07-30T17:29:41.326288 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:41.326735 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-30T17:29:41.326778 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:41.327111 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-30T17:29:41.327149 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:41.327429 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-30T17:29:41.327476 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:41.327696 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-30T17:29:41.327725 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:41.327954 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-30T17:29:41.327982 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:41.328186 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-30T17:29:41.328215 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:41.328434 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-30T17:29:41.328490 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:41.328732 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-30T17:29:41.328782 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:41.329017 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-30T17:29:41.329048 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:41.329331 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-30T17:29:41.329363 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:41.329635 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-30T17:29:41.329699 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:41.341217 #5] INFO -- : Inline processing of topic section_change with 1 messages took 11.37 ms +I, [2018-07-30T17:29:41.341270 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:41.351489 #5] INFO -- : Inline processing of topic section_change with 1 messages took 7.83 ms +I, [2018-07-30T17:29:41.351572 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:41.351896 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-30T17:29:41.351922 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:41.352114 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-30T17:29:41.352136 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:41.352289 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-30T17:29:41.352310 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:41.352510 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-30T17:29:41.352533 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:41.352704 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-30T17:29:41.352724 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:41.352913 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-30T17:29:41.352937 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:41.353111 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-30T17:29:41.353131 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:41.353285 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-30T17:29:41.353315 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:41.353506 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-30T17:29:41.353528 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:41.353676 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-30T17:29:41.353713 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:41.364079 #5] INFO -- : Inline processing of topic section_change with 1 messages took 10.22 ms +I, [2018-07-30T17:29:41.364197 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:41.364675 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-07-30T17:29:41.364718 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:41.365042 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-30T17:29:41.365083 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:41.365425 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-30T17:29:41.365460 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:41.365792 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-30T17:29:41.365835 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:41.366170 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-30T17:29:41.366210 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:41.366497 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-30T17:29:41.366531 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:41.366880 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-30T17:29:41.366917 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:41.367204 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-30T17:29:41.367242 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:41.367515 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-30T17:29:41.367549 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:41.367838 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-30T17:29:41.367875 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:41.368172 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-30T17:29:41.368209 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:41.370826 #5] INFO -- : Inline processing of topic section_change with 1 messages took 2.41 ms +I, [2018-07-30T17:29:41.370903 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:41.380767 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-30T17:29:41.380932 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:41.381373 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-30T17:29:41.381410 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:41.381644 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-30T17:29:41.381667 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:41.383938 #5] INFO -- : Inline processing of topic section_change with 1 messages took 2.17 ms +I, [2018-07-30T17:29:41.383987 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:41.384263 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-30T17:29:41.384287 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:41.384487 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-30T17:29:41.384533 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:41.384719 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-30T17:29:41.384806 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:41.385018 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-30T17:29:41.385040 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:41.385387 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-30T17:29:41.386516 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:41.387416 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.58 ms +I, [2018-07-30T17:29:41.389952 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:41.390359 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-30T17:29:41.390422 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:41.394484 #5] INFO -- : Inline processing of topic section_change with 1 messages took 3.89 ms +I, [2018-07-30T17:29:41.394611 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:41.395030 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-30T17:29:41.395067 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:41.395337 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-30T17:29:41.395374 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:41.397638 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.8 ms +I, [2018-07-30T17:29:41.398419 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:41.398914 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-30T17:29:41.399545 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:41.400341 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.59 ms +I, [2018-07-30T17:29:41.400393 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:41.403024 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.89 ms +I, [2018-07-30T17:29:41.403149 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:41.403517 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-30T17:29:41.403542 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:41.403943 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-07-30T17:29:41.404144 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:41.405548 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.13 ms +I, [2018-07-30T17:29:41.405583 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:41.405868 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-30T17:29:41.405893 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:41.406069 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-30T17:29:41.406089 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:41.408421 #5] INFO -- : Inline processing of topic section_change with 1 messages took 2.21 ms +I, [2018-07-30T17:29:41.408480 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:41.408753 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-30T17:29:41.408784 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:41.408972 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-30T17:29:41.409001 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:41.409191 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-30T17:29:41.409212 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:41.410608 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-30T17:29:41.410658 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:41.410883 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-30T17:29:41.410906 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:41.411394 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.4 ms +I, [2018-07-30T17:29:41.411737 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:41.412001 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-30T17:29:41.412034 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:41.412657 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.51 ms +I, [2018-07-30T17:29:41.412699 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:41.414401 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.56 ms +I, [2018-07-30T17:29:41.414460 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:41.414853 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-30T17:29:41.414888 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:41.415589 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-30T17:29:41.415623 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:41.417655 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.9 ms +I, [2018-07-30T17:29:41.417705 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:41.418502 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-30T17:29:41.421664 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:43.422630 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-30T17:29:43.422670 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:43.422877 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-30T17:29:43.422903 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:43.423714 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-30T17:29:43.423738 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:43.423918 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-30T17:29:43.423939 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:43.424066 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-30T17:29:43.424120 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:43.424454 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-30T17:29:43.424475 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:43.430763 #5] INFO -- : Inline processing of topic section_change with 1 messages took 6.12 ms +I, [2018-07-30T17:29:43.430818 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:45.431675 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.46 ms +I, [2018-07-30T17:29:45.431810 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:45.432432 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.4 ms +I, [2018-07-30T17:29:45.432527 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:45.433110 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-07-30T17:29:45.433157 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:45.433681 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-07-30T17:29:45.433720 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:47.434512 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-07-30T17:29:47.434551 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:47.434829 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-30T17:29:47.434851 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:47.435083 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-30T17:29:47.435103 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:47.435385 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-30T17:29:47.435407 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:49.436089 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-07-30T17:29:49.436127 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:49.437531 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.28 ms +I, [2018-07-30T17:29:49.437579 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:49.437937 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-30T17:29:49.439508 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:51.440025 #5] INFO -- : Committing offsets: section_change/0:1642 +I, [2018-07-30T17:29:51.444697 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-07-30T17:29:51.444737 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:51.445094 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-07-30T17:29:51.445118 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:51.446286 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.06 ms +I, [2018-07-30T17:29:51.446326 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:53.447230 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-07-30T17:29:53.447269 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:53.447544 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-30T17:29:53.447564 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:53.447817 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-30T17:29:53.447872 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:55.448643 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-30T17:29:55.448683 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:55.458896 #5] INFO -- : Inline processing of topic section_change with 1 messages took 9.95 ms +I, [2018-07-30T17:29:55.458959 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:55.459386 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-07-30T17:29:55.459570 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:55.460101 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-07-30T17:29:55.460132 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:57.460813 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-30T17:29:57.460850 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:57.461273 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-07-30T17:29:57.461297 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:57.461824 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.44 ms +I, [2018-07-30T17:29:57.461884 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:57.462263 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-07-30T17:29:57.462292 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:57.462539 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-30T17:29:57.462561 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:59.463333 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-30T17:29:59.463374 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:59.463625 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-30T17:29:59.463647 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:59.463989 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-30T17:29:59.464019 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:29:59.464313 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-30T17:29:59.464337 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:01.468466 #5] INFO -- : Committing offsets: section_change/0:1661 +I, [2018-07-30T17:30:01.471701 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-30T17:30:01.471736 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:01.471989 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-30T17:30:01.472008 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:01.472217 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-30T17:30:01.472236 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:01.472502 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-30T17:30:01.472522 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:01.472766 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-30T17:30:01.472802 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:01.474617 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-30T17:30:01.474654 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:03.475498 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-30T17:30:03.475538 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:03.475776 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-30T17:30:03.475823 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:03.476042 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-30T17:30:03.476062 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:03.476272 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-30T17:30:03.476292 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:03.476697 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-30T17:30:03.476733 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:03.477022 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-30T17:30:03.477047 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:03.477286 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-30T17:30:03.477309 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:05.478443 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.51 ms +I, [2018-07-30T17:30:05.478599 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:05.479169 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-07-30T17:30:05.479221 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:05.479735 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-07-30T17:30:05.479767 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:05.480144 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-07-30T17:30:05.480171 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:07.481907 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.47 ms +I, [2018-07-30T17:30:07.482166 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:07.482519 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-30T17:30:07.482559 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:07.482894 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-30T17:30:07.482980 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:07.483275 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-30T17:30:07.483296 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:09.483831 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-07-30T17:30:09.483870 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:09.484162 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-30T17:30:09.484184 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:09.484431 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-30T17:30:09.484477 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:09.484914 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-07-30T17:30:09.484980 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:11.485373 #5] INFO -- : Committing offsets: section_change/0:1686 +I, [2018-07-30T17:30:11.488814 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-30T17:30:11.488877 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:11.489166 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-30T17:30:11.489190 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:11.489496 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-30T17:30:11.489522 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:11.489795 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-30T17:30:11.489817 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:11.490167 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-30T17:30:11.490249 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:13.491802 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-07-30T17:30:13.491873 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:13.492153 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-30T17:30:13.492193 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:13.492436 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-30T17:30:13.492463 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:13.492704 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-30T17:30:13.492724 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:13.493132 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-07-30T17:30:13.493163 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:13.494581 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-30T17:30:13.494614 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:15.495186 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-07-30T17:30:15.495222 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:15.495561 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-30T17:30:15.495583 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:15.495732 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-30T17:30:15.495751 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:15.495958 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-30T17:30:15.495977 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:15.496298 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-30T17:30:15.496331 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:15.496818 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-07-30T17:30:15.496854 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:15.498531 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-30T17:30:15.498567 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:17.499559 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-07-30T17:30:17.499624 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:17.499866 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-30T17:30:17.499885 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:17.500107 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-30T17:30:17.500126 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:17.500312 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-30T17:30:17.500335 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:17.500639 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-30T17:30:17.500665 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:17.501054 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-30T17:30:17.501100 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:17.502612 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.42 ms +I, [2018-07-30T17:30:17.502644 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:17.503958 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.19 ms +I, [2018-07-30T17:30:17.503996 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:19.504974 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-07-30T17:30:19.505017 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:19.505181 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-30T17:30:19.505201 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:19.505512 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-30T17:30:19.505544 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:19.505761 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-30T17:30:19.505781 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:19.506055 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-30T17:30:19.506419 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:19.506677 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-30T17:30:19.506700 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:19.510890 #5] INFO -- : Inline processing of topic section_change with 1 messages took 4.07 ms +I, [2018-07-30T17:30:19.510936 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:19.511323 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-30T17:30:19.511396 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:21.511714 #5] INFO -- : Committing offsets: section_change/0:1720 +I, [2018-07-30T17:30:21.516289 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-30T17:30:21.516328 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:21.516581 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-30T17:30:21.516606 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:21.516795 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-30T17:30:21.516815 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:21.516988 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-30T17:30:21.517007 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:21.517136 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-30T17:30:21.518159 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:21.518402 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-30T17:30:21.518425 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:21.518632 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-30T17:30:21.518656 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:21.518817 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-30T17:30:21.518838 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:21.518976 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-30T17:30:21.518997 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:21.519152 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-30T17:30:21.519172 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:21.519342 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-30T17:30:21.519363 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:21.519529 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-30T17:30:21.519594 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:21.519743 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-30T17:30:21.519764 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:21.519979 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-30T17:30:21.520003 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:21.521150 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.06 ms +I, [2018-07-30T17:30:21.521182 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:21.522522 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.23 ms +I, [2018-07-30T17:30:21.522563 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:21.525007 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.32 ms +I, [2018-07-30T17:30:21.525061 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:21.525314 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-30T17:30:21.525337 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:21.525523 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-30T17:30:21.525562 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:21.525704 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-30T17:30:21.525725 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:21.525945 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-30T17:30:21.525994 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:21.526184 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-30T17:30:21.526206 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:21.526369 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-30T17:30:21.526394 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:21.526583 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-30T17:30:21.526603 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:21.526773 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-30T17:30:21.526794 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:21.526949 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-30T17:30:21.526970 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:21.530165 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.04 ms +I, [2018-07-30T17:30:21.533822 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:21.534155 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-30T17:30:21.534183 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:21.534468 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-30T17:30:21.534495 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:21.546426 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-30T17:30:21.546469 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:21.546725 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-30T17:30:21.546752 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:21.547036 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-30T17:30:21.547061 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:21.547362 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-30T17:30:21.547383 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:23.548059 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-30T17:30:23.548096 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:23.548406 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-30T17:30:23.548428 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:23.548673 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-30T17:30:23.548708 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:23.551192 #5] INFO -- : Inline processing of topic section_change with 1 messages took 2.13 ms +I, [2018-07-30T17:30:23.551233 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:23.552313 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.96 ms +I, [2018-07-30T17:30:23.552347 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:23.552607 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-30T17:30:23.552630 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:23.552891 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-30T17:30:23.552915 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:23.553197 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-30T17:30:23.553223 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:23.553426 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-30T17:30:23.553448 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:25.554074 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-30T17:30:25.554393 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:25.555535 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.0 ms +I, [2018-07-30T17:30:25.555657 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:25.556159 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-30T17:30:25.556323 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:25.556821 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-07-30T17:30:25.556860 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:25.557154 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-30T17:30:25.557198 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:25.557395 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-30T17:30:25.557436 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:27.558212 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-07-30T17:30:27.558253 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:27.558607 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-30T17:30:27.558650 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:27.560122 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.39 ms +I, [2018-07-30T17:30:27.560152 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:27.560412 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-30T17:30:27.560433 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:27.560873 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-07-30T17:30:27.560905 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:27.561124 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-30T17:30:27.561146 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:27.561342 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-30T17:30:27.561364 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:29.561932 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-30T17:30:29.561970 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:29.562386 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-30T17:30:29.562411 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:29.562649 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-30T17:30:29.562670 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:29.562853 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-30T17:30:29.562875 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:29.563090 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-30T17:30:29.563110 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:29.563366 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-30T17:30:29.563389 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:29.563627 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-30T17:30:29.563647 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:29.563969 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-30T17:30:29.563995 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:31.564220 #5] INFO -- : Committing offsets: section_change/0:1783 +I, [2018-07-30T17:30:31.567425 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-30T17:30:31.567466 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:31.567773 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-30T17:30:31.567799 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:31.568048 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-30T17:30:31.568070 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:31.568331 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-30T17:30:31.568355 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:31.568554 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-30T17:30:31.568594 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:31.568806 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-30T17:30:31.568829 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:31.571954 #5] INFO -- : Inline processing of topic section_change with 1 messages took 2.96 ms +I, [2018-07-30T17:30:31.572103 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:33.573193 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-07-30T17:30:33.573239 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:33.573513 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-30T17:30:33.573544 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:33.573789 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-30T17:30:33.573812 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:33.574165 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-07-30T17:30:33.574194 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:33.574452 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-30T17:30:33.574476 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:33.574835 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-30T17:30:33.574871 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:33.583833 #5] INFO -- : Inline processing of topic section_change with 1 messages took 8.81 ms +I, [2018-07-30T17:30:33.583901 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:33.584353 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-30T17:30:33.584386 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:35.584998 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-30T17:30:35.585037 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:35.585267 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-30T17:30:35.585287 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:35.585497 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-30T17:30:35.585515 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:35.585724 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-30T17:30:35.585761 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:35.596344 #5] INFO -- : Inline processing of topic section_change with 1 messages took 10.47 ms +I, [2018-07-30T17:30:35.596399 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:35.596761 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-30T17:30:35.596811 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:35.597016 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-30T17:30:35.597046 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:35.597259 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-30T17:30:35.597278 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:35.597495 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-30T17:30:35.597519 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:35.597740 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-30T17:30:35.597773 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:37.598471 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-30T17:30:37.598513 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:37.598805 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-30T17:30:37.598826 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:37.599119 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-30T17:30:37.599199 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:37.603566 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.65 ms +I, [2018-07-30T17:30:37.603606 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:37.603877 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-30T17:30:37.603912 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:37.604182 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-30T17:30:37.604204 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:37.604429 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-30T17:30:37.604456 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:37.604696 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-30T17:30:37.604718 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:37.604872 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-30T17:30:37.604936 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:37.605107 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-30T17:30:37.605128 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:39.607484 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-07-30T17:30:39.607571 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:39.608410 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-30T17:30:39.608438 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:39.608732 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-30T17:30:39.608756 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:39.608951 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-30T17:30:39.608972 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:39.609194 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-30T17:30:39.609218 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:39.609407 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-30T17:30:39.609429 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:39.609646 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-30T17:30:39.609668 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:39.609899 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-30T17:30:39.609921 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:41.610195 #5] INFO -- : Committing offsets: section_change/0:1826 +I, [2018-07-30T17:30:41.613284 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-07-30T17:30:41.614247 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:41.621349 #5] INFO -- : Inline processing of topic section_change with 1 messages took 6.5 ms +I, [2018-07-30T17:30:41.621484 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:41.621858 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-30T17:30:41.621898 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:41.622136 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-30T17:30:41.622158 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:41.622386 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-30T17:30:41.622407 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:41.622633 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-30T17:30:41.622654 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:41.623251 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.52 ms +I, [2018-07-30T17:30:41.623279 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:41.623615 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-30T17:30:41.623637 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:43.624237 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-30T17:30:43.624306 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:43.624565 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-30T17:30:43.624586 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:43.624848 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-30T17:30:43.624871 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:43.625102 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-30T17:30:43.625122 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:43.625275 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-30T17:30:43.625380 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:43.626809 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.3 ms +I, [2018-07-30T17:30:43.626847 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:43.627149 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-30T17:30:43.627170 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:43.627348 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-30T17:30:43.627368 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:43.627515 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-30T17:30:43.627535 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:45.628589 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-30T17:30:45.628627 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:45.628803 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-30T17:30:45.628822 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:45.629046 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-30T17:30:45.629064 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:45.629423 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-30T17:30:45.629474 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:45.631035 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.47 ms +I, [2018-07-30T17:30:45.631069 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:45.633474 #5] INFO -- : Inline processing of topic section_change with 1 messages took 2.27 ms +I, [2018-07-30T17:30:45.633513 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:47.634153 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-30T17:30:47.634191 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:47.634450 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-30T17:30:47.634471 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:47.634886 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-30T17:30:47.634910 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:47.635173 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-30T17:30:47.635203 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:47.636608 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-30T17:30:47.636648 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:47.636920 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-30T17:30:47.636944 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:47.637095 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-30T17:30:47.637153 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:47.637296 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-30T17:30:47.637318 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:47.637491 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-30T17:30:47.637512 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:47.637704 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-30T17:30:47.637728 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:47.637882 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-30T17:30:47.637903 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:47.638064 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-30T17:30:47.638084 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:47.638245 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-30T17:30:47.638265 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:47.638406 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-30T17:30:47.638449 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:47.641202 #5] INFO -- : Inline processing of topic section_change with 1 messages took 2.61 ms +I, [2018-07-30T17:30:47.641261 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:47.641700 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-07-30T17:30:47.641731 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:47.643223 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.39 ms +I, [2018-07-30T17:30:47.643258 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:47.643664 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-30T17:30:47.643693 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:47.643946 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-30T17:30:47.643968 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:49.644718 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-30T17:30:49.644757 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:49.644992 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-30T17:30:49.645036 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:49.645516 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.4 ms +I, [2018-07-30T17:30:49.645583 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:51.647247 #5] INFO -- : Committing offsets: section_change/0:1871 +I, [2018-07-30T17:30:51.651763 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-07-30T17:30:51.651801 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:51.652111 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-30T17:30:51.652138 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:51.652404 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-30T17:30:51.652425 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:51.652645 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-30T17:30:51.652664 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:51.652864 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-30T17:30:51.652883 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:51.653449 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-30T17:30:51.653479 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:51.653711 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-30T17:30:51.653731 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:53.654704 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-30T17:30:53.654746 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:53.655018 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-30T17:30:53.655040 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:53.655352 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-30T17:30:53.655404 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:53.655659 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-30T17:30:53.655685 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:53.659199 #5] INFO -- : Inline processing of topic section_change with 1 messages took 3.39 ms +I, [2018-07-30T17:30:53.659256 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:53.659664 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-07-30T17:30:53.659690 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:55.660436 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-07-30T17:30:55.660495 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:55.660829 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-30T17:30:55.660854 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:55.661033 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-30T17:30:55.661053 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:55.661320 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-30T17:30:55.661349 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:55.661576 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-30T17:30:55.662232 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:55.664941 #5] INFO -- : Inline processing of topic section_change with 1 messages took 2.51 ms +I, [2018-07-30T17:30:55.665123 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:55.665422 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-30T17:30:55.665449 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:55.665634 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-30T17:30:55.665655 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:55.665859 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-30T17:30:55.665883 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:55.666630 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-30T17:30:55.666672 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:55.666846 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-30T17:30:55.666874 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:55.667031 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-30T17:30:55.667050 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:55.667263 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-30T17:30:55.667296 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:55.667453 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-30T17:30:55.667481 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:55.667630 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-30T17:30:55.667648 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:55.667798 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-30T17:30:55.667820 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:55.674367 #5] INFO -- : Inline processing of topic section_change with 1 messages took 6.41 ms +I, [2018-07-30T17:30:55.674447 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:55.674901 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-30T17:30:55.674958 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:55.675307 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-30T17:30:55.675347 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:55.689909 #5] INFO -- : Inline processing of topic section_change with 1 messages took 14.38 ms +I, [2018-07-30T17:30:55.689970 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:55.690280 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-30T17:30:55.690315 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:55.690651 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-30T17:30:55.690686 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:55.690941 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-30T17:30:55.690972 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:55.691211 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-30T17:30:55.693980 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:55.694421 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-30T17:30:55.694461 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:55.694741 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-30T17:30:55.694774 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:55.695029 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-30T17:30:55.695060 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:55.695273 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-30T17:30:55.695361 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:55.695633 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-30T17:30:55.695670 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:55.702761 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.48 ms +I, [2018-07-30T17:30:55.702810 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:55.703085 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-30T17:30:55.703109 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:55.703497 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-30T17:30:55.703525 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:55.706363 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-30T17:30:55.706414 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:55.706732 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-30T17:30:55.706758 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:55.706937 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-30T17:30:55.706959 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:55.707104 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-30T17:30:55.707125 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:55.707350 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-30T17:30:55.707375 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:55.707546 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-30T17:30:55.707594 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:55.707740 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-30T17:30:55.707760 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:55.707923 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-30T17:30:55.707943 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:55.708888 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.84 ms +I, [2018-07-30T17:30:55.708934 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:55.709179 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-30T17:30:55.710520 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:55.710748 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-30T17:30:55.710771 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:55.710948 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-30T17:30:55.710969 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:55.711142 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-30T17:30:55.711694 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:55.711902 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-30T17:30:55.711924 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:55.713418 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.31 ms +I, [2018-07-30T17:30:55.713470 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:55.713750 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-30T17:30:55.713772 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:55.713960 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-30T17:30:55.713981 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:55.714222 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-30T17:30:55.714246 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:57.714698 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-30T17:30:57.714739 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:57.714979 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-30T17:30:57.715004 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:57.715572 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.4 ms +I, [2018-07-30T17:30:57.715613 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:57.715844 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-30T17:30:57.715870 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:57.716067 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-30T17:30:57.716088 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:57.730709 #5] INFO -- : Inline processing of topic section_change with 1 messages took 14.51 ms +I, [2018-07-30T17:30:57.730757 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:57.731046 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-30T17:30:57.731070 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:57.731256 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-30T17:30:57.731277 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:57.731534 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-30T17:30:57.731560 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:57.731804 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-30T17:30:57.731849 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:57.732093 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-30T17:30:57.732114 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:57.732412 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-30T17:30:57.732439 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:59.733726 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-30T17:30:59.733768 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:59.734011 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-30T17:30:59.734033 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:59.734213 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-30T17:30:59.734233 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:59.734530 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-30T17:30:59.734553 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:59.734783 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-30T17:30:59.734805 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:30:59.735033 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-30T17:30:59.735053 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:31:01.735366 #5] INFO -- : Committing offsets: section_change/0:1952 +I, [2018-07-30T17:31:01.746421 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-07-30T17:31:01.746463 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:31:01.746970 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-30T17:31:01.746997 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:31:01.747205 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-30T17:31:01.747228 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:31:01.747456 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-30T17:31:01.747476 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:31:01.747685 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-30T17:31:01.747704 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:31:01.747929 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-30T17:31:01.747974 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:31:03.749166 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.64 ms +I, [2018-07-30T17:31:03.749355 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:31:03.749879 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-07-30T17:31:03.749918 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:31:03.761199 #5] INFO -- : Inline processing of topic section_change with 1 messages took 11.06 ms +I, [2018-07-30T17:31:03.761274 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:31:03.762208 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.72 ms +I, [2018-07-30T17:31:03.762257 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:31:03.762672 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-07-30T17:31:03.762710 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:31:05.763415 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-30T17:31:05.763457 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:31:05.763942 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-30T17:31:05.764012 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:31:05.764285 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-30T17:31:05.764349 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:31:05.764595 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-30T17:31:05.764615 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:31:05.764853 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-30T17:31:05.764873 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:31:07.767237 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-07-30T17:31:07.767274 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:31:07.767756 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-07-30T17:31:07.767839 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:31:07.770857 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.42 ms +I, [2018-07-30T17:31:07.770899 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:31:09.771767 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-07-30T17:31:09.771804 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:31:09.772048 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-30T17:31:09.772067 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:31:09.772327 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-30T17:31:09.772349 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:31:09.774674 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.42 ms +I, [2018-07-30T17:31:09.774737 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:31:11.782315 #5] INFO -- : Committing offsets: section_change/0:1975 +I, [2018-07-30T17:31:11.787194 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.4 ms +I, [2018-07-30T17:31:11.787246 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:31:11.787718 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-07-30T17:31:11.787756 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:31:11.788178 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-07-30T17:31:11.788230 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:31:11.792103 #5] INFO -- : Inline processing of topic section_change with 1 messages took 2.08 ms +I, [2018-07-30T17:31:11.792217 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:31:13.793370 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-30T17:31:13.793449 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:31:13.793729 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-30T17:31:13.793749 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:31:13.794026 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-30T17:31:13.794045 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:31:13.794279 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-30T17:31:13.794297 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:31:15.795121 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-07-30T17:31:15.795214 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:31:15.802438 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-30T17:31:15.802505 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:31:15.802823 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-30T17:31:15.802845 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:31:17.803880 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.41 ms +I, [2018-07-30T17:31:17.803932 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:31:17.804305 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-30T17:31:17.804337 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:31:17.804909 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.42 ms +I, [2018-07-30T17:31:17.804959 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:31:17.806345 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.42 ms +I, [2018-07-30T17:31:17.806398 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:31:17.806728 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-30T17:31:17.806796 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:31:17.807063 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-30T17:31:17.807094 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:31:19.807889 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.46 ms +I, [2018-07-30T17:31:19.807941 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:31:19.808368 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-07-30T17:31:19.808428 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:31:19.817165 #5] INFO -- : Inline processing of topic section_change with 1 messages took 8.56 ms +I, [2018-07-30T17:31:19.817252 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:31:19.817898 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.45 ms +I, [2018-07-30T17:31:19.817930 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:31:19.818187 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-30T17:31:19.818210 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:31:21.819037 #5] INFO -- : Committing offsets: section_change/0:1997 +I, [2018-07-30T17:31:21.821593 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-07-30T17:31:21.821648 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:31:21.821974 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-30T17:31:21.822002 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:31:21.822193 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-30T17:31:21.822216 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:31:21.822393 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-30T17:31:21.822439 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:31:21.822646 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-30T17:31:21.822668 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:31:21.832889 #5] INFO -- : Inline processing of topic section_change with 1 messages took 10.08 ms +I, [2018-07-30T17:31:21.832951 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:31:21.833306 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-30T17:31:21.833332 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:31:21.833577 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-30T17:31:21.833601 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:31:21.838690 #5] INFO -- : Inline processing of topic section_change with 1 messages took 4.95 ms +I, [2018-07-30T17:31:21.838753 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:31:21.839066 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-30T17:31:21.839096 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:31:21.839418 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-30T17:31:21.839441 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:31:21.839621 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-30T17:31:21.839671 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:31:21.839860 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-30T17:31:21.839881 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:31:21.840021 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-30T17:31:21.840073 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:31:21.840217 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-30T17:31:21.848123 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:31:21.848436 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-30T17:31:21.848531 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:31:21.848761 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-30T17:31:21.848796 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:31:21.850763 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-30T17:31:21.850802 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:31:21.851025 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-30T17:31:21.851047 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:31:21.851195 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-30T17:31:21.851216 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:31:21.851396 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-30T17:31:21.851456 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:31:21.851653 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-30T17:31:21.851674 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:31:21.851856 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-30T17:31:21.851877 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:31:21.852018 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-30T17:31:21.852038 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:31:21.852202 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-30T17:31:21.852222 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:31:21.852431 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-30T17:31:21.852457 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:31:21.858090 #5] INFO -- : Inline processing of topic section_change with 1 messages took 5.5 ms +I, [2018-07-30T17:31:21.858195 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:31:23.858917 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-30T17:31:23.858977 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:31:23.859247 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-30T17:31:23.859279 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:31:23.859533 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-30T17:31:23.859568 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:31:23.859867 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-30T17:31:23.859903 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:31:23.860131 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-30T17:31:23.860163 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:31:23.860456 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-30T17:31:23.860532 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:31:23.860827 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-30T17:31:23.860870 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:31:23.861118 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-30T17:31:23.861150 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:31:23.861393 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-30T17:31:23.861429 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:31:23.861669 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-30T17:31:23.861701 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:31:23.861962 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-30T17:31:23.861996 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:31:23.874597 #5] INFO -- : Inline processing of topic section_change with 1 messages took 12.44 ms +I, [2018-07-30T17:31:23.874657 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:31:23.875007 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-30T17:31:23.875035 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:31:23.875252 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-30T17:31:23.875273 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:31:23.875479 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-30T17:31:23.875503 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:31:23.875647 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-30T17:31:23.875667 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:31:23.875836 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-30T17:31:23.875855 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:31:23.876015 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-30T17:31:23.876035 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:31:23.876163 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-30T17:31:23.876203 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:31:23.876331 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-30T17:31:23.876380 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:31:23.876550 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-30T17:31:23.876570 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:31:23.876728 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-30T17:31:23.876747 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:31:23.876883 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-30T17:31:23.876902 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:31:23.884142 #5] INFO -- : Inline processing of topic section_change with 1 messages took 7.1 ms +I, [2018-07-30T17:31:23.884220 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:31:23.884565 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-30T17:31:23.884588 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:31:23.889762 #5] INFO -- : Inline processing of topic section_change with 1 messages took 5.06 ms +I, [2018-07-30T17:31:23.890013 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:31:23.890703 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-07-30T17:31:23.890747 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:31:25.919828 #5] INFO -- : Inline processing of topic section_change with 1 messages took 17.74 ms +I, [2018-07-30T17:31:25.925406 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:31:25.925922 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-07-30T17:31:25.925959 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:31:25.931414 #5] INFO -- : Inline processing of topic section_change with 1 messages took 5.33 ms +I, [2018-07-30T17:31:25.931466 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:31:25.931823 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-07-30T17:31:25.931850 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:31:25.956448 #5] INFO -- : Inline processing of topic section_change with 1 messages took 23.98 ms +I, [2018-07-30T17:31:25.956619 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:31:27.957656 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-07-30T17:31:27.957706 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:31:27.958002 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-30T17:31:27.958025 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:31:29.958621 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-30T17:31:29.958692 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:31:29.960106 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.25 ms +I, [2018-07-30T17:31:29.960163 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:31:29.960520 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-30T17:31:29.960558 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:31:29.960829 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-30T17:31:29.960885 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:31:29.961070 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-30T17:31:29.961108 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:31:31.961433 #5] INFO -- : Committing offsets: section_change/0:2063 +I, [2018-07-30T17:31:31.966814 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-07-30T17:31:31.966864 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:31:31.967199 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-30T17:31:31.967235 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:31:31.967586 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-30T17:32:48.324453 #5] INFO -- : New topics added to target list: section_change +I, [2018-07-30T17:32:48.324515 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-07-30T17:32:48.326942 #5] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +E, [2018-07-30T17:32:48.327042 #5] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +E, [2018-07-30T17:32:53.330862 #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-07-30T17:32:53.331517 #5] INFO -- : New topics added to target list: section_change +I, [2018-07-30T17:32:53.331550 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-07-30T17:32:53.332093 #5] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +E, [2018-07-30T17:32:53.332184 #5] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +E, [2018-07-30T17:32:58.332363 #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-07-30T17:32:58.332993 #5] INFO -- : New topics added to target list: section_change +I, [2018-07-30T17:32:58.333049 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-07-30T17:32:58.338352 #5] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +E, [2018-07-30T17:32:58.338448 #5] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +E, [2018-07-30T17:33:03.338794 #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-07-30T17:33:03.339449 #5] INFO -- : New topics added to target list: section_change +I, [2018-07-30T17:33:03.339486 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-07-30T17:33:03.755917 #5] ERROR -- : No brokers in cluster +E, [2018-07-30T17:33:08.756996 #5] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: + +I, [2018-07-30T17:33:08.758209 #5] INFO -- : New topics added to target list: section_change +I, [2018-07-30T17:33:08.758245 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-07-30T17:33:08.773421 #5] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-07-30T17:33:08.773728 #5] INFO -- : Joining group `notifications_notifications` +I, [2018-07-30T17:33:08.858382 #5] INFO -- : Will fetch at most 1048576 bytes at a time per partition from section_change +I, [2018-07-30T17:33:08.858524 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-07-30T17:33:08.894112 #5] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-07-30T17:33:08.894263 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-30T17:33:09.895018 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-30T17:33:10.895588 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-30T17:33:11.895865 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-30T17:33:12.896718 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-30T17:33:13.898925 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-30T17:33:14.899276 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-30T17:33:15.899903 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-30T17:33:16.900117 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-30T17:33:17.900403 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-30T17:33:18.901443 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-30T17:33:19.902036 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-30T17:33:20.902479 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-30T17:33:21.905407 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-30T17:33:22.910939 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-30T17:33:23.918676 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-30T17:33:24.920224 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-30T17:33:25.921229 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-30T17:33:26.927797 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-30T17:33:27.929112 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-30T17:33:28.930819 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-30T17:33:29.931172 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-30T17:33:30.937829 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-30T17:33:31.947863 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-30T17:33:32.948234 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-30T17:33:33.948840 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-30T17:33:34.949036 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-30T17:33:35.952155 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-30T17:33:36.953541 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-30T17:33:37.601192 #5] INFO -- : Joined group `notifications_notifications` with member id `notifications-1bc0b0c7-021b-4254-94cb-137def844998` +I, [2018-07-30T17:33:37.601285 #5] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-07-30T17:33:37.783286 #5] INFO -- : Partitions assigned for `section_change`: 0 +I, [2018-07-30T17:33:37.823171 #5] INFO -- : Committing offsets with recommit: section_change/0:2063 +I, [2018-07-30T17:33:37.954071 #5] INFO -- : Seeking section_change/0 to offset 2063 +I, [2018-07-30T17:33:37.954197 #5] INFO -- : New topics added to target list: section_change +I, [2018-07-30T17:33:37.954235 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-07-30T17:33:37.968275 #5] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-07-30T17:33:39.844054 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-30T17:33:39.844128 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:33:39.844282 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-30T17:33:39.844312 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:33:39.844440 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-30T17:33:39.844467 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:33:39.844633 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-30T17:33:39.844663 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:33:39.844789 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-30T17:33:39.844814 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:33:39.845149 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-30T17:33:39.845188 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:40:01.146638 #5] INFO -- : New topics added to target list: section_change +I, [2018-07-30T17:40:01.146730 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-07-30T17:40:01.147507 #5] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +E, [2018-07-30T17:40:01.147669 #5] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +E, [2018-07-30T17:40:06.153841 #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-07-30T17:40:06.154784 #5] INFO -- : New topics added to target list: section_change +I, [2018-07-30T17:40:06.154830 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-07-30T17:40:06.155522 #5] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +E, [2018-07-30T17:40:06.155606 #5] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +E, [2018-07-30T17:40:11.156100 #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-07-30T17:40:11.156728 #5] INFO -- : New topics added to target list: section_change +I, [2018-07-30T17:40:11.156796 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-07-30T17:40:11.162596 #5] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +E, [2018-07-30T17:40:11.162694 #5] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +E, [2018-07-30T17:40:16.162986 #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-07-30T17:40:16.164349 #5] INFO -- : New topics added to target list: section_change +I, [2018-07-30T17:40:16.164415 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-07-30T17:40:16.342947 #5] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-07-30T17:40:16.343150 #5] INFO -- : Joining group `notifications_notifications` +I, [2018-07-30T17:40:16.382430 #5] INFO -- : Will fetch at most 1048576 bytes at a time per partition from section_change +I, [2018-07-30T17:40:16.382561 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-07-30T17:40:16.502824 #5] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-07-30T17:40:16.502920 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-30T17:40:17.503650 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-30T17:40:18.504325 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-30T17:40:19.505077 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-30T17:40:20.510340 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-30T17:40:21.510892 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-30T17:40:22.512052 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-30T17:40:23.518640 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-30T17:40:24.519488 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-30T17:40:25.511139 #5] INFO -- : Joined group `notifications_notifications` with member id `notifications-5f19a80d-9673-41c4-af6a-82fd03779117` +I, [2018-07-30T17:40:25.511186 #5] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-07-30T17:40:25.519924 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-30T17:40:26.511473 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-07-30T17:40:26.514585 #5] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-07-30T17:40:26.520560 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-30T17:40:26.979577 #5] INFO -- : Partitions assigned for `section_change`: 0 +I, [2018-07-30T17:40:27.521028 #5] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-07-30T17:40:27.521147 #5] INFO -- : New topics added to target list: section_change +I, [2018-07-30T17:40:27.521183 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-07-30T17:40:27.533030 #5] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-07-30T17:40:31.120352 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-30T17:40:31.120444 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:40:31.120484 #5] INFO -- : Committing offsets with recommit: section_change/0:1 +I, [2018-07-30T17:40:31.137655 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-30T17:40:31.137703 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:40:31.137863 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-30T17:40:31.137894 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:40:31.144290 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-30T17:40:31.144341 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:40:31.144556 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-30T17:40:31.144595 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:40:31.144734 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-30T17:40:31.144756 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:40:31.144899 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-30T17:40:31.144921 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:40:33.145926 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-30T17:40:33.145977 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:40:33.146157 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-30T17:40:33.146185 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:40:33.146417 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-30T17:40:33.146449 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:40:33.146627 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-30T17:40:33.146650 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:40:33.146977 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-30T17:40:33.147175 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:40:33.150572 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-30T17:40:33.150621 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:40:33.150822 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-30T17:40:33.150854 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:40:33.163184 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-30T17:40:33.163231 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:40:33.163456 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-30T17:40:33.163483 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:40:33.163613 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-30T17:40:33.163634 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:40:33.163758 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-30T17:40:33.163835 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:40:33.163969 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-30T17:40:33.163995 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:40:33.164130 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-30T17:40:33.164154 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:40:33.164270 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-30T17:40:33.164292 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:40:33.164473 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-30T17:40:33.164498 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:40:33.164642 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-30T17:40:33.164664 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:40:33.164843 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-30T17:40:33.164873 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:40:33.164993 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-30T17:40:33.165014 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:40:33.165147 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-30T17:40:33.165168 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:40:33.165274 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-30T17:40:33.165353 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:40:33.165482 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-30T17:40:33.165503 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:40:33.165633 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-30T17:40:33.165654 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:40:33.165758 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-30T17:40:33.165779 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:40:33.165966 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-30T17:40:33.165990 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:40:33.166119 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-30T17:40:33.166140 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:40:33.166291 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-30T17:40:33.166405 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:40:33.166577 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-30T17:40:33.166600 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:40:33.166742 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-30T17:40:33.166764 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:40:33.166941 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-30T17:40:33.166969 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:40:35.167769 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-30T17:40:35.167822 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:40:35.167999 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-30T17:40:35.168022 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:40:35.168198 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-30T17:40:35.168225 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:40:35.168347 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-30T17:40:35.168369 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:40:35.168522 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-30T17:40:35.168543 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:40:35.168710 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-30T17:40:35.168736 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:40:35.168855 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-30T17:40:35.168877 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:40:35.169063 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-30T17:40:35.169089 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:40:35.169372 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-30T17:40:35.169422 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:40:35.169594 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-30T17:40:35.169617 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:40:35.169859 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-30T17:40:35.169892 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:40:35.170292 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-30T17:40:35.170328 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:40:35.170471 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-30T17:40:35.170517 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:40:35.170630 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-30T17:40:35.170681 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:40:35.170835 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-30T17:40:35.170971 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:40:35.171124 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-30T17:40:35.171220 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:40:35.175364 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-30T17:40:35.175422 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:40:35.175543 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-30T17:40:35.175565 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:40:37.179943 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-30T17:40:37.179997 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:40:37.180175 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-30T17:40:37.180200 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:40:37.180348 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-30T17:40:37.180370 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:40:37.180482 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-30T17:40:37.180503 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:40:37.180688 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-30T17:40:37.180714 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:40:37.180829 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-30T17:40:37.180888 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:40:37.180996 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-30T17:40:37.181017 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:40:37.181153 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-30T17:40:37.181174 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:40:37.181291 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-30T17:40:37.181312 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:40:37.181431 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-30T17:40:37.181450 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:40:37.181611 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-30T17:40:37.181635 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:40:37.181745 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-30T17:40:37.181765 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:40:37.181914 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-30T17:40:37.181934 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:40:37.182035 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-30T17:40:37.182098 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:40:37.182242 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-30T17:40:37.182263 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:40:37.182390 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-30T17:40:37.182410 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:40:37.182520 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-30T17:40:37.182549 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:40:37.182698 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-30T17:40:37.182724 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:40:37.182828 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-30T17:40:37.182877 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:40:37.182975 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-30T17:40:37.182995 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:40:39.183402 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-30T17:40:39.183483 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:40:39.184256 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-30T17:40:39.184300 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:40:39.184446 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-30T17:40:39.184468 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:40:39.185151 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.61 ms +I, [2018-07-30T17:40:39.185178 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:40:39.185332 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-30T17:40:39.185354 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:40:39.190863 #5] INFO -- : Inline processing of topic section_change with 1 messages took 5.4 ms +I, [2018-07-30T17:40:39.190922 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:40:39.191180 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-30T17:40:39.191219 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:40:39.191366 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-30T17:40:39.191389 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:40:39.191538 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-30T17:40:39.191565 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:40:39.191693 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-30T17:40:39.191723 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:40:39.191845 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-30T17:40:39.191887 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:40:39.192014 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-30T17:40:39.192035 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:40:39.192207 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-30T17:40:39.192232 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:40:39.192397 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-30T17:40:39.192419 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:40:39.192602 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-30T17:40:39.192640 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:40:39.192963 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-30T17:40:39.193014 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:40:41.194850 #5] INFO -- : Committing offsets: section_change/0:90 +I, [2018-07-30T17:40:41.208547 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-30T17:40:41.208604 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:40:41.208812 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-30T17:40:41.208841 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:40:41.209030 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-30T17:40:41.209062 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:40:41.209252 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-30T17:40:41.209292 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:40:41.209459 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-30T17:40:41.209486 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:40:41.209688 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-30T17:40:41.209717 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:40:41.209896 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-30T17:40:41.209924 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:40:41.210150 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-30T17:40:41.210187 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:40:41.210372 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-30T17:40:41.210400 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:40:41.210595 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-30T17:40:41.210625 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:40:41.210816 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-30T17:40:41.210843 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:40:41.211045 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-30T17:40:41.211083 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:40:41.211280 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-30T17:40:41.211308 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:40:41.211488 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-30T17:40:41.211547 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:40:43.213435 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-07-30T17:40:43.213489 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:40:43.213662 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-30T17:40:43.213687 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:40:43.213875 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-30T17:40:43.213901 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:40:43.214014 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-30T17:40:43.214036 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:40:43.214173 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-30T17:40:43.214195 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:40:43.214612 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-30T17:40:43.214643 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:40:43.214829 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-30T17:40:43.216971 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:40:43.217410 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-30T17:40:43.217477 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:40:43.217651 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-30T17:40:43.217693 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:40:43.218067 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-30T17:40:43.218666 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:40:43.219027 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-30T17:40:43.219067 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:40:43.219301 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-30T17:40:43.219337 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:40:43.219540 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-30T17:40:43.219572 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:40:45.221153 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-30T17:40:45.221209 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:40:45.221379 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-30T17:40:45.221426 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:40:45.221541 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-30T17:40:45.221563 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:40:45.221767 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-30T17:40:45.221794 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:40:45.221912 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-30T17:40:45.221953 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:40:45.222062 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-30T17:40:45.222115 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:40:45.231065 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-30T17:40:45.231121 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:40:45.231938 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-30T17:40:45.231977 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:40:45.232103 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-30T17:40:45.243348 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:40:45.243650 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-30T17:40:45.243678 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:40:45.243862 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-30T17:40:45.243888 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:40:45.244029 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-30T17:40:45.244051 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:40:45.244359 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-30T17:40:45.244405 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:40:45.244599 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-30T17:40:45.244625 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:40:47.246471 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-30T17:40:47.246527 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:40:47.246677 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-30T17:40:47.246755 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:40:47.246935 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-30T17:40:47.246959 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:40:47.247125 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-30T17:40:47.247152 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:40:47.247297 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-30T17:40:47.247339 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:40:47.247476 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-30T17:40:47.247498 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:40:47.247607 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-30T17:40:47.247628 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:40:47.247795 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-30T17:40:47.247820 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:40:47.247955 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-30T17:40:47.247977 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:40:47.248084 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-30T17:40:47.248106 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:40:47.248270 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-30T17:40:47.248296 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:40:47.248442 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-30T17:40:47.248463 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:40:47.248569 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-30T17:40:47.248590 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:40:47.248739 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-30T17:40:47.248764 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:40:47.248909 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-30T17:40:47.248930 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:40:47.249037 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-30T17:40:47.249058 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:40:47.249178 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-30T17:40:47.249245 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:40:47.249372 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-30T17:40:47.249393 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:40:47.249529 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-30T17:40:47.249550 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:40:49.250683 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-30T17:40:49.250765 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:40:49.250917 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-30T17:40:49.250947 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:40:49.251212 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-30T17:40:49.251253 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:40:49.251937 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.53 ms +I, [2018-07-30T17:40:49.251980 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:40:49.252205 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-30T17:40:49.252234 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:40:49.252393 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-30T17:40:49.252419 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:40:49.252595 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-30T17:40:49.252623 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:40:49.252755 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-30T17:40:49.252777 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:40:49.252918 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-30T17:40:49.252940 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:40:49.253113 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-30T17:40:49.258644 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:40:49.258886 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-30T17:40:49.258940 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:40:49.260001 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.96 ms +I, [2018-07-30T17:40:49.260077 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:40:49.260261 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-30T17:40:49.260285 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:40:49.260435 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-30T17:40:49.260457 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:40:49.260607 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-30T17:40:49.260633 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:40:49.260771 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-30T17:40:49.260793 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:40:49.260936 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-30T17:40:49.260957 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:40:49.261099 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-30T17:40:49.261124 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:40:49.261251 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-30T17:40:49.261287 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:40:49.266228 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-30T17:40:49.266295 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:40:51.266531 #5] INFO -- : Committing offsets: section_change/0:170 +I, [2018-07-30T17:40:51.269610 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-30T17:40:51.269660 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:40:51.269815 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-30T17:40:51.269839 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:40:51.270019 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-30T17:40:51.270047 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:40:51.270197 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-30T17:40:51.270219 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:40:51.270363 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-30T17:40:51.270386 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:40:51.270546 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-30T17:40:51.270584 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:40:51.270716 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-30T17:40:51.270737 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:40:51.270878 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-30T17:40:51.270900 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:40:51.271121 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-30T17:40:51.271147 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:40:51.271280 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-30T17:40:51.271301 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:40:51.271823 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-30T17:40:51.271864 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:40:51.272074 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-30T17:40:51.272101 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:40:53.274773 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-30T17:40:53.274868 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:40:53.275035 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-30T17:40:53.275067 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:40:53.276967 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.78 ms +I, [2018-07-30T17:40:53.277018 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:40:53.277237 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-30T17:40:53.277262 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:40:53.277412 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-30T17:40:53.277438 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:40:53.277582 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-30T17:40:53.277605 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:40:53.277753 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-30T17:40:53.277774 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:40:53.277946 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-30T17:40:53.277972 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:40:53.278123 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-30T17:40:53.278146 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:40:53.278257 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-30T17:40:53.278279 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:40:53.282658 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-30T17:40:53.282706 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:40:53.282860 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-30T17:40:53.282886 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:40:53.283030 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-30T17:40:53.283052 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:40:53.283190 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-30T17:40:53.283231 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:40:53.295282 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-30T17:40:53.295414 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:40:53.295734 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-30T17:40:53.295772 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:40:53.296046 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-30T17:40:53.296126 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:40:55.297064 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-30T17:40:55.297126 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:40:55.297501 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-30T17:40:55.297542 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:40:55.297759 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-30T17:40:55.297798 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:40:55.298028 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-30T17:40:55.298061 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:40:55.298397 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-30T17:40:55.298441 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:40:55.298639 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-30T17:40:55.298820 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:40:55.299097 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-30T17:40:55.299133 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:40:55.299406 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-30T17:40:55.299473 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:40:55.299755 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-30T17:40:55.299799 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:40:55.300052 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-30T17:40:55.300090 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:40:55.300324 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-30T17:40:55.300411 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:40:55.300596 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-30T17:40:55.300633 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:40:55.300915 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-30T17:40:55.300960 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:40:55.301346 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-30T17:40:55.301399 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:40:55.301645 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-30T17:40:55.301771 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:40:55.302019 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-30T17:40:55.302063 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:40:57.328769 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-30T17:40:57.328823 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:40:57.329014 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-30T17:40:57.329043 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:40:57.329198 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-30T17:40:57.329220 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:40:57.329353 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-30T17:40:57.329375 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:40:57.329538 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-30T17:40:57.329565 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:40:57.329687 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-30T17:40:57.329708 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:40:57.329845 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-30T17:40:57.329866 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:40:57.330049 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-30T17:40:57.330077 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:40:57.330215 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-30T17:40:57.330237 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:40:57.330365 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-30T17:40:57.330386 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:40:57.330518 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-30T17:40:57.330544 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:40:57.330686 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-30T17:40:57.330707 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:40:57.330835 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-30T17:40:57.330856 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:40:57.331006 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-30T17:40:57.331034 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:40:57.331150 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-30T17:40:57.331171 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:40:57.331569 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-30T17:40:57.331594 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:40:57.331706 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-30T17:40:57.331727 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:40:57.359673 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-30T17:40:57.359741 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:40:57.360451 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-07-30T17:40:57.360492 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:40:57.361138 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-30T17:40:57.361172 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:40:57.361311 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-30T17:40:57.361358 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:40:59.362244 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-30T17:40:59.362296 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:40:59.362472 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-30T17:40:59.362495 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:40:59.362611 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-30T17:40:59.362683 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:40:59.362812 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-30T17:40:59.362834 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:40:59.362968 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-30T17:40:59.362990 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:40:59.363099 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-30T17:40:59.363121 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:40:59.363461 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-30T17:40:59.363503 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:40:59.363811 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-30T17:40:59.363845 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:40:59.364215 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-30T17:40:59.364442 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:40:59.365565 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-30T17:40:59.365849 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:40:59.366374 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-30T17:40:59.366426 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:40:59.366598 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-30T17:40:59.366621 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:01.370630 #5] INFO -- : Committing offsets: section_change/0:248 +I, [2018-07-30T17:41:01.398630 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-30T17:41:01.398677 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:01.398851 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-30T17:41:01.398878 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:01.399022 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-30T17:41:01.399058 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:01.399184 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-30T17:41:01.399206 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:01.399375 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-30T17:41:01.399402 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:01.399545 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-30T17:41:01.399566 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:01.399694 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-30T17:41:01.399715 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:01.399886 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-30T17:41:01.399911 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:01.400032 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-30T17:41:01.400053 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:01.400193 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-30T17:41:01.400214 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:01.400378 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-30T17:41:01.400403 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:01.400527 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-30T17:41:01.400549 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:01.400685 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-30T17:41:01.400707 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:01.400859 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-30T17:41:01.400908 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:01.401070 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-30T17:41:01.401092 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:01.401219 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-30T17:41:01.401240 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:01.401431 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-30T17:41:01.401456 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:01.401626 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-30T17:41:01.401648 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:03.402595 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-30T17:41:03.402662 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:03.402918 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-30T17:41:03.402957 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:03.403393 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-30T17:41:03.403428 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:03.403660 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-30T17:41:03.403735 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:03.403900 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-30T17:41:03.403926 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:03.404815 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.8 ms +I, [2018-07-30T17:41:03.404845 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:03.404977 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-30T17:41:03.405030 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:03.405141 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-30T17:41:03.408587 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:03.414277 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-30T17:41:03.414415 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:03.414768 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-30T17:41:03.414809 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:03.415001 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-30T17:41:03.415032 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:03.415235 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-30T17:41:03.415295 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:03.416454 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-30T17:41:03.416499 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:03.416723 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-30T17:41:03.416778 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:03.416955 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-30T17:41:03.416985 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:03.417167 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-30T17:41:03.417198 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:03.417412 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-30T17:41:03.417445 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:05.421298 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-30T17:41:05.421360 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:05.421596 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-30T17:41:05.421630 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:05.421835 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-30T17:41:05.421865 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:05.422049 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-30T17:41:05.422137 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:05.422330 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-30T17:41:05.422362 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:05.422622 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-30T17:41:05.422657 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:05.422827 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-30T17:41:05.422848 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:05.422955 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-30T17:41:05.422976 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:05.423167 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-30T17:41:05.423191 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:05.423324 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-30T17:41:05.423344 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:07.428960 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-30T17:41:07.429023 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:07.429207 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-30T17:41:07.429230 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:07.429413 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-30T17:41:07.429441 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:07.429564 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-30T17:41:07.429610 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:07.429722 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-30T17:41:07.429762 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:07.429924 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-30T17:41:07.429950 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:07.430069 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-30T17:41:07.430091 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:07.430220 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-30T17:41:07.430240 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:07.430449 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-30T17:41:07.430971 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:09.433142 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-30T17:41:09.433195 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:09.433346 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-30T17:41:09.433370 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:09.433495 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-30T17:41:09.433540 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:09.434391 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-30T17:41:09.434448 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:09.434582 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-30T17:41:09.434630 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:09.434743 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-30T17:41:09.434765 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:09.435031 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-30T17:41:09.435059 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:09.435189 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-30T17:41:09.435211 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:09.435318 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-30T17:41:09.435354 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:09.435479 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-30T17:41:09.435500 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:09.435616 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-30T17:41:09.435638 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:09.435768 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-30T17:41:09.435815 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:09.435993 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-30T17:41:09.436019 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:09.436197 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-30T17:41:09.436222 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:09.436329 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-30T17:41:09.436351 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:11.436769 #5] INFO -- : Committing offsets: section_change/0:317 +I, [2018-07-30T17:41:11.441329 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-30T17:41:11.441376 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:11.441512 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-30T17:41:11.441535 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:11.441674 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-30T17:41:11.441746 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:11.441912 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-30T17:41:11.441958 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:11.442071 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-30T17:41:11.442093 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:11.442313 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-30T17:41:11.442372 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:11.442655 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-30T17:41:11.442772 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:11.443110 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-30T17:41:11.443176 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:11.443566 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-30T17:41:11.443672 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:11.444425 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-07-30T17:41:11.444559 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:11.444880 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-30T17:41:11.444920 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:11.445137 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-30T17:41:11.445173 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:11.445435 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-30T17:41:11.445472 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:11.445663 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-30T17:41:11.445735 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:13.446691 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-30T17:41:13.446747 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:13.446929 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-30T17:41:13.446972 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:13.447099 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-30T17:41:13.447121 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:13.447264 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-30T17:41:13.447286 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:13.447404 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-30T17:41:13.447431 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:13.447574 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-30T17:41:13.447595 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:13.447727 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-30T17:41:13.447747 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:13.447882 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-30T17:41:13.447905 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:13.448027 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-30T17:41:13.448051 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:13.448179 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-30T17:41:13.448253 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:13.453821 #5] INFO -- : Inline processing of topic section_change with 1 messages took 5.07 ms +I, [2018-07-30T17:41:13.453909 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:13.454154 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-30T17:41:13.455891 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:13.456147 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-30T17:41:13.456185 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:13.456333 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-30T17:41:13.456356 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:13.458333 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.87 ms +I, [2018-07-30T17:41:13.458403 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:13.458713 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-30T17:41:13.458778 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:13.459062 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-30T17:41:13.459124 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:13.459410 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-30T17:41:13.459468 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:13.459699 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-30T17:41:13.459733 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:13.459891 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-30T17:41:13.459917 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:13.460070 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-30T17:41:13.460094 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:13.460236 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-30T17:41:13.460259 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:13.460402 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-30T17:41:13.460423 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:13.460606 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-30T17:41:13.460646 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:13.461512 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-30T17:41:13.461583 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:13.461793 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-30T17:41:13.461819 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:13.461956 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-30T17:41:13.461976 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:13.476057 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-30T17:41:13.476108 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:13.476368 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-30T17:41:13.476399 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:13.476541 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-30T17:41:13.476565 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:13.476713 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-30T17:41:13.476736 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:13.477832 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-30T17:41:13.477889 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:13.479370 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-30T17:41:13.479417 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:13.479595 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-30T17:41:13.479619 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:13.479767 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-30T17:41:13.479790 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:13.479901 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-30T17:41:13.479923 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:13.480063 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-30T17:41:13.480084 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:15.481032 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-30T17:41:15.481082 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:15.481230 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-30T17:41:15.481253 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:15.481406 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-30T17:41:15.481472 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:15.481601 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-30T17:41:15.481623 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:15.486291 #5] INFO -- : Inline processing of topic section_change with 1 messages took 4.54 ms +I, [2018-07-30T17:41:15.486344 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:15.486558 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-30T17:41:15.486581 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:15.486750 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-30T17:41:15.486776 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:15.486889 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-30T17:41:15.486935 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:15.487044 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-30T17:41:15.487065 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:15.487213 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-30T17:41:15.487281 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:15.487439 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-30T17:41:15.487461 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:15.487591 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-30T17:41:15.487629 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:15.487778 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-30T17:41:15.487799 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:15.487904 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-30T17:41:15.487925 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:15.488053 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-30T17:41:15.488073 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:15.488202 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-30T17:41:15.488223 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:15.488328 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-30T17:41:15.488367 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:15.488469 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-30T17:41:15.488490 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:15.489967 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.38 ms +I, [2018-07-30T17:41:15.490003 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:15.490214 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-30T17:41:15.490239 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:15.490376 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-30T17:41:15.490398 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:17.492599 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-30T17:41:17.492650 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:17.492819 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-30T17:41:17.492842 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:17.492975 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-30T17:41:17.492997 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:17.493103 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-30T17:41:17.493143 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:17.493248 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-30T17:41:17.493332 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:17.493624 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-30T17:41:17.493662 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:17.493974 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-30T17:41:17.494013 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:17.494195 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-30T17:41:17.494229 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:17.494456 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-30T17:41:17.494492 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:17.494702 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-30T17:41:17.494739 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:17.494933 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-30T17:41:17.494966 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:17.495166 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-30T17:41:17.495200 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:17.495414 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-30T17:41:17.495497 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:17.495669 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-30T17:41:17.495705 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:17.495896 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-30T17:41:17.495929 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:17.496126 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-30T17:41:17.496158 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:19.496991 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-30T17:41:19.497116 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:19.497515 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-30T17:41:19.497610 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:19.497914 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-30T17:41:19.497963 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:19.498388 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-30T17:41:19.498434 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:19.498696 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-30T17:41:19.498733 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:19.498950 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-30T17:41:19.498992 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:19.499296 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-30T17:41:19.499335 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:19.499581 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-30T17:41:19.499620 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:19.499859 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-30T17:41:19.499922 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:19.505228 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-30T17:41:19.505366 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:19.505853 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-07-30T17:41:19.505896 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:19.506155 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-30T17:41:19.506190 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:19.506391 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-30T17:41:19.506421 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:19.506641 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-30T17:41:19.506675 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:19.506851 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-30T17:41:19.506881 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:19.507092 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-30T17:41:19.507128 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:19.507325 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-30T17:41:19.507355 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:19.507533 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-30T17:41:19.510999 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:19.511640 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-07-30T17:41:19.511695 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:19.516648 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-30T17:41:19.516699 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:19.516874 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-30T17:41:19.516897 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:19.517032 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-30T17:41:19.517055 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:19.517205 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-30T17:41:19.517230 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:19.517373 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-30T17:41:19.517394 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:19.517508 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-30T17:41:19.517533 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:19.517693 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-30T17:41:19.517717 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:19.517853 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-30T17:41:19.517875 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:19.517989 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-30T17:41:19.518022 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:19.518242 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-30T17:41:19.518274 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:19.518416 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-30T17:41:19.518438 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:19.519523 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.91 ms +I, [2018-07-30T17:41:19.519596 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:19.519954 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-30T17:41:19.536007 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:19.536329 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-30T17:41:19.536375 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:19.536546 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-30T17:41:19.536577 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:19.536803 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-30T17:41:19.536831 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:19.537000 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-30T17:41:19.537026 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:19.542541 #5] INFO -- : Inline processing of topic section_change with 1 messages took 5.3 ms +I, [2018-07-30T17:41:19.542764 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:21.543411 #5] INFO -- : Committing offsets: section_change/0:442 +I, [2018-07-30T17:41:21.554977 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-30T17:41:21.555064 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:21.555341 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-30T17:41:21.555376 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:21.555569 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-30T17:41:21.555600 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:21.555850 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-30T17:41:21.555883 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:21.556076 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-30T17:41:21.556106 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:21.556367 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-30T17:41:21.556404 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:21.556600 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-30T17:41:21.556631 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:21.556879 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-30T17:41:21.556933 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:21.570895 #5] INFO -- : Inline processing of topic section_change with 1 messages took 13.82 ms +I, [2018-07-30T17:41:21.571007 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:21.571393 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-30T17:41:21.571445 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:21.571838 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-30T17:41:21.571885 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:21.572137 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-30T17:41:21.572177 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:21.572458 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-30T17:41:21.572496 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:21.572721 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-30T17:41:21.572756 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:21.573004 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-30T17:41:21.573081 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:21.573280 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-30T17:41:21.573359 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:21.573571 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-30T17:41:21.573605 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:21.588278 #5] INFO -- : Inline processing of topic section_change with 1 messages took 14.25 ms +I, [2018-07-30T17:41:21.588423 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:21.588963 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-30T17:41:21.589009 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:21.589241 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-30T17:41:21.589266 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:21.589412 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-30T17:41:21.589463 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:21.589571 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-30T17:41:21.589592 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:21.589719 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-30T17:41:21.589740 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:21.589892 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-30T17:41:21.589917 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:21.590054 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-30T17:41:21.590075 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:21.590178 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-30T17:41:21.590199 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:21.599179 #5] INFO -- : Inline processing of topic section_change with 1 messages took 8.83 ms +I, [2018-07-30T17:41:21.599281 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:21.599721 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-30T17:41:21.599760 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:21.600199 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-07-30T17:41:21.600235 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:21.600667 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-07-30T17:41:21.600709 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:21.601003 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-30T17:41:21.601051 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:23.602137 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-30T17:41:23.602186 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:23.602315 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-30T17:41:23.602357 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:23.602527 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-30T17:41:23.602568 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:23.602690 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-30T17:41:23.602711 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:23.602898 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-30T17:41:23.602944 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:23.603055 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-30T17:41:23.603075 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:23.603194 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-30T17:41:23.603213 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:23.603337 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-30T17:41:23.603357 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:23.603459 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-30T17:41:23.603504 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:23.603602 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-30T17:41:23.603622 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:23.603802 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-30T17:41:23.603827 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:25.604238 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-30T17:41:25.604288 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:25.604443 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-30T17:41:25.604467 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:25.608061 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-30T17:41:25.608116 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:25.608313 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-30T17:41:25.608337 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:25.608476 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-30T17:41:25.608498 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:25.608668 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-30T17:41:25.608693 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:25.608803 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-30T17:41:25.608847 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:25.608951 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-30T17:41:25.608972 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:25.609130 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-30T17:41:25.609154 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:25.609294 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-30T17:41:25.609315 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:25.609422 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-30T17:41:25.609444 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:25.609607 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-30T17:41:25.609632 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:25.609750 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-30T17:41:25.609772 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:25.609903 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-30T17:41:25.609924 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:25.610144 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-30T17:41:25.610173 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:25.610295 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-30T17:41:25.610317 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:25.610452 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-30T17:41:25.610473 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:27.614493 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-30T17:41:27.614559 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:27.614773 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-30T17:41:27.614798 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:27.614960 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-30T17:41:27.614988 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:27.615131 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-30T17:41:27.615153 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:27.615275 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-30T17:41:27.615307 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:27.615426 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-30T17:41:27.615447 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:27.615577 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-30T17:41:27.615598 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:27.615743 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-30T17:41:27.615763 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:27.615886 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-30T17:41:27.615906 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:27.616057 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-30T17:41:27.616080 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:27.616202 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-30T17:41:27.616222 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:27.616341 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-30T17:41:27.616360 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:27.616482 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-30T17:41:27.616502 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:27.616691 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-30T17:41:27.616712 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:27.616818 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-30T17:41:27.616837 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:27.616991 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-30T17:41:27.617016 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:27.617169 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-30T17:41:27.617213 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:29.617828 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-30T17:41:29.617968 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:29.618160 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-30T17:41:29.618195 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:29.618401 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-30T17:41:29.618436 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:29.618636 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-30T17:41:29.618670 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:29.618831 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-30T17:41:29.618953 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:29.630119 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-30T17:41:29.630206 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:29.630495 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-30T17:41:29.630531 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:29.630733 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-30T17:41:29.630767 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:29.630987 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-30T17:41:29.631022 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:29.631217 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-30T17:41:29.631268 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:29.631551 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-30T17:41:29.631585 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:29.631774 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-30T17:41:29.631808 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:29.632070 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-30T17:41:29.632104 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:29.632298 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-30T17:41:29.632331 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:29.632622 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-30T17:41:29.632662 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:29.632964 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-30T17:41:29.633025 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:29.633258 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-30T17:41:29.633291 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:29.633782 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-30T17:41:29.643165 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:29.644058 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-30T17:41:29.644126 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:29.644327 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-30T17:41:29.644355 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:29.644480 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-30T17:41:29.644527 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:29.644638 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-30T17:41:29.644660 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:29.644816 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-30T17:41:29.644842 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:29.644973 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-30T17:41:29.644995 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:29.645126 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-30T17:41:29.645147 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:29.645301 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-30T17:41:29.645327 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:29.645463 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-30T17:41:29.645484 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:29.645586 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-30T17:41:29.645630 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:29.645769 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-30T17:41:29.645797 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:29.645936 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-30T17:41:29.645957 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:29.646083 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-30T17:41:29.646105 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:29.646302 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-30T17:41:29.646330 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:29.646454 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-30T17:41:29.646499 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:29.646602 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-30T17:41:29.646624 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:29.648571 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.83 ms +I, [2018-07-30T17:41:29.648620 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:31.649282 #5] INFO -- : Committing offsets: section_change/0:553 +I, [2018-07-30T17:41:31.650939 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-30T17:41:31.650987 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:31.651137 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-30T17:41:31.651161 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:31.651326 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-30T17:41:31.651352 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:31.651471 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-30T17:41:31.651492 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:31.651618 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-30T17:41:31.651639 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:31.651770 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-30T17:41:31.651811 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:31.655109 #5] INFO -- : Inline processing of topic section_change with 1 messages took 2.82 ms +I, [2018-07-30T17:41:31.655181 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:31.655429 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-30T17:41:31.655457 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:31.655702 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-30T17:41:31.655728 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:31.655853 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-30T17:41:31.655875 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:31.655999 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-30T17:41:31.656020 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:31.656152 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-30T17:41:31.656174 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:31.656354 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-30T17:41:31.656379 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:31.656518 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-30T17:41:31.656539 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:31.656645 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-30T17:41:31.656666 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:31.656796 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-30T17:41:31.656817 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:31.656948 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-30T17:41:31.656969 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:33.662550 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-30T17:41:33.662629 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:33.662842 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-30T17:41:33.662870 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:33.663043 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-30T17:41:33.663071 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:33.663232 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-30T17:41:33.663267 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:33.663428 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-30T17:41:33.663470 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:33.663676 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-30T17:41:33.663739 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:33.663902 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-30T17:41:33.663943 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:33.664116 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-30T17:41:33.664143 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:33.664299 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-30T17:41:33.664332 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:33.664511 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-30T17:41:33.664538 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:33.664726 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-30T17:41:33.664758 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:33.664935 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-30T17:41:33.664967 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:33.665137 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-30T17:41:33.665165 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:33.665335 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-30T17:41:33.665361 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:33.665533 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-30T17:41:33.665582 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:33.665766 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-30T17:41:33.665795 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:33.665994 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-30T17:41:33.666025 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:33.667960 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-30T17:41:33.668013 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:33.668195 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-30T17:41:33.668229 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:33.668376 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-30T17:41:33.668398 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:33.668570 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-30T17:41:33.668600 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:33.668751 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-30T17:41:33.668783 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:33.673491 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-30T17:41:33.673541 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:33.673727 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-30T17:41:33.673750 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:33.673892 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-30T17:41:33.673919 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:33.690398 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-30T17:41:33.690448 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:33.690673 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-30T17:41:33.690699 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:33.690879 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-30T17:41:33.690906 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:33.691026 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-30T17:41:33.691048 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:33.691193 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-30T17:41:33.691215 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:33.702939 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-30T17:41:33.702993 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:33.703210 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-30T17:41:33.703239 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:33.703396 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-30T17:41:33.703419 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:33.703561 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-30T17:41:33.703583 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:33.703726 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-30T17:41:33.703756 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:33.703928 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-30T17:41:33.703949 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:33.704059 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-30T17:41:33.704112 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:33.704220 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-30T17:41:33.704242 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:33.704388 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-30T17:41:33.704421 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:33.704519 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-30T17:41:33.704539 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:33.704699 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-30T17:41:33.704737 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:33.704878 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-30T17:41:33.704899 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:33.705025 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-30T17:41:33.705067 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:33.705177 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-30T17:41:33.705197 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:33.705331 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-30T17:41:33.705351 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:33.705575 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-30T17:41:33.705708 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:33.723757 #5] INFO -- : Inline processing of topic section_change with 1 messages took 17.87 ms +I, [2018-07-30T17:41:33.724079 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:35.724611 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-30T17:41:35.724661 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:35.724834 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-30T17:41:35.724862 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:35.725017 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-30T17:41:35.725055 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:35.725195 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-30T17:41:35.725218 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:35.725359 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-30T17:41:35.725387 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:35.725526 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-30T17:41:35.725547 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:35.725676 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-30T17:41:35.725698 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:35.725857 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-30T17:41:35.725882 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:35.726013 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-30T17:41:35.726035 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:35.726138 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-30T17:41:35.726177 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:35.726325 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-30T17:41:35.726356 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:35.726494 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-30T17:41:35.726515 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:35.726643 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-30T17:41:35.726663 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:35.726818 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-30T17:41:35.726844 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:35.726995 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-30T17:41:35.727143 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:35.727279 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-30T17:41:35.727344 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:37.738135 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-30T17:41:37.738183 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:37.738358 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-30T17:41:37.738381 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:37.738489 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-30T17:41:37.738509 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:37.738981 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-30T17:41:37.739009 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:37.739186 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-30T17:41:37.739211 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:37.739343 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-30T17:41:37.739363 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:37.739495 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-30T17:41:37.739515 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:37.739615 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-30T17:41:37.739635 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:37.739759 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-30T17:41:37.739778 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:37.739908 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-30T17:41:37.739928 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:37.740051 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-30T17:41:37.740074 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:37.740198 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-30T17:41:37.740231 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:37.740341 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-30T17:41:37.740361 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:37.740477 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-30T17:41:37.740510 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:37.740618 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-30T17:41:37.740637 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:37.740748 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-30T17:41:37.740776 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:37.740887 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-30T17:41:37.740914 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:37.741062 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-30T17:41:37.741086 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:37.741209 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-30T17:41:37.741229 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:37.741355 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-30T17:41:37.741374 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:37.741491 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-30T17:41:37.741692 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:37.741844 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-30T17:41:37.741865 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:37.742032 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-30T17:41:37.742056 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:37.742180 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-30T17:41:37.742200 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:37.742438 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-30T17:41:37.742478 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:37.742585 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-30T17:41:37.742616 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:37.742731 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-30T17:41:37.742750 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:37.743018 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-30T17:41:37.743043 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:37.743175 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-30T17:41:37.743195 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:37.743312 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-30T17:41:37.743331 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:37.743453 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-30T17:41:37.743472 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:37.743595 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-30T17:41:37.743614 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:37.743735 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-30T17:41:37.743755 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:37.743875 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-30T17:41:37.743894 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:37.744047 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-30T17:41:37.744070 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:37.749013 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-30T17:41:37.749056 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:37.749227 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-30T17:41:37.749267 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:37.749397 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-30T17:41:37.749419 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:37.749548 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-30T17:41:37.749569 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:37.749684 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-30T17:41:37.749705 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:37.749866 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-30T17:41:37.749892 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:37.750027 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-30T17:41:37.750048 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:37.753556 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-30T17:41:37.753606 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:37.753838 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-30T17:41:37.753868 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:39.754526 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-30T17:41:39.754614 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:39.754916 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-30T17:41:39.754956 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:39.755166 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-30T17:41:39.755201 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:39.755363 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-30T17:41:39.755397 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:39.755599 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-30T17:41:39.755631 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:39.755909 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-30T17:41:39.755944 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:39.756141 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-30T17:41:39.756173 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:39.756367 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-30T17:41:39.756398 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:39.756583 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-30T17:41:39.756613 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:39.756837 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-30T17:41:39.756869 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:39.757059 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-30T17:41:39.757092 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:39.757284 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-30T17:41:39.757315 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:39.757467 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-30T17:41:39.757523 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:39.757756 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-30T17:41:39.757795 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:39.757984 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-30T17:41:39.758014 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:39.758191 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-30T17:41:39.758222 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:39.762103 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-30T17:41:39.762168 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:39.762424 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-30T17:41:39.762462 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:39.762713 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-30T17:41:39.762748 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:39.762934 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-30T17:41:39.762964 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:39.763139 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-30T17:41:39.763169 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:39.763350 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-30T17:41:39.763382 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:39.763563 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-30T17:41:39.763649 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:39.763803 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-30T17:41:39.763863 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:39.764020 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-30T17:41:39.764053 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:39.764240 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-30T17:41:39.764272 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:39.764460 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-30T17:41:39.764495 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:39.764751 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-30T17:41:39.787229 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:39.787515 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-30T17:41:39.787565 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:39.787712 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-30T17:41:39.787733 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:39.787868 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-30T17:41:39.787891 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:39.788018 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-30T17:41:39.788038 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:39.788162 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-30T17:41:39.788181 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:39.788326 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-30T17:41:39.788349 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:39.788459 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-30T17:41:39.788503 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:39.788601 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-30T17:41:39.788622 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:39.788780 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-30T17:41:39.792424 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:39.792665 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-30T17:41:39.792688 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:39.792860 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-30T17:41:39.792888 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:39.793037 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-30T17:41:39.793060 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:41.794034 #5] INFO -- : Committing offsets: section_change/0:717 +I, [2018-07-30T17:41:41.797933 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-30T17:41:41.798042 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:41.798462 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-30T17:41:41.798556 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:41.798911 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-30T17:41:41.799070 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:41.799906 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-07-30T17:41:41.800004 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:41.800800 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-30T17:41:41.800961 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:41.801271 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-30T17:41:41.801348 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:41.801564 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-30T17:41:41.801588 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:41.801723 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-30T17:41:41.801744 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:41.802282 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-30T17:41:41.802364 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:41.802603 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-30T17:41:41.802639 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:41.802865 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-30T17:41:41.802898 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:41.803110 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-30T17:41:41.803152 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:41.803942 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.65 ms +I, [2018-07-30T17:41:41.803994 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:41.804277 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-30T17:41:41.804315 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:41.804528 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-30T17:41:41.804559 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:41.804721 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-30T17:41:41.804752 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:41.804947 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-30T17:41:41.804978 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:41.805607 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-30T17:41:41.805652 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:41.805836 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-30T17:41:41.805867 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:41.806095 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-30T17:41:41.806148 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:41.806349 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-30T17:41:41.806381 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:41.806568 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-30T17:41:41.806597 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:41.806762 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-30T17:41:41.806790 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:41.806971 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-30T17:41:41.828402 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:41.828673 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-30T17:41:41.828727 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:43.830243 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-30T17:41:43.830293 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:43.830446 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-30T17:41:43.830470 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:43.830601 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-30T17:41:43.830623 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:43.830761 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-30T17:41:43.830783 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:43.830957 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-30T17:41:43.830986 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:43.831136 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-30T17:41:43.831157 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:43.831291 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-30T17:41:43.831313 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:43.831446 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-30T17:41:43.831467 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:45.832111 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-30T17:41:45.832169 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:45.832371 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-30T17:41:45.832409 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:45.832572 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-30T17:41:45.832604 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:45.832745 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-30T17:41:45.832772 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:45.832920 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-30T17:41:45.832945 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:45.833087 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-30T17:41:45.833108 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:45.833301 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-30T17:41:45.833338 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:45.834666 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.21 ms +I, [2018-07-30T17:41:45.834711 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:45.834913 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-30T17:41:45.834936 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:45.835053 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-30T17:41:45.835074 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:47.836446 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-30T17:41:47.836495 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:47.836635 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-30T17:41:47.836659 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:47.836808 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-30T17:41:47.836829 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:47.836939 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-30T17:41:47.836977 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:47.837101 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-30T17:41:47.837123 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:47.837272 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-30T17:41:47.837297 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:47.837426 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-30T17:41:47.837447 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:47.837588 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-30T17:41:47.837609 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:47.837759 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-30T17:41:47.837793 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:49.838559 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-30T17:41:49.838620 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:49.838814 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-30T17:41:49.838843 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:49.839033 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-30T17:41:49.839061 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:49.839280 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-30T17:41:49.839315 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:49.839462 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-30T17:41:49.839488 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:49.839643 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-30T17:41:49.839692 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:49.839828 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-30T17:41:49.839854 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:49.840011 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-30T17:41:49.840037 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:49.841279 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.54 ms +I, [2018-07-30T17:41:49.841338 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:49.841645 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-30T17:41:49.841679 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:49.841845 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-30T17:41:49.841876 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:51.842636 #5] INFO -- : Committing offsets: section_change/0:780 +I, [2018-07-30T17:41:51.844157 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-30T17:41:51.844230 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:51.844377 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-30T17:41:51.844399 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:51.844525 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-30T17:41:51.844567 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:51.844714 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-30T17:41:51.844734 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:51.844854 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-30T17:41:51.844873 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:51.844994 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-30T17:41:51.845013 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:51.845164 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-30T17:41:51.845187 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:51.845289 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-30T17:41:51.845309 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:51.845433 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-30T17:41:51.845453 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:51.845609 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-30T17:41:51.845633 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:51.845760 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-30T17:41:51.845780 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:51.845904 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-30T17:41:51.845925 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:53.846258 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-30T17:41:53.846308 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:53.846497 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-30T17:41:53.846523 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:53.846684 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-30T17:41:53.846709 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:53.846850 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-30T17:41:53.846870 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:53.846992 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-30T17:41:53.847012 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:53.847112 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-30T17:41:53.847162 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:53.847261 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-30T17:41:53.847281 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:55.847965 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-30T17:41:55.848012 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:55.848140 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-30T17:41:55.848161 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:55.848287 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-30T17:41:55.848306 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:55.848450 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-30T17:41:55.848476 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:55.848582 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-30T17:41:55.848601 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:55.848725 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-30T17:41:55.848744 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:55.848848 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-30T17:41:55.848866 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:55.849042 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-30T17:41:55.849064 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:55.849172 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.03 ms +I, [2018-07-30T17:41:55.849205 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:55.849310 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-30T17:41:55.849328 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:55.849427 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-30T17:41:55.849455 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:55.849557 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-30T17:41:55.849584 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:55.849686 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.03 ms +I, [2018-07-30T17:41:55.849721 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:55.849839 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-30T17:41:55.849876 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:55.850742 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-30T17:41:55.850769 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:55.851011 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-30T17:41:55.851037 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:55.851181 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-30T17:41:55.851203 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:55.851327 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-30T17:41:55.851348 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:57.852922 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-30T17:41:57.852975 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:57.853199 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-30T17:41:57.853232 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:57.853396 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-30T17:41:57.853427 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:57.853559 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-30T17:41:57.853586 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:57.853715 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-30T17:41:57.853742 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:57.853875 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-30T17:41:57.853909 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:57.854039 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-30T17:41:57.854069 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:57.854287 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-30T17:41:57.854314 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:57.854459 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-30T17:41:57.854483 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:57.854619 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-30T17:41:57.854640 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:57.854779 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-30T17:41:57.854811 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:57.855742 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.83 ms +I, [2018-07-30T17:41:57.855779 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:57.855951 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-30T17:41:57.855974 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:57.856145 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-30T17:41:57.856171 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:57.856288 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-30T17:41:57.856309 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:57.856452 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-30T17:41:57.856473 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:57.856681 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-30T17:41:57.856720 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:59.857893 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-30T17:41:59.857994 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:59.858196 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-30T17:41:59.858311 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:59.858553 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-30T17:41:59.858589 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:59.858819 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-30T17:41:59.858857 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:59.859069 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-30T17:41:59.859122 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:59.859301 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-30T17:41:59.859336 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:59.859567 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-30T17:41:59.859603 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:59.859807 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-30T17:41:59.859841 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:59.860008 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-30T17:41:59.860040 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:59.860242 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-30T17:41:59.860278 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:59.860524 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-30T17:41:59.860560 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:59.860731 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-30T17:41:59.860800 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:59.861030 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-30T17:41:59.861065 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:59.861218 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-30T17:41:59.861256 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:59.861376 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-30T17:41:59.861410 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:59.861565 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-30T17:41:59.865508 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:59.865999 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-30T17:41:59.866119 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:59.866506 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-30T17:41:59.866535 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:59.866705 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-30T17:41:59.866743 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:59.866884 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-30T17:41:59.866908 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:59.867041 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-30T17:41:59.867085 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:59.867216 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-30T17:41:59.867238 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:59.867415 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-30T17:41:59.867442 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:59.867678 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-30T17:41:59.867712 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:59.867983 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-30T17:41:59.868019 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:59.868340 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-30T17:41:59.868413 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:59.868784 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-07-30T17:41:59.868813 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:59.868969 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-30T17:41:59.868991 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:59.869134 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-30T17:41:59.869155 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:59.869303 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-30T17:41:59.869330 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:59.869465 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-30T17:41:59.869500 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:59.869613 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-30T17:41:59.869647 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:59.869763 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-30T17:41:59.869795 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:59.869917 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-30T17:41:59.869943 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:59.870071 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-30T17:41:59.870092 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:59.870215 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-30T17:41:59.870236 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:59.870418 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-30T17:41:59.870442 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:59.870600 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-30T17:41:59.870646 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:59.870834 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-30T17:41:59.870892 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:59.871050 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-30T17:41:59.871082 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:59.871215 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-30T17:41:59.871256 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:59.871407 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-30T17:41:59.871444 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:59.871556 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-30T17:41:59.871589 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:59.871710 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-30T17:41:59.871731 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:59.871860 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-30T17:41:59.871881 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:59.872003 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-30T17:41:59.872028 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:59.872156 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-30T17:41:59.872182 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:59.872332 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-30T17:41:59.872363 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:59.872488 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-30T17:41:59.872516 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:59.872757 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-30T17:41:59.872784 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:59.872915 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-30T17:41:59.872940 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:59.873074 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-30T17:41:59.873096 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:59.887028 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-30T17:41:59.887097 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:59.887335 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-30T17:41:59.887369 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:59.887539 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-30T17:41:59.887580 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:59.888751 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-30T17:41:59.888784 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:59.888952 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-30T17:41:59.888976 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:59.889114 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-30T17:41:59.889134 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:59.889266 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-30T17:41:59.889287 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:59.889390 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-30T17:41:59.889410 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:59.889545 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-30T17:41:59.889566 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:59.889668 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-30T17:41:59.889715 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:59.889858 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-30T17:41:59.889917 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:59.890145 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-30T17:41:59.890180 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:59.890363 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-30T17:41:59.890386 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:59.890529 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-30T17:41:59.890585 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:59.895425 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-30T17:41:59.895467 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:59.895627 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-30T17:41:59.895650 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:59.895754 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-30T17:41:59.895774 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:59.895933 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-30T17:41:59.895957 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:59.904515 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-30T17:41:59.904566 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:59.904710 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-30T17:41:59.904733 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:59.904868 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-30T17:41:59.904917 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:59.905062 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-30T17:41:59.905098 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:59.905231 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-30T17:41:59.905253 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:59.905379 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-30T17:41:59.905428 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:59.905570 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-30T17:41:59.905609 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:59.905740 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-30T17:41:59.905762 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:59.905946 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-30T17:41:59.905977 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:59.906126 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-30T17:41:59.906148 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:59.906251 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-30T17:41:59.906272 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:59.906422 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-30T17:41:59.906449 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:59.906595 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-30T17:41:59.906616 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:59.906720 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-30T17:41:59.906741 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:59.906869 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-30T17:41:59.906889 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:41:59.907155 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-30T17:41:59.907178 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:42:01.907827 #5] INFO -- : Committing offsets: section_change/0:920 +I, [2018-07-30T17:42:01.911828 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-30T17:42:01.911874 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:42:01.912034 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-30T17:42:01.912106 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T17:42:01.921272 #5] INFO -- : Inline processing of topic section_change with 1 messages took 9.01 ms +I, [2018-07-30T17:42:01.921810 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:25:01.853194 #5] INFO -- : New topics added to target list: section_change +I, [2018-07-30T18:25:01.853249 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-07-30T18:25:01.858639 #5] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.9:9094 +E, [2018-07-30T18:25:01.858742 #5] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.9:9094 +E, [2018-07-30T18:25:06.859218 #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.9:9094 +I, [2018-07-30T18:25:06.859907 #5] INFO -- : New topics added to target list: section_change +I, [2018-07-30T18:25:06.859948 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-07-30T18:25:06.860402 #5] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.9:9094 +E, [2018-07-30T18:25:06.860505 #5] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.9:9094 +E, [2018-07-30T18:25:11.861031 #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.9:9094 +I, [2018-07-30T18:25:11.863096 #5] INFO -- : New topics added to target list: section_change +I, [2018-07-30T18:25:11.863215 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-07-30T18:25:11.863907 #5] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.9:9094 +E, [2018-07-30T18:25:11.864005 #5] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.9:9094 +E, [2018-07-30T18:25:16.880215 #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.9:9094 +I, [2018-07-30T18:25:16.890954 #5] INFO -- : New topics added to target list: section_change +I, [2018-07-30T18:25:16.891260 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-07-30T18:25:16.891888 #5] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.9:9094 +E, [2018-07-30T18:25:16.893998 #5] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.9:9094 +E, [2018-07-30T18:25:21.894680 #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.9:9094 +I, [2018-07-30T18:25:21.897246 #5] INFO -- : New topics added to target list: section_change +I, [2018-07-30T18:25:21.897301 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-07-30T18:25:21.917608 #5] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-07-30T18:25:21.918127 #5] INFO -- : Joining group `notifications_notifications` +E, [2018-07-30T18:25:21.972658 #5] ERROR -- : Failed to find coordinator for group `notifications_notifications`; retrying... +I, [2018-07-30T18:25:21.999859 #5] INFO -- : Will fetch at most 1048576 bytes at a time per partition from section_change +I, [2018-07-30T18:25:21.999999 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-07-30T18:25:22.013704 #5] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-07-30T18:25:22.013809 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-30T18:25:22.973789 #5] INFO -- : Joining group `notifications_notifications` +I, [2018-07-30T18:25:23.014045 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-07-30T18:25:23.062040 #5] ERROR -- : Failed to find coordinator for group `notifications_notifications`; retrying... +I, [2018-07-30T18:25:24.020480 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-30T18:25:24.062684 #5] INFO -- : Joining group `notifications_notifications` +E, [2018-07-30T18:25:24.120657 #5] ERROR -- : Failed to find coordinator for group `notifications_notifications`; retrying... +I, [2018-07-30T18:25:25.026139 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-30T18:25:25.120879 #5] INFO -- : Joining group `notifications_notifications` +I, [2018-07-30T18:25:26.026753 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-30T18:25:27.027021 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-30T18:25:28.027406 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-30T18:25:29.027662 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-30T18:25:30.027865 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-30T18:25:31.028660 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-30T18:25:32.029086 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-30T18:25:33.032676 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-30T18:25:34.033713 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-30T18:25:35.034381 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-30T18:25:36.034958 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-30T18:25:37.035392 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-30T18:25:38.037022 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-30T18:25:39.037695 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-30T18:25:40.038156 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-30T18:25:41.039384 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-30T18:25:42.041551 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-30T18:25:43.041728 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-30T18:25:44.062517 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-30T18:25:45.063104 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-30T18:25:46.063691 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-30T18:25:47.064188 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-30T18:25:48.064844 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-30T18:25:49.069371 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-30T18:25:50.069734 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-30T18:25:51.075530 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-30T18:25:52.075731 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-30T18:25:53.082362 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-30T18:25:54.083008 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-30T18:25:55.012626 #5] INFO -- : Joined group `notifications_notifications` with member id `notifications-99162ebd-f05d-421d-b6a4-f94ab2c390d0` +I, [2018-07-30T18:25:55.012676 #5] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-07-30T18:25:55.083820 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-30T18:25:55.187541 #5] INFO -- : Partitions assigned for `section_change`: 0 +I, [2018-07-30T18:25:55.209955 #5] INFO -- : Committing offsets with recommit: section_change/0:920 +I, [2018-07-30T18:25:56.089120 #5] INFO -- : Seeking section_change/0 to offset 920 +I, [2018-07-30T18:25:56.089552 #5] INFO -- : New topics added to target list: section_change +I, [2018-07-30T18:25:56.089634 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-07-30T18:25:56.099477 #5] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +E, [2018-07-30T18:25:57.321731 #5] ERROR -- : Exception raised when processing section_change/0 at offset 920 -- NoMethodError: undefined method `notify' for EventStream:Class +/usr/src/app/app/consumers/sections_consumer.rb:8:in `consume' +>>>>>>> 4eed4ea158c4b2f6fa86b4f265ab06952dc6f304 +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +<<<<<<< HEAD +I, [2018-08-07T00:48:56.781825 #6] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-07T00:48:56.785556 #6] ERROR -- : Client fetch loop error: wrong argument type Karafka::Params::Params (expected String) +I, [2018-08-07T00:48:56.789209 #6] INFO -- : Joining group `notifications_notifications` +E, [2018-08-07T00:48:56.797969 #6] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-07T00:48:56.809359 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-07T00:48:56.870362 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-6a339540-cc73-4b8d-bbab-9dee97f0cf5f` +I, [2018-08-07T00:48:56.870558 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-07T00:48:56.970726 #6] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-07T00:48:56.970834 #6] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-07T00:48:57.134958 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:48:57.445135 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:48:57.798250 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-07T00:48:57.812624 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-a3cc644b-6156-447f-810c-12cf23600c88` +I, [2018-08-07T00:48:57.812708 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-07T00:48:57.835900 #6] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-07T00:48:57.836005 #6] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-07T00:48:58.139436 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:48:58.448079 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:48:59.143429 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:48:59.502920 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:49:00.145903 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:49:00.510322 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:49:01.116689 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:49:01.518620 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:49:02.117100 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:49:02.519667 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:49:03.118251 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:49:03.520433 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:49:04.119348 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:49:04.529341 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:49:05.121102 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:49:05.529845 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:49:06.758411 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:49:06.793182 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:49:07.761363 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:49:07.794315 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:49:08.173582 #6] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-07T00:49:08.180751 #6] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-07T00:49:08.780741 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-07T00:49:08.806312 #6] INFO -- : Seeking course_change/0 to offset 0 +E, [2018-08-07T00:49:10.535445 #6] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- TypeError: wrong argument type Karafka::Params::Params (expected String) +/usr/src/app/app/controllers/eventstream.rb:19:in `publish' +/usr/src/app/app/controllers/eventstream.rb:19:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +======= +I, [2018-07-30T18:25:57.322349 #5] INFO -- : Leaving group `notifications_notifications` +E, [2018-07-30T18:25:57.329230 #5] ERROR -- : Client fetch loop error: undefined method `notify' for EventStream:Class +I, [2018-07-30T18:25:57.329475 #5] INFO -- : Joining group `notifications_notifications` +E, [2018-07-30T18:25:57.335412 #5] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-07-30T18:25:58.191473 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-30T18:25:58.336262 #5] INFO -- : Joining group `notifications_notifications` +I, [2018-07-30T18:25:58.341539 #5] INFO -- : Joined group `notifications_notifications` with member id `notifications-c27976ff-a100-45f2-83c8-47a7fc9a325c` +I, [2018-07-30T18:25:58.341651 #5] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-07-30T18:25:58.346389 #5] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-07-30T18:25:58.346477 #5] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-07-30T18:25:59.192270 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-30T18:26:00.194246 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-30T18:26:01.194500 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-30T18:26:02.195666 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-30T18:26:03.195897 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-30T18:26:04.196282 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-30T18:26:05.196774 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-30T18:26:06.197258 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-30T18:26:07.197607 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-30T18:26:08.197863 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-30T18:26:08.351245 #5] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-07-30T18:26:09.198199 #5] INFO -- : Seeking section_change/0 to offset 920 +E, [2018-07-30T18:26:10.379739 #5] ERROR -- : Exception raised when processing section_change/0 at offset 920 -- NoMethodError: undefined method `notify' for EventStream:Class +/usr/src/app/app/consumers/sections_consumer.rb:8:in `consume' +>>>>>>> 4eed4ea158c4b2f6fa86b4f265ab06952dc6f304 +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +<<<<<<< HEAD +I, [2018-08-07T00:51:17.649130 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-07T00:51:17.649207 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T00:51:17.653853 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T00:51:17.654548 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +I, [2018-08-07T00:51:17.657495 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-07T00:51:17.657555 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T00:51:17.661298 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T00:51:17.661402 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T00:51:22.656003 #6] 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.14:9094 +I, [2018-08-07T00:51:22.656761 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-07T00:51:22.656805 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T00:51:22.658951 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T00:51:22.659228 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T00:51:22.662202 #6] 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.14:9094 +I, [2018-08-07T00:51:22.670675 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-07T00:51:22.670726 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T00:51:22.673884 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T00:51:22.679918 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T00:51:27.659843 #6] 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.14:9094 +I, [2018-08-07T00:51:27.660993 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-07T00:51:27.661057 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T00:51:27.663107 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T00:51:27.663659 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T00:51:27.680392 #6] 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.14:9094 +I, [2018-08-07T00:51:27.681309 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-07T00:51:27.681352 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T00:51:27.688653 #6] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T00:51:27.688788 #6] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T00:51:32.626377 #6] 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.14:9094 +I, [2018-08-07T00:51:32.630100 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-07T00:51:32.630276 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T00:51:32.651222 #6] 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.14:9094 +I, [2018-08-07T00:51:32.652802 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-07T00:51:32.652858 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T00:51:32.958454 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-07T00:51:32.958721 #6] INFO -- : Joining group `notifications_course_change` +I, [2018-08-07T00:51:32.959662 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-07T00:51:32.959860 #6] INFO -- : Joining group `notifications_notifications` +I, [2018-08-07T00:51:33.032800 #6] INFO -- : Will fetch at most 1048576 bytes at a time per partition from course_change +I, [2018-08-07T00:51:33.033009 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T00:51:33.057298 #6] INFO -- : Will fetch at most 1048576 bytes at a time per partition from section_change +I, [2018-08-07T00:51:33.057536 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T00:51:33.063513 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-07T00:51:33.063614 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:51:33.066292 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-07T00:51:33.066375 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:51:34.064925 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:51:34.067113 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:51:35.065633 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:51:35.067866 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:51:36.065997 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:51:36.068362 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:51:37.066534 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:51:37.068998 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:51:38.067490 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:51:38.072479 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:51:39.068433 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:51:39.073251 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:51:40.069069 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:51:40.073579 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:51:40.676632 #6] INFO -- : Joined group `notifications_course_change` with member id `notifications-39da206c-c853-4b05-a2d1-6a6cecb6d51e` +I, [2018-08-07T00:51:40.676796 #6] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-07T00:51:40.778231 #6] INFO -- : Joined group `notifications_notifications` with member id `notifications-bcaa2135-b647-4d05-b8ca-7d6486b35235` +I, [2018-08-07T00:51:40.778300 #6] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-07T00:51:41.069491 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:51:41.074660 #6] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T00:51:41.677693 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T00:51:41.681743 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-07T00:51:41.779263 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T00:51:41.804446 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-07T00:51:41.903853 #6] INFO -- : Partitions assigned for `course_change`: 0 +I, [2018-08-07T00:51:41.940507 #6] INFO -- : Partitions assigned for `section_change`: 0 +I, [2018-08-07T00:51:42.070745 #6] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-07T00:51:42.070926 #6] INFO -- : New topics added to target list: course_change +I, [2018-08-07T00:51:42.070963 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T00:51:42.075073 #6] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-07T00:51:42.075158 #6] INFO -- : New topics added to target list: section_change +I, [2018-08-07T00:51:42.075234 #6] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T00:51:42.076606 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-07T00:51:42.078676 #6] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-07T00:51:46.276566 #6] INFO -- : Inline processing of topic course_change with 1 messages took 59.51 ms +I, [2018-08-07T00:51:46.276651 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:51:46.276737 #6] INFO -- : Committing offsets with recommit: course_change/0:1 +I, [2018-08-07T00:51:46.290518 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-08-07T00:51:46.290595 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:51:46.290653 #6] INFO -- : Committing offsets with recommit: section_change/0:1 +I, [2018-08-07T00:51:46.315676 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.3 ms +I, [2018-08-07T00:51:46.315811 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:51:46.316208 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-08-07T00:51:46.316239 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:51:46.316654 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T00:51:46.316898 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:51:46.317464 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-08-07T00:51:46.317533 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:51:46.318000 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T00:51:46.318059 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:51:46.318574 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T00:51:46.318639 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:51:46.319083 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T00:51:46.319147 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:51:46.319616 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T00:51:46.319668 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:51:46.324027 #6] INFO -- : Inline processing of topic section_change with 1 messages took 2.25 ms +I, [2018-08-07T00:51:46.324153 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:51:46.328289 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.43 ms +I, [2018-08-07T00:51:46.328364 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:51:46.328720 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T00:51:46.328762 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:51:46.329033 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T00:51:46.329063 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:51:46.329314 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T00:51:46.329343 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:51:46.329588 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T00:51:46.329618 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:51:46.329826 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T00:51:46.329856 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:51:46.330074 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T00:51:46.330102 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:51:46.330339 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T00:51:46.330368 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:51:46.330593 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T00:51:46.330621 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:51:46.343144 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T00:51:46.343202 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:51:46.343553 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T00:51:46.343584 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:51:46.343841 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T00:51:46.343870 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:51:46.344132 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T00:51:46.344161 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:51:46.344479 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T00:51:46.344509 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:51:46.344747 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T00:51:46.344794 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:51:46.345050 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T00:51:46.355692 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:51:46.357993 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-08-07T00:51:46.358074 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:51:46.359722 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.71 ms +I, [2018-08-07T00:51:46.360601 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:51:48.317804 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.3 ms +I, [2018-08-07T00:51:48.317879 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:51:48.318257 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T00:51:48.318362 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:51:48.322488 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-08-07T00:51:48.322630 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:51:48.325848 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-08-07T00:51:48.325914 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:51:48.326555 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.28 ms +I, [2018-08-07T00:51:48.326618 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:51:48.327119 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.28 ms +I, [2018-08-07T00:51:48.327265 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:51:48.327849 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.23 ms +I, [2018-08-07T00:51:48.327916 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:51:48.328521 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.27 ms +I, [2018-08-07T00:51:48.328618 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:51:48.329241 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.41 ms +I, [2018-08-07T00:51:48.329303 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:51:48.329652 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T00:51:48.329732 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:51:48.341387 #6] INFO -- : Inline processing of topic course_change with 1 messages took 1.28 ms +I, [2018-08-07T00:51:48.341449 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:51:48.374480 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.85 ms +I, [2018-08-07T00:51:48.374578 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:51:48.375010 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T00:51:48.375059 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:51:48.375429 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T00:51:48.375476 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:51:48.375818 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T00:51:48.375865 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:51:48.376204 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T00:51:48.376252 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:51:48.376576 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T00:51:48.376617 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:51:48.376912 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T00:51:48.376954 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:51:48.377283 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T00:51:48.377327 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:51:48.377659 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T00:51:48.377705 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:51:48.378010 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T00:51:48.378101 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:51:48.378374 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T00:51:48.378417 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:51:48.378722 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T00:51:48.378762 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:51:48.379108 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T00:51:48.379157 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:51:48.382936 #6] INFO -- : Inline processing of topic section_change with 1 messages took 3.45 ms +I, [2018-08-07T00:51:48.382997 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:51:48.383429 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T00:51:48.383473 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:51:48.383848 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T00:51:48.384074 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:51:48.387797 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-08-07T00:51:48.387871 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:51:48.395618 #6] INFO -- : Inline processing of topic section_change with 1 messages took 7.51 ms +I, [2018-08-07T00:51:48.395690 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:51:48.397408 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T00:51:48.397474 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:51:48.414159 #6] INFO -- : Inline processing of topic section_change with 1 messages took 15.35 ms +I, [2018-08-07T00:51:48.416389 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:51:48.416915 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T00:51:48.416975 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:51:50.343362 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.32 ms +I, [2018-08-07T00:51:50.343439 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:51:50.343810 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-08-07T00:51:50.343843 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:51:50.344158 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-08-07T00:51:50.344189 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:51:50.344443 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T00:51:50.344473 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:51:50.344790 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-08-07T00:51:50.344831 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:51:50.345080 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T00:51:50.345109 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:51:50.418034 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-08-07T00:51:50.418153 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:51:50.418672 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T00:51:50.420593 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:51:50.421025 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T00:51:50.421060 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:51:50.421329 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T00:51:50.421359 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:51:50.421653 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T00:51:50.421685 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:51:50.421938 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T00:51:50.421969 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:51:50.422302 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T00:51:50.422334 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:51:50.422590 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-08-07T00:51:50.422620 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:51:52.346594 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.93 ms +I, [2018-08-07T00:51:52.346664 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:51:52.347445 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.57 ms +I, [2018-08-07T00:51:52.347578 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:51:52.349108 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.33 ms +I, [2018-08-07T00:51:52.349243 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:51:52.369422 #6] INFO -- : Inline processing of topic course_change with 1 messages took 19.96 ms +I, [2018-08-07T00:51:52.369493 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:51:52.370792 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.87 ms +I, [2018-08-07T00:51:52.370852 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:51:52.372637 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.43 ms +I, [2018-08-07T00:51:52.372713 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:51:52.373481 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.42 ms +I, [2018-08-07T00:51:52.373662 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:51:52.374358 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-08-07T00:51:52.374737 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:51:52.376625 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.78 ms +I, [2018-08-07T00:51:52.376688 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:51:52.378461 #6] INFO -- : Inline processing of topic course_change with 1 messages took 1.33 ms +I, [2018-08-07T00:51:52.378518 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:51:52.378951 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.24 ms +I, [2018-08-07T00:51:52.378999 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:51:52.423948 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-08-07T00:51:52.424103 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:51:52.424595 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T00:51:52.424671 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:51:52.425075 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T00:51:52.425117 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:51:52.425417 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T00:51:52.434234 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:51:52.435008 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-08-07T00:51:52.435068 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:51:52.435505 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T00:51:52.435595 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:51:52.473000 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-08-07T00:51:52.473055 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:51:52.473618 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T00:51:52.473686 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:51:52.474966 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.71 ms +I, [2018-08-07T00:51:52.475042 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:51:52.475936 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-08-07T00:51:52.476387 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:51:52.477486 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.71 ms +I, [2018-08-07T00:51:52.477548 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:51:52.478571 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.52 ms +I, [2018-08-07T00:51:52.478744 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:51:52.530226 #6] INFO -- : Inline processing of topic section_change with 1 messages took 50.51 ms +I, [2018-08-07T00:51:52.530789 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:51:52.535407 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T00:51:52.535463 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:51:52.536411 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T00:51:52.536475 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:51:52.537154 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T00:51:52.537207 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:51:52.537601 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T00:51:52.537648 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:51:52.537976 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T00:51:52.538021 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:51:52.538394 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T00:51:52.538484 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:51:52.559592 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T00:51:52.580527 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:51:54.382620 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.24 ms +I, [2018-08-07T00:51:54.382790 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:51:54.383092 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T00:51:54.383126 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:51:54.383387 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T00:51:54.383417 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:51:54.383652 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-08-07T00:51:54.383682 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:51:54.383922 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T00:51:54.383951 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:51:54.385343 #6] INFO -- : Inline processing of topic course_change with 1 messages took 1.28 ms +I, [2018-08-07T00:51:54.385388 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:51:54.385704 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T00:51:54.385735 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:51:54.386009 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T00:51:54.387563 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:51:54.616689 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.58 ms +I, [2018-08-07T00:51:54.616801 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:51:54.617206 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T00:51:54.617240 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:51:54.617460 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T00:51:54.617540 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:51:54.617826 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T00:51:54.617971 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:51:54.618707 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T00:51:54.618777 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:51:54.619096 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T00:51:54.619134 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:51:54.619635 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T00:51:54.619679 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:51:54.621172 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.64 ms +I, [2018-08-07T00:51:54.621921 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:51:54.622680 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-08-07T00:51:54.622963 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:51:54.623287 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T00:51:54.623318 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:51:54.623645 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T00:51:54.623676 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:51:56.388224 #6] INFO -- : Committing offsets: course_change/0:39 +I, [2018-08-07T00:51:56.406072 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.25 ms +I, [2018-08-07T00:51:56.406138 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:51:56.406472 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T00:51:56.406518 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:51:56.406838 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T00:51:56.406880 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:51:56.407191 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T00:51:56.407233 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:51:56.407554 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T00:51:56.407600 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:51:56.407914 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T00:51:56.407958 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:51:56.408269 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T00:51:56.408315 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:51:56.408619 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T00:51:56.408662 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:51:56.408934 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T00:51:56.408964 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:51:56.409168 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T00:51:56.409223 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:51:56.409406 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T00:51:56.409434 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:51:56.409639 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T00:51:56.409667 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:51:56.409976 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T00:51:56.410022 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:51:56.410390 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T00:51:56.410440 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:51:56.410759 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T00:51:56.410809 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:51:56.411154 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T00:51:56.411202 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:51:56.411541 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T00:51:56.414307 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:51:56.624057 #6] INFO -- : Committing offsets: section_change/0:86 +I, [2018-08-07T00:51:56.639691 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.46 ms +I, [2018-08-07T00:51:56.639974 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:51:56.642541 #6] INFO -- : Inline processing of topic section_change with 1 messages took 1.56 ms +I, [2018-08-07T00:51:56.642760 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:51:56.644478 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.83 ms +I, [2018-08-07T00:51:56.644549 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:51:56.645031 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-08-07T00:51:56.645090 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:51:56.645507 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T00:51:56.645557 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:51:56.645866 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T00:51:56.645911 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:51:56.646188 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T00:51:56.646222 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:51:56.646456 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T00:51:56.646486 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:51:56.646714 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T00:51:56.646782 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:51:56.647038 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T00:51:56.647069 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:51:56.649146 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.96 ms +I, [2018-08-07T00:51:56.649344 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:51:56.662337 #6] INFO -- : Inline processing of topic section_change with 1 messages took 12.09 ms +I, [2018-08-07T00:51:56.666162 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:51:56.666905 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T00:51:56.666985 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:51:56.667327 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T00:51:56.667394 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:51:56.667772 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T00:51:56.667848 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:51:56.671740 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T00:51:56.671966 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:51:56.676176 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T00:51:56.676256 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:51:56.676600 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T00:51:56.676641 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:51:58.415058 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T00:51:58.415154 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:51:58.415632 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-08-07T00:51:58.415704 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:51:58.416121 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.25 ms +I, [2018-08-07T00:51:58.416183 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:51:58.416483 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T00:51:58.416513 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:51:58.416810 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T00:51:58.416858 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:51:58.417089 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T00:51:58.417117 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:51:58.417374 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T00:51:58.417404 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:51:58.417588 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T00:51:58.417647 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:51:58.417881 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-08-07T00:51:58.417911 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:51:58.418140 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T00:51:58.418176 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:51:58.418474 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T00:51:58.418506 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:51:58.418761 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T00:51:58.418803 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:51:58.419056 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T00:51:58.419086 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:51:58.677572 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-08-07T00:51:58.677631 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:51:58.677926 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T00:51:58.677965 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:51:58.678232 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T00:51:58.678261 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:51:58.678528 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T00:51:58.678569 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:51:58.678833 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T00:51:58.680455 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:51:58.680811 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T00:51:58.680846 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:51:58.681086 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T00:51:58.681114 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:51:58.681331 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T00:51:58.681365 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:51:58.681562 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T00:51:58.681611 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:51:58.681793 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-08-07T00:51:58.681819 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:51:58.682034 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T00:51:58.682630 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:51:58.683177 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T00:51:58.683262 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:51:58.683658 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T00:51:58.683692 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:51:58.683921 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T00:51:58.683951 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:51:58.684163 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T00:51:58.684191 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:51:58.684393 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T00:51:58.684422 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:00.422937 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.69 ms +I, [2018-08-07T00:52:00.422990 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:00.423264 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T00:52:00.423294 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:00.423514 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T00:52:00.423544 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:00.423753 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T00:52:00.423782 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:00.424012 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T00:52:00.424041 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:00.424297 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T00:52:00.424339 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:00.424618 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T00:52:00.424650 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:00.424864 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T00:52:00.424905 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:00.425185 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T00:52:00.425217 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:00.425440 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T00:52:00.425476 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:00.685414 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T00:52:00.685585 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:00.685931 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T00:52:00.685962 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:00.686189 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T00:52:00.686238 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:00.686617 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T00:52:00.686655 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:00.686906 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T00:52:00.686935 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:00.687149 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-08-07T00:52:00.687179 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:00.687519 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T00:52:00.687594 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:00.687963 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T00:52:00.688009 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:00.688293 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T00:52:00.688338 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:00.688710 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T00:52:00.688753 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:00.689096 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T00:52:00.689130 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:00.689426 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T00:52:00.689530 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:00.689999 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T00:52:00.690032 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:00.690291 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T00:52:00.690330 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:00.690677 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T00:52:00.690707 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:00.697992 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T00:52:00.698042 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:00.699485 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.81 ms +I, [2018-08-07T00:52:00.699585 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:00.702141 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T00:52:00.702202 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:00.702565 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T00:52:00.702611 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:00.704774 #6] INFO -- : Inline processing of topic section_change with 1 messages took 1.79 ms +I, [2018-08-07T00:52:00.709329 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:00.710317 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.65 ms +I, [2018-08-07T00:52:00.710388 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:00.710973 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-08-07T00:52:00.711125 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:02.391006 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.28 ms +I, [2018-08-07T00:52:02.391073 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:02.391431 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T00:52:02.391498 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:02.391835 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T00:52:02.391889 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:02.392211 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T00:52:02.392261 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:02.392608 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T00:52:02.392660 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:02.393237 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.38 ms +I, [2018-08-07T00:52:02.393300 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:02.393725 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T00:52:02.393783 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:02.395537 #6] INFO -- : Inline processing of topic course_change with 1 messages took 1.15 ms +I, [2018-08-07T00:52:02.395603 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:02.396322 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-08-07T00:52:02.396368 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:02.676314 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T00:52:02.676381 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:02.677052 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.46 ms +I, [2018-08-07T00:52:02.677193 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:02.677731 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T00:52:02.677779 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:02.678094 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T00:52:02.678133 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:02.678449 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T00:52:02.678488 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:02.678753 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T00:52:02.678790 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:02.679082 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T00:52:02.679120 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:02.679413 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T00:52:02.679449 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:02.679723 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T00:52:02.679759 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:02.680041 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T00:52:02.680077 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:02.680346 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T00:52:02.680382 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:04.403265 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.25 ms +I, [2018-08-07T00:52:04.403330 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:04.403861 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-08-07T00:52:04.406600 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:04.684600 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-08-07T00:52:04.684669 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:04.685020 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T00:52:04.685059 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:04.685347 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T00:52:04.685393 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:04.685786 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T00:52:04.686175 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:06.408769 #6] INFO -- : Committing offsets: course_change/0:90 +I, [2018-08-07T00:52:06.411710 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-08-07T00:52:06.411753 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:06.411988 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T00:52:06.412018 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:06.412249 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T00:52:06.412279 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:06.413386 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.27 ms +I, [2018-08-07T00:52:06.413470 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:06.413957 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T00:52:06.413993 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:06.414314 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T00:52:06.414390 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:06.414831 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-08-07T00:52:06.414864 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:06.416711 #6] INFO -- : Inline processing of topic course_change with 1 messages took 1.64 ms +I, [2018-08-07T00:52:06.416858 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:06.417372 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T00:52:06.417439 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:06.417887 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T00:52:06.417951 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:06.418419 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T00:52:06.418475 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:06.418891 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T00:52:06.418955 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:06.419245 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T00:52:06.419297 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:06.687585 #6] INFO -- : Committing offsets: section_change/0:157 +I, [2018-08-07T00:52:06.706126 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.4 ms +I, [2018-08-07T00:52:06.706193 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:06.706554 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T00:52:06.706600 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:06.706940 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T00:52:06.706984 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:06.707386 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T00:52:06.707431 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:06.707908 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T00:52:06.707954 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:06.708435 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-08-07T00:52:06.708483 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:06.708811 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T00:52:06.708850 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:06.709260 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T00:52:06.709302 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:06.709622 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T00:52:06.709663 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:06.709995 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T00:52:06.710035 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:06.710318 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T00:52:06.710386 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:06.710681 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T00:52:06.710729 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:06.711449 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.42 ms +I, [2018-08-07T00:52:06.711498 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:06.712307 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-08-07T00:52:06.712407 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:06.713275 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.48 ms +I, [2018-08-07T00:52:06.713329 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:06.716402 #6] INFO -- : Inline processing of topic section_change with 1 messages took 2.87 ms +I, [2018-08-07T00:52:06.716473 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:06.717280 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.46 ms +I, [2018-08-07T00:52:06.717349 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:06.717820 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T00:52:06.722071 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:06.723293 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.41 ms +I, [2018-08-07T00:52:06.723390 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:06.724034 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-08-07T00:52:06.724097 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:06.725702 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.42 ms +I, [2018-08-07T00:52:06.725797 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:06.726443 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T00:52:06.726567 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:06.727038 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T00:52:06.727101 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:08.420678 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.33 ms +I, [2018-08-07T00:52:08.421957 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:08.422361 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T00:52:08.422408 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:08.422730 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T00:52:08.422774 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:08.424339 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.49 ms +I, [2018-08-07T00:52:08.424405 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:08.424810 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T00:52:08.424863 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:08.425783 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.7 ms +I, [2018-08-07T00:52:08.425866 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:08.426604 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-08-07T00:52:08.426654 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:08.426982 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T00:52:08.427023 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:08.428073 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.81 ms +I, [2018-08-07T00:52:08.428117 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:08.430094 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T00:52:08.430154 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:08.430394 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T00:52:08.430424 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:08.433645 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.44 ms +I, [2018-08-07T00:52:08.433694 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:08.433978 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T00:52:08.434010 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:08.434255 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T00:52:08.434285 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:08.434472 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T00:52:08.434539 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:08.434723 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T00:52:08.434752 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:08.434967 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T00:52:08.434996 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:08.435213 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T00:52:08.435241 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:08.435439 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T00:52:08.435467 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:08.435666 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T00:52:08.435694 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:08.435892 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T00:52:08.435920 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:08.728035 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T00:52:08.728087 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:08.728344 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T00:52:08.728377 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:08.728655 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T00:52:08.728689 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:08.729526 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.67 ms +I, [2018-08-07T00:52:08.729579 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:08.730105 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T00:52:08.730158 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:08.730861 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.45 ms +I, [2018-08-07T00:52:08.730906 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:08.731419 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T00:52:08.731507 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:08.732507 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.8 ms +I, [2018-08-07T00:52:08.732569 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:08.733034 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T00:52:08.733087 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:08.733557 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T00:52:08.733613 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:08.734004 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T00:52:08.734057 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:08.734446 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T00:52:08.734498 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:08.734869 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T00:52:08.734920 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:08.735305 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T00:52:08.735354 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:08.735709 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T00:52:08.735757 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:10.437242 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-08-07T00:52:10.437290 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:10.437526 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T00:52:10.437555 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:10.437764 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T00:52:10.437793 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:10.437999 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T00:52:10.438506 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:10.439060 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.36 ms +I, [2018-08-07T00:52:10.439099 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:10.439326 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T00:52:10.439366 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:10.439580 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T00:52:10.439609 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:10.439817 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T00:52:10.439846 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:10.440446 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.35 ms +I, [2018-08-07T00:52:10.440488 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:10.440745 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T00:52:10.440774 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:10.440997 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T00:52:10.441026 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:10.441238 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T00:52:10.441267 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:10.441481 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T00:52:10.441509 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:10.441981 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.35 ms +I, [2018-08-07T00:52:10.442042 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:10.442767 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-08-07T00:52:10.442829 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:10.736447 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T00:52:10.736494 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:10.736734 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T00:52:10.736763 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:10.736974 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T00:52:10.737003 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:10.737226 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T00:52:10.737255 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:10.737535 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T00:52:10.737566 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:10.737792 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T00:52:10.737821 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:10.738033 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T00:52:10.738066 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:10.739679 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.46 ms +I, [2018-08-07T00:52:10.739782 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:10.740390 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-08-07T00:52:10.740444 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:10.740907 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T00:52:10.740956 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:10.742241 #6] INFO -- : Inline processing of topic section_change with 1 messages took 1.02 ms +I, [2018-08-07T00:52:10.742426 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:10.743149 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-08-07T00:52:10.743205 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:10.743652 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T00:52:10.743784 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:10.745449 #6] INFO -- : Inline processing of topic section_change with 1 messages took 1.39 ms +I, [2018-08-07T00:52:10.745511 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:10.750813 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-08-07T00:52:10.750984 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:10.751708 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-08-07T00:52:10.751765 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:12.444032 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-08-07T00:52:12.444132 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:12.444742 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.44 ms +I, [2018-08-07T00:52:12.444879 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:12.445528 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-08-07T00:52:12.445596 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:12.446193 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-08-07T00:52:12.446267 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:12.448265 #6] INFO -- : Inline processing of topic course_change with 1 messages took 1.54 ms +I, [2018-08-07T00:52:12.448317 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:12.448678 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-08-07T00:52:12.448713 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:12.448974 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T00:52:12.449005 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:12.449228 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T00:52:12.449258 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:12.449505 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T00:52:12.449535 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:12.452315 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.3 ms +I, [2018-08-07T00:52:12.452374 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:12.771568 #6] INFO -- : Inline processing of topic section_change with 1 messages took 14.82 ms +I, [2018-08-07T00:52:12.772319 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:12.781164 #6] INFO -- : Inline processing of topic section_change with 1 messages took 1.9 ms +I, [2018-08-07T00:52:12.781511 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:12.783998 #6] INFO -- : Inline processing of topic section_change with 1 messages took 2.08 ms +I, [2018-08-07T00:52:12.784093 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:12.786007 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.47 ms +I, [2018-08-07T00:52:12.786180 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:12.788164 #6] INFO -- : Inline processing of topic section_change with 1 messages took 1.08 ms +I, [2018-08-07T00:52:12.788289 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:12.789597 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.68 ms +I, [2018-08-07T00:52:12.790065 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:12.792023 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.8 ms +I, [2018-08-07T00:52:12.792134 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:12.793794 #6] INFO -- : Inline processing of topic section_change with 1 messages took 1.08 ms +I, [2018-08-07T00:52:12.793933 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:12.794961 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T00:52:12.795119 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:12.795479 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T00:52:12.795525 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:12.796291 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-08-07T00:52:12.796359 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:12.796982 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-08-07T00:52:12.797038 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:12.797428 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T00:52:12.806227 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:12.812874 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.75 ms +I, [2018-08-07T00:52:12.812930 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:14.458424 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.25 ms +I, [2018-08-07T00:52:14.458522 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:14.868824 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-08-07T00:52:14.868896 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:14.869651 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.45 ms +I, [2018-08-07T00:52:14.869865 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:14.870838 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.51 ms +I, [2018-08-07T00:52:14.870926 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:14.871483 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-08-07T00:52:14.883132 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:14.884628 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.44 ms +I, [2018-08-07T00:52:14.884707 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:14.885036 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T00:52:14.885093 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:14.885383 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T00:52:14.885419 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:14.885695 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T00:52:14.885734 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:14.886011 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T00:52:14.886044 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:14.886364 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T00:52:14.886394 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:14.886659 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T00:52:14.886695 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:14.886952 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T00:52:14.886989 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:14.892699 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T00:52:14.892752 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:16.459532 #6] INFO -- : Committing offsets: course_change/0:150 +I, [2018-08-07T00:52:16.469467 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.5 ms +I, [2018-08-07T00:52:16.469517 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:16.469988 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.29 ms +I, [2018-08-07T00:52:16.470023 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:16.470498 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.35 ms +I, [2018-08-07T00:52:16.470532 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:16.471142 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.47 ms +I, [2018-08-07T00:52:16.471192 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:16.471852 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.46 ms +I, [2018-08-07T00:52:16.471904 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:16.893420 #6] INFO -- : Committing offsets: section_change/0:238 +I, [2018-08-07T00:52:16.904647 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-08-07T00:52:16.904720 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:16.905449 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.45 ms +I, [2018-08-07T00:52:16.906674 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:16.907294 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.4 ms +I, [2018-08-07T00:52:16.907337 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:16.907624 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T00:52:16.907652 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:16.907903 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T00:52:16.907934 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:16.908208 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T00:52:16.908241 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:16.908486 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T00:52:16.908528 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:16.908818 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T00:52:16.908849 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:16.909065 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T00:52:16.909117 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:16.909337 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-08-07T00:52:16.909366 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:16.909553 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-08-07T00:52:16.911453 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:18.474331 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.53 ms +I, [2018-08-07T00:52:18.474413 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:18.474898 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.26 ms +I, [2018-08-07T00:52:18.474930 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:18.475277 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-08-07T00:52:18.475374 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:18.475863 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.25 ms +I, [2018-08-07T00:52:18.476008 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:18.477388 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.84 ms +I, [2018-08-07T00:52:18.477532 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:18.482743 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-08-07T00:52:18.482836 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:18.485607 #6] INFO -- : Inline processing of topic course_change with 1 messages took 2.52 ms +I, [2018-08-07T00:52:18.485657 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:18.488443 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.4 ms +I, [2018-08-07T00:52:18.488512 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:18.489222 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.39 ms +I, [2018-08-07T00:52:18.489358 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:18.494062 #6] INFO -- : Inline processing of topic course_change with 1 messages took 2.3 ms +I, [2018-08-07T00:52:18.494358 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:18.498928 #6] INFO -- : Inline processing of topic course_change with 1 messages took 1.45 ms +I, [2018-08-07T00:52:18.499122 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:18.499486 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T00:52:18.499569 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:18.913218 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.9 ms +I, [2018-08-07T00:52:18.913290 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:18.916582 #6] INFO -- : Inline processing of topic section_change with 1 messages took 2.97 ms +I, [2018-08-07T00:52:18.916692 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:18.917474 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-08-07T00:52:18.917514 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:18.917939 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T00:52:18.917978 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:18.918410 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T00:52:18.918443 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:18.920161 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T00:52:18.920463 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:18.921169 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-08-07T00:52:18.921238 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:18.938260 #6] INFO -- : Inline processing of topic section_change with 1 messages took 16.83 ms +I, [2018-08-07T00:52:18.938321 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:20.500932 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T00:52:20.501018 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:20.501220 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-08-07T00:52:20.501250 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:20.501466 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T00:52:20.501494 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:20.501701 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T00:52:20.501729 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:20.501938 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T00:52:20.501967 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:20.502184 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T00:52:20.502212 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:20.502420 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T00:52:20.502450 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:20.503086 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T00:52:20.503122 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:20.503340 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T00:52:20.503369 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:20.503729 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T00:52:20.503765 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:20.504582 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.45 ms +I, [2018-08-07T00:52:20.504760 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:20.941693 #6] INFO -- : Inline processing of topic section_change with 1 messages took 2.71 ms +I, [2018-08-07T00:52:20.941788 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:20.942295 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T00:52:20.942347 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:20.942679 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T00:52:20.942728 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:20.943061 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T00:52:20.943110 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:20.943441 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T00:52:20.943519 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:20.944908 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.7 ms +I, [2018-08-07T00:52:20.945241 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:20.946784 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.85 ms +I, [2018-08-07T00:52:20.946898 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:20.948493 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T00:52:20.948531 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:20.949524 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.84 ms +I, [2018-08-07T00:52:20.949577 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:20.950649 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.62 ms +I, [2018-08-07T00:52:20.950714 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:20.951076 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T00:52:20.951149 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:20.951737 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T00:52:20.951795 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:20.952121 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T00:52:20.952160 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:20.952600 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T00:52:20.952642 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:20.952882 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T00:52:20.952911 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:20.953230 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T00:52:20.953270 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:20.953654 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T00:52:20.953693 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:20.959115 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.66 ms +I, [2018-08-07T00:52:20.959297 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:20.959951 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.4 ms +I, [2018-08-07T00:52:20.960011 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:20.961937 #6] INFO -- : Inline processing of topic section_change with 1 messages took 1.17 ms +I, [2018-08-07T00:52:20.961996 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:20.962454 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T00:52:20.962628 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:20.963714 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.78 ms +I, [2018-08-07T00:52:20.963823 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:20.964493 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.46 ms +I, [2018-08-07T00:52:20.964560 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:20.964970 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T00:52:20.965033 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:20.967628 #6] INFO -- : Inline processing of topic section_change with 1 messages took 2.25 ms +I, [2018-08-07T00:52:20.967691 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:20.968112 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T00:52:20.968153 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:20.968499 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T00:52:20.968582 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:20.969131 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.4 ms +I, [2018-08-07T00:52:20.969178 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:20.970742 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-08-07T00:52:20.970817 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:22.505751 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T00:52:22.505800 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:22.506052 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T00:52:22.506082 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:22.971919 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T00:52:22.974230 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:22.974707 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T00:52:22.976206 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:22.976797 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T00:52:22.976851 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:22.977183 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T00:52:22.977227 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:22.977606 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T00:52:22.977656 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:22.978663 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-08-07T00:52:22.978723 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:22.979139 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T00:52:22.979193 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:22.979598 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T00:52:22.979648 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:22.980031 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T00:52:22.980081 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:22.980460 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T00:52:22.980510 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:22.980881 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T00:52:22.980927 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:22.981345 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T00:52:22.981392 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:22.981894 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T00:52:22.981951 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:24.985695 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T00:52:24.985746 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:24.986415 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.51 ms +I, [2018-08-07T00:52:24.986496 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:24.987141 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-08-07T00:52:24.987187 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:24.987509 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T00:52:24.987540 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:24.988521 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.85 ms +I, [2018-08-07T00:52:24.988566 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:24.988918 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T00:52:24.988951 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:24.989208 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T00:52:24.989238 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:24.989880 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.52 ms +I, [2018-08-07T00:52:24.989920 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:24.990371 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T00:52:24.990404 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:24.990655 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T00:52:24.990684 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:24.990909 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T00:52:24.990938 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:24.991162 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T00:52:24.991191 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:24.991376 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-08-07T00:52:24.991433 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:24.991646 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T00:52:24.991674 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:26.511446 #6] INFO -- : Committing offsets: course_change/0:180 +I, [2018-08-07T00:52:26.526527 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.46 ms +I, [2018-08-07T00:52:26.526603 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:26.527432 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T00:52:26.527606 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:26.528496 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.34 ms +I, [2018-08-07T00:52:26.528552 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:26.529149 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T00:52:26.529195 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:26.530107 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T00:52:26.538908 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:26.540507 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.24 ms +I, [2018-08-07T00:52:26.540558 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:26.540872 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T00:52:26.540904 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:26.541138 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T00:52:26.541168 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:26.541425 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T00:52:26.541455 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:26.541669 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T00:52:26.541698 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:26.541902 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T00:52:26.550679 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:26.992196 #6] INFO -- : Committing offsets: section_change/0:313 +I, [2018-08-07T00:52:27.000666 #6] INFO -- : Inline processing of topic section_change with 1 messages took 2.05 ms +I, [2018-08-07T00:52:27.000741 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:27.001641 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-08-07T00:52:27.001685 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:27.002039 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T00:52:27.002122 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:27.002464 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T00:52:27.002499 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:27.002828 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T00:52:27.002862 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:27.003309 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T00:52:27.003482 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:27.005237 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T00:52:27.005528 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:27.006405 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.43 ms +I, [2018-08-07T00:52:27.006473 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:28.551842 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.29 ms +I, [2018-08-07T00:52:28.551912 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:28.552295 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-08-07T00:52:28.552342 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:28.552675 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T00:52:28.552726 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:28.553053 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T00:52:28.553104 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:28.553445 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T00:52:28.553490 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:28.553971 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T00:52:28.554019 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:28.554532 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T00:52:28.554590 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:28.555014 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T00:52:28.555071 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:28.555616 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T00:52:28.555671 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:28.556596 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.68 ms +I, [2018-08-07T00:52:28.557003 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:28.557454 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T00:52:28.557521 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:28.557778 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T00:52:28.557825 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:28.562139 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.34 ms +I, [2018-08-07T00:52:28.562197 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:28.562687 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.3 ms +I, [2018-08-07T00:52:28.562790 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:28.567628 #6] INFO -- : Inline processing of topic course_change with 1 messages took 4.57 ms +I, [2018-08-07T00:52:28.567919 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:28.568691 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.41 ms +I, [2018-08-07T00:52:28.568856 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:28.569639 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.5 ms +I, [2018-08-07T00:52:28.569771 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:29.007688 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.51 ms +I, [2018-08-07T00:52:29.007794 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:29.008605 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.6 ms +I, [2018-08-07T00:52:29.008661 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:29.009041 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T00:52:29.009130 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:29.009839 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.45 ms +I, [2018-08-07T00:52:29.010128 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:29.010561 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T00:52:29.010605 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:29.011046 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T00:52:29.011099 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:29.011487 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T00:52:29.011535 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:29.011833 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T00:52:29.011880 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:29.012273 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T00:52:29.012332 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:29.012903 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T00:52:29.012947 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:29.013260 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T00:52:29.014320 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:29.014999 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-08-07T00:52:29.015145 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:29.021504 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T00:52:29.021549 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:29.025482 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T00:52:29.025587 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:29.027226 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-08-07T00:52:29.027305 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:29.030638 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.47 ms +I, [2018-08-07T00:52:29.030722 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:29.031423 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T00:52:29.031481 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:29.037280 #6] INFO -- : Inline processing of topic section_change with 1 messages took 5.55 ms +I, [2018-08-07T00:52:29.037353 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:29.037836 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T00:52:29.037884 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:29.038264 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T00:52:29.038312 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:29.038689 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T00:52:29.038741 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:29.038987 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T00:52:29.039053 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:29.039261 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T00:52:29.039300 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:29.039578 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T00:52:29.039608 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:29.039840 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-08-07T00:52:29.039884 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:29.040341 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T00:52:29.040408 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:30.573962 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.27 ms +I, [2018-08-07T00:52:30.574034 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:30.574322 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T00:52:30.574364 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:30.574635 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T00:52:30.574666 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:30.575014 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T00:52:30.575054 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:30.575515 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T00:52:30.575564 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:30.575905 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T00:52:30.576541 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:30.577134 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-08-07T00:52:30.577166 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:31.007734 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T00:52:31.007787 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:31.007994 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T00:52:31.008052 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:31.008268 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T00:52:31.008298 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:31.008525 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T00:52:31.008554 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:31.008762 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T00:52:31.008791 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:31.009006 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T00:52:31.009035 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:31.009246 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T00:52:31.009275 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:31.009531 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T00:52:31.009576 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:31.009946 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T00:52:31.009979 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:31.010202 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T00:52:31.010231 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:31.010437 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T00:52:31.010465 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:31.010677 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-08-07T00:52:31.010705 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:31.010914 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-08-07T00:52:31.010942 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:31.011154 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-08-07T00:52:31.011206 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:31.014083 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T00:52:31.014157 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:31.014399 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T00:52:31.014429 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:31.014642 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T00:52:31.014671 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:31.014885 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T00:52:31.014914 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:31.015128 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T00:52:31.015156 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:31.015363 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T00:52:31.015392 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:31.015601 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T00:52:31.015630 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:31.015832 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T00:52:31.015883 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:31.016088 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T00:52:31.016117 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:31.016324 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T00:52:31.016352 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:31.016559 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T00:52:31.016588 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:31.016784 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T00:52:31.016812 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:31.017003 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T00:52:31.017031 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:31.017279 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T00:52:31.017312 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:31.017668 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T00:52:31.017822 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:31.018171 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T00:52:31.018283 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:31.027135 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T00:52:31.027180 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:31.027408 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T00:52:31.027441 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:31.027667 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T00:52:31.027696 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:31.027927 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T00:52:31.027955 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:31.028176 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T00:52:31.028204 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:31.028418 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T00:52:31.028449 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:32.544590 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.27 ms +I, [2018-08-07T00:52:32.544661 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:32.545027 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T00:52:32.545088 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:32.545412 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T00:52:32.545460 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:32.545765 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T00:52:32.545809 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:32.546207 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T00:52:32.548188 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:32.548691 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-08-07T00:52:32.548744 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:32.549100 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T00:52:32.549145 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:33.029546 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T00:52:33.029602 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:33.032138 #6] INFO -- : Inline processing of topic section_change with 1 messages took 2.15 ms +I, [2018-08-07T00:52:33.032248 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:33.033741 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T00:52:33.033811 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:33.034139 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T00:52:33.034173 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:33.034426 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T00:52:33.034455 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:33.034737 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T00:52:33.035208 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:33.035711 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T00:52:33.035780 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:33.036213 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T00:52:33.037115 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:33.037725 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T00:52:33.037781 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:33.038435 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-08-07T00:52:33.038788 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:33.039465 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T00:52:33.040664 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:34.553357 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.81 ms +I, [2018-08-07T00:52:34.553434 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:34.553988 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.27 ms +I, [2018-08-07T00:52:34.554080 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:34.554538 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-08-07T00:52:34.554597 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:34.554930 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T00:52:34.554968 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:34.555281 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T00:52:34.555320 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:34.555708 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-08-07T00:52:34.555767 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:34.556144 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T00:52:34.556177 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:34.556437 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-08-07T00:52:34.556639 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:34.556996 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T00:52:34.557031 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:34.557402 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-08-07T00:52:34.557425 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:35.043554 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T00:52:35.043622 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:35.044019 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T00:52:35.044070 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:35.044597 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T00:52:35.044650 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:35.045015 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T00:52:35.045059 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:35.045562 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T00:52:35.045621 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:35.045984 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T00:52:35.046059 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:35.046409 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T00:52:35.046457 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:35.046805 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T00:52:35.046854 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:35.047290 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T00:52:35.047336 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:35.048059 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.45 ms +I, [2018-08-07T00:52:35.048118 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:35.051786 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T00:52:35.052622 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:35.053209 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-08-07T00:52:35.053263 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:35.056556 #6] INFO -- : Inline processing of topic section_change with 1 messages took 2.98 ms +I, [2018-08-07T00:52:35.056840 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:36.558173 #6] INFO -- : Committing offsets: course_change/0:232 +I, [2018-08-07T00:52:36.568889 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-08-07T00:52:36.568937 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:36.569259 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-08-07T00:52:36.569304 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:36.569799 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-08-07T00:52:36.569955 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:36.570329 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T00:52:36.570377 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:36.570719 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T00:52:36.570762 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:36.571225 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T00:52:36.571302 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:36.571605 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T00:52:36.571640 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:36.571932 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T00:52:36.571977 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:36.572289 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T00:52:36.572331 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:36.572574 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-08-07T00:52:36.576175 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:36.577154 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T00:52:36.577206 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:36.577534 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T00:52:36.577616 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:37.057517 #6] INFO -- : Committing offsets: section_change/0:407 +I, [2018-08-07T00:52:37.068183 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.86 ms +I, [2018-08-07T00:52:37.068277 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:37.070374 #6] INFO -- : Inline processing of topic section_change with 1 messages took 1.33 ms +I, [2018-08-07T00:52:37.070426 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:37.070735 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T00:52:37.070767 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:37.071679 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.71 ms +I, [2018-08-07T00:52:37.071803 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:37.072418 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.45 ms +I, [2018-08-07T00:52:37.072626 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:37.073920 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T00:52:37.073993 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:37.074318 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T00:52:37.074349 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:37.075481 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.55 ms +I, [2018-08-07T00:52:37.075550 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:37.075975 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T00:52:37.076022 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:37.076392 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T00:52:37.076465 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:38.578714 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-08-07T00:52:38.578808 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:38.579118 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T00:52:38.579149 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:38.579634 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T00:52:38.579668 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:38.579894 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T00:52:38.579923 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:38.580187 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T00:52:38.580217 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:38.580429 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T00:52:38.580458 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:39.078474 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.41 ms +I, [2018-08-07T00:52:39.078534 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:39.079038 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T00:52:39.079097 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:39.079585 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T00:52:39.079623 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:39.079896 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T00:52:39.079927 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:39.080165 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T00:52:39.080295 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:39.080710 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T00:52:39.080771 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:39.081007 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T00:52:39.081035 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:39.081252 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T00:52:39.081280 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:39.081505 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-08-07T00:52:39.081533 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:39.081737 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T00:52:39.081768 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:39.082153 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T00:52:39.082186 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:39.082403 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T00:52:39.082432 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:39.082638 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-08-07T00:52:39.082685 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:39.082886 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-08-07T00:52:39.082922 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:39.083124 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T00:52:39.083150 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:39.085012 #6] INFO -- : Inline processing of topic section_change with 1 messages took 1.72 ms +I, [2018-08-07T00:52:39.085083 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:39.085377 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T00:52:39.085408 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:39.085631 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T00:52:39.087042 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:39.087469 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T00:52:39.087507 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:39.089400 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T00:52:39.089465 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:39.089812 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T00:52:39.089860 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:39.090250 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T00:52:39.090295 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:39.090644 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T00:52:39.090691 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:39.091059 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T00:52:39.091103 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:39.091357 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T00:52:39.092912 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:39.093700 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.59 ms +I, [2018-08-07T00:52:39.093764 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:39.094097 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T00:52:39.094130 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:39.094368 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T00:52:39.094399 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:39.094686 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T00:52:39.094736 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:39.098611 #6] INFO -- : Inline processing of topic section_change with 1 messages took 3.57 ms +I, [2018-08-07T00:52:39.098685 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:39.098997 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T00:52:39.099029 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:39.099259 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T00:52:39.099289 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:39.099505 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-08-07T00:52:39.099533 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:39.101895 #6] INFO -- : Inline processing of topic section_change with 1 messages took 2.18 ms +I, [2018-08-07T00:52:39.101971 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:39.102289 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T00:52:39.102323 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:39.102552 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T00:52:39.102581 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:39.102997 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T00:52:39.103335 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:39.103731 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T00:52:39.103785 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:39.105818 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T00:52:39.105859 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:39.106061 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-08-07T00:52:39.106116 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:39.106306 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-08-07T00:52:39.106359 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:39.106568 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T00:52:39.106597 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:39.106805 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T00:52:39.106834 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:39.108932 #6] INFO -- : Inline processing of topic section_change with 1 messages took 1.93 ms +I, [2018-08-07T00:52:39.109001 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:39.109312 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T00:52:39.109343 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:39.109546 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T00:52:39.109603 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:39.109790 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-08-07T00:52:39.109816 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:39.110047 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T00:52:39.110077 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:39.110294 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T00:52:39.110323 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:39.112857 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T00:52:39.112903 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:39.113213 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T00:52:39.114664 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:39.115286 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T00:52:39.115344 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:39.115760 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T00:52:39.115813 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:40.581513 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.23 ms +I, [2018-08-07T00:52:40.581647 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:40.584164 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T00:52:40.584227 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:40.584516 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T00:52:40.584548 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:41.117465 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-08-07T00:52:41.117762 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:41.118928 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.76 ms +I, [2018-08-07T00:52:41.119119 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:41.122317 #6] INFO -- : Inline processing of topic section_change with 1 messages took 1.71 ms +I, [2018-08-07T00:52:41.122387 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:41.122865 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T00:52:41.122915 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:41.123332 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T00:52:41.124734 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:41.132456 #6] INFO -- : Inline processing of topic section_change with 1 messages took 5.12 ms +I, [2018-08-07T00:52:41.132573 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:41.133575 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-08-07T00:52:41.133675 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:41.135346 #6] INFO -- : Inline processing of topic section_change with 1 messages took 1.32 ms +I, [2018-08-07T00:52:41.135517 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:41.136083 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T00:52:41.136193 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:41.136958 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.42 ms +I, [2018-08-07T00:52:41.137035 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:41.137346 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T00:52:41.137380 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:42.586178 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.31 ms +I, [2018-08-07T00:52:42.586248 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:42.586837 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T00:52:42.586885 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:42.587573 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-08-07T00:52:42.587639 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:42.588222 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.37 ms +I, [2018-08-07T00:52:42.588280 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:43.138296 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T00:52:43.138346 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:43.139224 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T00:52:43.139266 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:43.139539 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T00:52:43.139570 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:43.140642 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.78 ms +I, [2018-08-07T00:52:43.140701 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:43.141305 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T00:52:43.141456 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:43.142120 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T00:52:43.142163 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:43.142438 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T00:52:43.142470 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:43.142733 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T00:52:43.142764 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:43.142952 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-08-07T00:52:43.142982 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:43.143219 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-08-07T00:52:43.143310 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:43.143846 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T00:52:43.143884 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:44.592179 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.29 ms +I, [2018-08-07T00:52:44.592228 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:44.592532 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T00:52:44.592563 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:44.592789 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T00:52:44.592819 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:44.593051 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T00:52:44.593081 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:44.593508 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T00:52:44.593662 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:44.593889 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-08-07T00:52:44.593919 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:44.594171 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T00:52:44.594201 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:44.594413 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T00:52:44.594441 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:44.594643 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T00:52:44.595695 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:44.596109 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-08-07T00:52:44.596153 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:44.596443 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T00:52:44.596481 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:44.596747 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T00:52:44.596785 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:44.597009 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T00:52:44.597039 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:45.153189 #6] INFO -- : Inline processing of topic section_change with 1 messages took 3.57 ms +I, [2018-08-07T00:52:45.153281 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:45.153609 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T00:52:45.153639 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:45.153903 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T00:52:45.153933 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:45.154184 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T00:52:45.154237 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:45.154514 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T00:52:45.154553 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:45.154925 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T00:52:45.154970 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:45.155205 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T00:52:45.155234 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:45.155462 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T00:52:45.155491 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:45.156100 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.5 ms +I, [2018-08-07T00:52:45.156135 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:45.156365 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T00:52:45.156418 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:45.156639 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T00:52:45.156669 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:45.156914 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T00:52:45.156944 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:45.157177 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T00:52:45.157205 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:46.598395 #6] INFO -- : Committing offsets: course_change/0:270 +I, [2018-08-07T00:52:46.603246 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T00:52:46.603290 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:46.603648 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T00:52:46.604447 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:46.604688 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T00:52:46.604732 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:46.604946 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T00:52:46.604975 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:46.605183 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T00:52:46.605211 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:46.605420 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T00:52:46.607808 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:46.608317 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.23 ms +I, [2018-08-07T00:52:46.608369 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:46.608852 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.23 ms +I, [2018-08-07T00:52:46.608902 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:46.610053 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.79 ms +I, [2018-08-07T00:52:46.610131 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:46.611093 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.5 ms +I, [2018-08-07T00:52:46.611136 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:46.611463 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T00:52:46.611530 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:46.611906 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-08-07T00:52:46.611976 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:46.612244 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T00:52:46.612274 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:46.612500 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T00:52:46.612529 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:46.612745 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T00:52:46.612774 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:46.612991 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T00:52:46.613020 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:46.613202 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T00:52:46.613255 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:46.613438 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T00:52:46.613466 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:46.613816 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T00:52:46.613845 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:47.158420 #6] INFO -- : Committing offsets: section_change/0:505 +I, [2018-08-07T00:52:47.164906 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T00:52:47.164952 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:47.165200 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T00:52:47.165230 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:47.165459 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T00:52:47.165488 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:47.165706 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T00:52:47.165735 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:47.165944 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T00:52:47.165973 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:47.166214 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T00:52:47.166243 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:47.166460 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T00:52:47.166489 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:47.166746 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T00:52:47.166775 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:47.167008 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T00:52:47.167038 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:47.167275 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T00:52:47.167330 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:47.167566 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T00:52:47.167595 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:47.167813 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T00:52:47.167842 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:47.168051 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T00:52:47.168080 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:47.168309 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T00:52:47.168337 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:47.168561 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T00:52:47.168589 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:47.168797 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-08-07T00:52:47.168825 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:47.169048 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T00:52:47.169075 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:47.169290 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T00:52:47.169318 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:47.173806 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T00:52:47.173852 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:47.174110 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T00:52:47.174140 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:47.174349 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T00:52:47.174377 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:47.174591 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-08-07T00:52:47.174619 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:47.174823 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T00:52:47.174852 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:47.175161 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T00:52:47.175237 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:47.175521 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T00:52:47.175568 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:47.175903 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T00:52:47.175945 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:47.176179 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T00:52:47.176209 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:47.176429 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-08-07T00:52:47.176457 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:47.176687 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T00:52:47.176715 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:47.176924 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T00:52:47.176952 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:47.177162 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T00:52:47.177190 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:47.177400 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T00:52:47.177429 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:47.177642 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T00:52:47.177671 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:47.177865 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T00:52:47.177893 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:47.178094 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-08-07T00:52:47.178122 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:47.178323 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-08-07T00:52:47.178374 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:48.631186 #6] INFO -- : Inline processing of topic course_change with 1 messages took 2.59 ms +I, [2018-08-07T00:52:48.631262 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:48.631686 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T00:52:48.631732 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:48.632084 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T00:52:48.632989 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:48.633414 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-08-07T00:52:48.633460 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:48.633794 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T00:52:48.633849 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:48.634622 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-08-07T00:52:48.634672 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:48.635029 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T00:52:48.635073 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:48.635666 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T00:52:48.635715 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:48.636050 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T00:52:48.637167 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:48.643415 #6] INFO -- : Inline processing of topic course_change with 1 messages took 3.81 ms +I, [2018-08-07T00:52:48.643545 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:49.191654 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T00:52:49.191705 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:49.191979 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T00:52:49.192017 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:49.192549 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-08-07T00:52:49.192613 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:49.193034 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T00:52:49.200499 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:49.201027 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T00:52:49.201072 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:49.201552 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T00:52:49.201597 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:49.201967 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T00:52:49.202166 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:49.202633 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T00:52:49.202671 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:49.202977 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T00:52:49.203020 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:49.204370 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T00:52:49.204413 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:49.204665 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T00:52:49.204696 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:49.204931 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T00:52:49.204960 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:49.205199 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T00:52:49.205230 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:49.205482 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T00:52:49.205512 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:50.644572 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.25 ms +I, [2018-08-07T00:52:50.644632 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:50.644880 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T00:52:50.644911 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:50.645139 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T00:52:50.645168 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:50.645403 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T00:52:50.645439 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:50.645891 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.33 ms +I, [2018-08-07T00:52:50.645924 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:50.646226 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T00:52:50.646272 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:50.646714 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.25 ms +I, [2018-08-07T00:52:50.646767 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:51.209546 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-08-07T00:52:51.209598 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:51.216656 #6] INFO -- : Inline processing of topic section_change with 1 messages took 6.89 ms +I, [2018-08-07T00:52:51.216715 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:51.219523 #6] INFO -- : Inline processing of topic section_change with 1 messages took 2.55 ms +I, [2018-08-07T00:52:51.219595 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:51.219946 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T00:52:51.220078 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:51.220334 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T00:52:51.220364 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:51.220739 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T00:52:51.222590 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:51.222984 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T00:52:51.223018 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:51.223293 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T00:52:51.223325 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:51.223597 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T00:52:51.223628 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:51.224616 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.87 ms +I, [2018-08-07T00:52:51.224661 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:51.224972 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T00:52:51.225003 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:52.647530 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.23 ms +I, [2018-08-07T00:52:52.647578 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:52.648502 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.77 ms +I, [2018-08-07T00:52:52.648688 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:52.649246 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.29 ms +I, [2018-08-07T00:52:52.649333 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:52.651356 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T00:52:52.651397 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:52.651619 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T00:52:52.651649 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:52.651882 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T00:52:52.651911 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:52.652123 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T00:52:52.652152 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:52.652376 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T00:52:52.652405 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:52.652608 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T00:52:52.652636 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:52.652874 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T00:52:52.652904 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:52.653144 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T00:52:52.653173 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:52.653391 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T00:52:52.653419 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:52.653621 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T00:52:52.653649 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:52.653858 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T00:52:52.653892 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:52.654157 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T00:52:52.654187 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:53.226078 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.42 ms +I, [2018-08-07T00:52:53.226141 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:53.226812 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.46 ms +I, [2018-08-07T00:52:53.226914 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:53.227490 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T00:52:53.227549 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:53.227874 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T00:52:53.227933 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:53.228290 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T00:52:53.228336 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:53.230885 #6] INFO -- : Inline processing of topic section_change with 1 messages took 2.4 ms +I, [2018-08-07T00:52:53.230933 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:53.231248 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T00:52:53.231279 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:53.231515 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T00:52:53.231543 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:53.231767 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T00:52:53.231795 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:53.231994 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T00:52:53.232023 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:53.232247 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T00:52:53.232276 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:53.232481 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T00:52:53.232509 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:53.232734 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T00:52:53.232762 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:53.232997 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T00:52:53.233026 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:53.233244 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-08-07T00:52:53.233273 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:53.233498 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T00:52:53.233526 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:53.242618 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.4 ms +I, [2018-08-07T00:52:53.242874 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:53.243481 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-08-07T00:52:53.243550 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:53.244113 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T00:52:53.244332 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:53.245002 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T00:52:53.252022 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:53.252819 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.56 ms +I, [2018-08-07T00:52:53.255012 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:53.256076 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.75 ms +I, [2018-08-07T00:52:53.257673 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:53.259203 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.89 ms +I, [2018-08-07T00:52:53.261119 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:53.263565 #6] INFO -- : Inline processing of topic section_change with 1 messages took 2.03 ms +I, [2018-08-07T00:52:53.263645 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:53.265355 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T00:52:53.265399 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:53.266888 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.92 ms +I, [2018-08-07T00:52:53.266931 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:53.267214 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T00:52:53.267245 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:53.267471 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T00:52:53.267501 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:53.267729 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T00:52:53.267758 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:53.267980 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T00:52:53.268009 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:53.268249 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T00:52:53.268278 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:53.268513 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T00:52:53.268542 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:53.268767 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T00:52:53.268796 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:53.268985 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-08-07T00:52:53.269051 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:53.269237 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-08-07T00:52:53.269265 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:53.269538 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-08-07T00:52:53.269590 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:53.270081 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T00:52:53.270379 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:53.271099 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T00:52:53.271159 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:53.271807 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-08-07T00:52:53.271860 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:53.272252 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T00:52:53.272300 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:53.272746 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T00:52:53.272783 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:53.273034 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T00:52:53.273064 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:53.273651 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.45 ms +I, [2018-08-07T00:52:53.273713 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:53.274261 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T00:52:53.274387 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:53.274981 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T00:52:53.275019 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:53.275736 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-08-07T00:52:53.275785 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:53.276491 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T00:52:53.276550 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:54.658729 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-08-07T00:52:54.658782 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:54.659063 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T00:52:54.659130 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:54.659348 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-08-07T00:52:54.659412 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:54.659626 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-08-07T00:52:54.659679 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:54.662044 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T00:52:54.662088 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:54.662354 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T00:52:54.664057 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:54.664542 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-08-07T00:52:54.664588 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:54.664860 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T00:52:54.664892 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:54.665124 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-08-07T00:52:54.665151 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:54.665386 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-08-07T00:52:54.665420 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:54.665653 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-08-07T00:52:54.665710 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:54.665944 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T00:52:54.665977 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:55.279802 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T00:52:55.279848 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:55.280104 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T00:52:55.280134 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:55.280370 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T00:52:55.280400 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:55.280703 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T00:52:55.280747 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:55.281014 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T00:52:55.281044 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:55.281310 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T00:52:55.281345 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:55.281579 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T00:52:55.281627 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:55.281847 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T00:52:55.281875 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:55.282115 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T00:52:55.282144 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:55.282381 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T00:52:55.282409 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:55.282632 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T00:52:55.282672 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:55.282900 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T00:52:55.282968 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:55.283328 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T00:52:55.283367 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:55.283600 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T00:52:55.283629 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:55.283868 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T00:52:55.283910 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:55.284118 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T00:52:55.284151 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:55.284394 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T00:52:55.284427 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:56.666676 #6] INFO -- : Committing offsets: course_change/0:333 +I, [2018-08-07T00:52:56.669742 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.26 ms +I, [2018-08-07T00:52:56.669803 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:56.670191 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T00:52:56.670226 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:56.670460 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T00:52:56.670490 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:56.670707 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T00:52:56.670737 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:56.670951 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T00:52:56.670980 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:56.671190 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T00:52:56.671219 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:56.673526 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.93 ms +I, [2018-08-07T00:52:56.673610 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:56.674035 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-08-07T00:52:56.674079 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:56.674399 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T00:52:56.674439 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:56.674813 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.23 ms +I, [2018-08-07T00:52:56.674853 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:56.675151 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T00:52:56.675261 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:56.675910 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-08-07T00:52:56.675959 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:56.676244 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T00:52:56.676759 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:56.677393 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-08-07T00:52:56.677444 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:56.677791 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T00:52:56.677831 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:56.678140 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T00:52:56.678189 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:56.678624 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T00:52:56.678667 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:57.285033 #6] INFO -- : Committing offsets: section_change/0:630 +I, [2018-08-07T00:52:57.287872 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T00:52:57.287919 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:57.288201 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T00:52:57.288232 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:57.288502 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T00:52:57.288533 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:57.288792 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T00:52:57.288827 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:57.289255 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T00:52:57.289316 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:57.289700 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T00:52:57.289740 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:57.290072 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T00:52:57.290229 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:57.290593 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T00:52:57.290626 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:57.290933 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T00:52:57.290975 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:57.291224 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T00:52:57.291254 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:57.291476 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T00:52:57.291505 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:57.291718 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T00:52:57.291747 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:57.291955 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-08-07T00:52:57.291983 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:57.292195 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-08-07T00:52:57.292272 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:57.292520 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T00:52:57.292570 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:57.292786 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T00:52:57.292819 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:57.293028 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T00:52:57.293057 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:57.293264 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T00:52:57.293293 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:57.293501 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T00:52:57.293529 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:57.293742 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T00:52:57.293770 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:57.294068 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T00:52:57.296202 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:57.296729 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T00:52:57.296799 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:57.297241 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T00:52:57.297323 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:57.297670 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T00:52:57.297720 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:57.297992 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T00:52:57.298022 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:57.298257 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T00:52:57.298287 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:57.298673 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T00:52:57.298713 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:57.299129 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T00:52:57.299187 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:57.299529 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T00:52:57.299562 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:57.299978 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T00:52:57.300011 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:57.300357 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T00:52:57.300393 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:57.300641 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T00:52:57.301639 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:57.302203 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T00:52:57.302257 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:57.302575 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T00:52:57.302630 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:57.303015 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T00:52:57.303142 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:57.303646 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-08-07T00:52:57.303713 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:57.304358 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-08-07T00:52:57.304447 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:57.304900 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T00:52:57.304970 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:57.305355 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T00:52:57.305398 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:58.680771 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.35 ms +I, [2018-08-07T00:52:58.680829 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:58.681212 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-08-07T00:52:58.681254 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:58.684176 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T00:52:58.684220 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:58.684812 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.28 ms +I, [2018-08-07T00:52:58.684950 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:58.685346 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T00:52:58.685395 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:58.685752 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-08-07T00:52:58.685801 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:58.686123 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T00:52:58.686170 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:58.686532 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T00:52:58.686580 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:58.686903 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T00:52:58.686948 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:52:59.306239 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T00:52:59.306288 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:59.306539 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T00:52:59.306568 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:59.306798 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T00:52:59.306826 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:59.307054 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T00:52:59.307082 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:59.309994 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T00:52:59.310374 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:59.310710 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T00:52:59.310742 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:59.310994 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T00:52:59.311024 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:59.311262 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T00:52:59.311292 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:59.311524 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T00:52:59.311553 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:59.311786 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T00:52:59.311856 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:59.312147 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T00:52:59.312259 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:59.312603 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T00:52:59.312653 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:59.313254 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T00:52:59.313308 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:59.315358 #6] INFO -- : Inline processing of topic section_change with 1 messages took 1.66 ms +I, [2018-08-07T00:52:59.315411 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:59.315835 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T00:52:59.315887 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:59.316553 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.44 ms +I, [2018-08-07T00:52:59.316611 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:59.317038 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T00:52:59.317129 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:59.317575 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T00:52:59.317621 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:59.317854 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T00:52:59.317883 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:59.318108 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T00:52:59.318167 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:59.321837 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.44 ms +I, [2018-08-07T00:52:59.322754 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:59.323469 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.47 ms +I, [2018-08-07T00:52:59.323532 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:52:59.325159 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T00:52:59.325228 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:53:00.688053 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-08-07T00:53:00.688102 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:53:00.688331 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T00:53:00.688361 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:53:00.688572 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T00:53:00.688635 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:53:00.688852 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T00:53:00.688881 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:53:00.689080 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T00:53:00.689108 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:53:00.689333 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T00:53:00.689361 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:53:00.689596 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T00:53:00.689625 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:53:00.689840 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T00:53:00.689868 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:53:00.690061 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-08-07T00:53:00.690089 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:53:00.690362 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T00:53:00.690394 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:53:00.690608 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T00:53:00.690655 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:53:01.287963 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-08-07T00:53:01.288029 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:53:01.288447 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T00:53:01.290530 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:53:01.290935 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T00:53:01.290969 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:53:01.291219 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T00:53:01.291249 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:53:01.291653 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T00:53:01.291704 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:53:01.292056 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T00:53:01.292100 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:53:01.292436 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T00:53:01.292503 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:53:01.292847 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T00:53:01.292893 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:53:01.293279 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T00:53:01.293338 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:53:01.293721 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T00:53:01.293771 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:53:01.294142 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T00:53:01.294192 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:53:01.294589 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T00:53:01.294639 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:53:01.295012 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T00:53:01.295065 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:53:01.295427 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T00:53:01.295481 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:53:01.295861 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T00:53:01.295922 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:53:01.297222 #6] INFO -- : Inline processing of topic section_change with 1 messages took 1.09 ms +I, [2018-08-07T00:53:01.297271 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:53:01.297626 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T00:53:01.297673 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:53:01.297992 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T00:53:01.298025 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:53:01.298243 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T00:53:01.298272 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:53:01.298477 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T00:53:01.298506 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:53:01.298746 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T00:53:01.298775 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:53:01.299004 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T00:53:01.299056 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:53:01.299280 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T00:53:01.299899 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:53:01.303900 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.63 ms +I, [2018-08-07T00:53:01.303989 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:53:01.304481 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T00:53:01.304580 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:53:01.307851 #6] INFO -- : Inline processing of topic section_change with 1 messages took 2.39 ms +I, [2018-08-07T00:53:01.307925 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:53:01.308229 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T00:53:01.308261 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:53:01.308521 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T00:53:01.308551 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:53:01.311352 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-08-07T00:53:01.311418 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:53:01.311866 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T00:53:01.311912 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:53:02.651767 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.32 ms +I, [2018-08-07T00:53:02.651834 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:53:02.652197 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T00:53:02.652240 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:53:02.652544 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T00:53:02.652585 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:53:02.652901 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T00:53:02.652982 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:53:02.653256 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T00:53:02.653297 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:53:02.653603 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T00:53:02.653645 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:53:02.654257 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.34 ms +I, [2018-08-07T00:53:02.654387 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:53:02.655187 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.38 ms +I, [2018-08-07T00:53:02.655297 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:53:02.656025 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.34 ms +I, [2018-08-07T00:53:02.656177 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:53:02.660861 #6] INFO -- : Inline processing of topic course_change with 1 messages took 3.36 ms +I, [2018-08-07T00:53:02.660970 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:53:02.661510 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.26 ms +I, [2018-08-07T00:53:02.661891 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:53:03.313596 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T00:53:03.314135 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:53:03.314604 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T00:53:03.314655 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:53:03.315057 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T00:53:03.315107 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:53:03.315466 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T00:53:03.315509 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:53:03.315839 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T00:53:03.315881 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:53:03.316433 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-08-07T00:53:03.316493 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:53:03.316984 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T00:53:03.317032 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:53:03.317419 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T00:53:03.317503 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:53:03.317904 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T00:53:03.317952 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:53:04.666439 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-08-07T00:53:04.666491 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:53:04.666758 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T00:53:04.666793 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:53:04.667038 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T00:53:04.667071 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:53:04.667309 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T00:53:04.667342 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:53:04.667591 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T00:53:04.667624 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:53:04.667856 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T00:53:04.667888 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:53:04.668126 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T00:53:04.668158 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:53:04.668396 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T00:53:04.668428 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:53:05.319637 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T00:53:05.319716 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:53:05.321207 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T00:53:05.321255 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:53:05.321707 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T00:53:05.321751 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:53:05.322014 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T00:53:05.322044 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:53:05.322257 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T00:53:05.322290 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:53:05.322726 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-08-07T00:53:05.322762 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:53:05.323006 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T00:53:05.324248 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:53:05.324893 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T00:53:05.324930 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:53:05.325159 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T00:53:05.325189 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:53:05.325411 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T00:53:05.325440 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:53:05.325650 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T00:53:05.325679 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:53:05.325899 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T00:53:05.325927 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:53:05.326368 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T00:53:05.326450 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:53:05.327022 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-08-07T00:53:05.327104 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:53:05.327595 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T00:53:05.327662 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:53:05.329680 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.41 ms +I, [2018-08-07T00:53:05.329783 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:53:05.330445 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-08-07T00:53:05.330507 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:53:05.332592 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T00:53:05.332725 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:53:06.716466 #6] INFO -- : Committing offsets: course_change/0:389 +I, [2018-08-07T00:53:07.334124 #6] INFO -- : Committing offsets: section_change/0:749 +I, [2018-08-07T00:53:07.359992 #6] INFO -- : Inline processing of topic section_change with 1 messages took 1.32 ms +I, [2018-08-07T00:53:07.360069 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:53:07.363248 #6] INFO -- : Inline processing of topic section_change with 1 messages took 1.15 ms +I, [2018-08-07T00:53:07.363377 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:53:08.922318 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.24 ms +I, [2018-08-07T00:53:08.922389 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:53:10.868989 #6] INFO -- : Inline processing of topic section_change with 1 messages took 345.18 ms +I, [2018-08-07T00:53:10.869544 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:53:10.883625 #6] INFO -- : Inline processing of topic section_change with 1 messages took 1.66 ms +I, [2018-08-07T00:53:10.883807 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:53:10.884906 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.72 ms +I, [2018-08-07T00:53:10.884980 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:53:13.587642 #6] INFO -- : Inline processing of topic section_change with 1 messages took 4.16 ms +I, [2018-08-07T00:53:13.588107 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:53:13.591031 #6] INFO -- : Inline processing of topic section_change with 1 messages took 2.28 ms +I, [2018-08-07T00:53:13.591176 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:53:13.593028 #6] INFO -- : Inline processing of topic section_change with 1 messages took 1.51 ms +I, [2018-08-07T00:53:13.593129 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:53:13.594022 #6] INFO -- : Inline processing of topic course_change with 1 messages took 624.31 ms +I, [2018-08-07T00:53:13.594092 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:53:16.818954 #6] INFO -- : Inline processing of topic section_change with 1 messages took 8.24 ms +I, [2018-08-07T00:53:16.819077 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:53:17.131614 #6] INFO -- : Committing offsets: course_change/0:391 +I, [2018-08-07T00:53:19.033049 #6] INFO -- : Committing offsets: section_change/0:758 +I, [2018-08-07T00:53:26.843912 #6] INFO -- : Inline processing of topic section_change with 1 messages took 17.45 ms +I, [2018-08-07T00:53:26.844860 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:53:29.086915 #6] INFO -- : Inline processing of topic section_change with 1 messages took 1.29 ms +I, [2018-08-07T00:53:29.087005 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:53:29.102118 #6] INFO -- : Committing offsets: course_change/0:391 +I, [2018-08-07T00:53:31.071612 #6] INFO -- : Inline processing of topic section_change with 1 messages took 1.72 ms +I, [2018-08-07T00:53:31.072006 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:53:33.073790 #6] INFO -- : Committing offsets: section_change/0:761 +I, [2018-08-07T00:53:41.168195 #6] INFO -- : Committing offsets: course_change/0:391 +I, [2018-08-07T00:53:46.279487 #6] INFO -- : Committing offsets: section_change/0:761 +I, [2018-08-07T00:53:46.289472 #6] INFO -- : Inline processing of topic section_change with 1 messages took 3.2 ms +I, [2018-08-07T00:53:46.289585 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:53:48.312195 #6] INFO -- : Inline processing of topic section_change with 1 messages took 13.98 ms +I, [2018-08-07T00:53:48.312304 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:53:50.316900 #6] INFO -- : Inline processing of topic section_change with 1 messages took 3.25 ms +I, [2018-08-07T00:53:50.319907 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:53:50.323369 #6] INFO -- : Inline processing of topic section_change with 1 messages took 2.39 ms +I, [2018-08-07T00:53:50.327024 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:53:50.330592 #6] INFO -- : Inline processing of topic section_change with 1 messages took 3.05 ms +I, [2018-08-07T00:53:50.330903 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:53:51.823439 #6] INFO -- : Committing offsets: course_change/0:391 +I, [2018-08-07T00:53:52.368822 #6] INFO -- : Inline processing of topic section_change with 1 messages took 3.9 ms +I, [2018-08-07T00:53:52.368936 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:53:52.370687 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.6 ms +I, [2018-08-07T00:53:52.370760 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:53:54.419748 #6] INFO -- : Inline processing of topic section_change with 1 messages took 14.04 ms +I, [2018-08-07T00:53:54.421364 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:53:54.423708 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.84 ms +I, [2018-08-07T00:53:54.423935 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:53:56.022735 #6] INFO -- : Inline processing of topic course_change with 1 messages took 52.58 ms +I, [2018-08-07T00:53:56.022866 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:53:56.426316 #6] INFO -- : Committing offsets: section_change/0:770 +I, [2018-08-07T00:53:56.594593 #6] INFO -- : Inline processing of topic section_change with 1 messages took 12.63 ms +I, [2018-08-07T00:53:56.594687 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:53:56.599575 #6] INFO -- : Inline processing of topic section_change with 1 messages took 4.26 ms +I, [2018-08-07T00:53:56.601025 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:53:58.799821 #6] INFO -- : Inline processing of topic section_change with 1 messages took 2.02 ms +I, [2018-08-07T00:53:58.800230 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:54:02.385562 #6] INFO -- : Committing offsets: course_change/0:392 +I, [2018-08-07T00:54:02.879144 #6] INFO -- : Inline processing of topic section_change with 1 messages took 7.16 ms +I, [2018-08-07T00:54:02.879772 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:54:04.741425 #6] INFO -- : Inline processing of topic course_change with 1 messages took 37.93 ms +I, [2018-08-07T00:54:04.741512 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:54:04.888521 #6] INFO -- : Inline processing of topic section_change with 1 messages took 1.04 ms +I, [2018-08-07T00:54:04.888600 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:54:06.964402 #6] INFO -- : Committing offsets: section_change/0:775 +I, [2018-08-07T00:54:10.325054 #6] INFO -- : Inline processing of topic section_change with 1 messages took 137.44 ms +I, [2018-08-07T00:54:10.325154 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:54:12.512135 #6] INFO -- : Inline processing of topic section_change with 1 messages took 1.42 ms +I, [2018-08-07T00:54:12.512998 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:54:13.132114 #6] INFO -- : Committing offsets: course_change/0:393 +I, [2018-08-07T00:54:18.612144 #6] INFO -- : Committing offsets: section_change/0:777 +I, [2018-08-07T00:54:18.706260 #6] INFO -- : Inline processing of topic section_change with 1 messages took 7.31 ms +I, [2018-08-07T00:54:18.706390 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:54:21.261908 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.83 ms +I, [2018-08-07T00:54:21.414794 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:54:23.773989 #6] INFO -- : Inline processing of topic section_change with 1 messages took 2.19 ms +I, [2018-08-07T00:54:23.776164 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:54:25.778193 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.96 ms +I, [2018-08-07T00:54:25.778445 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:54:25.779486 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.49 ms +I, [2018-08-07T00:54:25.779551 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:54:26.343730 #6] INFO -- : Committing offsets: course_change/0:393 +I, [2018-08-07T00:54:26.370923 #6] INFO -- : Inline processing of topic course_change with 1 messages took 3.63 ms +I, [2018-08-07T00:54:26.371285 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:54:27.783128 #6] INFO -- : Inline processing of topic section_change with 1 messages took 1.64 ms +I, [2018-08-07T00:54:27.783236 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:54:27.784300 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.69 ms +I, [2018-08-07T00:54:27.784428 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:54:29.786871 #6] INFO -- : Committing offsets: section_change/0:784 +I, [2018-08-07T00:54:29.839955 #6] INFO -- : Inline processing of topic section_change with 1 messages took 20.45 ms +I, [2018-08-07T00:54:29.840201 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:54:31.868961 #6] INFO -- : Inline processing of topic section_change with 1 messages took 54.37 ms +I, [2018-08-07T00:54:31.871844 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:54:35.877311 #6] INFO -- : Inline processing of topic section_change with 1 messages took 2.14 ms +I, [2018-08-07T00:54:35.877729 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:54:35.881404 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-08-07T00:54:35.881521 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:54:35.883280 #6] INFO -- : Inline processing of topic section_change with 1 messages took 1.45 ms +I, [2018-08-07T00:54:35.883396 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:54:35.885480 #6] INFO -- : Inline processing of topic section_change with 1 messages took 1.77 ms +I, [2018-08-07T00:54:35.885548 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:54:36.478378 #6] INFO -- : Committing offsets: course_change/0:394 +I, [2018-08-07T00:54:36.648731 #6] INFO -- : Inline processing of topic course_change with 1 messages took 9.64 ms +I, [2018-08-07T00:54:36.648923 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:54:36.651274 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.52 ms +I, [2018-08-07T00:54:36.651328 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:54:36.652375 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.7 ms +I, [2018-08-07T00:54:36.652435 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:54:36.654618 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.63 ms +I, [2018-08-07T00:54:36.658877 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:54:37.892828 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-08-07T00:54:37.896663 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:54:37.902159 #6] INFO -- : Inline processing of topic section_change with 1 messages took 5.03 ms +I, [2018-08-07T00:54:37.902273 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:54:37.903096 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.52 ms +I, [2018-08-07T00:54:37.903151 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:54:38.661427 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.9 ms +I, [2018-08-07T00:54:38.661549 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:54:38.661910 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T00:54:38.662258 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:54:38.662558 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T00:54:38.662598 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:54:39.903718 #6] INFO -- : Committing offsets: section_change/0:793 +I, [2018-08-07T00:54:39.906863 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-08-07T00:54:39.906910 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:54:39.907295 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T00:54:39.907397 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:54:39.907856 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-08-07T00:54:39.907960 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:54:39.908589 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.48 ms +I, [2018-08-07T00:54:39.908631 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:54:39.909130 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-08-07T00:54:39.909168 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:54:39.909717 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T00:54:39.909803 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:54:40.664614 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.39 ms +I, [2018-08-07T00:54:40.664683 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:54:40.665724 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.23 ms +I, [2018-08-07T00:54:40.665781 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:54:40.666412 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T00:54:40.666719 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:54:40.667205 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-08-07T00:54:40.667243 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:54:40.667632 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.25 ms +I, [2018-08-07T00:54:40.667665 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:54:40.667921 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T00:54:40.667970 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:54:40.668470 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.36 ms +I, [2018-08-07T00:54:40.668521 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:54:41.919492 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-08-07T00:54:41.919551 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:54:41.920219 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.53 ms +I, [2018-08-07T00:54:41.920251 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:54:41.920536 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T00:54:41.920566 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:54:41.920881 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T00:54:41.920910 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:54:41.921275 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T00:54:41.921305 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:54:41.921595 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T00:54:41.921742 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:54:41.922137 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T00:54:41.922167 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:54:42.670962 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.55 ms +I, [2018-08-07T00:54:42.671130 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:54:42.671877 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.39 ms +I, [2018-08-07T00:54:42.671914 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:54:42.673897 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.99 ms +I, [2018-08-07T00:54:42.673959 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:54:43.924512 #6] INFO -- : Inline processing of topic section_change with 1 messages took 1.38 ms +I, [2018-08-07T00:54:43.924629 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:54:43.925616 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.57 ms +I, [2018-08-07T00:54:43.925793 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:54:43.926472 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.4 ms +I, [2018-08-07T00:54:43.926545 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:54:43.927185 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-08-07T00:54:43.927273 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:54:43.928621 #6] INFO -- : Inline processing of topic section_change with 1 messages took 1.0 ms +I, [2018-08-07T00:54:43.928707 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:54:43.929727 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.74 ms +I, [2018-08-07T00:54:43.930107 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:54:43.960887 #6] INFO -- : Inline processing of topic section_change with 1 messages took 29.65 ms +I, [2018-08-07T00:54:43.964401 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:54:44.678326 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.39 ms +I, [2018-08-07T00:54:44.678445 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:54:44.679344 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.66 ms +I, [2018-08-07T00:54:44.679406 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:54:44.680016 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.23 ms +I, [2018-08-07T00:54:44.680073 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:54:44.680428 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T00:54:44.680704 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:54:44.681073 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T00:54:44.681127 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:54:44.681534 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T00:54:44.681590 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:54:44.682021 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T00:54:44.682188 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:54:45.975567 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.83 ms +I, [2018-08-07T00:54:45.975703 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:54:45.977216 #6] INFO -- : Inline processing of topic section_change with 1 messages took 1.0 ms +I, [2018-08-07T00:54:45.977323 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:54:45.978038 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-08-07T00:54:45.978206 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:54:46.683961 #6] INFO -- : Committing offsets: course_change/0:418 +I, [2018-08-07T00:54:46.703045 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.4 ms +I, [2018-08-07T00:54:46.703223 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:54:46.724585 #6] INFO -- : Inline processing of topic course_change with 1 messages took 20.47 ms +I, [2018-08-07T00:54:46.724729 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:54:47.981859 #6] INFO -- : Inline processing of topic section_change with 1 messages took 1.86 ms +I, [2018-08-07T00:54:47.982080 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:54:48.750458 #6] INFO -- : Inline processing of topic course_change with 1 messages took 21.46 ms +I, [2018-08-07T00:54:48.750558 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:54:49.995036 #6] INFO -- : Committing offsets: section_change/0:817 +I, [2018-08-07T00:54:50.058957 #6] INFO -- : Inline processing of topic section_change with 1 messages took 1.27 ms +I, [2018-08-07T00:54:50.059385 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:54:50.062745 #6] INFO -- : Inline processing of topic section_change with 1 messages took 2.96 ms +I, [2018-08-07T00:54:50.063175 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:54:51.384357 #6] INFO -- : Inline processing of topic course_change with 1 messages took 3.84 ms +I, [2018-08-07T00:54:51.384692 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:54:51.387295 #6] INFO -- : Inline processing of topic course_change with 1 messages took 2.14 ms +I, [2018-08-07T00:54:51.387379 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:54:53.451256 #6] INFO -- : Inline processing of topic course_change with 1 messages took 4.11 ms +I, [2018-08-07T00:54:53.460466 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:54:54.408911 #6] INFO -- : Inline processing of topic section_change with 1 messages took 1.63 ms +I, [2018-08-07T00:54:54.409102 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:54:54.410566 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.8 ms +I, [2018-08-07T00:54:54.410693 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:54:54.412780 #6] INFO -- : Inline processing of topic section_change with 1 messages took 1.27 ms +I, [2018-08-07T00:54:54.413418 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:55:05.666190 #6] INFO -- : Committing offsets: course_change/0:424 +I, [2018-08-07T00:55:05.673720 #6] INFO -- : Committing offsets: section_change/0:822 +I, [2018-08-07T00:55:06.986912 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.68 ms +I, [2018-08-07T00:55:06.987484 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:55:07.361605 #6] INFO -- : Inline processing of topic course_change with 1 messages took 373.37 ms +I, [2018-08-07T00:55:07.363046 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:55:07.533415 #6] INFO -- : Inline processing of topic section_change with 1 messages took 1.03 ms +I, [2018-08-07T00:55:07.533691 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:55:07.622628 #6] INFO -- : Inline processing of topic course_change with 1 messages took 255.6 ms +I, [2018-08-07T00:55:07.622743 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:55:07.624718 #6] INFO -- : Inline processing of topic course_change with 1 messages took 1.14 ms +I, [2018-08-07T00:55:07.624791 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:55:07.738286 #6] INFO -- : Inline processing of topic section_change with 1 messages took 92.15 ms +I, [2018-08-07T00:55:07.738467 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:55:07.739925 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.48 ms +I, [2018-08-07T00:55:07.762987 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:55:09.735342 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.44 ms +I, [2018-08-07T00:55:09.735430 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:55:09.957695 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-08-07T00:55:09.957756 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:55:10.503894 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.34 ms +I, [2018-08-07T00:55:10.503965 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:55:11.022250 #6] INFO -- : Inline processing of topic section_change with 1 messages took 1063.8 ms +I, [2018-08-07T00:55:11.022458 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:55:11.026825 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-08-07T00:55:11.219354 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:55:12.724376 #6] INFO -- : Inline processing of topic course_change with 1 messages took 1.08 ms +I, [2018-08-07T00:55:12.792756 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:55:13.089830 #6] INFO -- : Inline processing of topic course_change with 1 messages took 26.47 ms +I, [2018-08-07T00:55:13.090858 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:55:13.434665 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.56 ms +I, [2018-08-07T00:55:13.434773 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:55:15.165612 #6] INFO -- : Inline processing of topic course_change with 1 messages took 1.7 ms +I, [2018-08-07T00:55:15.165825 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:55:17.201007 #6] INFO -- : Committing offsets: course_change/0:433 +I, [2018-08-07T00:55:17.720438 #6] INFO -- : Committing offsets: section_change/0:829 +I, [2018-08-07T00:55:21.621424 #6] INFO -- : Inline processing of topic section_change with 1 messages took 7.63 ms +I, [2018-08-07T00:55:21.645646 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:55:25.092633 #6] INFO -- : Inline processing of topic course_change with 1 messages took 13.0 ms +I, [2018-08-07T00:55:25.094263 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:55:29.140353 #6] INFO -- : Committing offsets: course_change/0:434 +I, [2018-08-07T00:55:31.139160 #6] INFO -- : Committing offsets: section_change/0:830 +I, [2018-08-07T00:55:31.926189 #6] INFO -- : Inline processing of topic course_change with 1 messages took 3.34 ms +I, [2018-08-07T00:55:31.927758 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:55:31.935326 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.47 ms +I, [2018-08-07T00:55:31.935401 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:55:38.478050 #6] INFO -- : Inline processing of topic course_change with 1 messages took 1400.05 ms +I, [2018-08-07T00:55:38.630025 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:55:38.622745 #6] INFO -- : Inline processing of topic section_change with 1 messages took 1294.83 ms +I, [2018-08-07T00:55:38.643436 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:55:38.651125 #6] INFO -- : Inline processing of topic section_change with 1 messages took 5.06 ms +I, [2018-08-07T00:55:38.651268 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:55:40.784780 #6] INFO -- : Committing offsets: course_change/0:436 +I, [2018-08-07T00:55:40.857506 #6] INFO -- : Inline processing of topic section_change with 1 messages took 7.05 ms +I, [2018-08-07T00:55:40.857594 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:55:42.953342 #6] INFO -- : Committing offsets: section_change/0:834 +I, [2018-08-07T00:55:44.949574 #6] INFO -- : Inline processing of topic course_change with 1 messages took 26.27 ms +I, [2018-08-07T00:55:44.949684 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:55:44.972113 #6] INFO -- : Inline processing of topic course_change with 1 messages took 1.48 ms +I, [2018-08-07T00:55:44.972293 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:55:47.003407 #6] INFO -- : Inline processing of topic section_change with 1 messages took 1.59 ms +I, [2018-08-07T00:55:47.003611 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:55:47.004547 #6] INFO -- : Inline processing of topic course_change with 1 messages took 29.05 ms +I, [2018-08-07T00:55:47.004645 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:55:49.015368 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.62 ms +I, [2018-08-07T00:55:49.015472 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:55:49.022411 #6] INFO -- : Inline processing of topic section_change with 1 messages took 4.67 ms +I, [2018-08-07T00:55:49.026697 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:55:49.027289 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-08-07T00:55:49.027337 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:55:49.028484 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T00:55:49.028543 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:55:49.042568 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T00:55:49.042638 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:55:49.044678 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T00:55:49.045398 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:55:49.047229 #6] INFO -- : Inline processing of topic section_change with 1 messages took 1.33 ms +I, [2018-08-07T00:55:49.047311 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:55:49.047880 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T00:55:49.047938 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:55:49.049998 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.77 ms +I, [2018-08-07T00:55:49.050070 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:55:53.119780 #6] INFO -- : Inline processing of topic section_change with 1 messages took 14.02 ms +I, [2018-08-07T00:55:53.121475 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:55:53.128299 #6] INFO -- : Inline processing of topic section_change with 1 messages took 2.66 ms +I, [2018-08-07T00:55:53.128471 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:55:53.130338 #6] INFO -- : Inline processing of topic section_change with 1 messages took 1.46 ms +I, [2018-08-07T00:55:53.130432 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:55:53.131696 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.86 ms +I, [2018-08-07T00:55:53.131765 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:55:53.133882 #6] INFO -- : Inline processing of topic section_change with 1 messages took 1.76 ms +I, [2018-08-07T00:55:53.133973 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:55:53.134894 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.64 ms +I, [2018-08-07T00:55:53.134954 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:55:53.136176 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T00:55:53.136241 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:55:53.137730 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.97 ms +I, [2018-08-07T00:55:53.137789 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:55:53.139488 #6] INFO -- : Inline processing of topic section_change with 1 messages took 1.35 ms +I, [2018-08-07T00:55:53.139553 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:55:53.143136 #6] INFO -- : Inline processing of topic section_change with 1 messages took 1.79 ms +I, [2018-08-07T00:55:53.167954 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:55:53.171251 #6] INFO -- : Inline processing of topic section_change with 1 messages took 2.8 ms +I, [2018-08-07T00:55:53.171339 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:55:53.172142 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.54 ms +I, [2018-08-07T00:55:53.172211 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:55:55.176682 #6] INFO -- : Committing offsets: course_change/0:439 +I, [2018-08-07T00:55:55.205826 #6] INFO -- : Committing offsets: section_change/0:856 +I, [2018-08-07T00:55:55.252273 #6] INFO -- : Inline processing of topic course_change with 1 messages took 1.02 ms +I, [2018-08-07T00:55:55.252441 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:55:55.256290 #6] INFO -- : Inline processing of topic section_change with 1 messages took 1.52 ms +I, [2018-08-07T00:55:55.256446 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:55:55.256986 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-08-07T00:55:55.257019 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:55:55.257710 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.51 ms +I, [2018-08-07T00:55:55.257743 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:55:55.260121 #6] INFO -- : Inline processing of topic section_change with 1 messages took 1.04 ms +I, [2018-08-07T00:55:55.263881 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:55:55.274354 #6] INFO -- : Inline processing of topic section_change with 1 messages took 8.51 ms +I, [2018-08-07T00:55:55.274430 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:55:55.275953 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.97 ms +I, [2018-08-07T00:55:55.276158 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:55:55.278500 #6] INFO -- : Inline processing of topic section_change with 1 messages took 1.75 ms +I, [2018-08-07T00:55:55.278571 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:55:55.288376 #6] INFO -- : Inline processing of topic section_change with 1 messages took 8.67 ms +I, [2018-08-07T00:55:55.307605 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:55:55.316824 #6] INFO -- : Inline processing of topic section_change with 1 messages took 5.01 ms +I, [2018-08-07T00:55:55.318493 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:55:55.319602 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.87 ms +I, [2018-08-07T00:55:55.319666 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:55:55.327874 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.41 ms +I, [2018-08-07T00:55:55.328019 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:55:55.331951 #6] INFO -- : Inline processing of topic section_change with 1 messages took 3.48 ms +I, [2018-08-07T00:55:55.332032 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:55:55.332806 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-08-07T00:55:55.332869 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:55:55.334195 #6] INFO -- : Inline processing of topic section_change with 1 messages took 1.11 ms +I, [2018-08-07T00:55:55.334256 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:55:55.334795 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T00:55:55.334840 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:55:55.335385 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-08-07T00:55:55.335429 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:55:55.346547 #6] INFO -- : Inline processing of topic section_change with 1 messages took 10.91 ms +I, [2018-08-07T00:55:55.346639 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:55:55.347095 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T00:55:55.347188 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:55:55.348563 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T00:55:55.348869 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:55:55.349155 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T00:55:55.349201 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:55:55.352238 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T00:55:55.352285 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:55:55.352699 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T00:55:55.352730 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:55:55.353000 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T00:55:55.353029 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:55:55.353931 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.71 ms +I, [2018-08-07T00:55:55.353996 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:55:55.354336 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T00:55:55.354369 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:55:55.354668 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T00:55:55.354713 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:55:55.355104 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T00:55:55.355141 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:55:55.355531 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T00:55:55.355564 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:55:55.355764 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T00:55:55.355794 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:55:55.356121 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T00:55:55.356182 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:55:55.356480 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T00:55:55.356510 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:55:55.356917 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T00:55:55.356961 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:55:57.253404 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.33 ms +I, [2018-08-07T00:55:57.253456 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:55:57.253725 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T00:55:57.253755 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:55:57.254066 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T00:55:57.254279 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:55:57.254473 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T00:55:57.254506 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:55:57.359495 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-08-07T00:55:57.359561 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:55:57.359874 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T00:55:57.360056 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:55:57.360471 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T00:55:57.360514 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:55:57.360917 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T00:55:57.360959 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:55:57.361349 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T00:55:57.361391 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:55:57.361831 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T00:55:57.361923 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:55:57.362475 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T00:55:57.362520 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:55:57.363398 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T00:55:57.363506 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:55:57.363809 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T00:55:57.363840 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:55:57.364068 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T00:55:57.364152 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:55:57.364711 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-08-07T00:55:57.364768 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:55:57.365254 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-08-07T00:55:57.365339 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:55:57.366818 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.97 ms +I, [2018-08-07T00:55:57.366888 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:55:57.367416 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-08-07T00:55:57.367523 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:55:57.367883 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T00:55:57.367929 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:55:57.368688 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T00:55:57.368878 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:55:57.369264 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T00:55:57.369319 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:55:57.369850 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T00:55:57.369902 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:55:57.370259 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T00:55:57.370308 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:55:57.370666 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T00:55:57.370715 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:55:57.371037 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T00:55:57.371085 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:55:57.371635 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T00:55:57.371688 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:55:57.372202 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-08-07T00:55:57.372246 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:55:57.372582 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T00:55:57.372628 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:55:57.373059 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T00:55:57.373113 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:55:57.373526 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T00:55:57.373609 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:55:57.373881 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T00:55:57.373950 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:55:57.374179 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T00:55:57.374209 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:55:57.374495 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T00:55:57.374536 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:55:57.374857 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T00:55:57.374899 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:55:57.375273 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T00:55:57.375319 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:55:57.375573 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T00:55:57.375610 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:55:59.263591 #6] INFO -- : Inline processing of topic course_change with 1 messages took 1.56 ms +I, [2018-08-07T00:55:59.264961 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:55:59.265859 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.47 ms +I, [2018-08-07T00:55:59.265918 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:55:59.376535 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T00:55:59.376598 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:55:59.376973 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T00:55:59.377127 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:55:59.377769 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.49 ms +I, [2018-08-07T00:55:59.377835 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:55:59.378421 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-08-07T00:55:59.378469 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:56:01.267935 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.27 ms +I, [2018-08-07T00:56:01.268002 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:56:01.268355 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T00:56:01.268390 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:56:01.268791 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T00:56:01.268845 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:56:01.269167 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T00:56:01.269213 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:56:01.269543 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T00:56:01.269585 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:56:01.380240 #6] INFO -- : Inline processing of topic section_change with 1 messages took 1.22 ms +I, [2018-08-07T00:56:01.380311 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:56:01.380695 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T00:56:01.380729 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:56:01.381017 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T00:56:01.381050 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:56:01.381460 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T00:56:01.381494 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:56:01.382227 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.58 ms +I, [2018-08-07T00:56:01.382361 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:56:01.383443 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T00:56:01.383613 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:56:01.432318 #6] INFO -- : Inline processing of topic section_change with 1 messages took 48.49 ms +I, [2018-08-07T00:56:01.432418 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:56:03.241052 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T00:56:03.241102 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:56:03.241363 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T00:56:03.241394 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:56:03.241632 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T00:56:03.241661 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:56:03.241897 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T00:56:03.241926 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:56:03.242129 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T00:56:03.242157 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:56:03.242362 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T00:56:03.242390 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:56:03.404105 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T00:56:03.404161 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:56:03.404534 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T00:56:03.404565 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:56:03.404856 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T00:56:03.404893 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:56:03.405169 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T00:56:03.405199 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:56:03.405579 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T00:56:03.405611 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:56:03.405875 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T00:56:03.405904 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:56:05.243172 #6] INFO -- : Committing offsets: course_change/0:457 +I, [2018-08-07T00:56:05.246466 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.24 ms +I, [2018-08-07T00:56:05.246538 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:56:05.246982 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T00:56:05.247035 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:56:05.247403 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-08-07T00:56:05.247440 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:56:05.247682 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T00:56:05.247713 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:56:05.247941 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T00:56:05.247970 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:56:05.248234 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T00:56:05.248299 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:56:05.406453 #6] INFO -- : Committing offsets: section_change/0:937 +I, [2018-08-07T00:56:05.414846 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-08-07T00:56:05.416663 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:56:05.417542 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.47 ms +I, [2018-08-07T00:56:05.417722 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:56:05.418282 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-08-07T00:56:05.418331 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:56:05.418672 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T00:56:05.418724 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:56:05.419120 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T00:56:05.419166 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:56:05.419469 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T00:56:05.419505 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:56:05.419880 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T00:56:05.419919 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:56:05.420487 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T00:56:05.420541 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:56:07.250448 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.25 ms +I, [2018-08-07T00:56:07.250544 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:56:07.250994 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-08-07T00:56:07.251062 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:56:07.422731 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-08-07T00:56:07.422808 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:56:07.423272 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T00:56:07.423326 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:56:07.426196 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-08-07T00:56:07.426257 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:56:07.426773 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-08-07T00:56:07.426880 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:56:09.251853 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-08-07T00:56:09.251999 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:56:09.252418 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-08-07T00:56:09.252467 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:56:09.252835 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-08-07T00:56:09.252888 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:56:09.427906 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.4 ms +I, [2018-08-07T00:56:09.427971 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:56:09.428578 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T00:56:09.428658 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:56:09.429161 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T00:56:09.429211 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:56:09.429629 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T00:56:09.429676 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:56:09.430149 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T00:56:09.430207 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:56:09.430666 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T00:56:09.430758 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:56:11.255143 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.33 ms +I, [2018-08-07T00:56:11.255821 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:56:11.256941 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-08-07T00:56:11.257156 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:56:11.257929 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.5 ms +I, [2018-08-07T00:56:11.258013 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:56:11.433259 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-08-07T00:56:11.433315 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:56:11.433752 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T00:56:11.433815 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:56:11.434587 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-08-07T00:56:11.434661 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:56:11.435199 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T00:56:11.435245 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:56:13.259265 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-08-07T00:56:13.259325 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:56:13.261570 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T00:56:13.261778 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:56:13.264217 #6] INFO -- : Inline processing of topic course_change with 1 messages took 1.01 ms +I, [2018-08-07T00:56:13.264850 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:56:13.265996 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.27 ms +I, [2018-08-07T00:56:13.266056 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:56:13.273322 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.24 ms +I, [2018-08-07T00:56:13.273386 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:56:13.276477 #6] INFO -- : Inline processing of topic course_change with 1 messages took 1.64 ms +I, [2018-08-07T00:56:13.276569 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:56:13.436229 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-08-07T00:56:13.436298 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:56:13.437320 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T00:56:13.437788 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:56:13.438977 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T00:56:13.439040 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:56:13.439418 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T00:56:13.439461 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:56:13.439866 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T00:56:13.439922 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:56:13.440663 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.54 ms +I, [2018-08-07T00:56:13.440719 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:56:13.441150 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T00:56:13.441195 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:56:13.441599 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T00:56:13.441644 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:56:15.279187 #6] INFO -- : Committing offsets: course_change/0:477 +I, [2018-08-07T00:56:15.286009 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.26 ms +I, [2018-08-07T00:56:15.286079 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:56:15.286439 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T00:56:15.286493 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:56:15.286835 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T00:56:15.286886 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:56:15.287150 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T00:56:15.287181 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:56:15.287419 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T00:56:15.287460 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:56:15.287722 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T00:56:15.287753 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:56:15.444323 #6] INFO -- : Committing offsets: section_change/0:967 +I, [2018-08-07T00:56:15.450442 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-08-07T00:56:15.450510 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:56:15.450987 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T00:56:15.451039 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:56:15.451465 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T00:56:15.451520 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:56:15.451957 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T00:56:15.452015 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:56:15.452525 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T00:56:15.452584 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:56:15.453250 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.45 ms +I, [2018-08-07T00:56:15.453337 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:56:15.453962 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T00:56:15.454023 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:56:17.293920 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-08-07T00:56:17.293971 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:56:17.294221 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T00:56:17.294252 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:56:17.294464 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T00:56:17.294494 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:56:17.295031 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.41 ms +I, [2018-08-07T00:56:17.295078 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:56:17.295432 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T00:56:17.295467 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:56:17.295802 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-08-07T00:56:17.298014 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:56:17.315071 #6] INFO -- : Inline processing of topic course_change with 1 messages took 7.43 ms +I, [2018-08-07T00:56:17.315182 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:56:17.454878 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-08-07T00:56:17.454929 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:56:17.455198 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T00:56:17.455228 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:56:17.455503 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T00:56:17.455533 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:56:17.455760 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T00:56:17.455789 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:56:17.456020 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T00:56:17.456049 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:56:17.456280 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T00:56:17.456308 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:56:17.456505 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T00:56:17.456533 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:56:17.456813 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T00:56:17.456844 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:56:19.316431 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T00:56:19.316510 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:56:19.317480 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T00:56:19.317516 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:56:19.317736 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T00:56:19.317765 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:56:19.317967 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-08-07T00:56:19.318000 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:56:19.318248 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T00:56:19.318277 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:56:19.318495 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-08-07T00:56:19.318524 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:56:19.318729 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T00:56:19.318757 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:56:19.458125 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T00:56:19.458192 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:56:19.458458 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T00:56:19.458494 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:56:19.458785 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T00:56:19.458817 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:56:19.459086 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T00:56:19.459117 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:56:19.459402 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T00:56:19.459450 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:56:19.459702 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T00:56:19.459732 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:56:19.459986 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T00:56:19.460024 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:56:19.460298 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T00:56:19.460329 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:56:21.319985 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.57 ms +I, [2018-08-07T00:56:21.320095 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:56:21.320426 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T00:56:21.320465 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:56:21.320865 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.25 ms +I, [2018-08-07T00:56:21.320952 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:56:21.321371 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T00:56:21.321402 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:56:21.323174 #6] INFO -- : Inline processing of topic course_change with 1 messages took 1.59 ms +I, [2018-08-07T00:56:21.323273 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:56:21.323504 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T00:56:21.323533 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:56:21.324270 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-08-07T00:56:21.324300 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:56:21.324859 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.35 ms +I, [2018-08-07T00:56:21.329866 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:56:21.461515 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.4 ms +I, [2018-08-07T00:56:21.461592 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:56:21.461967 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T00:56:21.462025 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:56:21.462608 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-08-07T00:56:21.462735 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:56:21.463351 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-08-07T00:56:21.463404 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:56:21.463840 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T00:56:21.463879 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:56:21.464281 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T00:56:21.464351 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:56:21.464666 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T00:56:21.464702 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:56:21.464985 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T00:56:21.465019 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:56:23.331547 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.23 ms +I, [2018-08-07T00:56:23.331728 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:56:23.332072 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T00:56:23.332164 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:56:23.332887 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T00:56:23.332935 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:56:23.333454 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T00:56:23.333532 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:56:23.334130 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-08-07T00:56:23.334184 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:56:23.334544 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T00:56:23.334588 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:56:23.334919 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T00:56:23.336059 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:56:23.336565 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.24 ms +I, [2018-08-07T00:56:23.336620 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:56:23.465835 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T00:56:23.465886 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:56:23.466153 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T00:56:23.466183 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:56:23.466409 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-08-07T00:56:23.466438 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:56:23.466673 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T00:56:23.466702 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:56:23.466943 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T00:56:23.466972 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:56:23.467364 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T00:56:23.467398 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:56:23.467659 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T00:56:23.467715 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:56:25.337175 #6] INFO -- : Committing offsets: course_change/0:513 +I, [2018-08-07T00:56:25.342194 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-08-07T00:56:25.342327 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:56:25.342595 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T00:56:25.342624 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:56:25.342878 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T00:56:25.342909 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:56:25.343139 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-08-07T00:56:25.343168 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:56:25.343393 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T00:56:25.343422 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:56:25.343638 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T00:56:25.343676 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:56:25.468184 #6] INFO -- : Committing offsets: section_change/0:1005 +I, [2018-08-07T00:56:25.477737 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T00:56:25.477793 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:56:25.478728 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.41 ms +I, [2018-08-07T00:56:25.478845 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:56:25.479434 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-08-07T00:56:25.479559 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:56:25.480096 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T00:56:25.480392 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:56:25.480779 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T00:56:25.480812 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:56:25.481047 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T00:56:25.481079 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:56:25.481311 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T00:56:25.481356 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:56:25.481587 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T00:56:25.481617 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:56:25.481852 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T00:56:25.481898 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:56:25.482346 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T00:56:25.482394 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:56:25.482747 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T00:56:25.482791 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:56:25.483167 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T00:56:25.483221 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:56:25.483582 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T00:56:25.483644 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:56:25.484040 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T00:56:25.484094 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:56:25.484586 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T00:56:25.484675 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:56:25.485125 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T00:56:25.485176 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:56:25.485913 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.54 ms +I, [2018-08-07T00:56:25.485976 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:56:25.486743 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.55 ms +I, [2018-08-07T00:56:25.486837 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:56:25.488221 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.97 ms +I, [2018-08-07T00:56:25.488560 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:56:25.489638 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T00:56:25.489690 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:56:25.490038 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T00:56:25.490092 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:56:25.492214 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T00:56:25.492286 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:56:25.493431 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T00:56:25.493502 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:56:25.496880 #6] INFO -- : Inline processing of topic section_change with 1 messages took 2.92 ms +I, [2018-08-07T00:56:25.496940 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:56:25.497335 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T00:56:25.497380 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:56:25.497745 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T00:56:25.497789 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:56:25.498106 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T00:56:25.498149 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:56:25.498799 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-08-07T00:56:25.498975 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:56:25.499321 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T00:56:25.499364 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:56:25.499783 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T00:56:25.499826 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:56:25.500125 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T00:56:25.500183 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:56:25.500483 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T00:56:25.500527 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:56:25.500858 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T00:56:25.501175 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:56:25.502128 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.44 ms +I, [2018-08-07T00:56:25.502257 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:56:25.502808 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-08-07T00:56:25.502979 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:56:25.503416 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T00:56:25.503463 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:56:25.503859 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T00:56:25.503903 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:56:25.504242 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T00:56:25.504285 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:56:25.504620 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T00:56:25.504661 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:56:25.505220 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-08-07T00:56:25.506142 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:56:25.506811 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T00:56:25.506860 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:56:25.507199 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T00:56:25.507242 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:56:25.507569 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T00:56:25.507612 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:56:25.507908 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T00:56:25.507949 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:56:25.508316 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T00:56:25.508360 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:56:25.508635 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T00:56:25.508676 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:56:25.508997 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T00:56:25.509041 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:56:25.509654 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.4 ms +I, [2018-08-07T00:56:25.509690 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:56:25.509995 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T00:56:25.510042 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:56:27.461117 #6] INFO -- : Inline processing of topic course_change with 1 messages took 12.12 ms +I, [2018-08-07T00:56:27.461825 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:56:27.462476 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.26 ms +I, [2018-08-07T00:56:27.463112 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:56:27.464965 #6] INFO -- : Inline processing of topic course_change with 1 messages took 1.51 ms +I, [2018-08-07T00:56:27.472229 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:56:27.548271 #6] INFO -- : Inline processing of topic section_change with 1 messages took 1.82 ms +I, [2018-08-07T00:56:27.548388 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:56:27.550762 #6] INFO -- : Inline processing of topic section_change with 1 messages took 1.97 ms +I, [2018-08-07T00:56:27.550829 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:56:27.552446 #6] INFO -- : Inline processing of topic section_change with 1 messages took 1.3 ms +I, [2018-08-07T00:56:27.552506 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:56:27.553114 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.41 ms +I, [2018-08-07T00:56:27.553160 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:56:27.553974 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.64 ms +I, [2018-08-07T00:56:27.554021 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:56:27.555069 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.63 ms +I, [2018-08-07T00:56:27.653597 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:56:27.655575 #6] INFO -- : Inline processing of topic section_change with 1 messages took 1.61 ms +I, [2018-08-07T00:56:27.655638 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:56:27.660563 #6] INFO -- : Inline processing of topic section_change with 1 messages took 1.07 ms +I, [2018-08-07T00:56:27.661246 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:56:27.727384 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T00:56:27.727541 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:56:27.743580 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-08-07T00:56:27.743820 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:56:27.760446 #6] INFO -- : Inline processing of topic section_change with 1 messages took 16.35 ms +I, [2018-08-07T00:56:27.760588 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:56:27.768786 #6] INFO -- : Inline processing of topic section_change with 1 messages took 7.59 ms +I, [2018-08-07T00:56:27.768942 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:56:27.776753 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-08-07T00:56:27.780948 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:56:27.793078 #6] INFO -- : Inline processing of topic section_change with 1 messages took 3.52 ms +I, [2018-08-07T00:56:27.793220 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:56:27.798699 #6] INFO -- : Inline processing of topic section_change with 1 messages took 5.07 ms +I, [2018-08-07T00:56:27.798783 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:56:27.801268 #6] INFO -- : Inline processing of topic section_change with 1 messages took 1.58 ms +I, [2018-08-07T00:56:27.801357 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:56:27.802094 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.48 ms +I, [2018-08-07T00:56:27.802156 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:56:27.802624 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T00:56:27.802670 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:56:27.803063 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T00:56:27.803106 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:56:29.804575 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T00:56:29.804712 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:56:29.805091 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T00:56:29.805134 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:56:29.805748 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.48 ms +I, [2018-08-07T00:56:29.805791 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:56:29.806368 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-08-07T00:56:29.806418 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:56:29.806837 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T00:56:29.806868 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:56:29.807348 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T00:56:29.807389 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:56:29.807671 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T00:56:29.807700 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:56:29.808185 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-08-07T00:56:29.808282 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:56:29.808634 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T00:56:29.808664 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:56:29.809219 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-08-07T00:56:29.809252 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:56:29.809605 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T00:56:29.809636 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:56:29.810165 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T00:56:29.810197 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:56:31.780440 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.98 ms +I, [2018-08-07T00:56:31.794906 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:56:31.795681 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.44 ms +I, [2018-08-07T00:56:31.795763 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:56:31.798206 #6] INFO -- : Inline processing of topic section_change with 1 messages took 1.51 ms +I, [2018-08-07T00:56:31.798666 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:56:31.800640 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.92 ms +I, [2018-08-07T00:56:31.801258 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:56:31.816379 #6] INFO -- : Inline processing of topic section_change with 1 messages took 12.99 ms +I, [2018-08-07T00:56:31.816569 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:56:31.819773 #6] INFO -- : Inline processing of topic section_change with 1 messages took 1.7 ms +I, [2018-08-07T00:56:31.820418 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:56:31.826179 #6] INFO -- : Inline processing of topic section_change with 1 messages took 5.13 ms +I, [2018-08-07T00:56:31.826245 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:56:31.827303 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.76 ms +I, [2018-08-07T00:56:31.827456 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:56:31.830626 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.56 ms +I, [2018-08-07T00:56:31.830995 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:56:31.833420 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.72 ms +I, [2018-08-07T00:56:31.833511 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:56:31.834019 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T00:56:31.834071 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:56:31.837925 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.7 ms +I, [2018-08-07T00:56:31.838086 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:56:31.838648 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-08-07T00:56:31.838819 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:56:31.852949 #6] INFO -- : Inline processing of topic section_change with 1 messages took 9.19 ms +I, [2018-08-07T00:56:31.853370 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:56:31.855744 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-08-07T00:56:31.855821 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:56:31.856649 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.5 ms +I, [2018-08-07T00:56:31.856701 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:56:31.857160 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T00:56:31.857214 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:56:31.857931 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.51 ms +I, [2018-08-07T00:56:31.857979 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:56:31.858485 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T00:56:31.858539 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:56:31.859458 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T00:56:31.859522 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:56:31.859918 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T00:56:31.859974 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:56:31.861176 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.9 ms +I, [2018-08-07T00:56:31.861251 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:56:31.862116 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T00:56:31.862185 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:56:33.853047 #6] INFO -- : Inline processing of topic course_change with 1 messages took 46.18 ms +I, [2018-08-07T00:56:33.853421 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:56:33.855964 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.31 ms +I, [2018-08-07T00:56:33.856036 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:56:33.872540 #6] INFO -- : Inline processing of topic section_change with 1 messages took 1.81 ms +I, [2018-08-07T00:56:33.872668 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:56:33.884866 #6] INFO -- : Inline processing of topic section_change with 1 messages took 11.1 ms +I, [2018-08-07T00:56:33.885277 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:56:33.887487 #6] INFO -- : Inline processing of topic section_change with 1 messages took 1.69 ms +I, [2018-08-07T00:56:33.887589 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:56:35.857005 #6] INFO -- : Committing offsets: course_change/0:524 +I, [2018-08-07T00:56:35.893954 #6] INFO -- : Committing offsets: section_change/0:1111 +I, [2018-08-07T00:56:35.982723 #6] INFO -- : Inline processing of topic section_change with 1 messages took 1.18 ms +I, [2018-08-07T00:56:35.982779 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:56:35.984092 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.59 ms +I, [2018-08-07T00:56:35.984137 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:56:35.984875 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.57 ms +I, [2018-08-07T00:56:35.984920 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:56:37.986414 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.51 ms +I, [2018-08-07T00:56:37.986468 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:56:37.986989 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-08-07T00:56:37.987025 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:56:37.987888 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.5 ms +I, [2018-08-07T00:56:37.987941 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:56:37.988579 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T00:56:37.988626 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:56:37.989170 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T00:56:37.989202 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:56:37.990159 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.59 ms +I, [2018-08-07T00:56:37.990211 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:56:37.990953 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-08-07T00:56:37.990990 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:56:37.991543 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.43 ms +I, [2018-08-07T00:56:37.991579 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:56:37.994080 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.39 ms +I, [2018-08-07T00:56:37.994124 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:56:39.992632 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-08-07T00:56:39.992754 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:56:39.993359 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.45 ms +I, [2018-08-07T00:56:39.993397 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:56:39.994209 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.46 ms +I, [2018-08-07T00:56:39.994246 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:56:39.994679 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T00:56:39.997943 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:56:39.998595 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.42 ms +I, [2018-08-07T00:56:39.998782 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:56:39.999158 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T00:56:39.999190 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:56:39.999629 #6] INFO -- : Inline processing of topic course_change with 1 messages took 2.21 ms +I, [2018-08-07T00:56:40.000951 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:56:42.000117 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-08-07T00:56:42.000169 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:56:42.000762 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-08-07T00:56:42.000800 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:56:42.001801 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.87 ms +I, [2018-08-07T00:56:42.001843 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:56:42.002369 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-08-07T00:56:42.002402 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:56:42.002984 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-08-07T00:56:42.003019 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:56:42.003714 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.41 ms +I, [2018-08-07T00:56:42.003790 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:56:42.004178 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T00:56:42.004279 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:56:44.002464 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-08-07T00:56:44.002513 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:56:44.003143 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T00:56:44.003182 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:56:44.005128 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T00:56:44.005176 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:56:44.005608 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T00:56:44.005640 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:56:44.006366 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.61 ms +I, [2018-08-07T00:56:44.006439 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:56:44.006991 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-08-07T00:56:44.007023 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:56:44.007674 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.41 ms +I, [2018-08-07T00:56:44.007779 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:56:44.008260 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-08-07T00:56:44.008342 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:56:44.008896 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-08-07T00:56:44.008975 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:56:44.009749 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.54 ms +I, [2018-08-07T00:56:44.009812 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:56:46.003549 #6] INFO -- : Committing offsets: course_change/0:528 +I, [2018-08-07T00:56:46.010451 #6] INFO -- : Committing offsets: section_change/0:1143 +I, [2018-08-07T00:56:46.045373 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-08-07T00:56:46.045422 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:56:46.045824 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T00:56:46.045855 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:56:46.046186 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T00:56:46.046230 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:56:52.078103 #6] INFO -- : Inline processing of topic section_change with 1 messages took 1.27 ms +I, [2018-08-07T00:56:52.078197 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:56:56.712615 #6] INFO -- : Committing offsets: course_change/0:528 +I, [2018-08-07T00:56:56.720821 #6] INFO -- : Committing offsets: section_change/0:1147 +I, [2018-08-07T00:56:57.045360 #6] INFO -- : Inline processing of topic section_change with 1 messages took 195.26 ms +I, [2018-08-07T00:56:57.045507 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:57:03.470874 #6] INFO -- : Inline processing of topic section_change with 1 messages took 1.33 ms +I, [2018-08-07T00:57:03.470987 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:57:07.500406 #6] INFO -- : Committing offsets: section_change/0:1149 +I, [2018-08-07T00:57:07.517007 #6] INFO -- : Committing offsets: course_change/0:528 +I, [2018-08-07T00:57:13.740258 #6] INFO -- : Inline processing of topic section_change with 1 messages took 8.59 ms +I, [2018-08-07T00:57:13.741404 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:57:13.742602 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.84 ms +I, [2018-08-07T00:57:13.742673 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:57:13.743919 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.94 ms +I, [2018-08-07T00:57:13.743979 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:57:13.790700 #6] INFO -- : Inline processing of topic course_change with 1 messages took 5.23 ms +I, [2018-08-07T00:57:13.815265 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:57:13.818453 #6] INFO -- : Inline processing of topic course_change with 1 messages took 2.79 ms +I, [2018-08-07T00:57:13.818533 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:57:13.819614 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.24 ms +I, [2018-08-07T00:57:13.827634 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:57:15.809503 #6] INFO -- : Inline processing of topic section_change with 1 messages took 2.72 ms +I, [2018-08-07T00:57:15.822161 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:57:15.823149 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.56 ms +I, [2018-08-07T00:57:15.823207 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:57:17.826061 #6] INFO -- : Inline processing of topic section_change with 1 messages took 1.99 ms +I, [2018-08-07T00:57:17.828280 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:57:19.830323 #6] INFO -- : Committing offsets: section_change/0:1155 +I, [2018-08-07T00:57:19.844684 #6] INFO -- : Inline processing of topic section_change with 1 messages took 1.35 ms +I, [2018-08-07T00:57:19.844775 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:57:19.848734 #6] INFO -- : Inline processing of topic section_change with 1 messages took 1.47 ms +I, [2018-08-07T00:57:19.849064 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:57:19.851141 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.42 ms +I, [2018-08-07T00:57:19.851430 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:57:19.891631 #6] INFO -- : Committing offsets: course_change/0:531 +I, [2018-08-07T00:57:22.090758 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.58 ms +I, [2018-08-07T00:57:22.091043 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:57:22.091834 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.48 ms +I, [2018-08-07T00:57:22.091876 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:57:22.092560 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.55 ms +I, [2018-08-07T00:57:22.092596 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:57:24.094644 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.96 ms +I, [2018-08-07T00:57:24.094699 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:57:24.095479 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.47 ms +I, [2018-08-07T00:57:24.095597 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:57:24.096225 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.4 ms +I, [2018-08-07T00:57:24.096266 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:57:24.100123 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.56 ms +I, [2018-08-07T00:57:24.100293 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:57:24.101751 #6] INFO -- : Inline processing of topic course_change with 1 messages took 1.14 ms +I, [2018-08-07T00:57:24.101826 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:57:24.102588 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.34 ms +I, [2018-08-07T00:57:24.102648 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:57:24.102984 #6] INFO -- : Inline processing of topic section_change with 1 messages took 6.39 ms +I, [2018-08-07T00:57:24.103045 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:57:24.104202 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.75 ms +I, [2018-08-07T00:57:24.104275 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:57:24.105818 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.87 ms +I, [2018-08-07T00:57:24.105889 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:57:24.111578 #6] INFO -- : Inline processing of topic section_change with 1 messages took 5.14 ms +I, [2018-08-07T00:57:24.111693 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:57:26.105290 #6] INFO -- : Inline processing of topic course_change with 1 messages took 1.13 ms +I, [2018-08-07T00:57:26.105414 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:57:26.116673 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.57 ms +I, [2018-08-07T00:57:26.116828 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:57:26.118756 #6] INFO -- : Inline processing of topic section_change with 1 messages took 1.65 ms +I, [2018-08-07T00:57:26.118886 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:57:26.120564 #6] INFO -- : Inline processing of topic section_change with 1 messages took 1.26 ms +I, [2018-08-07T00:57:26.120707 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:57:26.122098 #6] INFO -- : Inline processing of topic section_change with 1 messages took 1.0 ms +I, [2018-08-07T00:57:26.122141 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:57:26.123667 #6] INFO -- : Inline processing of topic section_change with 1 messages took 1.3 ms +I, [2018-08-07T00:57:26.123714 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:57:26.124634 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-08-07T00:57:26.124690 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:57:28.107601 #6] INFO -- : Inline processing of topic course_change with 1 messages took 1.46 ms +I, [2018-08-07T00:57:28.107675 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:57:28.110244 #6] INFO -- : Inline processing of topic course_change with 1 messages took 1.32 ms +I, [2018-08-07T00:57:28.110307 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:57:28.129018 #6] INFO -- : Inline processing of topic section_change with 1 messages took 3.72 ms +I, [2018-08-07T00:57:28.129087 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:57:28.130950 #6] INFO -- : Inline processing of topic section_change with 1 messages took 1.65 ms +I, [2018-08-07T00:57:28.131033 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:57:28.132888 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T00:57:28.133167 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:57:28.134954 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-08-07T00:57:28.135021 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:57:28.137212 #6] INFO -- : Inline processing of topic section_change with 1 messages took 1.29 ms +I, [2018-08-07T00:57:28.137308 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:57:28.137883 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-08-07T00:57:28.137941 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:57:30.110744 #6] INFO -- : Committing offsets: course_change/0:537 +I, [2018-08-07T00:57:30.115228 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.41 ms +I, [2018-08-07T00:57:30.115299 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:57:30.138403 #6] INFO -- : Committing offsets: section_change/0:1180 +I, [2018-08-07T00:57:30.142981 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T00:57:30.143075 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:57:30.144244 #6] INFO -- : Inline processing of topic section_change with 1 messages took 1.0 ms +I, [2018-08-07T00:57:30.144307 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:57:30.145594 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-08-07T00:57:30.145647 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:57:30.146960 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-08-07T00:57:30.147019 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:57:32.062808 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-08-07T00:57:32.063282 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:57:32.063696 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T00:57:32.063772 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:57:32.094081 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T00:57:32.094126 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:57:32.094420 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T00:57:32.094450 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:57:32.094708 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T00:57:32.094805 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:57:32.095084 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T00:57:32.095113 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:57:32.095384 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T00:57:32.095413 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:57:34.068858 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-08-07T00:57:34.068969 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:57:34.069534 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.34 ms +I, [2018-08-07T00:57:34.069602 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:57:34.072576 #6] INFO -- : Inline processing of topic course_change with 1 messages took 1.68 ms +I, [2018-08-07T00:57:34.072776 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:57:34.096628 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T00:57:34.096684 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:57:34.097007 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T00:57:34.097043 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:57:34.097401 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T00:57:34.097438 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:57:34.097725 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T00:57:34.097759 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:57:34.098234 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-08-07T00:57:34.098275 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:57:34.098694 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T00:57:34.098731 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:57:34.099073 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T00:57:34.099109 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:57:34.099517 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T00:57:34.099562 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:57:36.074739 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.25 ms +I, [2018-08-07T00:57:36.074800 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:57:36.075442 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-08-07T00:57:36.075491 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:57:36.075769 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T00:57:36.075820 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:57:36.076150 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T00:57:36.076193 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:57:36.100413 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T00:57:36.100521 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:57:36.101074 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T00:57:36.101112 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:57:36.101409 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T00:57:36.102222 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:57:36.105685 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.44 ms +I, [2018-08-07T00:57:36.106003 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:57:36.106767 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-08-07T00:57:36.106832 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:57:36.107453 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-08-07T00:57:36.107580 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:57:36.108494 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T00:57:36.108583 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:57:36.109133 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T00:57:36.109196 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:57:36.109689 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T00:57:36.109773 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:57:38.077096 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.33 ms +I, [2018-08-07T00:57:38.077174 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:57:38.077803 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.27 ms +I, [2018-08-07T00:57:38.077881 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:57:38.111574 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.94 ms +I, [2018-08-07T00:57:38.111721 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:57:38.112181 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T00:57:38.112238 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:57:38.112661 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T00:57:38.112716 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:57:38.113175 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T00:57:38.113230 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:57:38.116221 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T00:57:38.116265 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:57:38.116566 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T00:57:38.116598 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:57:40.080763 #6] INFO -- : Inline processing of topic course_change with 1 messages took 1.22 ms +I, [2018-08-07T00:57:40.080872 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:57:40.082263 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.9 ms +I, [2018-08-07T00:57:40.082334 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:57:40.118006 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-08-07T00:57:40.118063 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:57:40.123085 #6] INFO -- : Inline processing of topic section_change with 1 messages took 3.93 ms +I, [2018-08-07T00:57:40.123156 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:57:40.123878 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-08-07T00:57:40.123925 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:57:40.124267 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T00:57:40.124304 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:57:42.083077 #6] INFO -- : Committing offsets: course_change/0:551 +I, [2018-08-07T00:57:42.091408 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.26 ms +I, [2018-08-07T00:57:42.091616 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:57:42.091904 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T00:57:42.091980 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:57:42.092302 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T00:57:42.092339 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:57:42.092684 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T00:57:42.092731 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:57:42.093107 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-08-07T00:57:42.093151 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:57:42.093484 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T00:57:42.093518 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:57:42.126442 #6] INFO -- : Committing offsets: section_change/0:1216 +I, [2018-08-07T00:57:42.139092 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T00:57:42.139233 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:57:42.139532 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T00:57:42.139689 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:57:42.140148 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T00:57:42.140518 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:57:42.141216 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-08-07T00:57:42.141329 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:57:42.142160 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.48 ms +I, [2018-08-07T00:57:42.142194 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:57:42.143332 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-08-07T00:57:42.143410 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:57:44.188550 #6] INFO -- : Inline processing of topic section_change with 1 messages took 1.01 ms +I, [2018-08-07T00:57:44.188634 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:57:46.768313 #6] INFO -- : Inline processing of topic section_change with 1 messages took 1.51 ms +I, [2018-08-07T00:57:46.768793 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:57:48.772407 #6] INFO -- : Inline processing of topic section_change with 1 messages took 2.31 ms +I, [2018-08-07T00:57:48.773112 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:57:50.776351 #6] INFO -- : Inline processing of topic section_change with 1 messages took 1.73 ms +I, [2018-08-07T00:57:50.776534 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:57:50.780588 #6] INFO -- : Inline processing of topic section_change with 1 messages took 1.64 ms +I, [2018-08-07T00:57:50.782112 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:57:51.060348 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.49 ms +I, [2018-08-07T00:57:51.060419 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:57:52.804855 #6] INFO -- : Committing offsets: section_change/0:1227 +I, [2018-08-07T00:57:52.891715 #6] INFO -- : Inline processing of topic section_change with 1 messages took 7.1 ms +I, [2018-08-07T00:57:52.891987 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:57:53.060807 #6] INFO -- : Committing offsets: course_change/0:558 +I, [2018-08-07T00:57:53.079060 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.87 ms +I, [2018-08-07T00:57:53.079143 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:57:56.900365 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.87 ms +I, [2018-08-07T00:57:56.900531 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:57:56.902161 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.55 ms +I, [2018-08-07T00:57:56.902232 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:57:57.101684 #6] INFO -- : Inline processing of topic course_change with 1 messages took 1.38 ms +I, [2018-08-07T00:57:57.101820 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:57:57.102802 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.4 ms +I, [2018-08-07T00:57:57.102877 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:57:58.903603 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-08-07T00:57:58.903652 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:57:58.903969 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T00:57:58.903999 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:57:58.904367 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T00:57:58.904398 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:57:58.905583 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T00:57:58.905626 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:57:58.905975 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T00:57:58.906006 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:57:58.906309 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T00:57:58.906339 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:57:58.906617 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T00:57:58.906646 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:57:58.906994 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T00:57:58.907026 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:57:58.907323 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T00:57:58.907352 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:57:58.907619 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T00:57:58.907649 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:57:58.907901 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-08-07T00:57:58.907932 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:57:58.908118 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-08-07T00:57:58.908186 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:57:58.908526 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T00:57:58.908558 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:57:58.908830 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T00:57:58.908860 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:57:58.909131 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T00:57:58.909160 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:57:58.909414 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T00:57:58.909973 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:57:59.103817 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T00:57:59.103867 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:57:59.104208 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-08-07T00:57:59.104240 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:57:59.104484 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T00:57:59.104514 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:57:59.104809 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T00:57:59.104839 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:57:59.105040 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-08-07T00:57:59.105069 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:57:59.105331 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T00:57:59.105442 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:57:59.105642 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-08-07T00:57:59.105770 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:57:59.105971 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-08-07T00:57:59.105999 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:57:59.106483 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.25 ms +I, [2018-08-07T00:57:59.106535 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:57:59.107055 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.34 ms +I, [2018-08-07T00:57:59.107160 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:58:00.911235 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.5 ms +I, [2018-08-07T00:58:00.911291 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:58:00.911680 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T00:58:00.911713 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:58:00.912190 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T00:58:00.912227 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:58:00.912612 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T00:58:00.912646 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:58:00.912978 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T00:58:00.913189 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:58:01.108748 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.49 ms +I, [2018-08-07T00:58:01.108840 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:58:01.110271 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.63 ms +I, [2018-08-07T00:58:01.110340 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:58:01.111413 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.82 ms +I, [2018-08-07T00:58:01.111467 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:58:01.111993 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.35 ms +I, [2018-08-07T00:58:01.112046 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:58:01.112610 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.37 ms +I, [2018-08-07T00:58:01.112674 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:58:02.878887 #6] INFO -- : Committing offsets: section_change/0:1251 +I, [2018-08-07T00:58:02.887182 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-08-07T00:58:02.887251 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:58:02.887675 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T00:58:02.887714 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:58:02.888034 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T00:58:02.888069 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:58:02.893839 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.55 ms +I, [2018-08-07T00:58:02.894038 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:58:02.894613 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-08-07T00:58:02.894714 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:58:02.895429 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-08-07T00:58:02.895503 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:58:02.896071 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-08-07T00:58:02.896125 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:58:02.896801 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-08-07T00:58:02.896897 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:58:02.897465 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T00:58:02.897824 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:58:02.898308 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T00:58:02.898397 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:58:02.899267 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.57 ms +I, [2018-08-07T00:58:02.899392 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:58:02.914992 #6] INFO -- : Inline processing of topic section_change with 1 messages took 12.49 ms +I, [2018-08-07T00:58:02.915110 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:58:02.915742 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-08-07T00:58:02.915829 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:58:02.916374 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T00:58:02.916432 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:58:03.078191 #6] INFO -- : Committing offsets: course_change/0:576 +I, [2018-08-07T00:58:03.083518 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-08-07T00:58:03.083567 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:58:03.083868 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T00:58:03.083921 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:58:03.084251 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-08-07T00:58:03.084292 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:58:03.084562 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T00:58:03.084595 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:58:03.084849 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T00:58:03.084881 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:58:03.085104 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T00:58:03.085136 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:58:03.085375 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T00:58:03.085405 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:58:03.085642 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T00:58:03.085672 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:58:03.085906 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T00:58:03.085935 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:58:04.981477 #6] INFO -- : Inline processing of topic section_change with 1 messages took 8.85 ms +I, [2018-08-07T00:58:04.981768 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:58:04.985375 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.55 ms +I, [2018-08-07T00:58:04.985704 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:58:04.986652 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.53 ms +I, [2018-08-07T00:58:04.987628 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:58:04.990575 #6] INFO -- : Inline processing of topic section_change with 1 messages took 2.0 ms +I, [2018-08-07T00:58:04.990762 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:58:04.991694 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.54 ms +I, [2018-08-07T00:58:04.992150 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:58:04.992800 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T00:58:04.993204 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:58:04.994890 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T00:58:04.995036 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:58:04.995494 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T00:58:04.995632 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:58:04.996677 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.52 ms +I, [2018-08-07T00:58:04.996731 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:58:04.997466 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.48 ms +I, [2018-08-07T00:58:04.997558 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:58:04.998808 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.69 ms +I, [2018-08-07T00:58:04.998874 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:58:05.000079 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.82 ms +I, [2018-08-07T00:58:05.000154 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:58:05.001561 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.96 ms +I, [2018-08-07T00:58:05.001688 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:58:05.003786 #6] INFO -- : Inline processing of topic section_change with 1 messages took 1.16 ms +I, [2018-08-07T00:58:05.003888 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:58:05.004964 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.84 ms +I, [2018-08-07T00:58:05.005095 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:58:05.006956 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.68 ms +I, [2018-08-07T00:58:05.007747 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:58:05.087183 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.51 ms +I, [2018-08-07T00:58:05.088392 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:58:05.110833 #6] INFO -- : Inline processing of topic course_change with 1 messages took 20.26 ms +I, [2018-08-07T00:58:05.111068 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:58:08.389426 #6] INFO -- : Inline processing of topic section_change with 1 messages took 3.99 ms +I, [2018-08-07T00:58:08.390687 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:58:08.398299 #6] INFO -- : Inline processing of topic section_change with 1 messages took 1.92 ms +I, [2018-08-07T00:58:08.398581 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:58:08.453285 #6] INFO -- : Inline processing of topic course_change with 1 messages took 1.42 ms +I, [2018-08-07T00:58:08.453394 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:58:08.464618 #6] INFO -- : Inline processing of topic section_change with 1 messages took 65.06 ms +I, [2018-08-07T00:58:08.464751 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:58:10.480281 #6] INFO -- : Inline processing of topic section_change with 1 messages took 5.62 ms +I, [2018-08-07T00:58:10.484347 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:58:10.487744 #6] INFO -- : Inline processing of topic course_change with 1 messages took 26.93 ms +I, [2018-08-07T00:58:10.488129 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:58:12.487730 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.55 ms +I, [2018-08-07T00:58:12.487855 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:58:12.489162 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.26 ms +I, [2018-08-07T00:58:12.489209 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:58:12.489574 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.24 ms +I, [2018-08-07T00:58:12.489625 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:58:12.489787 #6] INFO -- : Inline processing of topic section_change with 1 messages took 1.7 ms +I, [2018-08-07T00:58:12.489876 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:58:12.490572 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-08-07T00:58:12.490606 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:58:14.490190 #6] INFO -- : Committing offsets: course_change/0:591 +I, [2018-08-07T00:58:14.490988 #6] INFO -- : Committing offsets: section_change/0:1288 +I, [2018-08-07T00:58:14.499712 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.25 ms +I, [2018-08-07T00:58:14.499755 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:58:14.500244 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.37 ms +I, [2018-08-07T00:58:14.500276 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:58:14.500628 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.24 ms +I, [2018-08-07T00:58:14.500658 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:58:14.501405 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.37 ms +I, [2018-08-07T00:58:14.501442 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:58:14.501816 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.25 ms +I, [2018-08-07T00:58:14.501847 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:58:14.504458 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-08-07T00:58:14.504500 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:58:14.504932 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T00:58:14.504967 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:58:14.505288 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T00:58:14.505320 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:58:14.505831 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T00:58:14.505862 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:58:14.506352 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-08-07T00:58:14.506383 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:58:14.506795 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-08-07T00:58:14.506826 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:58:16.508157 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.62 ms +I, [2018-08-07T00:58:16.509642 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:58:16.510588 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.41 ms +I, [2018-08-07T00:58:16.510696 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:58:16.509389 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.77 ms +I, [2018-08-07T00:58:16.510932 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:58:16.511767 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.44 ms +I, [2018-08-07T00:58:16.511828 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:58:16.512239 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T00:58:16.512282 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:58:16.512815 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T00:58:16.512857 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:58:18.512180 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.29 ms +I, [2018-08-07T00:58:18.512415 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:58:18.515116 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.29 ms +I, [2018-08-07T00:58:18.515170 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:58:18.515627 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-08-07T00:58:18.515700 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:58:18.516135 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-08-07T00:58:18.516176 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:58:18.516818 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.42 ms +I, [2018-08-07T00:58:18.523501 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:58:18.524424 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.48 ms +I, [2018-08-07T00:58:18.524564 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:58:18.528402 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.9 ms +I, [2018-08-07T00:58:18.528477 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:58:18.529774 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.41 ms +I, [2018-08-07T00:58:18.529880 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:58:18.530788 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.67 ms +I, [2018-08-07T00:58:18.530887 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:58:20.525087 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.36 ms +I, [2018-08-07T00:58:20.525164 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:58:20.526337 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.76 ms +I, [2018-08-07T00:58:20.526405 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:58:20.526906 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-08-07T00:58:20.526960 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:58:20.527369 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-08-07T00:58:20.527444 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:58:20.534201 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.74 ms +I, [2018-08-07T00:58:20.534397 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:58:20.535090 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-08-07T00:58:20.535157 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:58:20.535685 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-08-07T00:58:20.535732 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:58:20.536748 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T00:58:20.537220 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:58:22.532566 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.62 ms +I, [2018-08-07T00:58:22.532654 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:58:22.538737 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-08-07T00:58:22.538804 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:58:22.539143 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T00:58:22.539191 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:58:22.545015 #6] INFO -- : Inline processing of topic section_change with 1 messages took 5.61 ms +I, [2018-08-07T00:58:22.545215 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:58:24.533453 #6] INFO -- : Committing offsets: course_change/0:607 +I, [2018-08-07T00:58:24.545655 #6] INFO -- : Committing offsets: section_change/0:1310 +I, [2018-08-07T00:58:24.551461 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.67 ms +I, [2018-08-07T00:58:24.551581 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:58:24.552834 #6] INFO -- : Inline processing of topic section_change with 1 messages took 1.03 ms +I, [2018-08-07T00:58:24.552902 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:58:24.553375 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T00:58:24.553434 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:58:26.542011 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.35 ms +I, [2018-08-07T00:58:26.542290 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:58:26.544922 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.28 ms +I, [2018-08-07T00:58:26.545091 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:58:26.545743 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.3 ms +I, [2018-08-07T00:58:26.545900 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:58:26.555305 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.97 ms +I, [2018-08-07T00:58:26.555383 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:58:26.556158 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.46 ms +I, [2018-08-07T00:58:26.556260 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:58:26.557093 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T00:58:26.557194 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:58:26.557706 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T00:58:26.557771 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:58:26.558212 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T00:58:26.558266 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:58:26.558749 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T00:58:26.558815 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:58:26.559344 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T00:58:26.559402 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:58:26.559838 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T00:58:26.559892 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:58:26.560681 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T00:58:26.560738 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:58:26.561223 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T00:58:26.561276 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:58:28.546962 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.25 ms +I, [2018-08-07T00:58:28.547028 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:58:28.547447 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.23 ms +I, [2018-08-07T00:58:28.547517 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:58:28.547914 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-08-07T00:58:28.547964 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:58:28.548306 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T00:58:28.548356 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:58:28.548602 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T00:58:28.549849 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:58:28.561998 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T00:58:28.562053 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:58:28.562369 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T00:58:28.562401 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:58:28.562675 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T00:58:28.562705 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:58:28.562974 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T00:58:28.563003 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:58:28.563319 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T00:58:28.563349 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:58:30.550788 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.26 ms +I, [2018-08-07T00:58:30.550859 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:58:30.551190 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T00:58:30.551250 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:58:30.551562 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T00:58:30.551603 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:58:30.564779 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-08-07T00:58:30.564835 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:58:30.565115 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T00:58:30.565147 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:58:30.565400 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T00:58:30.565422 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:58:30.565675 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T00:58:30.565716 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:58:30.565966 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T00:58:30.565988 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:58:32.514917 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-08-07T00:58:32.514979 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:58:32.515232 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T00:58:32.515262 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:58:32.515587 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T00:58:32.515659 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:58:32.516029 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T00:58:32.516114 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:58:32.531429 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-08-07T00:58:32.531519 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:58:32.532834 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.9 ms +I, [2018-08-07T00:58:32.533009 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:58:32.534404 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T00:58:32.534482 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:58:32.534964 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T00:58:32.535008 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:58:32.535931 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-08-07T00:58:32.535978 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:58:34.517232 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.35 ms +I, [2018-08-07T00:58:34.517303 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:58:34.517954 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.44 ms +I, [2018-08-07T00:58:34.518016 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:58:34.518440 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T00:58:34.518822 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:58:34.519267 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-08-07T00:58:34.519381 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:58:34.519815 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T00:58:34.519872 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:58:34.520171 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T00:58:34.520199 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:58:34.538006 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.49 ms +I, [2018-08-07T00:58:34.538117 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:58:34.538557 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T00:58:34.538607 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:58:34.538994 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T00:58:34.539129 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:58:34.542290 #6] INFO -- : Inline processing of topic section_change with 1 messages took 2.62 ms +I, [2018-08-07T00:58:34.542664 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:58:34.543299 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-08-07T00:58:34.543470 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:58:34.543963 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T00:58:34.544013 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:58:36.521150 #6] INFO -- : Committing offsets: course_change/0:628 +I, [2018-08-07T00:58:36.526005 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.29 ms +I, [2018-08-07T00:58:36.526174 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:58:36.526584 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T00:58:36.528923 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:58:36.529451 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-08-07T00:58:36.529504 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:58:36.529936 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.23 ms +I, [2018-08-07T00:58:36.529989 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:58:36.530368 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T00:58:36.530417 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:58:36.530770 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-08-07T00:58:36.530815 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:58:36.531183 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-08-07T00:58:36.531232 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:58:36.531647 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-08-07T00:58:36.531696 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:58:36.544404 #6] INFO -- : Committing offsets: section_change/0:1344 +I, [2018-08-07T00:58:36.557616 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-08-07T00:58:36.557684 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:58:36.558233 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T00:58:36.558291 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:58:36.558759 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T00:58:36.558809 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:58:36.560727 #6] INFO -- : Inline processing of topic section_change with 1 messages took 1.2 ms +I, [2018-08-07T00:58:36.561621 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:58:36.562681 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.42 ms +I, [2018-08-07T00:58:36.562848 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:58:36.565709 #6] INFO -- : Inline processing of topic section_change with 1 messages took 2.48 ms +I, [2018-08-07T00:58:36.565787 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:58:36.566270 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T00:58:36.566327 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:58:36.567373 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T00:58:36.567509 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:58:36.568658 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-08-07T00:58:36.568740 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:58:36.569662 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.43 ms +I, [2018-08-07T00:58:36.569726 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:58:36.570223 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T00:58:36.570284 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:58:36.571548 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T00:58:36.571643 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:58:36.572504 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.6 ms +I, [2018-08-07T00:58:36.572568 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:58:36.573049 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T00:58:36.577715 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:58:36.579531 #6] INFO -- : Inline processing of topic section_change with 1 messages took 1.27 ms +I, [2018-08-07T00:58:36.579648 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:58:36.580866 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.68 ms +I, [2018-08-07T00:58:36.580960 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:58:36.581540 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-08-07T00:58:36.581613 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:58:36.582768 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.79 ms +I, [2018-08-07T00:58:36.582920 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:58:36.584592 #6] INFO -- : Inline processing of topic section_change with 1 messages took 1.36 ms +I, [2018-08-07T00:58:36.584800 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:58:36.585901 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.71 ms +I, [2018-08-07T00:58:36.586025 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:58:36.586540 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T00:58:36.586619 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:58:36.587026 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T00:58:36.587096 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:58:36.588021 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.6 ms +I, [2018-08-07T00:58:36.588185 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:58:36.588974 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-08-07T00:58:36.589147 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:58:36.589626 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T00:58:36.590315 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:58:36.591175 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.57 ms +I, [2018-08-07T00:58:36.591294 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:58:36.592114 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.4 ms +I, [2018-08-07T00:58:36.592195 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:58:36.592657 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T00:58:36.592721 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:58:36.593488 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T00:58:36.593569 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:58:38.533943 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T00:58:38.537529 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:58:38.537915 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T00:58:38.537949 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:58:38.538191 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T00:58:38.538235 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:58:38.538792 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-08-07T00:58:38.538850 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:58:38.539240 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T00:58:38.539315 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:58:38.596161 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-08-07T00:58:38.596223 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:58:38.597622 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T00:58:38.597691 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:58:38.598742 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.65 ms +I, [2018-08-07T00:58:38.598842 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:58:38.599369 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T00:58:38.599489 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:58:38.600161 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T00:58:38.600215 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:58:38.600614 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T00:58:38.600648 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:58:40.540281 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.34 ms +I, [2018-08-07T00:58:40.540360 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:58:40.540811 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-08-07T00:58:40.540860 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:58:40.541341 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.26 ms +I, [2018-08-07T00:58:40.541397 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:58:40.541705 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T00:58:40.541751 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:58:40.601652 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-08-07T00:58:40.601719 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:58:40.602872 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-08-07T00:58:40.602947 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:58:40.603675 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-08-07T00:58:40.603753 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:58:40.605193 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.92 ms +I, [2018-08-07T00:58:40.605346 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:58:42.542506 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-08-07T00:58:42.542556 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:58:42.542806 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T00:58:42.542836 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:58:42.543062 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T00:58:42.543092 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:58:42.543322 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T00:58:42.543351 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:58:42.543570 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T00:58:42.543600 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:58:42.543783 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T00:58:42.543835 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:58:42.606891 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T00:58:42.606988 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:58:42.607424 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T00:58:42.607487 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:58:42.607728 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T00:58:42.607758 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:58:42.608144 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T00:58:42.608180 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:58:42.608588 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T00:58:42.608651 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:58:42.609062 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T00:58:42.609096 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:58:44.545606 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-08-07T00:58:44.545654 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:58:44.545888 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-08-07T00:58:44.545918 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:58:44.546138 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T00:58:44.546167 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:58:44.546378 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T00:58:44.546407 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:58:44.546619 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T00:58:44.546648 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:58:44.546856 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T00:58:44.546884 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:58:44.610580 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T00:58:44.610629 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:58:44.610887 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T00:58:44.610945 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:58:44.611203 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T00:58:44.611232 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:58:44.611463 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T00:58:44.611492 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:58:44.611766 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T00:58:44.611795 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:58:44.612007 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T00:58:44.612036 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:58:44.612451 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T00:58:44.612511 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:58:44.612869 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T00:58:44.612930 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:58:46.548474 #6] INFO -- : Committing offsets: course_change/0:657 +I, [2018-08-07T00:58:46.551675 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.29 ms +I, [2018-08-07T00:58:46.551778 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:58:46.552220 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-08-07T00:58:46.552310 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:58:46.553846 #6] INFO -- : Inline processing of topic course_change with 1 messages took 1.37 ms +I, [2018-08-07T00:58:46.553939 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:58:46.554456 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-08-07T00:58:46.554493 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:58:46.613714 #6] INFO -- : Committing offsets: section_change/0:1397 +I, [2018-08-07T00:58:46.636430 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T00:58:46.636477 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:58:46.636784 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T00:58:46.636814 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:58:46.637080 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T00:58:46.637109 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:58:46.637371 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T00:58:46.637422 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:58:46.637714 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T00:58:46.637766 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:58:46.638303 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.41 ms +I, [2018-08-07T00:58:46.638396 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:58:46.638892 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T00:58:46.638928 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:58:48.556671 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.26 ms +I, [2018-08-07T00:58:48.556720 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:58:48.556983 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T00:58:48.557013 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:58:48.557265 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T00:58:48.557296 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:58:48.557511 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T00:58:48.557540 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:58:48.557784 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T00:58:48.557859 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:58:48.558080 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T00:58:48.558161 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:58:48.558607 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T00:58:48.558641 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:58:48.558876 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T00:58:48.558906 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:58:48.639993 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-08-07T00:58:48.640054 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:58:48.641092 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.4 ms +I, [2018-08-07T00:58:48.641151 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:58:48.641542 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T00:58:48.641574 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:58:48.641891 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T00:58:48.641922 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:58:48.642188 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T00:58:48.642229 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:58:48.642448 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T00:58:48.642478 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:58:48.642738 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T00:58:48.642767 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:58:48.642998 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T00:58:48.643030 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:58:48.643269 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T00:58:48.646251 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:58:48.647042 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T00:58:48.647083 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:58:48.647304 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T00:58:48.647334 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:58:48.647577 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T00:58:48.647607 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:58:48.647932 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T00:58:48.647967 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:58:50.559600 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-08-07T00:58:50.559650 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:58:50.559964 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T00:58:50.560236 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:58:50.561045 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.36 ms +I, [2018-08-07T00:58:50.561135 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:58:50.561660 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.25 ms +I, [2018-08-07T00:58:50.561698 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:58:50.562016 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T00:58:50.562059 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:58:50.562302 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T00:58:50.562332 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:58:50.562675 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T00:58:50.562725 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:58:50.657561 #6] INFO -- : Inline processing of topic section_change with 1 messages took 4.89 ms +I, [2018-08-07T00:58:50.657661 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:58:50.660416 #6] INFO -- : Inline processing of topic section_change with 1 messages took 2.06 ms +I, [2018-08-07T00:58:50.660475 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:58:50.666162 #6] INFO -- : Inline processing of topic section_change with 1 messages took 4.65 ms +I, [2018-08-07T00:58:50.666230 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:58:50.666760 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T00:58:50.670209 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:58:50.672776 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.79 ms +I, [2018-08-07T00:58:50.672841 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:58:50.675212 #6] INFO -- : Inline processing of topic section_change with 1 messages took 1.69 ms +I, [2018-08-07T00:58:50.675629 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:58:52.564420 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.3 ms +I, [2018-08-07T00:58:52.564623 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:58:52.565007 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T00:58:52.565058 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:58:52.677737 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.45 ms +I, [2018-08-07T00:58:52.677811 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:58:52.678378 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-08-07T00:58:52.678430 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:58:52.679026 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-08-07T00:58:52.679078 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:58:54.582792 #6] INFO -- : Inline processing of topic course_change with 1 messages took 3.58 ms +I, [2018-08-07T00:58:54.589607 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:58:54.683439 #6] INFO -- : Inline processing of topic section_change with 1 messages took 2.8 ms +I, [2018-08-07T00:58:54.683606 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:58:54.695773 #6] INFO -- : Inline processing of topic section_change with 1 messages took 10.06 ms +I, [2018-08-07T00:58:54.695898 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:58:56.664955 #6] INFO -- : Committing offsets: course_change/0:679 +I, [2018-08-07T00:58:56.764939 #6] INFO -- : Committing offsets: section_change/0:1428 +I, [2018-08-07T00:59:01.112854 #6] INFO -- : Inline processing of topic section_change with 1 messages took 56.28 ms +I, [2018-08-07T00:59:01.114652 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:59:05.080972 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.62 ms +I, [2018-08-07T00:59:05.081024 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:59:05.082638 #6] INFO -- : Inline processing of topic section_change with 1 messages took 1.01 ms +I, [2018-08-07T00:59:05.082853 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:59:07.085727 #6] INFO -- : Committing offsets: section_change/0:1431 +I, [2018-08-07T00:59:07.159664 #6] INFO -- : Inline processing of topic section_change with 1 messages took 1.77 ms +I, [2018-08-07T00:59:07.159752 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:59:07.165496 #6] INFO -- : Inline processing of topic section_change with 1 messages took 1.89 ms +I, [2018-08-07T00:59:07.165806 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:59:07.494445 #6] INFO -- : Committing offsets: course_change/0:679 +I, [2018-08-07T00:59:09.171591 #6] INFO -- : Inline processing of topic section_change with 1 messages took 3.58 ms +I, [2018-08-07T00:59:09.171648 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:59:11.173091 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.49 ms +I, [2018-08-07T00:59:11.173167 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:59:11.174187 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.61 ms +I, [2018-08-07T00:59:11.174284 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:59:11.175078 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.44 ms +I, [2018-08-07T00:59:11.175169 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:59:11.176067 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.6 ms +I, [2018-08-07T00:59:11.181122 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:59:11.518009 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.57 ms +I, [2018-08-07T00:59:11.518290 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:59:11.522079 #6] INFO -- : Inline processing of topic course_change with 1 messages took 3.07 ms +I, [2018-08-07T00:59:11.522161 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:59:13.189648 #6] INFO -- : Inline processing of topic section_change with 1 messages took 2.45 ms +I, [2018-08-07T00:59:13.193794 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:59:13.202851 #6] INFO -- : Inline processing of topic section_change with 1 messages took 1.11 ms +I, [2018-08-07T00:59:13.203005 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:59:15.204786 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.64 ms +I, [2018-08-07T00:59:15.204843 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:59:15.205654 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.53 ms +I, [2018-08-07T00:59:15.205717 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:59:15.206664 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.65 ms +I, [2018-08-07T00:59:15.206721 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:59:15.208257 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.94 ms +I, [2018-08-07T00:59:15.208299 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:59:15.209244 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.8 ms +I, [2018-08-07T00:59:15.209282 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:59:15.525451 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.29 ms +I, [2018-08-07T00:59:15.525547 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:59:17.209836 #6] INFO -- : Committing offsets: section_change/0:1445 +I, [2018-08-07T00:59:17.217072 #6] INFO -- : Inline processing of topic section_change with 1 messages took 1.78 ms +I, [2018-08-07T00:59:17.217133 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:59:17.220114 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.6 ms +I, [2018-08-07T00:59:17.220264 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:59:17.221984 #6] INFO -- : Inline processing of topic section_change with 1 messages took 1.11 ms +I, [2018-08-07T00:59:17.222255 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:59:17.526020 #6] INFO -- : Committing offsets: course_change/0:682 +I, [2018-08-07T00:59:19.223730 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.4 ms +I, [2018-08-07T00:59:19.223815 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:59:19.226252 #6] INFO -- : Inline processing of topic section_change with 1 messages took 1.56 ms +I, [2018-08-07T00:59:19.226341 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:59:19.227048 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.48 ms +I, [2018-08-07T00:59:19.227095 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:59:21.228644 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.61 ms +I, [2018-08-07T00:59:21.228699 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:59:21.229317 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.4 ms +I, [2018-08-07T00:59:21.229770 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:59:21.551153 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T00:59:21.551204 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:59:23.233938 #6] INFO -- : Inline processing of topic section_change with 1 messages took 1.87 ms +I, [2018-08-07T00:59:23.235887 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:59:23.237867 #6] INFO -- : Inline processing of topic section_change with 1 messages took 1.39 ms +I, [2018-08-07T00:59:23.241860 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:59:23.244710 #6] INFO -- : Inline processing of topic section_change with 1 messages took 1.19 ms +I, [2018-08-07T00:59:23.245207 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:59:23.246394 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-08-07T00:59:23.246444 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:59:23.552465 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.5 ms +I, [2018-08-07T00:59:23.552518 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:59:23.553299 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T00:59:23.553349 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:59:23.553642 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T00:59:23.553718 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:59:25.247794 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.63 ms +I, [2018-08-07T00:59:25.247879 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:59:25.248819 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.59 ms +I, [2018-08-07T00:59:25.248876 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:59:25.249420 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-08-07T00:59:25.249501 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:59:25.554734 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.23 ms +I, [2018-08-07T00:59:25.554799 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:59:25.555133 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T00:59:25.555204 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:59:25.555500 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-08-07T00:59:25.555540 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:59:25.556279 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.59 ms +I, [2018-08-07T00:59:25.556316 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:59:27.249970 #6] INFO -- : Committing offsets: section_change/0:1460 +I, [2018-08-07T00:59:27.259658 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-08-07T00:59:27.259711 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:59:27.261477 #6] INFO -- : Inline processing of topic section_change with 1 messages took 1.27 ms +I, [2018-08-07T00:59:27.262657 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:59:27.272894 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-08-07T00:59:27.272966 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:59:27.273522 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-08-07T00:59:27.273579 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:59:27.274794 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.5 ms +I, [2018-08-07T00:59:27.275105 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:59:27.275781 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.4 ms +I, [2018-08-07T00:59:27.275843 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:59:27.557204 #6] INFO -- : Committing offsets: course_change/0:690 +I, [2018-08-07T00:59:27.569605 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.27 ms +I, [2018-08-07T00:59:27.569659 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:59:27.570025 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T00:59:27.570063 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:59:29.277398 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.41 ms +I, [2018-08-07T00:59:29.277449 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:59:29.277915 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T00:59:29.277966 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:59:29.278393 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T00:59:29.278441 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:59:29.278841 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T00:59:29.278890 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:59:29.279291 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T00:59:29.279337 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:59:29.279718 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T00:59:29.279764 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:59:29.572499 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.31 ms +I, [2018-08-07T00:59:29.572554 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:59:29.572864 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T00:59:29.572901 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:59:29.573177 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T00:59:29.573212 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:59:29.573478 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T00:59:29.573511 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:59:31.280699 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-08-07T00:59:31.280771 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:59:31.281074 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T00:59:31.281203 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:59:31.281596 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T00:59:31.281631 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:59:31.282010 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T00:59:31.282043 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:59:31.282414 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T00:59:31.282451 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:59:31.574226 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T00:59:31.574276 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:59:31.574549 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T00:59:31.574580 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:59:31.574794 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T00:59:31.574823 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:59:31.575129 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-08-07T00:59:31.575188 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:59:33.337734 #6] INFO -- : Inline processing of topic section_change with 1 messages took 54.71 ms +I, [2018-08-07T00:59:33.360282 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:59:33.369260 #6] INFO -- : Inline processing of topic section_change with 1 messages took 8.54 ms +I, [2018-08-07T00:59:33.369405 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:59:33.544327 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.66 ms +I, [2018-08-07T00:59:33.544415 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:59:33.545276 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-08-07T00:59:33.545366 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:59:35.378616 #6] INFO -- : Inline processing of topic section_change with 1 messages took 1.61 ms +I, [2018-08-07T00:59:35.378712 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:59:35.547000 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.62 ms +I, [2018-08-07T00:59:35.547500 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:59:37.379460 #6] INFO -- : Committing offsets: section_change/0:1480 +I, [2018-08-07T00:59:37.391446 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-08-07T00:59:37.391622 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:59:37.392336 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.48 ms +I, [2018-08-07T00:59:37.392500 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:59:37.393126 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-08-07T00:59:37.393173 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:59:37.393517 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T00:59:37.393548 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:59:37.394036 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T00:59:37.395159 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:59:37.548651 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.48 ms +I, [2018-08-07T00:59:37.548719 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:59:37.549254 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.34 ms +I, [2018-08-07T00:59:37.549303 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:59:37.549755 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T00:59:37.549974 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:59:37.550479 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.32 ms +I, [2018-08-07T00:59:37.550528 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:59:39.397464 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.69 ms +I, [2018-08-07T00:59:39.397548 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:59:39.398531 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.47 ms +I, [2018-08-07T00:59:39.398593 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:59:39.399892 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.8 ms +I, [2018-08-07T00:59:39.399960 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:59:39.400813 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.63 ms +I, [2018-08-07T00:59:39.400881 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:59:39.401671 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.57 ms +I, [2018-08-07T00:59:39.401721 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:59:39.551029 #6] INFO -- : Committing offsets: course_change/0:707 +I, [2018-08-07T00:59:39.555540 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.24 ms +I, [2018-08-07T00:59:39.555588 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:59:41.404826 #6] INFO -- : Inline processing of topic section_change with 1 messages took 1.72 ms +I, [2018-08-07T00:59:41.404902 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:59:41.406755 #6] INFO -- : Inline processing of topic section_change with 1 messages took 1.33 ms +I, [2018-08-07T00:59:41.406898 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:59:41.411653 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-08-07T00:59:41.411728 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:59:41.412093 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T00:59:41.412124 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:59:41.416036 #6] INFO -- : Inline processing of topic section_change with 1 messages took 3.69 ms +I, [2018-08-07T00:59:41.416111 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:59:41.562381 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.6 ms +I, [2018-08-07T00:59:41.562550 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:59:41.563979 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.66 ms +I, [2018-08-07T00:59:41.564118 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:59:41.565728 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.52 ms +I, [2018-08-07T00:59:41.565795 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:59:41.567528 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.65 ms +I, [2018-08-07T00:59:41.567613 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:59:43.418816 #6] INFO -- : Inline processing of topic section_change with 1 messages took 1.69 ms +I, [2018-08-07T00:59:43.418870 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:59:43.419157 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T00:59:43.419189 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:59:43.419462 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T00:59:43.419494 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:59:43.419886 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T00:59:43.419917 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:59:43.424707 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-08-07T00:59:43.424767 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:59:43.425221 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T00:59:43.425265 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:59:43.572858 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.23 ms +I, [2018-08-07T00:59:43.572929 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:59:43.573310 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-08-07T00:59:43.573357 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:59:43.573725 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-08-07T00:59:43.573767 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:59:43.574096 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T00:59:43.574140 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:59:43.574408 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T00:59:43.574505 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:59:43.574787 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T00:59:43.574830 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:59:45.681711 #6] INFO -- : Inline processing of topic section_change with 1 messages took 3.97 ms +I, [2018-08-07T00:59:45.681951 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:59:45.683359 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.97 ms +I, [2018-08-07T00:59:45.683722 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:59:45.686733 #6] INFO -- : Inline processing of topic section_change with 1 messages took 2.73 ms +I, [2018-08-07T00:59:45.686813 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:59:45.713827 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.56 ms +I, [2018-08-07T00:59:45.713949 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:59:45.717446 #6] INFO -- : Inline processing of topic course_change with 1 messages took 2.25 ms +I, [2018-08-07T00:59:45.722673 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:59:45.723852 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.72 ms +I, [2018-08-07T00:59:45.723908 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:59:47.693640 #6] INFO -- : Committing offsets: section_change/0:1504 +I, [2018-08-07T00:59:47.702245 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-08-07T00:59:47.702470 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:59:47.702984 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-08-07T00:59:47.703188 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:59:47.703615 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-08-07T00:59:47.703647 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:59:47.704111 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T00:59:47.704247 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:59:47.704637 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T00:59:47.704670 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:59:47.705167 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-08-07T00:59:47.705200 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:59:47.725580 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.5 ms +I, [2018-08-07T00:59:47.725649 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:59:47.726699 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T00:59:47.726748 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:59:47.728762 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T00:59:47.729012 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:59:47.729352 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T00:59:47.729386 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:59:47.729673 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-08-07T00:59:47.729741 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:59:47.730088 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-08-07T00:59:47.730142 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:59:49.706298 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-08-07T00:59:49.706373 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:59:49.706762 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T00:59:49.706794 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:59:49.707119 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T00:59:49.707167 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:59:49.707494 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T00:59:49.707606 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:59:49.708160 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.43 ms +I, [2018-08-07T00:59:49.708192 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:59:49.710783 #6] INFO -- : Inline processing of topic section_change with 1 messages took 2.2 ms +I, [2018-08-07T00:59:49.710862 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:59:49.712108 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T00:59:49.712169 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:59:49.712827 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T00:59:49.712959 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:59:49.713799 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T00:59:49.713916 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:59:49.716090 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-08-07T00:59:49.716302 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:59:49.717072 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-08-07T00:59:49.717155 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:59:49.717657 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-08-07T00:59:49.717718 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:59:49.718232 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-08-07T00:59:49.718369 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:59:49.719250 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.42 ms +I, [2018-08-07T00:59:49.719412 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:59:49.720170 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-08-07T00:59:49.720223 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:59:49.720825 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.42 ms +I, [2018-08-07T00:59:49.720892 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:59:49.722215 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T00:59:49.722287 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:59:49.722531 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T00:59:49.722561 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:59:49.731027 #6] INFO -- : Committing offsets: course_change/0:727 +I, [2018-08-07T00:59:49.739893 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T00:59:49.739940 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:59:49.740250 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T00:59:49.740328 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:59:49.740558 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T00:59:49.740608 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:59:49.740871 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T00:59:49.740924 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:59:49.741177 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T00:59:49.743593 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:59:49.742376 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.46 ms +I, [2018-08-07T00:59:49.743834 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:59:49.746906 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-08-07T00:59:49.746967 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:59:49.747298 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T00:59:49.747422 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:59:49.747718 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T00:59:49.747842 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:59:49.748335 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-08-07T00:59:49.748390 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:59:49.748814 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T00:59:49.748864 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:59:51.749681 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T00:59:51.749730 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:59:51.749997 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T00:59:51.750083 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:59:51.750405 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T00:59:51.750474 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:59:51.750819 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T00:59:51.750864 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:59:51.751166 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T00:59:51.751198 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:59:51.751691 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-08-07T00:59:51.751723 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:59:51.752010 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T00:59:51.752054 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:59:51.756524 #6] INFO -- : Inline processing of topic section_change with 1 messages took 4.27 ms +I, [2018-08-07T00:59:51.756657 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:59:51.757465 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-08-07T00:59:51.757521 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:59:51.758381 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T00:59:51.758464 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:59:51.758816 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T00:59:51.758860 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:59:51.759190 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T00:59:51.759251 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:59:51.759526 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T00:59:51.759557 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:59:51.759935 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T00:59:51.759979 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:59:51.760327 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T00:59:51.760370 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:59:51.760694 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T00:59:51.760753 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:59:51.761053 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T00:59:51.761095 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:59:51.761491 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T00:59:51.761532 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:59:51.761743 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T00:59:51.761772 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:59:51.762019 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T00:59:51.762051 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:59:51.762272 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T00:59:51.765796 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:59:51.766290 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T00:59:51.766341 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:59:51.766728 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T00:59:51.766808 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:59:51.767470 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.48 ms +I, [2018-08-07T00:59:51.767520 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:59:51.767906 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T00:59:51.768362 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:59:51.769304 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.52 ms +I, [2018-08-07T00:59:51.769356 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:59:51.769722 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T00:59:51.769783 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:59:51.770057 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T00:59:51.770096 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:59:51.770338 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T00:59:51.770367 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:59:51.770634 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T00:59:51.770685 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:59:51.773741 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T00:59:51.773802 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:59:51.774156 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T00:59:51.774197 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:59:51.774900 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T00:59:51.776066 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:59:51.776728 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T00:59:51.776781 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:59:51.777116 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T00:59:51.777148 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:59:51.777389 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T00:59:51.777541 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:59:51.777880 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T00:59:51.777924 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:59:51.778234 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T00:59:51.778278 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:59:51.778824 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-08-07T00:59:51.778914 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:59:51.779258 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T00:59:51.779301 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:59:51.779691 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T00:59:51.779730 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:59:51.780700 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-08-07T00:59:51.780821 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:59:51.781486 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T00:59:51.781554 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:59:51.782354 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.52 ms +I, [2018-08-07T00:59:51.782410 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:59:51.782793 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T00:59:51.782844 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:59:51.783208 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T00:59:51.783258 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:59:51.783641 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T00:59:51.783689 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:59:51.784042 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T00:59:51.784191 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:59:51.784669 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T00:59:51.784716 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:59:51.785058 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T00:59:51.785103 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:59:51.785440 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T00:59:51.785481 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:59:51.785785 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T00:59:51.785817 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:59:51.786044 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T00:59:51.786086 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:59:51.786371 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T00:59:51.786470 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:59:51.786992 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T00:59:51.787044 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:59:51.787428 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T00:59:51.787473 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:59:51.787824 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T00:59:51.787868 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:59:51.788188 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T00:59:51.788231 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:59:51.788602 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T00:59:51.788656 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:59:51.789478 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.44 ms +I, [2018-08-07T00:59:51.789650 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:59:51.790480 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.41 ms +I, [2018-08-07T00:59:51.790539 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:59:51.791120 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T00:59:51.791175 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:59:51.791541 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T00:59:51.791640 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:59:51.791950 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T00:59:51.792000 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:59:51.792345 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T00:59:51.792392 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:59:51.792830 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T00:59:51.792876 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:59:51.793216 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T00:59:51.796095 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:59:51.796575 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T00:59:51.796627 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:59:51.797020 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T00:59:51.797071 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:59:51.797638 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-08-07T00:59:51.797687 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:59:51.798269 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-08-07T00:59:51.798372 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:59:51.798907 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T00:59:51.798954 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:59:51.799766 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.43 ms +I, [2018-08-07T00:59:51.799841 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:59:51.800200 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T00:59:51.800244 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:59:51.800563 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T00:59:51.800605 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:59:51.800977 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T00:59:51.801047 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:59:51.771350 #6] INFO -- : Inline processing of topic course_change with 1 messages took 22.25 ms +I, [2018-08-07T00:59:51.801222 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:59:51.801611 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T00:59:51.801661 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:59:51.802031 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T00:59:51.802081 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:59:51.802556 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.26 ms +I, [2018-08-07T00:59:51.802636 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:59:53.803592 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-08-07T00:59:53.803662 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:59:53.804810 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.96 ms +I, [2018-08-07T00:59:53.804864 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:59:53.805468 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.43 ms +I, [2018-08-07T00:59:53.805516 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:59:53.806467 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-08-07T00:59:53.807641 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:59:53.808264 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-08-07T00:59:53.808349 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:59:53.812080 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.25 ms +I, [2018-08-07T00:59:53.812141 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:59:53.812993 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.5 ms +I, [2018-08-07T00:59:53.813054 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:59:53.813435 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T00:59:53.813479 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:59:53.813896 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T00:59:53.813942 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:59:53.814282 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T00:59:53.814363 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:59:53.814617 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T00:59:53.814694 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:59:53.814961 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T00:59:53.815020 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:59:53.815321 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T00:59:53.815352 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:59:53.815660 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T00:59:53.815692 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:59:53.816002 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T00:59:53.816037 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:59:53.816395 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T00:59:53.816463 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:59:53.816989 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-08-07T00:59:53.817034 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:59:53.817376 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T00:59:53.817427 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:59:53.822496 #6] INFO -- : Inline processing of topic section_change with 1 messages took 4.41 ms +I, [2018-08-07T00:59:53.822626 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:59:53.823644 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T00:59:53.823694 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:59:55.813950 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.67 ms +I, [2018-08-07T00:59:55.814124 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T00:59:55.825338 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.68 ms +I, [2018-08-07T00:59:55.825477 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:59:55.828168 #6] INFO -- : Inline processing of topic section_change with 1 messages took 2.22 ms +I, [2018-08-07T00:59:55.828248 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:59:57.830218 #6] INFO -- : Committing offsets: section_change/0:1631 +I, [2018-08-07T00:59:57.836582 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.5 ms +I, [2018-08-07T00:59:57.836656 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:59:57.837344 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.43 ms +I, [2018-08-07T00:59:57.837393 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:59:59.815157 #6] INFO -- : Committing offsets: course_change/0:738 +I, [2018-08-07T00:59:59.839312 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.64 ms +I, [2018-08-07T00:59:59.839471 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:59:59.840505 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.58 ms +I, [2018-08-07T00:59:59.840664 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T00:59:59.841209 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-08-07T00:59:59.841351 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:00:01.807416 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.55 ms +I, [2018-08-07T01:00:01.807554 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:00:01.808118 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-08-07T01:00:01.808171 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:00:03.809246 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.52 ms +I, [2018-08-07T01:00:03.809306 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:00:03.809841 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-08-07T01:00:03.809877 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:00:05.811206 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-08-07T01:00:05.811330 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:00:05.811729 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T01:00:05.811765 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:00:07.813217 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-08-07T01:00:07.813268 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:00:07.813712 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-08-07T01:00:07.813744 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:00:07.814110 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T01:00:07.814142 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:00:10.263884 #6] INFO -- : Committing offsets: section_change/0:1645 +I, [2018-08-07T01:00:10.333474 #6] INFO -- : Inline processing of topic section_change with 1 messages took 1.31 ms +I, [2018-08-07T01:00:10.333560 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:00:11.797070 #6] INFO -- : Committing offsets: course_change/0:738 +I, [2018-08-07T01:00:14.437136 #6] INFO -- : Inline processing of topic section_change with 1 messages took 78.46 ms +I, [2018-08-07T01:00:14.437217 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:00:16.439026 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.86 ms +I, [2018-08-07T01:00:16.439088 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:00:16.441428 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.67 ms +I, [2018-08-07T01:00:16.441495 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:00:18.490066 #6] INFO -- : Inline processing of topic section_change with 1 messages took 3.43 ms +I, [2018-08-07T01:00:18.490352 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:00:18.494664 #6] INFO -- : Inline processing of topic section_change with 1 messages took 1.46 ms +I, [2018-08-07T01:00:18.494831 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:00:18.505896 #6] INFO -- : Inline processing of topic section_change with 1 messages took 9.98 ms +I, [2018-08-07T01:00:18.517009 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:00:20.518106 #6] INFO -- : Committing offsets: section_change/0:1652 +I, [2018-08-07T01:00:21.898556 #6] INFO -- : Committing offsets: course_change/0:738 +I, [2018-08-07T01:00:22.542995 #6] INFO -- : Inline processing of topic section_change with 1 messages took 3.5 ms +I, [2018-08-07T01:00:22.543104 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:00:22.544429 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.94 ms +I, [2018-08-07T01:00:22.544534 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:00:23.928274 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.81 ms +I, [2018-08-07T01:00:23.928362 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:00:24.546852 #6] INFO -- : Inline processing of topic section_change with 1 messages took 1.09 ms +I, [2018-08-07T01:00:24.546961 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:00:24.548240 #6] INFO -- : Inline processing of topic section_change with 1 messages took 1.07 ms +I, [2018-08-07T01:00:24.548345 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:00:24.549019 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-08-07T01:00:24.549082 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:00:25.929568 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T01:00:25.929619 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:00:26.551282 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.58 ms +I, [2018-08-07T01:00:26.551350 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:00:26.555906 #6] INFO -- : Inline processing of topic section_change with 1 messages took 2.46 ms +I, [2018-08-07T01:00:26.555987 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:00:26.558709 #6] INFO -- : Inline processing of topic section_change with 1 messages took 2.25 ms +I, [2018-08-07T01:00:26.558799 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:00:28.559719 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-08-07T01:00:28.559786 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:00:28.560276 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-08-07T01:00:28.560338 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:00:28.560911 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.43 ms +I, [2018-08-07T01:00:28.560955 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:00:30.564023 #6] INFO -- : Committing offsets: section_change/0:1663 +I, [2018-08-07T01:00:30.572056 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-08-07T01:00:30.572102 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:00:30.572493 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T01:00:30.572526 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:00:30.572892 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T01:00:30.572924 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:00:32.536782 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-08-07T01:00:32.536834 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:00:32.537361 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T01:00:32.537413 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:00:32.537815 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T01:00:32.537851 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:00:32.538189 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T01:00:32.538220 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:00:33.897958 #6] INFO -- : Committing offsets: course_change/0:740 +I, [2018-08-07T01:00:34.540336 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-08-07T01:00:34.540426 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:00:34.540880 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T01:00:34.540916 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:00:34.541188 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T01:00:34.541350 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:00:36.544937 #6] INFO -- : Inline processing of topic section_change with 1 messages took 2.92 ms +I, [2018-08-07T01:00:36.544990 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:00:36.546032 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.89 ms +I, [2018-08-07T01:00:36.546070 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:00:36.546522 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T01:00:36.546553 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:00:38.547727 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-08-07T01:00:38.547778 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:00:38.548269 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-08-07T01:00:38.548308 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:00:38.548851 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-08-07T01:00:38.548943 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:00:39.907977 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T01:00:39.908026 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:00:39.908739 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.58 ms +I, [2018-08-07T01:00:39.908777 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:00:40.549699 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-08-07T01:00:40.549748 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:00:40.550316 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.43 ms +I, [2018-08-07T01:00:40.550351 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:00:42.550598 #6] INFO -- : Committing offsets: section_change/0:1681 +I, [2018-08-07T01:00:42.556284 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-08-07T01:00:42.556356 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:00:42.557039 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.45 ms +I, [2018-08-07T01:00:42.557532 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:00:42.558065 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T01:00:42.558103 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:00:43.910261 #6] INFO -- : Committing offsets: course_change/0:742 +I, [2018-08-07T01:00:44.560099 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-08-07T01:00:44.560157 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:00:44.560599 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T01:00:44.560631 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:00:44.562028 #6] INFO -- : Inline processing of topic section_change with 1 messages took 1.26 ms +I, [2018-08-07T01:00:44.562072 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:00:44.562440 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T01:00:44.562471 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:00:44.563007 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-08-07T01:00:44.563048 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:00:46.564427 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.61 ms +I, [2018-08-07T01:00:46.564538 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:00:46.565186 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-08-07T01:00:46.565278 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:00:46.565987 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.51 ms +I, [2018-08-07T01:00:46.566078 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:00:48.568647 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-08-07T01:00:48.568699 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:00:48.569051 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T01:00:48.569083 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:00:48.569486 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T01:00:48.569517 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:00:50.570553 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-08-07T01:00:50.570621 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:00:50.571639 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-08-07T01:00:50.571713 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:00:50.572020 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T01:00:50.572051 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:00:50.572360 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T01:00:50.572417 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:00:50.572645 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T01:00:50.572676 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:00:50.572950 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T01:00:50.572981 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:00:51.917397 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-08-07T01:00:51.917446 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:00:51.917658 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-08-07T01:00:51.917687 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:00:51.917903 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T01:00:51.917932 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:00:51.918162 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T01:00:51.918190 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:00:51.918390 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T01:00:51.918418 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:00:52.574100 #6] INFO -- : Committing offsets: section_change/0:1701 +I, [2018-08-07T01:00:52.579624 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-08-07T01:00:52.579728 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:00:52.580426 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T01:00:52.580476 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:00:52.581105 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-08-07T01:00:52.581211 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:00:52.581901 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-08-07T01:00:52.581952 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:00:52.582548 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T01:00:52.582637 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:00:53.919398 #6] INFO -- : Committing offsets: course_change/0:747 +I, [2018-08-07T01:00:53.923036 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.28 ms +I, [2018-08-07T01:00:53.923085 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:00:53.923383 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T01:00:53.923414 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:00:53.923669 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-08-07T01:00:53.923701 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:00:53.923929 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T01:00:53.923960 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:00:53.924247 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T01:00:53.924294 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:00:54.583385 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T01:00:54.583437 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:00:54.583833 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T01:00:54.583866 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:00:54.584187 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T01:00:54.584226 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:00:54.584501 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T01:00:54.584531 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:00:54.584770 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T01:00:54.584799 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:00:55.926350 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-08-07T01:00:55.926400 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:00:55.926625 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-08-07T01:00:55.926656 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:00:55.927093 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.28 ms +I, [2018-08-07T01:00:55.927140 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:00:55.927467 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T01:00:55.927513 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:00:55.927743 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T01:00:55.927773 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:00:56.586389 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-08-07T01:00:56.586451 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:00:56.586832 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T01:00:56.586873 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:00:56.587091 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T01:00:56.587138 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:00:56.587412 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T01:00:56.587445 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:00:56.587743 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T01:00:56.587778 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:00:56.588821 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.88 ms +I, [2018-08-07T01:00:56.588874 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:00:57.928641 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T01:00:57.928691 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:00:57.928985 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T01:00:57.929025 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:00:57.929539 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T01:00:57.929577 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:00:57.929812 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T01:00:57.932779 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:00:57.933178 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-08-07T01:00:57.933226 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:00:57.933586 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T01:00:57.933628 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:00:58.590788 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T01:00:58.590837 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:00:58.591344 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T01:00:58.591384 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:00:58.591725 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T01:00:58.591757 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:00:58.592085 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T01:00:58.592123 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:00:58.592386 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T01:00:58.592419 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:00:58.592733 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T01:00:58.592763 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:00:58.592971 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T01:00:58.593007 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:00:58.593300 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T01:00:58.593330 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:00:58.593625 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T01:00:58.593682 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:00:58.593900 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T01:00:58.593971 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:00:58.594391 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T01:00:58.594459 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:00:58.594773 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T01:00:58.594814 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:00:58.595103 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T01:00:58.595134 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:00:58.595789 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.48 ms +I, [2018-08-07T01:00:58.595840 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:00:58.596112 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T01:00:58.596173 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:00:58.596499 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T01:00:58.596541 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:00:58.596931 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T01:00:58.596984 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:00:58.597284 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T01:00:58.597316 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:00:58.597694 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T01:00:58.597770 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:00:58.598133 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T01:00:58.598167 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:00:59.934742 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T01:00:59.934841 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:00:59.935097 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-08-07T01:00:59.935129 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:00:59.935350 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T01:00:59.935561 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:00:59.935958 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.24 ms +I, [2018-08-07T01:00:59.935993 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:00:59.936224 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T01:00:59.936253 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:01:00.599134 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T01:01:00.599241 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:01:00.599488 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T01:01:00.599519 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:01:00.599856 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T01:01:00.599999 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:01:00.600323 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T01:01:00.600358 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:01:00.600595 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T01:01:00.600626 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:01:00.600945 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T01:01:00.604536 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:01:00.604899 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T01:01:00.604936 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:01:00.605192 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T01:01:00.605226 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:01:00.605502 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T01:01:00.605539 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:01:00.605776 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T01:01:00.605809 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:01:00.606047 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T01:01:00.606135 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:01:00.606436 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T01:01:00.606471 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:01:00.606744 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T01:01:00.606779 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:01:00.607051 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T01:01:00.607098 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:01:00.607480 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T01:01:00.607530 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:01:00.609165 #6] INFO -- : Inline processing of topic section_change with 1 messages took 1.47 ms +I, [2018-08-07T01:01:00.609241 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:01:01.898245 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T01:01:01.898312 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:01:01.898560 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T01:01:01.898590 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:01:01.898838 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T01:01:01.898868 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:01:01.899124 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T01:01:01.899168 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:01:02.574096 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.43 ms +I, [2018-08-07T01:01:02.574304 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:01:02.574767 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-08-07T01:01:02.574816 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:01:02.576443 #6] INFO -- : Inline processing of topic section_change with 1 messages took 1.45 ms +I, [2018-08-07T01:01:02.576504 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:01:02.576884 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T01:01:02.576920 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:01:02.577219 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T01:01:02.577259 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:01:03.900935 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-08-07T01:01:03.900985 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:01:03.901327 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T01:01:03.901359 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:01:04.578348 #6] INFO -- : Committing offsets: section_change/0:1758 +I, [2018-08-07T01:01:04.583213 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T01:01:04.583258 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:01:04.583544 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T01:01:04.583574 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:01:04.583837 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T01:01:04.583898 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:01:04.584140 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T01:01:04.584169 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:01:04.584462 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T01:01:04.584491 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:01:04.584733 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T01:01:04.584762 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:01:05.902802 #6] INFO -- : Committing offsets: course_change/0:774 +I, [2018-08-07T01:01:05.917094 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T01:01:05.917141 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:01:05.917403 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T01:01:05.917446 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:01:05.917806 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T01:01:05.917900 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:01:05.918498 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.45 ms +I, [2018-08-07T01:01:05.918542 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:01:06.585572 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T01:01:06.585622 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:01:06.585889 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T01:01:06.585920 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:01:06.586211 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T01:01:06.586241 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:01:06.586514 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T01:01:06.586544 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:01:06.587258 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T01:01:06.587309 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:01:07.919632 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-08-07T01:01:07.919682 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:01:07.919919 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T01:01:07.919949 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:01:08.588547 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T01:01:08.588596 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:01:08.588918 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T01:01:08.588948 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:01:08.589236 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T01:01:08.589266 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:01:08.590889 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T01:01:08.590926 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:01:08.591317 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T01:01:08.591349 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:01:08.591618 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T01:01:08.591675 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:01:09.921023 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-08-07T01:01:09.921122 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:01:09.921383 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T01:01:09.921414 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:01:09.921630 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T01:01:09.921660 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:01:09.921890 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T01:01:09.921920 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:01:10.592349 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T01:01:10.592398 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:01:10.592697 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T01:01:10.592728 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:01:10.592987 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T01:01:10.593016 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:01:10.593260 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T01:01:10.593289 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:01:10.593539 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T01:01:10.593568 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:01:10.593831 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T01:01:10.593860 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:01:11.922750 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-08-07T01:01:11.922799 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:01:11.923033 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T01:01:11.923072 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:01:11.923276 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-08-07T01:01:11.923305 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:01:12.594717 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-08-07T01:01:12.594768 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:01:12.595080 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T01:01:12.595111 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:01:12.595415 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T01:01:12.595445 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:01:12.595767 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T01:01:12.595806 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:01:12.596092 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T01:01:12.596125 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:01:13.924636 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-08-07T01:01:13.924685 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:01:13.924929 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T01:01:13.924958 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:01:13.925197 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T01:01:13.925226 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:01:13.925438 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T01:01:13.925467 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:01:13.925717 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T01:01:13.925745 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:01:13.925961 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T01:01:13.925989 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:01:14.597197 #6] INFO -- : Committing offsets: section_change/0:1786 +I, [2018-08-07T01:01:14.600087 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-08-07T01:01:14.600133 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:01:14.600440 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T01:01:14.600470 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:01:14.600697 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T01:01:14.600726 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:01:14.601641 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T01:01:14.601678 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:01:14.601993 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T01:01:14.602022 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:01:14.604682 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T01:01:14.604731 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:01:15.926263 #6] INFO -- : Committing offsets: course_change/0:793 +I, [2018-08-07T01:01:15.928954 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T01:01:15.928997 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:01:15.929236 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T01:01:15.929266 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:01:15.929458 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T01:01:15.929517 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:01:15.929704 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T01:01:15.929764 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:01:15.929960 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T01:01:15.929989 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:01:15.930213 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T01:01:15.930241 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:01:16.605551 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T01:01:16.605600 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:01:16.605871 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T01:01:16.605902 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:01:16.606179 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T01:01:16.606209 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:01:16.606442 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T01:01:16.606472 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:01:16.606782 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T01:01:16.606811 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:01:16.607061 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T01:01:16.607090 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:01:17.930891 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T01:01:17.930940 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:01:17.931246 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T01:01:17.931277 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:01:17.931495 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-08-07T01:01:17.931524 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:01:17.931733 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T01:01:17.931762 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:01:18.608055 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T01:01:18.608105 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:01:18.608396 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T01:01:18.608426 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:01:18.608737 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T01:01:18.608768 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:01:18.609088 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T01:01:18.609130 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:01:18.609416 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T01:01:18.609445 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:01:18.609662 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-08-07T01:01:18.609719 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:01:18.609944 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T01:01:18.609973 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:01:19.932569 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T01:01:19.932618 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:01:19.932861 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T01:01:19.932892 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:01:19.933104 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T01:01:19.933134 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:01:19.933339 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T01:01:19.933368 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:01:19.933586 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T01:01:19.933796 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:01:19.934076 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T01:01:19.934124 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:01:19.934348 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T01:01:19.934401 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:01:19.936078 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T01:01:19.936118 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:01:20.611331 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-08-07T01:01:20.611408 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:01:20.611728 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T01:01:20.611761 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:01:20.612548 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T01:01:20.612584 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:01:20.613057 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T01:01:20.613089 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:01:20.613397 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T01:01:20.613438 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:01:20.613670 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T01:01:20.613699 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:01:20.613993 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T01:01:20.614022 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:01:20.614321 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T01:01:20.614355 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:01:21.936869 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-08-07T01:01:21.936918 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:01:21.937147 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T01:01:21.937176 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:01:21.937419 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T01:01:21.937448 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:01:21.937656 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T01:01:21.937685 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:01:21.937924 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T01:01:21.937954 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:01:21.938183 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T01:01:21.938213 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:01:21.938848 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.46 ms +I, [2018-08-07T01:01:21.938920 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:01:22.619768 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T01:01:22.619854 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:01:22.620110 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T01:01:22.620140 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:01:22.620402 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T01:01:22.620432 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:01:22.620662 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T01:01:22.620692 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:01:22.621132 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T01:01:22.621181 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:01:22.621663 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-08-07T01:01:22.621739 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:01:22.622082 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T01:01:22.622118 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:01:23.940191 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-08-07T01:01:23.940242 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:01:23.940490 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T01:01:23.940520 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:01:23.940790 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T01:01:23.940820 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:01:23.941013 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T01:01:23.941113 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:01:23.941372 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T01:01:23.941401 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:01:23.941620 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T01:01:23.941650 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:01:23.941850 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-08-07T01:01:23.941879 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:01:24.622604 #6] INFO -- : Committing offsets: section_change/0:1820 +I, [2018-08-07T01:01:24.625394 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-08-07T01:01:24.625438 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:01:24.625980 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T01:01:24.626025 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:01:24.626401 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T01:01:24.626443 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:01:24.626763 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T01:01:24.626806 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:01:24.627301 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-08-07T01:01:24.627347 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:01:24.627796 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T01:01:24.627841 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:01:24.628191 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T01:01:24.628223 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:01:25.942450 #6] INFO -- : Committing offsets: course_change/0:825 +I, [2018-08-07T01:01:25.948868 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T01:01:25.948915 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:01:25.949143 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T01:01:25.949173 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:01:25.950255 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T01:01:25.950292 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:01:25.950509 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T01:01:25.950539 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:01:25.950752 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T01:01:25.950781 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:01:25.950982 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T01:01:25.951010 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:01:25.951219 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T01:01:25.951268 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:01:26.629399 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-08-07T01:01:26.629451 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:01:26.630128 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T01:01:26.630167 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:01:26.630486 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T01:01:26.630519 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:01:26.630846 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T01:01:26.630904 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:01:26.631217 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T01:01:26.631246 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:01:26.633478 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-08-07T01:01:26.633521 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:01:27.952109 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.28 ms +I, [2018-08-07T01:01:27.952159 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:01:27.952447 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T01:01:27.952478 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:01:27.952721 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T01:01:27.952751 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:01:28.638107 #6] INFO -- : Inline processing of topic section_change with 1 messages took 3.43 ms +I, [2018-08-07T01:01:28.638290 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:01:28.639861 #6] INFO -- : Inline processing of topic section_change with 1 messages took 1.09 ms +I, [2018-08-07T01:01:28.640637 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:01:28.641994 #6] INFO -- : Inline processing of topic section_change with 1 messages took 1.0 ms +I, [2018-08-07T01:01:28.642105 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:01:28.642977 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-08-07T01:01:28.643030 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:01:29.953684 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-08-07T01:01:29.953742 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:01:29.954921 #6] INFO -- : Inline processing of topic course_change with 1 messages took 1.01 ms +I, [2018-08-07T01:01:29.954959 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:01:29.955196 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T01:01:29.955227 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:01:29.955455 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-08-07T01:01:29.955530 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:01:29.955814 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T01:01:29.955848 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:01:29.956074 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T01:01:29.956138 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:01:30.644211 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-08-07T01:01:30.644261 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:01:30.644529 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T01:01:30.644560 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:01:30.644809 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T01:01:30.644839 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:01:30.645156 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T01:01:30.645186 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:01:30.645413 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T01:01:30.645441 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:01:30.645703 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T01:01:30.645735 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:01:30.645994 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T01:01:30.646023 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:01:30.646260 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-08-07T01:01:30.646290 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:01:31.922403 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.49 ms +I, [2018-08-07T01:01:31.922453 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:01:31.922910 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.27 ms +I, [2018-08-07T01:01:31.922956 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:01:31.923476 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.38 ms +I, [2018-08-07T01:01:31.923513 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:01:31.924014 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.34 ms +I, [2018-08-07T01:01:31.924046 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:01:32.611325 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.81 ms +I, [2018-08-07T01:01:32.687977 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:01:32.688808 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.4 ms +I, [2018-08-07T01:01:32.688879 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:01:32.689837 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.53 ms +I, [2018-08-07T01:01:32.689910 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:01:33.924970 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-08-07T01:01:33.925031 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:01:33.925507 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T01:01:33.925542 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:01:34.691223 #6] INFO -- : Committing offsets: section_change/0:1848 +I, [2018-08-07T01:01:34.699798 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T01:01:34.699843 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:01:34.700870 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.86 ms +I, [2018-08-07T01:01:34.700924 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:01:34.701706 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-08-07T01:01:34.701745 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:01:35.927348 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.6 ms +I, [2018-08-07T01:01:35.927603 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:01:35.928896 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.69 ms +I, [2018-08-07T01:01:35.928934 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:01:35.929440 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-08-07T01:01:35.929480 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:01:35.929902 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-08-07T01:01:35.929938 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:01:35.930207 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-08-07T01:01:35.930298 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:01:35.930532 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T01:01:35.930580 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:01:36.791424 #6] INFO -- : Inline processing of topic section_change with 1 messages took 38.35 ms +I, [2018-08-07T01:01:36.791512 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:01:36.792097 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T01:01:36.792153 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:01:36.792511 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T01:01:36.792556 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:01:36.798302 #6] INFO -- : Inline processing of topic section_change with 1 messages took 5.17 ms +I, [2018-08-07T01:01:36.798374 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:01:36.801114 #6] INFO -- : Inline processing of topic section_change with 1 messages took 2.46 ms +I, [2018-08-07T01:01:36.801181 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:01:36.807140 #6] INFO -- : Inline processing of topic section_change with 1 messages took 1.62 ms +I, [2018-08-07T01:01:36.807237 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:01:36.807854 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-08-07T01:01:36.807923 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:01:36.808388 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T01:01:36.808453 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:01:36.808947 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T01:01:36.809162 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:01:36.809976 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T01:01:36.810033 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:01:36.811956 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-08-07T01:01:36.814061 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:01:36.817759 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.85 ms +I, [2018-08-07T01:01:36.817835 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:01:36.818711 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.5 ms +I, [2018-08-07T01:01:36.819031 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:01:36.820854 #6] INFO -- : Inline processing of topic section_change with 1 messages took 1.51 ms +I, [2018-08-07T01:01:36.820918 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:01:36.821373 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T01:01:36.821440 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:01:37.930900 #6] INFO -- : Committing offsets: course_change/0:853 +I, [2018-08-07T01:01:37.940883 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.44 ms +I, [2018-08-07T01:01:37.940930 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:01:38.823403 #6] INFO -- : Inline processing of topic section_change with 1 messages took 1.31 ms +I, [2018-08-07T01:01:38.823545 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:01:38.824132 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-08-07T01:01:38.824166 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:01:38.824748 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.44 ms +I, [2018-08-07T01:01:38.824780 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:01:39.942089 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.52 ms +I, [2018-08-07T01:01:39.942191 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:01:39.942814 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.25 ms +I, [2018-08-07T01:01:39.942859 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:01:40.828648 #6] INFO -- : Inline processing of topic section_change with 1 messages took 1.33 ms +I, [2018-08-07T01:01:40.828750 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:01:40.832893 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.9 ms +I, [2018-08-07T01:01:40.832981 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:01:41.943879 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-08-07T01:01:41.943962 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:01:42.834334 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.62 ms +I, [2018-08-07T01:01:42.834406 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:01:42.835728 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.9 ms +I, [2018-08-07T01:01:42.835783 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:01:42.836240 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T01:01:42.836288 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:01:43.945731 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.45 ms +I, [2018-08-07T01:01:43.945796 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:01:43.946900 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.29 ms +I, [2018-08-07T01:01:43.947140 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:01:44.837273 #6] INFO -- : Committing offsets: section_change/0:1874 +I, [2018-08-07T01:01:44.844635 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.44 ms +I, [2018-08-07T01:01:44.844689 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:01:44.845139 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-08-07T01:01:44.845172 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:01:44.845516 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T01:01:44.845546 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:01:45.948496 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.24 ms +I, [2018-08-07T01:01:45.948580 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:01:45.949340 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.23 ms +I, [2018-08-07T01:01:45.949379 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:01:45.949679 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T01:01:45.949713 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:01:47.393218 #6] INFO -- : Inline processing of topic section_change with 1 messages took 133.88 ms +I, [2018-08-07T01:01:48.359709 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:01:49.106954 #6] INFO -- : Committing offsets: course_change/0:862 +I, [2018-08-07T01:01:49.627767 #6] INFO -- : Inline processing of topic section_change with 1 messages took 445.57 ms +I, [2018-08-07T01:01:49.627971 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:01:49.652510 #6] INFO -- : Inline processing of topic section_change with 1 messages took 20.72 ms +I, [2018-08-07T01:01:49.652650 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:01:49.761481 #6] INFO -- : Inline processing of topic section_change with 1 messages took 108.37 ms +I, [2018-08-07T01:01:49.761572 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:01:50.036497 #6] INFO -- : Inline processing of topic course_change with 1 messages took 3.29 ms +I, [2018-08-07T01:01:50.036738 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:01:56.615175 #6] INFO -- : Committing offsets: section_change/0:1881 +I, [2018-08-07T01:01:57.435112 #6] INFO -- : Inline processing of topic section_change with 1 messages took 3.88 ms +I, [2018-08-07T01:01:57.439960 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:01:58.756959 #6] INFO -- : Inline processing of topic course_change with 1 messages took 37.62 ms +I, [2018-08-07T01:01:58.757043 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:02:00.815784 #6] INFO -- : Committing offsets: course_change/0:864 +I, [2018-08-07T01:02:05.401198 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.43 ms +I, [2018-08-07T01:02:05.401361 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:02:05.535147 #6] INFO -- : Inline processing of topic section_change with 1 messages took 1.57 ms +I, [2018-08-07T01:02:05.535221 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:02:07.538210 #6] INFO -- : Committing offsets: section_change/0:1883 +I, [2018-08-07T01:02:07.716611 #6] INFO -- : Inline processing of topic section_change with 1 messages took 1.11 ms +I, [2018-08-07T01:02:07.716692 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:02:09.405282 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.26 ms +I, [2018-08-07T01:02:09.405333 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:02:09.406248 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.35 ms +I, [2018-08-07T01:02:09.406282 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:02:09.718444 #6] INFO -- : Inline processing of topic section_change with 1 messages took 1.02 ms +I, [2018-08-07T01:02:09.718620 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:02:11.406913 #6] INFO -- : Committing offsets: course_change/0:867 +I, [2018-08-07T01:02:11.412552 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.32 ms +I, [2018-08-07T01:02:11.412599 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:02:11.413125 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.37 ms +I, [2018-08-07T01:02:11.413211 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:02:11.414352 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.87 ms +I, [2018-08-07T01:02:11.414422 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:02:11.415019 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T01:02:11.415073 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:02:11.719488 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-08-07T01:02:11.719542 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:02:11.719948 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T01:02:11.719986 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:02:11.720571 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-08-07T01:02:11.720633 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:02:11.721241 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-08-07T01:02:11.721289 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:02:11.724676 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.43 ms +I, [2018-08-07T01:02:11.724725 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:02:11.725194 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-08-07T01:02:11.725353 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:02:11.725771 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T01:02:11.725911 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:02:11.726261 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T01:02:11.727290 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:02:11.728322 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T01:02:11.728651 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:02:11.729206 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T01:02:11.729266 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:02:11.729842 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T01:02:11.729896 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:02:11.730684 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.5 ms +I, [2018-08-07T01:02:11.730750 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:02:11.731481 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.51 ms +I, [2018-08-07T01:02:11.731542 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:02:11.732124 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-08-07T01:02:11.732187 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:02:11.733113 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-08-07T01:02:11.733173 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:02:11.734057 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.64 ms +I, [2018-08-07T01:02:11.734337 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:02:11.735228 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.61 ms +I, [2018-08-07T01:02:11.735296 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:02:13.430486 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.99 ms +I, [2018-08-07T01:02:13.430559 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:02:13.459954 #6] INFO -- : Inline processing of topic course_change with 1 messages took 20.39 ms +I, [2018-08-07T01:02:13.460596 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:02:13.736703 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.7 ms +I, [2018-08-07T01:02:13.736827 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:02:13.737279 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T01:02:13.737348 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:02:13.737800 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T01:02:13.737864 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:02:13.738253 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T01:02:13.738317 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:02:13.738866 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T01:02:13.738921 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:02:13.739698 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T01:02:13.739760 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:02:13.740307 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T01:02:13.740412 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:02:13.740849 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T01:02:13.740937 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:02:13.741473 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T01:02:13.741562 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:02:13.741967 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T01:02:13.742180 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:02:13.742686 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T01:02:13.742837 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:02:13.743373 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-08-07T01:02:13.743534 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:02:13.743914 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T01:02:13.743950 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:02:13.744206 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T01:02:13.744236 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:02:13.744473 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T01:02:13.744503 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:02:13.744850 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T01:02:13.744907 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:02:13.745172 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T01:02:13.745222 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:02:13.746869 #6] INFO -- : Inline processing of topic section_change with 1 messages took 1.35 ms +I, [2018-08-07T01:02:13.746918 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:02:13.747871 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.59 ms +I, [2018-08-07T01:02:13.747938 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:02:13.749008 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.57 ms +I, [2018-08-07T01:02:13.749066 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:02:13.750033 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.44 ms +I, [2018-08-07T01:02:13.750119 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:02:13.751257 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-08-07T01:02:13.754262 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:02:13.754817 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T01:02:13.754875 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:02:13.755226 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T01:02:13.755274 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:02:13.755593 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T01:02:13.755638 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:02:13.756028 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T01:02:13.756070 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:02:13.756433 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T01:02:13.756522 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:02:13.761744 #6] INFO -- : Inline processing of topic section_change with 1 messages took 3.03 ms +I, [2018-08-07T01:02:13.761820 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:02:13.762800 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.61 ms +I, [2018-08-07T01:02:13.762876 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:02:13.763439 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-08-07T01:02:13.763494 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:02:13.763973 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T01:02:13.764455 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:02:13.765222 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.51 ms +I, [2018-08-07T01:02:13.765303 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:02:13.766094 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-08-07T01:02:13.766157 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:02:13.766749 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-08-07T01:02:13.766817 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:02:13.769659 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T01:02:13.769721 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:02:13.770142 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T01:02:13.770190 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:02:13.770565 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T01:02:13.770613 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:02:13.770955 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T01:02:13.771006 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:02:13.771334 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T01:02:13.771378 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:02:13.771754 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T01:02:13.771800 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:02:13.772870 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T01:02:13.772969 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:02:15.462693 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.27 ms +I, [2018-08-07T01:02:15.462762 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:02:15.463231 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-08-07T01:02:15.463370 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:02:15.487196 #6] INFO -- : Inline processing of topic course_change with 1 messages took 15.89 ms +I, [2018-08-07T01:02:15.489928 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:02:15.493340 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-08-07T01:02:15.493404 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:02:15.774547 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-08-07T01:02:15.774623 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:02:15.775162 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T01:02:15.775200 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:02:15.775985 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.4 ms +I, [2018-08-07T01:02:15.776040 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:02:17.494965 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.35 ms +I, [2018-08-07T01:02:17.495045 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:02:17.495445 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-08-07T01:02:17.495494 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:02:17.495896 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T01:02:17.495991 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:02:17.776329 #6] INFO -- : Committing offsets: section_change/0:1946 +I, [2018-08-07T01:02:17.780503 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.52 ms +I, [2018-08-07T01:02:17.780565 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:02:17.781141 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.42 ms +I, [2018-08-07T01:02:17.781178 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:02:17.781448 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T01:02:17.781478 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:02:17.781866 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T01:02:17.781896 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:02:19.497231 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.41 ms +I, [2018-08-07T01:02:19.497326 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:02:19.499026 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.78 ms +I, [2018-08-07T01:02:19.499342 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:02:19.782978 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.56 ms +I, [2018-08-07T01:02:19.783879 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:02:19.789237 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.4 ms +I, [2018-08-07T01:02:19.789302 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:02:19.791211 #6] INFO -- : Inline processing of topic section_change with 1 messages took 1.21 ms +I, [2018-08-07T01:02:19.791335 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:02:19.792179 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.46 ms +I, [2018-08-07T01:02:19.792338 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:02:19.792916 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T01:02:19.793000 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:02:21.500240 #6] INFO -- : Committing offsets: course_change/0:882 +I, [2018-08-07T01:02:22.025153 #6] INFO -- : Inline processing of topic section_change with 1 messages took 4.84 ms +I, [2018-08-07T01:02:22.025315 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:02:22.042720 #6] INFO -- : Inline processing of topic course_change with 1 messages took 5.34 ms +I, [2018-08-07T01:02:22.042855 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:02:22.044713 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.73 ms +I, [2018-08-07T01:02:22.044814 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:02:22.046198 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.49 ms +I, [2018-08-07T01:02:22.046268 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:02:24.026326 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-08-07T01:02:24.026416 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:02:24.026858 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T01:02:24.026934 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:02:26.028210 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.43 ms +I, [2018-08-07T01:02:26.028261 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:02:26.028718 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T01:02:26.028759 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:02:28.029402 #6] INFO -- : Committing offsets: section_change/0:1960 +I, [2018-08-07T01:02:28.069678 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.59 ms +I, [2018-08-07T01:02:28.069761 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:02:30.071426 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.59 ms +I, [2018-08-07T01:02:30.071496 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:02:30.078804 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.87 ms +I, [2018-08-07T01:02:30.078946 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:02:30.080061 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.45 ms +I, [2018-08-07T01:02:30.080188 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:02:32.016188 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-08-07T01:02:32.016238 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:02:32.016709 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-08-07T01:02:32.016766 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:02:34.004748 #6] INFO -- : Committing offsets: course_change/0:885 +I, [2018-08-07T01:02:34.007781 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T01:02:34.007825 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:02:34.018462 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-08-07T01:02:34.018510 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:02:34.018889 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T01:02:34.018920 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:02:36.020518 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.53 ms +I, [2018-08-07T01:02:36.020608 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:02:36.021196 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-08-07T01:02:36.021263 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:02:36.023773 #6] INFO -- : Inline processing of topic section_change with 1 messages took 2.3 ms +I, [2018-08-07T01:02:36.023936 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:02:36.024532 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-08-07T01:02:36.024618 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:02:38.025667 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-08-07T01:02:38.025756 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:02:38.026172 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T01:02:38.026205 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:02:40.026597 #6] INFO -- : Committing offsets: section_change/0:1974 +I, [2018-08-07T01:02:40.033321 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T01:02:40.033362 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:02:40.033868 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-08-07T01:02:40.033901 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:02:42.011287 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-08-07T01:02:42.011336 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:02:42.035141 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-08-07T01:02:42.035225 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:02:42.035607 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T01:02:42.035641 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:02:42.036015 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T01:02:42.036815 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:02:44.011614 #6] INFO -- : Committing offsets: course_change/0:887 +I, [2018-08-07T01:02:44.028219 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.51 ms +I, [2018-08-07T01:02:44.028270 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:02:44.037764 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-08-07T01:02:44.037811 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:02:44.038422 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.43 ms +I, [2018-08-07T01:02:44.038552 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:02:46.040766 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.67 ms +I, [2018-08-07T01:02:46.040822 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:02:46.041648 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.63 ms +I, [2018-08-07T01:02:46.041693 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:02:48.042785 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-08-07T01:02:48.042835 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:02:48.043263 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T01:02:48.043313 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:02:48.044022 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.5 ms +I, [2018-08-07T01:02:48.044165 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:02:50.034066 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.39 ms +I, [2018-08-07T01:02:50.034142 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:02:50.034609 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.26 ms +I, [2018-08-07T01:02:50.034661 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:02:50.044753 #6] INFO -- : Committing offsets: section_change/0:1986 +I, [2018-08-07T01:02:50.053838 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.46 ms +I, [2018-08-07T01:02:50.053893 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:02:50.054456 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-08-07T01:02:50.054567 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:02:50.055449 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.54 ms +I, [2018-08-07T01:02:50.055512 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:02:52.038300 #6] INFO -- : Inline processing of topic course_change with 1 messages took 2.82 ms +I, [2018-08-07T01:02:52.038458 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:02:52.039279 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.46 ms +I, [2018-08-07T01:02:52.039363 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:02:52.040334 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.66 ms +I, [2018-08-07T01:02:52.040970 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:02:52.041636 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T01:02:52.041696 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:02:52.060890 #6] INFO -- : Inline processing of topic section_change with 1 messages took 1.14 ms +I, [2018-08-07T01:02:52.060998 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:02:52.061521 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T01:02:52.061704 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:02:52.062002 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T01:02:52.062036 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:02:52.062351 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T01:02:52.062383 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:02:54.047506 #6] INFO -- : Committing offsets: course_change/0:894 +I, [2018-08-07T01:02:54.051126 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-08-07T01:02:54.051189 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:02:54.051453 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T01:02:54.051484 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:02:54.051748 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T01:02:54.051793 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:02:54.063128 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T01:02:54.063188 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:02:54.063500 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T01:02:54.063531 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:02:54.063952 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T01:02:54.064010 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:02:56.053641 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T01:02:56.053816 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:02:56.054306 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T01:02:56.054427 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:02:56.054712 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T01:02:56.054745 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:02:56.054964 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T01:02:56.054999 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:02:56.055294 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T01:02:56.055336 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:02:56.055683 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T01:02:56.055725 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:02:56.056481 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.29 ms +I, [2018-08-07T01:02:56.056549 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:02:56.064681 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T01:02:56.064725 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:02:56.065066 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T01:02:56.065097 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:02:56.065381 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T01:02:56.065411 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:02:56.066540 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T01:02:56.066590 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:02:56.066948 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T01:02:56.066980 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:02:56.067205 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T01:02:56.067234 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:02:56.067435 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T01:02:56.067464 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:02:58.058029 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.24 ms +I, [2018-08-07T01:02:58.058122 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:02:58.058440 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T01:02:58.058506 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:02:58.058838 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T01:02:58.058873 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:02:58.059090 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-08-07T01:02:58.059163 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:02:58.059423 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T01:02:58.059453 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:02:58.059692 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T01:02:58.059837 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:02:58.068887 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-08-07T01:02:58.068961 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:02:58.069452 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-08-07T01:02:58.069495 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:02:58.069830 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T01:02:58.069867 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:02:58.070476 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T01:02:58.070514 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:02:58.070876 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T01:02:58.070930 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:02:58.071185 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T01:02:58.071219 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:02:58.071466 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T01:02:58.071508 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:02:58.071760 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T01:02:58.071804 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:02:58.072072 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T01:02:58.072104 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:02:58.072340 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T01:02:58.072379 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:02:58.072599 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T01:02:58.072631 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:02:58.072864 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T01:02:58.072902 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:02:58.075086 #6] INFO -- : Inline processing of topic section_change with 1 messages took 2.03 ms +I, [2018-08-07T01:02:58.075165 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:02:58.075751 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T01:02:58.075813 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:02:58.076119 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T01:02:58.076157 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:02:58.076426 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T01:02:58.076466 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:02:58.076794 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T01:02:58.076833 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:02:58.077085 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T01:02:58.077120 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:02:58.077477 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T01:02:58.077511 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:02:58.077832 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T01:02:58.077879 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:02:58.078149 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T01:02:58.078184 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:03:00.060547 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T01:03:00.060604 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:03:00.060910 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T01:03:00.060945 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:03:00.061218 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T01:03:00.061252 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:03:00.061505 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T01:03:00.061539 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:03:00.061837 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T01:03:00.061871 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:03:00.062263 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.23 ms +I, [2018-08-07T01:03:00.062787 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:03:00.079186 #6] INFO -- : Committing offsets: section_change/0:2024 +I, [2018-08-07T01:03:00.087079 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T01:03:00.087129 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:03:00.087418 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T01:03:00.087454 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:03:00.087711 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T01:03:00.087746 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:03:00.087998 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T01:03:00.088033 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:03:00.088249 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T01:03:00.088282 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:03:00.088528 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T01:03:00.088561 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:03:00.088814 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T01:03:00.088848 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:03:00.089091 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T01:03:00.089124 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:03:00.089360 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T01:03:00.089410 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:03:00.089646 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T01:03:00.089679 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:03:00.089922 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T01:03:00.089951 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:03:00.090163 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T01:03:00.090191 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:03:00.090386 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T01:03:00.090414 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:03:00.090619 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T01:03:00.090648 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:03:00.090930 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T01:03:00.090960 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:03:00.091172 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-08-07T01:03:00.091201 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:03:00.091409 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-08-07T01:03:00.091525 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:03:00.091944 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T01:03:00.091974 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:03:00.092188 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-08-07T01:03:00.092213 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:03:00.092435 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T01:03:00.092464 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:03:00.093022 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.43 ms +I, [2018-08-07T01:03:00.093056 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:03:00.093301 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T01:03:00.093331 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:03:00.093572 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-08-07T01:03:00.093601 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:03:00.093826 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T01:03:00.093855 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:03:00.094148 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T01:03:00.094178 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:03:00.094441 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T01:03:00.094470 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:03:02.028631 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.41 ms +I, [2018-08-07T01:03:02.028692 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:03:02.029024 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T01:03:02.029092 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:03:02.029355 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T01:03:02.029391 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:03:02.029624 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T01:03:02.029656 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:03:02.060268 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-08-07T01:03:02.060342 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:03:02.060922 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T01:03:02.061026 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:03:02.061568 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T01:03:02.061645 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:03:02.062232 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-08-07T01:03:02.062295 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:03:02.062762 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T01:03:02.062822 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:03:04.031728 #6] INFO -- : Inline processing of topic course_change with 1 messages took 1.0 ms +I, [2018-08-07T01:03:04.032453 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:03:04.116144 #6] INFO -- : Inline processing of topic section_change with 1 messages took 24.62 ms +I, [2018-08-07T01:03:04.116386 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:03:04.117693 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.42 ms +I, [2018-08-07T01:03:04.117755 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:03:06.033630 #6] INFO -- : Committing offsets: course_change/0:921 +I, [2018-08-07T01:03:06.042524 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.32 ms +I, [2018-08-07T01:03:06.042605 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:03:06.118763 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-08-07T01:03:06.118826 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:03:08.045622 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.79 ms +I, [2018-08-07T01:03:08.049019 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:03:08.049416 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T01:03:08.049450 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:03:08.120195 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-08-07T01:03:08.120280 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:03:08.120923 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-08-07T01:03:08.120968 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:03:08.121339 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T01:03:08.121374 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:03:08.121854 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-08-07T01:03:08.121911 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:03:10.051167 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.32 ms +I, [2018-08-07T01:03:10.051241 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:03:10.122348 #6] INFO -- : Committing offsets: section_change/0:2062 +I, [2018-08-07T01:03:10.146254 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-08-07T01:03:10.148933 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:03:10.149632 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-08-07T01:03:10.149785 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:03:10.150336 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-08-07T01:03:10.150397 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:03:12.052187 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-08-07T01:03:12.052236 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:03:12.052592 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T01:03:12.052639 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:03:12.052899 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T01:03:12.052929 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:03:12.053171 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T01:03:12.053201 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:03:12.151362 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T01:03:12.151450 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:03:12.151817 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T01:03:12.151903 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:03:12.152250 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T01:03:12.152298 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:03:12.152878 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-08-07T01:03:12.152922 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:03:14.054098 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.31 ms +I, [2018-08-07T01:03:14.054294 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:03:14.054963 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.35 ms +I, [2018-08-07T01:03:14.055015 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:03:14.055630 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.34 ms +I, [2018-08-07T01:03:14.055729 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:03:14.154764 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.56 ms +I, [2018-08-07T01:03:14.154815 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:03:14.155243 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T01:03:14.155278 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:03:14.155775 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-08-07T01:03:14.155835 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:03:14.158065 #6] INFO -- : Inline processing of topic section_change with 1 messages took 1.81 ms +I, [2018-08-07T01:03:14.158162 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:03:16.056209 #6] INFO -- : Committing offsets: course_change/0:932 +I, [2018-08-07T01:03:16.074685 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.69 ms +I, [2018-08-07T01:03:16.074833 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:03:16.162090 #6] INFO -- : Inline processing of topic section_change with 1 messages took 1.49 ms +I, [2018-08-07T01:03:16.162182 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:03:16.162828 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-08-07T01:03:16.163727 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:03:18.076198 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.28 ms +I, [2018-08-07T01:03:18.076272 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:03:18.076813 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-08-07T01:03:18.076859 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:03:18.077228 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T01:03:18.077303 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:03:18.164805 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T01:03:18.164855 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:03:18.165099 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T01:03:18.165144 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:03:18.165418 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T01:03:18.165447 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:03:18.165748 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T01:03:18.165778 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:03:20.091572 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.3 ms +I, [2018-08-07T01:03:20.091645 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:03:20.092297 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.28 ms +I, [2018-08-07T01:03:20.092358 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:03:20.168632 #6] INFO -- : Committing offsets: section_change/0:2079 +I, [2018-08-07T01:03:20.266889 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.77 ms +I, [2018-08-07T01:03:20.267003 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:03:20.267534 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T01:03:20.267898 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:03:20.269503 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.61 ms +I, [2018-08-07T01:03:20.270328 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:03:20.272140 #6] INFO -- : Inline processing of topic section_change with 1 messages took 1.2 ms +I, [2018-08-07T01:03:20.272381 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:03:20.272948 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T01:03:20.272991 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:03:22.093505 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T01:03:22.093559 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:03:22.094005 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-08-07T01:03:22.094143 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:03:22.276711 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.52 ms +I, [2018-08-07T01:03:22.276818 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:03:22.277250 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T01:03:22.277282 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:03:24.095745 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T01:03:24.095872 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:03:24.096139 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-08-07T01:03:24.096198 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:03:24.096491 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T01:03:24.096526 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:03:24.096897 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T01:03:24.096951 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:03:24.097459 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-08-07T01:03:24.097504 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:03:24.282434 #6] INFO -- : Inline processing of topic section_change with 1 messages took 2.84 ms +I, [2018-08-07T01:03:24.287590 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:03:24.294199 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.42 ms +I, [2018-08-07T01:03:24.294259 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:03:24.294877 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-08-07T01:03:24.294934 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:03:24.301533 #6] INFO -- : Inline processing of topic section_change with 1 messages took 5.04 ms +I, [2018-08-07T01:03:24.301605 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:03:24.302291 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-08-07T01:03:24.302337 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:03:26.098281 #6] INFO -- : Committing offsets: course_change/0:945 +I, [2018-08-07T01:03:26.107411 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-08-07T01:03:26.107462 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:03:26.107753 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T01:03:26.107788 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:03:26.108081 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T01:03:26.108115 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:03:26.304084 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-08-07T01:03:26.304136 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:03:26.304515 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T01:03:26.304649 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:03:26.305017 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T01:03:26.305050 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:03:26.305284 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T01:03:26.305318 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:03:28.109068 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-08-07T01:03:28.109229 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:03:28.109728 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-08-07T01:03:28.109812 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:03:28.310036 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.47 ms +I, [2018-08-07T01:03:28.310293 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:03:28.311822 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.68 ms +I, [2018-08-07T01:03:28.311952 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:03:30.112227 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.29 ms +I, [2018-08-07T01:03:30.112314 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:03:30.112716 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T01:03:30.112769 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:03:30.113185 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T01:03:30.113274 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:03:30.317380 #6] INFO -- : Committing offsets: section_change/0:2097 +I, [2018-08-07T01:03:30.323015 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-08-07T01:03:30.323060 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:03:30.323343 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T01:03:30.323374 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:03:30.323716 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T01:03:30.323747 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:03:30.324062 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T01:03:30.324093 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:03:32.082223 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-08-07T01:03:32.082271 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:03:32.082495 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T01:03:32.082525 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:03:32.082746 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T01:03:32.085360 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:03:32.292167 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.93 ms +I, [2018-08-07T01:03:32.292222 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:03:32.292610 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T01:03:32.292672 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:03:32.293012 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T01:03:32.293043 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:03:32.293382 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T01:03:32.293413 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:03:34.086320 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.26 ms +I, [2018-08-07T01:03:34.086382 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:03:34.086678 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T01:03:34.086714 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:03:34.086969 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T01:03:34.087008 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:03:34.087260 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T01:03:34.087295 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:03:34.088323 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.9 ms +I, [2018-08-07T01:03:34.088357 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:03:34.294449 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.47 ms +I, [2018-08-07T01:03:34.294839 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:03:34.295666 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.41 ms +I, [2018-08-07T01:03:34.295728 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:03:34.296142 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T01:03:34.296194 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:03:34.296685 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-08-07T01:03:34.296773 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:03:36.089230 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.36 ms +I, [2018-08-07T01:03:36.089288 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:03:36.089708 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.26 ms +I, [2018-08-07T01:03:36.089745 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:03:36.089974 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T01:03:36.090005 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:03:36.090227 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T01:03:36.090282 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:03:36.298264 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.85 ms +I, [2018-08-07T01:03:36.298855 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:03:36.299564 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-08-07T01:03:36.299623 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:03:36.300484 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.59 ms +I, [2018-08-07T01:03:36.300548 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:03:36.301087 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-08-07T01:03:36.301145 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:03:38.090692 #6] INFO -- : Committing offsets: course_change/0:965 +I, [2018-08-07T01:03:38.099264 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T01:03:38.099394 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:03:38.099703 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T01:03:38.099736 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:03:38.100128 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T01:03:38.100180 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:03:38.100965 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.27 ms +I, [2018-08-07T01:03:38.101016 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:03:38.101354 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T01:03:38.101398 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:03:38.302257 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T01:03:38.302308 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:03:38.302778 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-08-07T01:03:38.302813 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:03:38.303094 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T01:03:38.303124 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:03:38.303344 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T01:03:38.303397 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:03:38.303693 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T01:03:38.303723 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:03:40.102999 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T01:03:40.103048 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:03:40.103267 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T01:03:40.103298 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:03:40.304542 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-08-07T01:03:40.304591 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:03:40.304929 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T01:03:40.304961 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:03:40.305244 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T01:03:40.305274 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:03:40.305599 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T01:03:40.305629 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:03:40.305929 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T01:03:40.305959 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:03:42.306494 #6] INFO -- : Committing offsets: section_change/0:2123 +I, [2018-08-07T01:03:42.309543 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T01:03:42.309587 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:03:42.309949 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T01:03:42.309979 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:03:42.310290 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T01:03:42.310319 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:03:42.310633 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T01:03:42.310664 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:03:42.310986 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T01:03:42.311017 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:03:42.311289 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T01:03:42.311408 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:03:44.105685 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.31 ms +I, [2018-08-07T01:03:44.105738 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:03:44.106067 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T01:03:44.106127 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:03:44.106512 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.23 ms +I, [2018-08-07T01:03:44.106559 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:03:44.106891 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T01:03:44.106963 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:03:44.312304 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T01:03:44.312378 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:03:44.312683 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T01:03:44.312715 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:03:44.313092 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T01:03:44.313129 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:03:44.313375 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T01:03:44.313405 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:03:46.108266 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.3 ms +I, [2018-08-07T01:03:46.108526 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:03:46.108999 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-08-07T01:03:46.109043 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:03:46.109404 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T01:03:46.109447 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:03:46.315902 #6] INFO -- : Inline processing of topic section_change with 1 messages took 1.89 ms +I, [2018-08-07T01:03:46.315976 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:03:46.316418 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T01:03:46.316450 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:03:46.316716 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T01:03:46.316746 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:03:46.317113 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T01:03:46.317143 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:03:48.109695 #6] INFO -- : Committing offsets: course_change/0:979 +I, [2018-08-07T01:03:48.131728 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T01:03:48.131776 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:03:48.132037 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-08-07T01:03:48.132068 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:03:48.132294 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T01:03:48.132652 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:03:48.132918 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T01:03:48.132948 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:03:48.133189 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T01:03:48.133220 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:03:48.133428 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T01:03:48.133458 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:03:48.133651 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-08-07T01:03:48.133681 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:03:48.133880 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-08-07T01:03:48.133928 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:03:48.134134 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T01:03:48.134163 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:03:48.134357 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-08-07T01:03:48.134385 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:03:48.317914 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T01:03:48.317962 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:03:48.318209 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T01:03:48.318239 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:03:48.318467 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T01:03:48.318539 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:03:48.318732 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-08-07T01:03:48.318802 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:03:48.318993 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-08-07T01:03:48.319072 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:03:48.319587 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T01:03:48.319664 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:03:48.319872 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T01:03:48.319934 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:03:48.320179 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T01:03:48.320209 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:03:48.320426 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-08-07T01:03:48.320483 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:03:48.320661 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-08-07T01:03:48.320690 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:03:48.320912 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T01:03:48.320956 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:03:48.321187 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T01:03:48.321216 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:03:48.321408 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T01:03:48.321434 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:03:48.321991 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.44 ms +I, [2018-08-07T01:03:48.322032 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:03:48.322300 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T01:03:48.322347 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:03:48.322680 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T01:03:48.322712 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:03:48.322948 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T01:03:48.322977 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:03:50.138642 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.48 ms +I, [2018-08-07T01:03:50.143529 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:03:50.158680 #6] INFO -- : Inline processing of topic course_change with 1 messages took 14.81 ms +I, [2018-08-07T01:03:50.158820 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:03:50.159344 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.28 ms +I, [2018-08-07T01:03:50.159379 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:03:50.341110 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.99 ms +I, [2018-08-07T01:03:50.341224 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:03:50.341759 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T01:03:50.341832 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:03:50.342263 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T01:03:50.342313 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:03:52.160361 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.38 ms +I, [2018-08-07T01:03:52.160453 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:03:52.160789 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T01:03:52.160870 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:03:52.343041 #6] INFO -- : Committing offsets: section_change/0:2157 +I, [2018-08-07T01:03:52.349369 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.53 ms +I, [2018-08-07T01:03:52.349415 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:03:52.349869 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T01:03:52.349901 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:03:54.161681 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.29 ms +I, [2018-08-07T01:03:54.161734 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:03:54.162046 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T01:03:54.164056 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:03:54.164449 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-08-07T01:03:54.164493 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:03:54.165952 #6] INFO -- : Inline processing of topic course_change with 1 messages took 1.3 ms +I, [2018-08-07T01:03:54.165991 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:03:54.350694 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-08-07T01:03:54.350743 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:03:54.351070 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T01:03:54.351101 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:03:54.351327 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T01:03:54.351356 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:03:54.351722 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T01:03:54.351753 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:03:54.352136 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T01:03:54.352166 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:03:54.352380 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-08-07T01:03:54.352409 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:03:56.166969 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.34 ms +I, [2018-08-07T01:03:56.167025 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:03:56.167476 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-08-07T01:03:56.167522 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:03:56.167824 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T01:03:56.167856 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:03:56.353411 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T01:03:56.353458 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:03:56.353859 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T01:03:56.353890 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:03:56.354163 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T01:03:56.354192 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:03:56.354492 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T01:03:56.354521 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:03:58.168212 #6] INFO -- : Committing offsets: course_change/0:1001 +I, [2018-08-07T01:03:58.171664 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T01:03:58.171745 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:03:58.172000 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-08-07T01:03:58.172031 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:03:58.172267 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-08-07T01:03:58.172298 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:03:58.355513 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-08-07T01:03:58.355567 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:03:58.355986 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T01:03:58.356195 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:03:58.356783 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T01:03:58.356813 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:00.173386 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.29 ms +I, [2018-08-07T01:04:00.173438 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:00.173748 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T01:04:00.173794 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:00.357825 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T01:04:00.357874 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:00.358171 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T01:04:00.358223 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:00.358517 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T01:04:00.358547 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:00.358864 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T01:04:00.358893 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:02.138120 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T01:04:02.138168 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:02.323317 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-08-07T01:04:02.323367 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:02.323768 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T01:04:02.323803 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:02.324159 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T01:04:02.324189 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:04.138969 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-08-07T01:04:04.139030 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:04.139288 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T01:04:04.139318 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:04.139529 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T01:04:04.139558 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:04.324486 #6] INFO -- : Committing offsets: section_change/0:2179 +I, [2018-08-07T01:04:04.329760 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.5 ms +I, [2018-08-07T01:04:04.329867 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:04.330442 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-08-07T01:04:04.331202 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:04.331777 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-08-07T01:04:04.331832 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:04.332341 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-08-07T01:04:04.332401 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:04.332917 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-08-07T01:04:04.332977 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:06.140394 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T01:04:06.140444 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:06.140739 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T01:04:06.140834 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:06.146288 #6] INFO -- : Inline processing of topic course_change with 1 messages took 5.27 ms +I, [2018-08-07T01:04:06.146335 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:06.146629 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T01:04:06.146661 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:06.146897 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T01:04:06.146977 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:06.147209 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T01:04:06.147238 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:06.147478 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T01:04:06.147507 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:06.147734 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T01:04:06.147763 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:06.147974 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T01:04:06.148003 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:06.148221 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T01:04:06.148249 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:06.148494 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T01:04:06.148523 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:06.148734 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T01:04:06.148763 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:06.149070 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T01:04:06.149148 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:06.149379 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T01:04:06.149406 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:06.149594 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T01:04:06.149617 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:06.149795 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-08-07T01:04:06.149823 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:06.150337 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T01:04:06.150416 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:06.150623 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-08-07T01:04:06.150653 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:06.150921 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T01:04:06.150950 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:06.151191 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T01:04:06.151221 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:06.151496 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T01:04:06.151528 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:06.151763 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T01:04:06.151792 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:06.152038 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T01:04:06.152068 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:06.152296 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T01:04:06.152326 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:06.152523 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-08-07T01:04:06.152552 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:06.152762 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T01:04:06.152790 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:06.152982 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-08-07T01:04:06.153010 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:06.153211 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T01:04:06.153266 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:06.153820 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.43 ms +I, [2018-08-07T01:04:06.153873 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:06.154424 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.36 ms +I, [2018-08-07T01:04:06.154464 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:06.154833 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-08-07T01:04:06.154882 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:06.155363 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.27 ms +I, [2018-08-07T01:04:06.155429 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:06.156022 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T01:04:06.156103 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:06.156547 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T01:04:06.158296 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:06.159130 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.5 ms +I, [2018-08-07T01:04:06.159194 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:06.159621 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-08-07T01:04:06.159673 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:06.160872 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.69 ms +I, [2018-08-07T01:04:06.161289 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:06.161973 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-08-07T01:04:06.162015 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:06.162717 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.41 ms +I, [2018-08-07T01:04:06.162763 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:06.163424 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.25 ms +I, [2018-08-07T01:04:06.163485 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:06.164030 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-08-07T01:04:06.164091 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:06.164667 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.23 ms +I, [2018-08-07T01:04:06.164721 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:06.167310 #6] INFO -- : Inline processing of topic course_change with 1 messages took 2.35 ms +I, [2018-08-07T01:04:06.167393 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:06.167831 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T01:04:06.167876 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:06.168320 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T01:04:06.168351 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:06.168635 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-08-07T01:04:06.168670 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:06.168904 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T01:04:06.168933 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:06.169447 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.24 ms +I, [2018-08-07T01:04:06.169535 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:06.169993 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.24 ms +I, [2018-08-07T01:04:06.170047 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:06.171026 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.37 ms +I, [2018-08-07T01:04:06.171164 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:06.172186 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.57 ms +I, [2018-08-07T01:04:06.172365 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:06.173548 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.54 ms +I, [2018-08-07T01:04:06.173709 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:06.174399 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.3 ms +I, [2018-08-07T01:04:06.174474 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:06.175656 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.29 ms +I, [2018-08-07T01:04:06.175739 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:06.177054 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.51 ms +I, [2018-08-07T01:04:06.177138 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:06.177652 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.23 ms +I, [2018-08-07T01:04:06.177712 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:06.178158 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.23 ms +I, [2018-08-07T01:04:06.178221 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:06.178727 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.28 ms +I, [2018-08-07T01:04:06.178775 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:06.179116 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-08-07T01:04:06.179159 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:06.181388 #6] INFO -- : Inline processing of topic course_change with 1 messages took 1.97 ms +I, [2018-08-07T01:04:06.181453 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:06.181919 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.24 ms +I, [2018-08-07T01:04:06.182009 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:06.182331 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T01:04:06.182372 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:06.183059 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.51 ms +I, [2018-08-07T01:04:06.183114 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:06.183808 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.27 ms +I, [2018-08-07T01:04:06.183876 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:06.184412 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.26 ms +I, [2018-08-07T01:04:06.184464 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:06.185468 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.8 ms +I, [2018-08-07T01:04:06.185537 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:06.334577 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-08-07T01:04:06.334685 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:08.186549 #6] INFO -- : Committing offsets: course_change/0:1076 +I, [2018-08-07T01:04:08.191388 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-08-07T01:04:08.191437 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:08.191732 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T01:04:08.191767 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:08.192011 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T01:04:08.192041 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:08.192898 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-08-07T01:04:08.193005 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:08.193278 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-08-07T01:04:08.193354 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:08.193697 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-08-07T01:04:08.193729 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:08.193952 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T01:04:08.193981 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:08.194191 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T01:04:08.194220 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:08.194436 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T01:04:08.194495 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:08.194890 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-08-07T01:04:08.194920 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:08.195129 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T01:04:08.195157 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:08.195400 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T01:04:08.195429 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:08.196459 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.9 ms +I, [2018-08-07T01:04:08.196512 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:08.196856 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T01:04:08.197142 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:08.197479 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T01:04:08.197528 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:08.197835 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T01:04:08.197871 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:08.198281 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.28 ms +I, [2018-08-07T01:04:08.198322 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:08.198699 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-08-07T01:04:08.198739 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:08.198988 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T01:04:08.199049 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:08.199379 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T01:04:08.199410 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:08.199736 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T01:04:08.199770 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:08.200012 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T01:04:08.200046 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:08.200366 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T01:04:08.200402 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:08.200696 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T01:04:08.200740 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:08.200995 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T01:04:08.201035 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:08.201399 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-08-07T01:04:08.201438 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:08.201730 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T01:04:08.201762 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:08.202043 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T01:04:08.202998 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:08.203320 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-08-07T01:04:08.203353 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:08.203575 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T01:04:08.203604 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:08.205205 #6] INFO -- : Inline processing of topic course_change with 1 messages took 1.45 ms +I, [2018-08-07T01:04:08.205259 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:08.205635 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T01:04:08.205669 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:08.206356 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.48 ms +I, [2018-08-07T01:04:08.206407 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:08.206750 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-08-07T01:04:08.206810 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:08.207266 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-08-07T01:04:08.207303 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:08.207632 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T01:04:08.207666 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:08.207944 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T01:04:08.207993 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:08.208557 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T01:04:08.208625 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:08.209170 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-08-07T01:04:08.209251 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:08.209818 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.26 ms +I, [2018-08-07T01:04:08.209881 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:08.210966 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T01:04:08.211101 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:08.211490 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T01:04:08.211531 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:08.211799 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T01:04:08.211828 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:08.212096 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T01:04:08.212125 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:08.212927 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.57 ms +I, [2018-08-07T01:04:08.212998 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:08.213732 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.31 ms +I, [2018-08-07T01:04:08.213929 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:08.215648 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T01:04:08.215704 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:08.216135 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T01:04:08.216183 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:08.217295 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.56 ms +I, [2018-08-07T01:04:08.217437 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:08.218143 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.48 ms +I, [2018-08-07T01:04:08.218208 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:08.218625 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-08-07T01:04:08.218666 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:08.219598 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.24 ms +I, [2018-08-07T01:04:08.219761 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:08.220217 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-08-07T01:04:08.220321 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:08.220676 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T01:04:08.220723 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:08.221091 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T01:04:08.221145 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:08.222114 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.72 ms +I, [2018-08-07T01:04:08.222524 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:08.223163 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.24 ms +I, [2018-08-07T01:04:08.223344 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:08.223760 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-08-07T01:04:08.223808 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:08.224258 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-08-07T01:04:08.224307 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:08.224607 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T01:04:08.224639 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:08.224877 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T01:04:08.224905 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:08.225657 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T01:04:08.225701 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:08.225986 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T01:04:08.226015 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:08.226264 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T01:04:08.226295 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:08.226847 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.42 ms +I, [2018-08-07T01:04:08.226888 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:08.227512 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.3 ms +I, [2018-08-07T01:04:08.227638 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:08.228077 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.23 ms +I, [2018-08-07T01:04:08.228125 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:08.228634 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.28 ms +I, [2018-08-07T01:04:08.228783 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:08.229172 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-08-07T01:04:08.229227 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:08.229637 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-08-07T01:04:08.230065 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:08.230636 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-08-07T01:04:08.230676 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:08.231008 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-08-07T01:04:08.231043 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:08.231300 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T01:04:08.231367 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:08.232067 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T01:04:08.232119 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:08.232405 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T01:04:08.232441 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:08.232706 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T01:04:08.232736 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:08.233122 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T01:04:08.233165 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:08.234421 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-08-07T01:04:08.234481 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:10.235521 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-08-07T01:04:10.235596 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:10.235905 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-08-07T01:04:10.235939 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:10.236193 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T01:04:10.236224 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:10.236480 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T01:04:10.236512 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:10.236749 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T01:04:10.236779 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:10.237009 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T01:04:10.237040 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:10.237274 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T01:04:10.237304 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:10.237500 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-08-07T01:04:10.237559 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:10.237791 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-08-07T01:04:10.237821 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:10.238062 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T01:04:10.238093 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:10.238321 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T01:04:10.238351 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:10.238589 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T01:04:10.238618 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:10.238838 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T01:04:10.238867 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:10.239090 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T01:04:10.239119 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:10.239529 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-08-07T01:04:10.239586 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:10.239948 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-08-07T01:04:10.239999 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:10.240387 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-08-07T01:04:10.240440 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:10.240930 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.26 ms +I, [2018-08-07T01:04:10.240977 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:10.241301 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T01:04:10.241337 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:10.241724 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T01:04:10.241774 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:10.242132 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-08-07T01:04:10.242176 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:10.242625 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T01:04:10.242676 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:10.243728 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.87 ms +I, [2018-08-07T01:04:10.243778 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:10.245981 #6] INFO -- : Inline processing of topic course_change with 1 messages took 1.63 ms +I, [2018-08-07T01:04:10.246051 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:10.246517 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.23 ms +I, [2018-08-07T01:04:10.246556 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:10.246829 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T01:04:10.246860 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:10.247084 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-08-07T01:04:10.247150 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:10.247711 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T01:04:10.247745 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:10.247962 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T01:04:10.247983 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:10.248197 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T01:04:10.248223 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:10.248432 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T01:04:10.248453 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:10.248849 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.28 ms +I, [2018-08-07T01:04:10.249096 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:10.249728 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-08-07T01:04:10.249786 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:10.252196 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-08-07T01:04:10.253054 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:10.253598 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-08-07T01:04:10.253636 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:10.254061 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.27 ms +I, [2018-08-07T01:04:10.254149 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:10.255066 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.25 ms +I, [2018-08-07T01:04:10.255116 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:10.255866 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-08-07T01:04:10.255905 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:10.256197 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T01:04:10.256229 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:10.256630 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T01:04:10.256702 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:10.257241 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.23 ms +I, [2018-08-07T01:04:10.257307 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:10.257870 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.31 ms +I, [2018-08-07T01:04:10.257927 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:10.258582 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.4 ms +I, [2018-08-07T01:04:10.258699 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:10.259396 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.29 ms +I, [2018-08-07T01:04:10.259449 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:10.259950 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-08-07T01:04:10.260001 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:10.260414 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T01:04:10.260465 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:10.261203 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.51 ms +I, [2018-08-07T01:04:10.261486 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:10.262199 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.37 ms +I, [2018-08-07T01:04:10.262261 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:10.262880 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.33 ms +I, [2018-08-07T01:04:10.262934 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:10.263559 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-08-07T01:04:10.263612 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:10.264613 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.47 ms +I, [2018-08-07T01:04:10.264687 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:10.265311 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.29 ms +I, [2018-08-07T01:04:10.265569 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:10.266348 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.48 ms +I, [2018-08-07T01:04:10.266436 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:10.267201 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.35 ms +I, [2018-08-07T01:04:10.267264 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:10.268038 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.58 ms +I, [2018-08-07T01:04:10.268076 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:10.269029 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-08-07T01:04:10.269084 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:10.269554 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T01:04:10.269668 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:10.270020 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-08-07T01:04:10.270115 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:10.270510 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T01:04:10.273893 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:10.274595 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.26 ms +I, [2018-08-07T01:04:10.274666 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:10.275137 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-08-07T01:04:10.275188 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:10.275694 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.31 ms +I, [2018-08-07T01:04:10.275752 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:10.276135 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-08-07T01:04:10.276301 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:10.276900 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.24 ms +I, [2018-08-07T01:04:10.277170 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:10.277687 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.24 ms +I, [2018-08-07T01:04:10.277756 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:10.278145 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-08-07T01:04:10.278189 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:10.278816 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.3 ms +I, [2018-08-07T01:04:10.278881 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:10.279561 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.34 ms +I, [2018-08-07T01:04:10.279685 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:10.280213 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.24 ms +I, [2018-08-07T01:04:10.280275 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:10.280753 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.27 ms +I, [2018-08-07T01:04:10.280820 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:10.281428 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.27 ms +I, [2018-08-07T01:04:10.281496 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:10.281837 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-08-07T01:04:10.281876 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:10.282301 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.27 ms +I, [2018-08-07T01:04:10.282363 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:10.285661 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.93 ms +I, [2018-08-07T01:04:10.285762 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:10.286263 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-08-07T01:04:10.286316 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:10.287541 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.61 ms +I, [2018-08-07T01:04:10.287735 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:10.288383 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.34 ms +I, [2018-08-07T01:04:10.288502 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:10.289071 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T01:04:10.289134 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:10.290094 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.59 ms +I, [2018-08-07T01:04:10.290163 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:10.290676 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.23 ms +I, [2018-08-07T01:04:10.290734 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:12.294275 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.28 ms +I, [2018-08-07T01:04:12.294361 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:12.294845 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-08-07T01:04:12.294916 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:12.295362 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-08-07T01:04:12.295419 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:12.295840 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-08-07T01:04:12.295903 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:12.296300 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T01:04:12.296354 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:12.301705 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.29 ms +I, [2018-08-07T01:04:12.301778 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:12.302351 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.27 ms +I, [2018-08-07T01:04:12.302417 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:12.302823 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T01:04:12.303695 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:12.304950 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.27 ms +I, [2018-08-07T01:04:12.305019 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:12.306637 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.28 ms +I, [2018-08-07T01:04:12.306703 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:12.309144 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.25 ms +I, [2018-08-07T01:04:12.309277 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:12.309757 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-08-07T01:04:12.309823 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:12.310246 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-08-07T01:04:12.310304 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:12.310692 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-08-07T01:04:12.310747 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:12.312961 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.28 ms +I, [2018-08-07T01:04:12.313032 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:12.319933 #6] INFO -- : Inline processing of topic course_change with 1 messages took 6.66 ms +I, [2018-08-07T01:04:12.320124 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:12.320736 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T01:04:12.320801 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:12.321267 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.23 ms +I, [2018-08-07T01:04:12.321314 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:12.321743 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.23 ms +I, [2018-08-07T01:04:12.321863 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:12.322368 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.29 ms +I, [2018-08-07T01:04:12.322424 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:12.323126 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.47 ms +I, [2018-08-07T01:04:12.323228 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:12.324425 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.33 ms +I, [2018-08-07T01:04:12.324503 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:12.325364 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.38 ms +I, [2018-08-07T01:04:12.325465 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:12.326093 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.33 ms +I, [2018-08-07T01:04:12.326174 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:12.327017 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.35 ms +I, [2018-08-07T01:04:12.327093 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:12.327803 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-08-07T01:04:12.327883 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:12.328345 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T01:04:12.328394 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:12.329282 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.58 ms +I, [2018-08-07T01:04:12.329343 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:12.330756 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.23 ms +I, [2018-08-07T01:04:12.330812 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:12.331249 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T01:04:12.331294 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:12.354868 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.23 ms +I, [2018-08-07T01:04:12.355075 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:12.356151 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.53 ms +I, [2018-08-07T01:04:12.356225 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:12.357007 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.35 ms +I, [2018-08-07T01:04:12.357076 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:12.358676 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.54 ms +I, [2018-08-07T01:04:12.360249 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:12.364095 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.31 ms +I, [2018-08-07T01:04:12.372904 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:12.380299 #6] INFO -- : Inline processing of topic course_change with 1 messages took 3.13 ms +I, [2018-08-07T01:04:12.380364 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:12.380849 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.27 ms +I, [2018-08-07T01:04:12.380914 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:12.381351 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.24 ms +I, [2018-08-07T01:04:12.381470 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:12.396033 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.65 ms +I, [2018-08-07T01:04:12.396205 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:12.398643 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-08-07T01:04:12.398755 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:12.402148 #6] INFO -- : Inline processing of topic course_change with 1 messages took 3.06 ms +I, [2018-08-07T01:04:12.402216 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:12.414365 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.32 ms +I, [2018-08-07T01:04:12.415350 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:12.426960 #6] INFO -- : Inline processing of topic course_change with 1 messages took 5.27 ms +I, [2018-08-07T01:04:12.427145 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:12.439735 #6] INFO -- : Inline processing of topic course_change with 1 messages took 12.28 ms +I, [2018-08-07T01:04:12.439816 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:12.440423 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-08-07T01:04:12.440480 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:12.440920 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.24 ms +I, [2018-08-07T01:04:12.440972 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:12.441355 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-08-07T01:04:12.441482 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:12.441883 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-08-07T01:04:12.441933 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:12.442534 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.4 ms +I, [2018-08-07T01:04:12.442590 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:12.443014 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.23 ms +I, [2018-08-07T01:04:12.443194 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:12.443631 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-08-07T01:04:12.443685 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:12.444162 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-08-07T01:04:12.444215 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:12.444626 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-08-07T01:04:12.444678 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:12.445132 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.24 ms +I, [2018-08-07T01:04:12.445184 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:12.445955 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.27 ms +I, [2018-08-07T01:04:12.446038 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:12.446656 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.41 ms +I, [2018-08-07T01:04:12.446810 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:12.447637 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.33 ms +I, [2018-08-07T01:04:12.447701 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:12.448959 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.78 ms +I, [2018-08-07T01:04:12.449073 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:12.449530 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-08-07T01:04:12.449604 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:12.787102 #6] INFO -- : Inline processing of topic course_change with 1 messages took 164.11 ms +I, [2018-08-07T01:04:12.811665 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:12.812989 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.46 ms +I, [2018-08-07T01:04:12.906683 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:12.907426 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.42 ms +I, [2018-08-07T01:04:12.907488 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:12.968061 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.83 ms +I, [2018-08-07T01:04:12.968150 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:12.995955 #6] INFO -- : Inline processing of topic course_change with 1 messages took 27.53 ms +I, [2018-08-07T01:04:12.996046 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:12.996668 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.33 ms +I, [2018-08-07T01:04:13.006770 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:13.009582 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.62 ms +I, [2018-08-07T01:04:13.009657 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:13.021816 #6] INFO -- : Inline processing of topic course_change with 1 messages took 11.81 ms +I, [2018-08-07T01:04:13.021905 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:13.029102 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-08-07T01:04:13.029194 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:13.029530 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T01:04:13.029566 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:13.040790 #6] INFO -- : Inline processing of topic course_change with 1 messages took 10.69 ms +I, [2018-08-07T01:04:13.040858 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:13.041202 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T01:04:13.041238 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:13.045968 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.26 ms +I, [2018-08-07T01:04:13.046079 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:13.052111 #6] INFO -- : Inline processing of topic course_change with 1 messages took 5.69 ms +I, [2018-08-07T01:04:13.052256 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:13.052840 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T01:04:13.052955 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:13.055026 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T01:04:13.058150 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:13.059043 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-08-07T01:04:13.059133 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:13.062485 #6] INFO -- : Inline processing of topic course_change with 1 messages took 3.13 ms +I, [2018-08-07T01:04:13.062536 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:13.062829 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T01:04:13.062862 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:13.064109 #6] INFO -- : Inline processing of topic course_change with 1 messages took 1.12 ms +I, [2018-08-07T01:04:13.064153 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:13.064599 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T01:04:13.064635 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:13.066785 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T01:04:13.066831 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:13.067133 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T01:04:13.067166 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:13.070071 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T01:04:13.070115 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:13.070625 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.38 ms +I, [2018-08-07T01:04:13.070661 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:13.075867 #6] INFO -- : Inline processing of topic course_change with 1 messages took 5.06 ms +I, [2018-08-07T01:04:13.075937 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:13.076571 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.4 ms +I, [2018-08-07T01:04:13.076630 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:13.081015 #6] INFO -- : Inline processing of topic course_change with 1 messages took 4.15 ms +I, [2018-08-07T01:04:13.081106 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:13.084081 #6] INFO -- : Inline processing of topic course_change with 1 messages took 2.71 ms +I, [2018-08-07T01:04:13.084164 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:13.084603 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-08-07T01:04:13.084655 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:13.085016 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-08-07T01:04:13.090339 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:13.090856 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.26 ms +I, [2018-08-07T01:04:13.090897 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:13.091225 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T01:04:13.091260 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:13.093949 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-08-07T01:04:13.094013 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:13.094385 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-08-07T01:04:13.094444 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:13.100636 #6] INFO -- : Inline processing of topic course_change with 1 messages took 6.04 ms +I, [2018-08-07T01:04:13.100706 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:13.101058 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-08-07T01:04:13.101108 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:13.107248 #6] INFO -- : Inline processing of topic course_change with 1 messages took 5.97 ms +I, [2018-08-07T01:04:13.107348 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:13.110649 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T01:04:13.110694 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:13.110970 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T01:04:13.111000 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:13.111222 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T01:04:13.111250 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:13.112084 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.57 ms +I, [2018-08-07T01:04:13.112143 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:14.344100 #6] INFO -- : Committing offsets: section_change/0:2185 +I, [2018-08-07T01:04:15.115426 #6] INFO -- : Inline processing of topic course_change with 1 messages took 1.14 ms +I, [2018-08-07T01:04:15.115510 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:15.115969 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.23 ms +I, [2018-08-07T01:04:15.116019 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:15.116364 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T01:04:15.117711 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:15.118444 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.51 ms +I, [2018-08-07T01:04:15.118546 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:15.118996 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-08-07T01:04:15.119087 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:15.121779 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-08-07T01:04:15.121896 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:15.122579 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T01:04:15.122656 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:15.124047 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.33 ms +I, [2018-08-07T01:04:15.124120 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:15.124740 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.25 ms +I, [2018-08-07T01:04:15.124805 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:15.125520 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.25 ms +I, [2018-08-07T01:04:15.125842 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:15.126578 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.41 ms +I, [2018-08-07T01:04:15.126727 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:15.127262 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-08-07T01:04:15.127318 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:15.128172 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.5 ms +I, [2018-08-07T01:04:15.128240 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:15.128932 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.33 ms +I, [2018-08-07T01:04:15.129122 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:15.129854 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.5 ms +I, [2018-08-07T01:04:15.129917 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:15.130335 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T01:04:15.130392 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:15.130777 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T01:04:15.130836 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:15.131301 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.24 ms +I, [2018-08-07T01:04:15.131363 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:15.131793 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-08-07T01:04:15.131850 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:15.133116 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.91 ms +I, [2018-08-07T01:04:15.133179 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:15.134909 #6] INFO -- : Inline processing of topic course_change with 1 messages took 1.18 ms +I, [2018-08-07T01:04:15.134981 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:15.135786 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.3 ms +I, [2018-08-07T01:04:15.135850 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:15.136316 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-08-07T01:04:15.136442 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:15.136900 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-08-07T01:04:15.136951 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:15.137315 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-08-07T01:04:15.137363 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:15.138175 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.45 ms +I, [2018-08-07T01:04:15.138241 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:15.139001 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.49 ms +I, [2018-08-07T01:04:15.139066 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:15.139717 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.45 ms +I, [2018-08-07T01:04:15.139786 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:15.140842 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.35 ms +I, [2018-08-07T01:04:15.140921 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:15.141410 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-08-07T01:04:15.141467 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:15.142251 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.24 ms +I, [2018-08-07T01:04:15.142432 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:15.143243 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.23 ms +I, [2018-08-07T01:04:15.143354 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:15.144302 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.4 ms +I, [2018-08-07T01:04:15.144404 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:15.145638 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.39 ms +I, [2018-08-07T01:04:15.145992 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:15.147183 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.48 ms +I, [2018-08-07T01:04:15.147248 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:15.152494 #6] INFO -- : Inline processing of topic course_change with 1 messages took 2.5 ms +I, [2018-08-07T01:04:15.152591 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:15.153085 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-08-07T01:04:15.153143 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:15.157986 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.65 ms +I, [2018-08-07T01:04:15.158065 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:15.158779 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.25 ms +I, [2018-08-07T01:04:15.158842 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:15.159933 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.87 ms +I, [2018-08-07T01:04:15.160672 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:15.161629 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.65 ms +I, [2018-08-07T01:04:15.161695 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:15.162295 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.24 ms +I, [2018-08-07T01:04:15.162361 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:15.163182 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.39 ms +I, [2018-08-07T01:04:15.163257 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:15.163752 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.24 ms +I, [2018-08-07T01:04:15.163838 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:15.164333 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.26 ms +I, [2018-08-07T01:04:15.164390 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:15.164835 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-08-07T01:04:15.164890 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:15.165307 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-08-07T01:04:15.165602 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:15.166213 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.24 ms +I, [2018-08-07T01:04:15.166271 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:15.169092 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.53 ms +I, [2018-08-07T01:04:15.169178 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:15.169747 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.27 ms +I, [2018-08-07T01:04:15.169810 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:15.170613 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.27 ms +I, [2018-08-07T01:04:15.171201 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:15.172639 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.58 ms +I, [2018-08-07T01:04:15.172853 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:15.174448 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.28 ms +I, [2018-08-07T01:04:15.174547 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:15.179746 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.76 ms +I, [2018-08-07T01:04:15.179973 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:15.180451 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-08-07T01:04:15.180502 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:15.180928 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.23 ms +I, [2018-08-07T01:04:15.180986 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:15.182725 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.97 ms +I, [2018-08-07T01:04:15.182892 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:15.187842 #6] INFO -- : Inline processing of topic course_change with 1 messages took 4.45 ms +I, [2018-08-07T01:04:15.187915 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:15.188322 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-08-07T01:04:15.188366 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:15.188716 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T01:04:15.188757 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:15.189056 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T01:04:15.189099 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:15.189407 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T01:04:15.189448 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:15.190224 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T01:04:15.190275 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:15.190837 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.35 ms +I, [2018-08-07T01:04:15.190889 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:15.191342 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.26 ms +I, [2018-08-07T01:04:15.191402 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:15.191861 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.26 ms +I, [2018-08-07T01:04:15.192007 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:15.192634 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.23 ms +I, [2018-08-07T01:04:15.192705 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:15.194116 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-08-07T01:04:15.194182 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:15.194558 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T01:04:15.194610 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:15.201029 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.27 ms +I, [2018-08-07T01:04:15.201096 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:15.201484 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-08-07T01:04:15.201532 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:15.201902 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T01:04:15.201953 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:15.202677 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.41 ms +I, [2018-08-07T01:04:15.202743 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:15.203252 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-08-07T01:04:15.203307 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:15.203694 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T01:04:15.203883 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:15.204403 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-08-07T01:04:15.204443 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:15.204838 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-08-07T01:04:15.205423 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:15.205881 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-08-07T01:04:15.205931 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:15.206335 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-08-07T01:04:15.206388 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:15.206771 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-08-07T01:04:15.206821 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:15.207080 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T01:04:15.207126 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:15.207738 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.3 ms +I, [2018-08-07T01:04:15.207801 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:15.208246 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T01:04:15.208289 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:17.209394 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-08-07T01:04:17.209448 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:17.209929 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.28 ms +I, [2018-08-07T01:04:17.210178 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:17.210621 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.23 ms +I, [2018-08-07T01:04:17.210674 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:17.210998 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T01:04:17.211031 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:17.211281 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T01:04:17.211311 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:17.211563 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T01:04:17.211594 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:17.212060 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.28 ms +I, [2018-08-07T01:04:17.212098 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:17.212346 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T01:04:17.212373 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:17.212611 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T01:04:17.212642 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:17.213239 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.42 ms +I, [2018-08-07T01:04:17.213291 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:17.213639 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T01:04:17.213679 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:17.214127 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.3 ms +I, [2018-08-07T01:04:17.214167 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:17.214626 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-08-07T01:04:17.214678 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:17.215111 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T01:04:17.215187 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:17.215583 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-08-07T01:04:17.215634 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:17.216001 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T01:04:17.216053 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:17.216395 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T01:04:17.216453 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:17.216790 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T01:04:17.216835 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:17.219010 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.29 ms +I, [2018-08-07T01:04:17.219068 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:17.219472 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-08-07T01:04:17.219520 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:17.219889 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T01:04:17.219936 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:17.220285 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T01:04:17.220327 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:17.220674 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T01:04:17.220728 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:17.221382 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.45 ms +I, [2018-08-07T01:04:17.221438 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:17.222012 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T01:04:17.222179 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:17.222867 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-08-07T01:04:17.222988 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:17.223429 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T01:04:17.223598 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:17.225265 #6] INFO -- : Inline processing of topic course_change with 1 messages took 1.47 ms +I, [2018-08-07T01:04:17.225331 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:17.225723 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-08-07T01:04:17.225776 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:17.226165 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T01:04:17.226204 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:17.227617 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T01:04:17.228065 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:17.228561 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-08-07T01:04:17.228598 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:17.228856 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T01:04:17.228885 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:17.229114 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T01:04:17.229143 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:17.229371 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T01:04:17.229400 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:17.229611 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T01:04:17.229651 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:17.229857 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T01:04:17.229916 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:17.230106 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T01:04:17.230134 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:17.230347 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T01:04:17.230376 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:17.233916 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.29 ms +I, [2018-08-07T01:04:17.233976 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:17.234455 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-08-07T01:04:17.234507 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:17.234922 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.23 ms +I, [2018-08-07T01:04:17.235093 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:17.235359 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T01:04:17.235390 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:17.235628 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-08-07T01:04:17.235658 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:17.235886 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T01:04:17.235915 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:17.236142 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T01:04:17.236171 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:17.236394 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-08-07T01:04:17.236423 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:17.236676 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T01:04:17.236709 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:17.237351 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.33 ms +I, [2018-08-07T01:04:17.237392 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:17.237665 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T01:04:17.237701 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:17.238790 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.37 ms +I, [2018-08-07T01:04:17.238961 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:17.239678 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.29 ms +I, [2018-08-07T01:04:17.239775 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:17.240292 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T01:04:17.240343 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:17.240716 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T01:04:17.240766 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:17.241168 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-08-07T01:04:17.241217 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:17.241594 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T01:04:17.241644 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:17.242558 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.67 ms +I, [2018-08-07T01:04:17.242609 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:17.243670 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.27 ms +I, [2018-08-07T01:04:17.243928 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:17.244409 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.23 ms +I, [2018-08-07T01:04:17.244469 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:17.244814 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T01:04:17.244922 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:17.245231 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T01:04:17.245275 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:17.245874 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.38 ms +I, [2018-08-07T01:04:17.245929 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:17.246587 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.44 ms +I, [2018-08-07T01:04:17.246643 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:17.247279 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-08-07T01:04:17.247361 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:17.247923 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-08-07T01:04:17.248118 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:17.248549 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-08-07T01:04:17.248601 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:17.248970 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-08-07T01:04:17.249019 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:17.249369 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T01:04:17.250586 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:17.251298 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.39 ms +I, [2018-08-07T01:04:17.251368 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:17.251998 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.33 ms +I, [2018-08-07T01:04:17.252053 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:17.252618 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.28 ms +I, [2018-08-07T01:04:17.252674 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:17.253264 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T01:04:17.253317 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:17.253754 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-08-07T01:04:17.253803 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:17.254275 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T01:04:17.254328 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:17.254722 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-08-07T01:04:17.254767 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:17.255364 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.28 ms +I, [2018-08-07T01:04:17.255488 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:17.255866 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T01:04:17.255902 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:17.256214 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T01:04:17.256278 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:17.256533 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T01:04:17.256615 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:17.256834 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T01:04:17.256883 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:17.257164 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T01:04:17.257195 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:19.257936 #6] INFO -- : Committing offsets: course_change/0:1499 +I, [2018-08-07T01:04:19.261568 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.47 ms +I, [2018-08-07T01:04:19.261728 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:19.264735 #6] INFO -- : Inline processing of topic course_change with 1 messages took 2.73 ms +I, [2018-08-07T01:04:19.264808 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:19.265239 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-08-07T01:04:19.265287 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:19.265574 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T01:04:19.265619 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:19.266130 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.33 ms +I, [2018-08-07T01:04:19.266208 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:19.266576 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T01:04:19.266608 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:19.267089 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.34 ms +I, [2018-08-07T01:04:19.267146 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:19.267562 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-08-07T01:04:19.267612 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:19.267860 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T01:04:19.267890 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:19.268181 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T01:04:19.268245 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:19.268445 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-08-07T01:04:19.268475 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:19.268707 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-08-07T01:04:19.268735 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:19.269077 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-08-07T01:04:19.269126 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:19.269451 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T01:04:19.269567 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:19.270015 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-08-07T01:04:19.270236 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:19.270668 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-08-07T01:04:19.270719 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:19.271123 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.23 ms +I, [2018-08-07T01:04:19.271160 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:19.271423 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T01:04:19.271454 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:19.271687 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-08-07T01:04:19.271717 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:19.271910 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T01:04:19.271971 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:19.272158 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T01:04:19.272187 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:19.272415 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-08-07T01:04:19.272444 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:19.272743 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T01:04:19.272775 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:19.274866 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.24 ms +I, [2018-08-07T01:04:19.274910 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:19.275214 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T01:04:19.275248 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:19.275689 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.3 ms +I, [2018-08-07T01:04:19.275754 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:19.276191 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-08-07T01:04:19.276240 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:19.276623 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T01:04:19.276673 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:19.277160 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T01:04:19.277210 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:19.277674 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-08-07T01:04:19.277732 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:19.278385 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.41 ms +I, [2018-08-07T01:04:19.278446 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:19.278850 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T01:04:19.278901 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:19.279257 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T01:04:19.281269 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:19.281743 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-08-07T01:04:19.281803 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:19.282188 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T01:04:19.282238 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:19.282583 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T01:04:19.282631 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:19.282986 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T01:04:19.283061 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:19.283707 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.35 ms +I, [2018-08-07T01:04:19.283776 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:19.284188 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T01:04:19.284237 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:19.284608 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T01:04:19.284659 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:19.285307 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.3 ms +I, [2018-08-07T01:04:19.285345 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:19.285729 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T01:04:19.285895 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:19.286773 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.46 ms +I, [2018-08-07T01:04:19.286839 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:19.287296 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.23 ms +I, [2018-08-07T01:04:19.287358 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:19.287663 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T01:04:19.287694 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:19.287937 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T01:04:19.287968 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:19.288197 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-08-07T01:04:19.288227 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:19.288456 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-08-07T01:04:19.288483 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:19.288722 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T01:04:19.288753 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:19.289238 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-08-07T01:04:19.289304 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:19.289567 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T01:04:19.289612 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:19.289906 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T01:04:19.289938 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:19.290167 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T01:04:19.290196 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:19.290439 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T01:04:19.290469 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:19.290703 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T01:04:19.290734 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:19.290960 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T01:04:19.290990 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:19.291397 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.27 ms +I, [2018-08-07T01:04:19.291448 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:19.291818 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T01:04:19.291869 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:19.292256 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-08-07T01:04:19.292306 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:19.292671 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T01:04:19.292722 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:19.295102 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.41 ms +I, [2018-08-07T01:04:19.295172 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:19.295880 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T01:04:19.295991 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:19.296895 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.42 ms +I, [2018-08-07T01:04:19.296959 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:19.297401 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.23 ms +I, [2018-08-07T01:04:19.297450 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:19.297839 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-08-07T01:04:19.298004 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:19.302063 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.28 ms +I, [2018-08-07T01:04:19.302258 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:19.302877 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.26 ms +I, [2018-08-07T01:04:19.303064 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:19.304361 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.81 ms +I, [2018-08-07T01:04:19.304446 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:19.304881 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.25 ms +I, [2018-08-07T01:04:19.304923 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:19.305197 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T01:04:19.305269 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:19.305650 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-08-07T01:04:19.305726 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:19.306069 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-08-07T01:04:19.306183 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:19.306500 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T01:04:19.306534 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:19.306773 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T01:04:19.306803 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:19.307028 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T01:04:19.307133 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:19.307570 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T01:04:19.307607 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:19.307858 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T01:04:19.307890 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:19.308133 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T01:04:19.308178 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:19.308419 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T01:04:19.308462 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:19.308892 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.23 ms +I, [2018-08-07T01:04:19.308950 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:19.309324 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T01:04:19.309373 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:19.309719 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-08-07T01:04:19.309751 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:19.310126 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T01:04:19.310179 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:19.310715 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.34 ms +I, [2018-08-07T01:04:19.310758 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:19.311455 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.29 ms +I, [2018-08-07T01:04:19.311550 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:19.312001 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.23 ms +I, [2018-08-07T01:04:19.312054 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:21.313066 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.26 ms +I, [2018-08-07T01:04:21.313140 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:21.313732 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T01:04:21.313794 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:21.314187 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-08-07T01:04:21.314242 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:21.314616 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T01:04:21.314671 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:21.315060 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T01:04:21.315113 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:21.315474 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T01:04:21.315526 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:21.316002 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.24 ms +I, [2018-08-07T01:04:21.316097 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:21.316490 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-08-07T01:04:21.316545 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:21.316870 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T01:04:21.316907 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:21.317219 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-08-07T01:04:21.317272 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:21.317630 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T01:04:21.317720 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:21.323487 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-08-07T01:04:21.323553 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:21.323797 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T01:04:21.323827 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:21.324044 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T01:04:21.324073 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:21.324295 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T01:04:21.324347 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:21.324734 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.23 ms +I, [2018-08-07T01:04:21.324793 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:21.325047 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T01:04:21.325076 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:21.325306 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T01:04:21.325336 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:21.325763 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T01:04:21.325827 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:21.326071 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-08-07T01:04:21.326102 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:21.326314 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T01:04:21.326343 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:21.326564 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T01:04:21.326593 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:21.326962 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T01:04:21.326995 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:21.327226 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T01:04:21.327256 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:21.327479 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T01:04:21.327530 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:21.327950 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-08-07T01:04:21.327985 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:21.328230 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T01:04:21.328260 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:21.328736 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T01:04:21.328775 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:21.329805 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.75 ms +I, [2018-08-07T01:04:21.329874 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:21.330174 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T01:04:21.330206 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:21.330671 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.26 ms +I, [2018-08-07T01:04:21.330710 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:21.330969 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T01:04:21.331000 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:21.331246 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T01:04:21.331276 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:21.331820 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.31 ms +I, [2018-08-07T01:04:21.331867 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:21.332132 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T01:04:21.332163 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:21.332592 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-08-07T01:04:21.332627 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:21.332869 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-08-07T01:04:21.332914 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:21.333194 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T01:04:21.333224 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:21.333445 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T01:04:21.333474 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:21.333698 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-08-07T01:04:21.333727 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:21.333962 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T01:04:21.333999 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:21.334219 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T01:04:21.334256 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:21.334691 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.28 ms +I, [2018-08-07T01:04:21.334754 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:21.336411 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T01:04:21.336457 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:21.336730 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T01:04:21.336825 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:21.337203 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T01:04:21.337238 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:21.337533 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T01:04:21.337565 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:21.337801 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T01:04:21.337831 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:21.339350 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T01:04:21.339391 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:21.339657 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T01:04:21.339686 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:21.339991 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T01:04:21.340025 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:21.340348 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T01:04:21.340384 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:21.340860 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.25 ms +I, [2018-08-07T01:04:21.340898 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:21.341181 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T01:04:21.341212 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:21.341464 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T01:04:21.341495 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:21.341885 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.23 ms +I, [2018-08-07T01:04:21.341939 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:21.342195 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T01:04:21.342244 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:21.342475 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T01:04:21.342504 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:21.342730 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T01:04:21.342767 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:21.342995 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T01:04:21.343035 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:21.343668 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.47 ms +I, [2018-08-07T01:04:21.343713 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:21.344175 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-08-07T01:04:21.344208 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:21.344600 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-08-07T01:04:21.344648 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:21.345107 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.28 ms +I, [2018-08-07T01:04:21.345158 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:21.345575 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-08-07T01:04:21.345638 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:21.345979 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T01:04:21.346014 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:21.346368 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T01:04:21.346417 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:21.346758 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T01:04:21.346794 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:21.347080 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T01:04:21.347112 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:21.348071 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.84 ms +I, [2018-08-07T01:04:21.348101 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:21.348337 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T01:04:21.348368 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:21.348619 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T01:04:21.348649 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:21.348880 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T01:04:21.348907 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:21.349129 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T01:04:21.349155 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:21.349367 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T01:04:21.349431 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:21.350360 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.26 ms +I, [2018-08-07T01:04:21.350452 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:21.350879 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T01:04:21.350977 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:21.351213 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T01:04:21.351244 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:21.351488 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T01:04:21.351518 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:21.351757 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-08-07T01:04:21.351787 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:21.352022 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-08-07T01:04:21.352052 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:21.352292 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T01:04:21.352329 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:21.353395 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.86 ms +I, [2018-08-07T01:04:21.353471 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:23.354289 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.25 ms +I, [2018-08-07T01:04:23.354361 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:23.354692 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T01:04:23.354797 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:23.375305 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.35 ms +I, [2018-08-07T01:04:23.375368 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:23.375762 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T01:04:23.375806 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:23.376170 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-08-07T01:04:23.376219 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:23.376583 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-08-07T01:04:23.376628 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:23.376974 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T01:04:23.377017 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:23.377365 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T01:04:23.377400 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:23.377755 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T01:04:23.377800 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:23.378125 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T01:04:23.378189 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:23.378833 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.48 ms +I, [2018-08-07T01:04:23.378901 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:23.379536 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.38 ms +I, [2018-08-07T01:04:23.379588 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:23.380134 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.25 ms +I, [2018-08-07T01:04:23.380376 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:23.380918 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.23 ms +I, [2018-08-07T01:04:23.380977 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:23.381452 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.24 ms +I, [2018-08-07T01:04:23.381505 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:23.386791 #6] INFO -- : Inline processing of topic course_change with 1 messages took 4.06 ms +I, [2018-08-07T01:04:23.386858 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:23.387307 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-08-07T01:04:23.387354 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:23.387899 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T01:04:23.387977 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:23.388776 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-08-07T01:04:23.388835 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:23.389205 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T01:04:23.389268 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:23.389641 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T01:04:23.389693 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:23.390062 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T01:04:23.390118 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:23.390487 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T01:04:23.390534 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:23.390887 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T01:04:23.390974 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:23.394942 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.23 ms +I, [2018-08-07T01:04:23.395003 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:23.397475 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.25 ms +I, [2018-08-07T01:04:23.397554 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:23.399070 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.37 ms +I, [2018-08-07T01:04:23.399144 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:23.399571 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T01:04:23.399626 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:23.400017 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T01:04:23.400880 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:23.402848 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.6 ms +I, [2018-08-07T01:04:23.405053 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:23.408266 #6] INFO -- : Inline processing of topic course_change with 1 messages took 2.39 ms +I, [2018-08-07T01:04:23.408341 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:23.408835 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.27 ms +I, [2018-08-07T01:04:23.408885 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:23.409501 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-08-07T01:04:23.409552 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:23.409973 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T01:04:23.410022 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:23.410463 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-08-07T01:04:23.410528 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:23.411092 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.33 ms +I, [2018-08-07T01:04:23.411150 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:23.411568 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-08-07T01:04:23.411623 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:23.412686 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.47 ms +I, [2018-08-07T01:04:23.412780 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:23.413436 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-08-07T01:04:23.413517 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:23.419008 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-08-07T01:04:23.419070 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:23.419466 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-08-07T01:04:23.419514 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:23.420294 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.54 ms +I, [2018-08-07T01:04:23.420580 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:23.422639 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.71 ms +I, [2018-08-07T01:04:23.422702 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:23.423348 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.23 ms +I, [2018-08-07T01:04:23.423401 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:23.423800 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-08-07T01:04:23.423847 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:23.424378 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.3 ms +I, [2018-08-07T01:04:23.424433 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:23.425007 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.38 ms +I, [2018-08-07T01:04:23.425052 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:23.425413 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T01:04:23.425458 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:23.426116 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T01:04:23.426296 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:23.426720 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T01:04:23.426918 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:23.427509 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.24 ms +I, [2018-08-07T01:04:23.427585 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:23.429403 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.71 ms +I, [2018-08-07T01:04:23.429479 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:23.430605 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.45 ms +I, [2018-08-07T01:04:23.430671 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:23.431085 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-08-07T01:04:23.431131 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:23.431642 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.29 ms +I, [2018-08-07T01:04:23.431686 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:23.432299 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T01:04:23.432538 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:23.447115 #6] INFO -- : Inline processing of topic course_change with 1 messages took 6.38 ms +I, [2018-08-07T01:04:23.447186 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:23.453182 #6] INFO -- : Inline processing of topic course_change with 1 messages took 5.63 ms +I, [2018-08-07T01:04:23.453271 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:23.455954 #6] INFO -- : Inline processing of topic course_change with 1 messages took 1.94 ms +I, [2018-08-07T01:04:23.456016 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:23.456429 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-08-07T01:04:23.456475 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:23.463673 #6] INFO -- : Inline processing of topic course_change with 1 messages took 2.45 ms +I, [2018-08-07T01:04:23.463761 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:23.464299 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.25 ms +I, [2018-08-07T01:04:23.464353 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:23.464796 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-08-07T01:04:23.464845 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:23.465833 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.65 ms +I, [2018-08-07T01:04:23.465912 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:23.466362 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.23 ms +I, [2018-08-07T01:04:23.466412 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:23.467115 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.51 ms +I, [2018-08-07T01:04:23.467181 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:23.467637 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.24 ms +I, [2018-08-07T01:04:23.467699 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:23.468224 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-08-07T01:04:23.468277 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:23.468866 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.4 ms +I, [2018-08-07T01:04:23.468929 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:23.469384 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T01:04:23.469437 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:23.469798 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-08-07T01:04:23.469850 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:23.470215 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T01:04:23.470305 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:23.470709 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.23 ms +I, [2018-08-07T01:04:23.470757 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:23.471118 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T01:04:23.471164 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:23.471503 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-08-07T01:04:23.471751 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:23.472483 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-08-07T01:04:23.472546 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:23.473988 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.25 ms +I, [2018-08-07T01:04:23.474160 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:23.475355 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.38 ms +I, [2018-08-07T01:04:23.475420 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:23.477404 #6] INFO -- : Inline processing of topic course_change with 1 messages took 1.42 ms +I, [2018-08-07T01:04:23.477483 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:23.480129 #6] INFO -- : Inline processing of topic course_change with 1 messages took 1.14 ms +I, [2018-08-07T01:04:23.480196 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:23.480792 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-08-07T01:04:23.480902 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:23.481516 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.33 ms +I, [2018-08-07T01:04:23.481568 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:23.481975 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T01:04:23.482021 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:23.482385 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T01:04:23.482431 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:23.483518 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.42 ms +I, [2018-08-07T01:04:23.483952 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:23.488437 #6] INFO -- : Inline processing of topic course_change with 1 messages took 2.18 ms +I, [2018-08-07T01:04:23.488513 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:24.355279 #6] INFO -- : Committing offsets: section_change/0:2185 +I, [2018-08-07T01:04:25.490811 #6] INFO -- : Inline processing of topic course_change with 1 messages took 1.44 ms +I, [2018-08-07T01:04:25.491350 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:25.493782 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.33 ms +I, [2018-08-07T01:04:25.493858 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:25.494430 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.27 ms +I, [2018-08-07T01:04:25.494490 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:25.494978 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-08-07T01:04:25.495036 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:25.495621 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-08-07T01:04:25.495699 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:25.496232 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.31 ms +I, [2018-08-07T01:04:25.496309 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:25.496900 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.3 ms +I, [2018-08-07T01:04:25.496959 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:25.497392 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-08-07T01:04:25.497449 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:25.498142 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.49 ms +I, [2018-08-07T01:04:25.498432 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:25.499505 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.37 ms +I, [2018-08-07T01:04:25.499598 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:25.500032 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-08-07T01:04:25.500096 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:25.500519 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.26 ms +I, [2018-08-07T01:04:25.500579 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:25.501038 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.25 ms +I, [2018-08-07T01:04:25.501086 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:25.501638 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.26 ms +I, [2018-08-07T01:04:25.501709 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:25.502136 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-08-07T01:04:25.502211 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:25.502842 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.36 ms +I, [2018-08-07T01:04:25.502900 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:25.503308 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-08-07T01:04:25.503364 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:25.503834 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.26 ms +I, [2018-08-07T01:04:25.503918 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:25.504227 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T01:04:25.504258 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:25.504597 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-08-07T01:04:25.504647 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:25.505206 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T01:04:25.505245 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:25.505599 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-08-07T01:04:25.505646 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:25.506117 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.25 ms +I, [2018-08-07T01:04:25.506164 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:25.507937 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T01:04:25.507988 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:25.508338 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T01:04:25.508369 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:25.508677 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T01:04:25.508708 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:25.508899 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T01:04:25.510554 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:25.511046 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T01:04:25.511154 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:25.511684 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.33 ms +I, [2018-08-07T01:04:25.511747 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:25.512206 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T01:04:25.512263 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:25.512714 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.25 ms +I, [2018-08-07T01:04:25.512774 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:25.513244 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-08-07T01:04:25.513293 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:25.513792 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.29 ms +I, [2018-08-07T01:04:25.513862 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:25.518540 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.24 ms +I, [2018-08-07T01:04:25.518613 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:26.728017 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.54 ms +I, [2018-08-07T01:04:26.728087 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:26.728430 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T01:04:26.728588 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:26.728878 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T01:04:26.728909 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:26.729233 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T01:04:26.729283 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:26.729679 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T01:04:26.729735 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:26.730018 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T01:04:26.730288 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:26.730675 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T01:04:26.730758 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:26.731635 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.65 ms +I, [2018-08-07T01:04:26.731748 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:26.732577 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-08-07T01:04:26.732630 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:26.733183 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-08-07T01:04:26.733264 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:26.733703 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T01:04:26.733740 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:26.734120 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T01:04:26.734153 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:26.734448 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T01:04:26.734534 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:26.734806 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T01:04:26.734835 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:26.736422 #6] INFO -- : Inline processing of topic section_change with 1 messages took 1.46 ms +I, [2018-08-07T01:04:26.736481 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:26.736939 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T01:04:26.736973 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:26.737216 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T01:04:26.737247 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:26.737544 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T01:04:26.737574 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:27.519294 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-08-07T01:04:27.519357 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:27.519592 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T01:04:27.519636 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:27.519857 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T01:04:27.519887 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:27.520126 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T01:04:27.520156 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:27.520381 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T01:04:27.520411 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:27.520640 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T01:04:27.520669 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:27.520895 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T01:04:27.520926 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:27.521157 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T01:04:27.521189 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:27.521682 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T01:04:27.521717 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:27.521956 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T01:04:27.521986 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:27.522218 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T01:04:27.522247 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:27.524316 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.24 ms +I, [2018-08-07T01:04:27.524367 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:27.524646 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T01:04:27.524717 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:27.527636 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T01:04:27.527675 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:27.527937 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T01:04:27.527970 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:27.528211 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T01:04:27.528244 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:27.529375 #6] INFO -- : Inline processing of topic course_change with 1 messages took 1.0 ms +I, [2018-08-07T01:04:27.529409 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:27.529633 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T01:04:27.529663 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:27.530148 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T01:04:27.530180 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:27.530598 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T01:04:27.530683 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:27.531026 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T01:04:27.531066 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:27.531488 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T01:04:27.531542 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:27.532612 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.79 ms +I, [2018-08-07T01:04:27.532659 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:27.532938 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T01:04:27.532969 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:27.535186 #6] INFO -- : Inline processing of topic course_change with 1 messages took 1.82 ms +I, [2018-08-07T01:04:27.535237 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:27.535552 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T01:04:27.535581 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:27.541728 #6] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T01:04:27.541766 #6] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:04:28.738363 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T01:04:28.738415 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:28.738790 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T01:04:28.738823 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:28.739182 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T01:04:28.739218 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:28.739534 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T01:04:28.739599 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:28.739879 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T01:04:28.739920 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:28.740263 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T01:04:28.740299 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:28.740644 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T01:04:28.740713 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:28.740955 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T01:04:28.740984 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:28.741610 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T01:04:28.741645 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:28.741863 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T01:04:28.741892 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:28.742115 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-08-07T01:04:28.742144 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:28.742416 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T01:04:28.742445 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:28.742682 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T01:04:28.742736 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:28.743014 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T01:04:28.743050 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:28.743718 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T01:04:28.743753 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:28.743977 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T01:04:28.744007 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:28.744219 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T01:04:28.744248 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:28.744649 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T01:04:28.744696 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:28.747606 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-08-07T01:04:28.747647 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:28.748075 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-08-07T01:04:28.748107 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:28.748503 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T01:04:28.749004 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:28.749783 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.57 ms +I, [2018-08-07T01:04:28.749847 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:28.750381 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-08-07T01:04:28.750416 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:28.750849 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-08-07T01:04:28.750886 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:28.751306 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-08-07T01:04:28.751336 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:28.751746 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T01:04:28.751777 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:28.752186 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-08-07T01:04:28.752216 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:28.752607 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T01:04:28.752650 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:28.752864 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T01:04:28.752909 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:28.753189 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T01:04:28.753219 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:28.753505 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T01:04:28.753534 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:28.754853 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.42 ms +I, [2018-08-07T01:04:28.756868 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:28.759104 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-08-07T01:04:28.759536 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:28.761201 #6] INFO -- : Inline processing of topic section_change with 1 messages took 1.3 ms +I, [2018-08-07T01:04:28.761274 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:28.761726 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T01:04:28.761765 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:28.764468 #6] INFO -- : Inline processing of topic section_change with 1 messages took 2.05 ms +I, [2018-08-07T01:04:28.764537 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:28.768638 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-08-07T01:04:28.768693 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:28.769126 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T01:04:28.769161 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:28.770432 #6] INFO -- : Inline processing of topic section_change with 1 messages took 1.12 ms +I, [2018-08-07T01:04:28.770535 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:28.770876 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T01:04:28.770907 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:28.771350 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T01:04:28.771382 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:28.771856 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-08-07T01:04:28.771891 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:28.772392 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-08-07T01:04:28.772441 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:28.772846 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T01:04:28.772881 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:28.773238 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T01:04:28.773272 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:28.773768 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-08-07T01:04:28.773801 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:28.774293 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-08-07T01:04:28.774328 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:28.774804 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-08-07T01:04:28.774838 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:28.775294 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-08-07T01:04:28.780459 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:28.782131 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.42 ms +I, [2018-08-07T01:04:28.782243 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:28.783893 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.5 ms +I, [2018-08-07T01:04:28.783950 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:28.787935 #6] INFO -- : Inline processing of topic section_change with 1 messages took 3.1 ms +I, [2018-08-07T01:04:28.789377 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:28.790077 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.47 ms +I, [2018-08-07T01:04:28.790121 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:28.790640 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-08-07T01:04:28.790685 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:28.791034 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T01:04:28.791066 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:28.792369 #6] INFO -- : Inline processing of topic section_change with 1 messages took 1.04 ms +I, [2018-08-07T01:04:28.792434 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:28.794170 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.47 ms +I, [2018-08-07T01:04:28.794219 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:28.798785 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-08-07T01:04:28.798833 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:28.799246 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T01:04:28.799283 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:28.799690 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T01:04:28.799725 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:28.800162 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-08-07T01:04:28.800197 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:28.800441 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T01:04:28.800475 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:28.800755 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T01:04:28.800789 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:28.801121 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T01:04:28.801155 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:28.801435 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T01:04:28.801494 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:28.801773 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T01:04:28.801807 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:28.802280 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-08-07T01:04:28.802325 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:28.802747 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T01:04:28.802791 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:28.803371 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-08-07T01:04:28.803592 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:28.804678 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.65 ms +I, [2018-08-07T01:04:28.804734 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:28.805076 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T01:04:28.805113 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:28.805428 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T01:04:28.805552 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:28.805942 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T01:04:28.805980 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:28.806273 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T01:04:28.806325 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:28.807292 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.83 ms +I, [2018-08-07T01:04:28.807339 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:29.542623 #6] INFO -- : Committing offsets: course_change/0:1815 +I, [2018-08-07T01:04:30.808030 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T01:04:30.808078 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:30.808378 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T01:04:30.808408 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:30.808669 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T01:04:30.808698 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:30.808969 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T01:04:30.808998 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:30.809200 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T01:04:30.809259 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:30.813018 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-08-07T01:04:30.813059 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:30.813305 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T01:04:30.813336 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:30.813703 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T01:04:30.813733 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:30.814000 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T01:04:30.814030 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:30.814264 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T01:04:30.814293 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:30.814571 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T01:04:30.814599 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:30.814812 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T01:04:30.814840 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:30.815069 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T01:04:30.815100 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:30.815329 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T01:04:30.815359 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:30.815663 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T01:04:30.815694 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:30.815962 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T01:04:30.816007 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:30.816353 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T01:04:30.816382 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:30.816699 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T01:04:30.816728 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:30.818176 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T01:04:30.818217 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:30.818518 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T01:04:30.818548 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:30.818863 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T01:04:30.818892 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:30.819222 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T01:04:30.819278 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:30.819489 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T01:04:30.819518 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:30.819730 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T01:04:30.819779 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:30.819989 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T01:04:30.820018 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:30.820241 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T01:04:30.820270 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:30.820481 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T01:04:30.820509 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:30.820838 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T01:04:30.820867 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:30.821166 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T01:04:30.821195 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:30.821502 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T01:04:30.821531 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:30.821792 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T01:04:30.821833 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:30.822145 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T01:04:30.822174 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:30.822592 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T01:04:30.822629 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:30.822853 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T01:04:30.822881 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:30.823113 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T01:04:30.823143 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:30.823377 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T01:04:30.823407 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:30.825417 #6] INFO -- : Inline processing of topic section_change with 1 messages took 1.84 ms +I, [2018-08-07T01:04:30.825483 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:30.827135 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.4 ms +I, [2018-08-07T01:04:30.827211 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:30.828250 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-08-07T01:04:30.828307 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:30.830380 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-08-07T01:04:30.830442 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:30.831924 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T01:04:30.832208 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:30.833535 #6] INFO -- : Inline processing of topic section_change with 1 messages took 1.03 ms +I, [2018-08-07T01:04:30.833599 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:30.833959 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T01:04:30.833991 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:30.835939 #6] INFO -- : Inline processing of topic section_change with 1 messages took 1.8 ms +I, [2018-08-07T01:04:30.836041 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:30.839407 #6] INFO -- : Inline processing of topic section_change with 1 messages took 1.74 ms +I, [2018-08-07T01:04:30.839477 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:30.839833 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T01:04:30.839864 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:30.840135 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T01:04:30.840168 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:30.840470 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T01:04:30.840503 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:30.840817 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T01:04:30.840855 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:30.842116 #6] INFO -- : Inline processing of topic section_change with 1 messages took 1.12 ms +I, [2018-08-07T01:04:30.842186 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:30.842494 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T01:04:30.842555 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:30.842838 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T01:04:30.842873 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:30.843637 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.64 ms +I, [2018-08-07T01:04:30.843731 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:30.846079 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T01:04:30.846141 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:30.847481 #6] INFO -- : Inline processing of topic section_change with 1 messages took 1.13 ms +I, [2018-08-07T01:04:30.850543 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:30.853177 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.53 ms +I, [2018-08-07T01:04:30.853235 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:30.853635 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T01:04:30.853667 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:30.853943 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T01:04:30.853972 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:30.854271 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T01:04:30.854301 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:30.854538 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T01:04:30.854568 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:30.854857 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T01:04:30.854887 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:30.855116 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T01:04:30.855144 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:30.855443 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T01:04:30.855472 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:30.855694 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T01:04:30.855723 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:30.857521 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.42 ms +I, [2018-08-07T01:04:30.857571 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:30.858724 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.98 ms +I, [2018-08-07T01:04:30.858767 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:30.859098 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T01:04:30.859129 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:30.859360 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T01:04:30.862043 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:30.863291 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.82 ms +I, [2018-08-07T01:04:30.863354 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:30.863769 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T01:04:30.863801 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:30.864022 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T01:04:30.864053 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:30.864266 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-08-07T01:04:30.865063 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:30.865366 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T01:04:30.865399 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:30.865654 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T01:04:30.865702 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:30.865985 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T01:04:30.866016 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:30.866241 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T01:04:30.866271 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:30.866483 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T01:04:30.866513 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:30.866723 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T01:04:30.866775 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:30.867017 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T01:04:30.867054 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:30.867266 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T01:04:30.867296 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:30.867572 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T01:04:30.867613 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:30.867870 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T01:04:30.867908 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:30.868146 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T01:04:30.868176 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:30.868389 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T01:04:30.868419 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:30.868635 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-08-07T01:04:30.868687 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:30.868881 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T01:04:30.868910 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:30.869127 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T01:04:30.869157 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:30.869486 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T01:04:30.869519 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:30.869809 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T01:04:30.869840 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:30.870096 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T01:04:30.870125 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:30.870382 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T01:04:30.870411 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:30.881496 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-08-07T01:04:30.881553 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:30.881961 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T01:04:30.882006 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:30.882398 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T01:04:30.882509 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:30.883151 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.43 ms +I, [2018-08-07T01:04:30.883212 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:30.883639 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T01:04:30.883680 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:30.884252 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-08-07T01:04:30.884334 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:30.884725 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T01:04:30.884791 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +W, [2018-08-07T01:04:32.640922 #6] WARN -- : Reached max fetcher queue size (100), sleeping 1s +I, [2018-08-07T01:04:32.850291 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-08-07T01:04:32.850371 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:32.851064 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T01:04:32.851144 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:32.851560 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T01:04:32.851601 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:32.851970 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T01:04:32.852005 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:32.852288 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T01:04:32.852317 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:32.852557 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T01:04:32.852586 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:32.852799 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T01:04:32.852828 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:32.853125 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T01:04:32.853153 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:32.853445 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T01:04:32.853474 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:32.853789 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T01:04:32.853818 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:32.854129 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T01:04:32.854175 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:32.854386 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T01:04:32.854415 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:32.854705 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T01:04:32.854734 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:32.855004 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T01:04:32.855057 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:32.855342 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T01:04:32.855371 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:32.855645 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T01:04:32.855688 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:32.855928 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T01:04:32.855958 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:32.856271 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T01:04:32.856301 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:32.856594 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T01:04:32.856635 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:32.856944 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T01:04:32.856973 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:32.857275 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T01:04:32.857310 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:32.857572 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T01:04:32.857604 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:32.858437 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-08-07T01:04:32.858497 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:32.858736 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T01:04:32.858765 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:32.859100 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T01:04:32.859143 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:32.859474 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T01:04:32.859504 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:32.859853 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T01:04:32.859882 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:32.860115 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T01:04:32.860144 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:32.860364 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T01:04:32.860409 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:32.862352 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-08-07T01:04:32.862443 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:32.864068 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-08-07T01:04:32.864125 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:32.864967 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.64 ms +I, [2018-08-07T01:04:32.865022 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:32.869834 #6] INFO -- : Inline processing of topic section_change with 1 messages took 3.16 ms +I, [2018-08-07T01:04:32.869929 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:32.870410 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T01:04:32.870471 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:32.871396 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-08-07T01:04:32.871582 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:32.872036 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T01:04:32.872082 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:32.873720 #6] INFO -- : Inline processing of topic section_change with 1 messages took 1.45 ms +I, [2018-08-07T01:04:32.873841 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:32.874509 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T01:04:32.874608 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:32.875020 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T01:04:32.875087 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:32.875360 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T01:04:32.875391 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:32.875616 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T01:04:32.875646 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:32.875884 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T01:04:32.875914 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:32.876159 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T01:04:32.876190 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:32.876418 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T01:04:32.876448 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:32.876696 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T01:04:32.876727 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:32.877030 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T01:04:32.877062 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:32.877275 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T01:04:32.877304 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:32.877637 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T01:04:32.877666 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:32.879346 #6] INFO -- : Inline processing of topic section_change with 1 messages took 1.52 ms +I, [2018-08-07T01:04:32.879391 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:32.879960 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T01:04:32.880051 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:32.881119 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.91 ms +I, [2018-08-07T01:04:32.881191 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:32.881578 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T01:04:32.881610 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:32.882200 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.42 ms +I, [2018-08-07T01:04:32.882246 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:32.884050 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T01:04:32.884097 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:32.884641 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T01:04:32.884677 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:32.887943 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T01:04:32.888021 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:32.888531 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T01:04:32.888632 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:32.889678 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.42 ms +I, [2018-08-07T01:04:32.889806 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:32.890329 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T01:04:32.890424 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:32.890905 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T01:04:32.891161 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:32.891722 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T01:04:32.891757 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:32.892373 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T01:04:32.892564 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:32.893555 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-08-07T01:04:32.893611 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:32.894093 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T01:04:32.897349 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:32.898350 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.56 ms +I, [2018-08-07T01:04:32.898415 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:32.899096 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.43 ms +I, [2018-08-07T01:04:32.899665 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:32.900542 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.58 ms +I, [2018-08-07T01:04:32.900605 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:32.901367 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-08-07T01:04:32.901495 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:32.901806 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T01:04:32.901838 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:32.902081 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T01:04:32.902112 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:32.902318 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T01:04:32.902347 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:32.902803 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-08-07T01:04:32.902837 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:32.903399 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-08-07T01:04:32.903441 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:32.903918 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T01:04:32.903952 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:32.904181 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T01:04:32.904211 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:32.904869 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.46 ms +I, [2018-08-07T01:04:32.904921 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:32.905407 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T01:04:32.905442 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:32.905762 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T01:04:32.905933 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:32.906494 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T01:04:32.906534 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:32.906904 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T01:04:32.906952 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:32.907257 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T01:04:32.907314 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:32.907734 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T01:04:32.907784 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:32.908319 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-08-07T01:04:32.908474 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:32.910030 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.96 ms +I, [2018-08-07T01:04:32.910646 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:32.911290 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-08-07T01:04:32.911332 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:32.911607 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T01:04:32.911638 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:32.912087 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T01:04:32.912128 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:32.912379 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T01:04:32.912433 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:32.912993 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.44 ms +I, [2018-08-07T01:04:32.913029 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:32.913409 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T01:04:32.913530 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:32.913780 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T01:04:32.913831 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:32.914043 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T01:04:32.914073 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:32.915235 #6] INFO -- : Inline processing of topic section_change with 1 messages took 1.04 ms +I, [2018-08-07T01:04:32.915275 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:32.915796 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T01:04:32.915870 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:32.916203 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T01:04:32.916234 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:32.916975 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-08-07T01:04:32.917062 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:32.917668 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-08-07T01:04:32.917706 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:32.918426 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.42 ms +I, [2018-08-07T01:04:32.918487 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:32.918960 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T01:04:32.919019 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:32.919823 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.58 ms +I, [2018-08-07T01:04:32.919892 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:34.920291 #6] INFO -- : Committing offsets: section_change/0:2476 +I, [2018-08-07T01:04:34.923765 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T01:04:34.923834 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:34.924101 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T01:04:34.924736 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:34.925080 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T01:04:34.925109 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:34.925471 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T01:04:34.925502 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:34.925800 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T01:04:34.925830 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:34.926106 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T01:04:34.926134 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:34.926497 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T01:04:34.926526 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:34.926904 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T01:04:34.926934 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:34.927302 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T01:04:34.927332 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:34.927695 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T01:04:34.927725 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:34.928120 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-08-07T01:04:34.928151 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:34.928493 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T01:04:34.928528 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:34.928857 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T01:04:34.928895 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:34.929223 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T01:04:34.929263 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:34.929574 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T01:04:34.929604 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:34.929897 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T01:04:34.929925 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:34.930278 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T01:04:34.930308 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:34.930659 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T01:04:34.930694 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:34.930869 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T01:04:34.930903 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:34.931102 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T01:04:34.931136 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:34.931314 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T01:04:34.931343 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:34.931609 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T01:04:34.931652 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:34.931919 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T01:04:34.931960 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:34.932238 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T01:04:34.932267 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:34.932504 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T01:04:34.932545 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:34.932815 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T01:04:34.932854 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:34.937171 #6] INFO -- : Inline processing of topic section_change with 1 messages took 1.36 ms +I, [2018-08-07T01:04:34.937274 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:34.938162 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.6 ms +I, [2018-08-07T01:04:34.938205 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:34.938824 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-08-07T01:04:34.938933 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:34.939253 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T01:04:34.939284 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:34.939815 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-08-07T01:04:34.939852 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:34.940453 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-08-07T01:04:34.940491 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:34.940745 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T01:04:34.940774 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:34.941081 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T01:04:34.941112 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:34.941581 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-08-07T01:04:34.941613 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:34.942247 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.53 ms +I, [2018-08-07T01:04:34.942322 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:34.942566 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T01:04:34.942741 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:34.943097 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T01:04:34.943204 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:34.943920 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T01:04:34.943956 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:34.944258 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T01:04:34.944288 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:34.944632 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T01:04:34.944663 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:34.945131 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-08-07T01:04:34.945193 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:34.945781 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T01:04:34.945844 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:34.946115 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T01:04:34.946169 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:34.946411 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T01:04:34.946441 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:34.946647 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-08-07T01:04:34.946995 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:34.947270 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T01:04:34.947326 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:34.947707 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T01:04:34.947740 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:34.948057 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T01:04:34.948087 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:34.948336 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T01:04:34.949196 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:34.949848 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.43 ms +I, [2018-08-07T01:04:34.949971 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:34.950290 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T01:04:34.950321 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:34.950572 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T01:04:34.950606 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:34.950839 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T01:04:34.950871 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:34.951115 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T01:04:34.951147 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:34.951583 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T01:04:34.951667 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:34.952005 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T01:04:34.952050 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:34.952414 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T01:04:34.953919 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:34.954407 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T01:04:34.954458 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:34.954853 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T01:04:34.954921 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:34.955411 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T01:04:34.955482 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:34.955868 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T01:04:34.955920 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:34.956767 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.66 ms +I, [2018-08-07T01:04:34.956806 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:34.957058 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T01:04:34.957090 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:34.958190 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T01:04:34.958233 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:34.959079 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.68 ms +I, [2018-08-07T01:04:34.959124 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:34.959478 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T01:04:34.959509 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:34.960473 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T01:04:34.960512 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:34.961152 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.51 ms +I, [2018-08-07T01:04:34.961430 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:34.961751 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T01:04:34.962020 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:34.962721 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.52 ms +I, [2018-08-07T01:04:34.962759 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:34.962991 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T01:04:34.963770 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:34.964106 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T01:04:34.964139 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:34.965093 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.71 ms +I, [2018-08-07T01:04:34.965136 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:34.965394 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T01:04:34.966183 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:34.966465 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T01:04:34.966498 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:34.967114 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.5 ms +I, [2018-08-07T01:04:34.967149 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:34.968187 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.9 ms +I, [2018-08-07T01:04:34.968236 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:34.968503 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T01:04:34.968535 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:34.969123 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.48 ms +I, [2018-08-07T01:04:34.969163 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:34.969872 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.54 ms +I, [2018-08-07T01:04:34.969908 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:34.970122 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T01:04:34.970153 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:34.970683 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.42 ms +I, [2018-08-07T01:04:34.970715 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:34.970915 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T01:04:34.970945 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:34.971513 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.46 ms +I, [2018-08-07T01:04:34.971545 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:34.971745 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T01:04:34.971775 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:34.972588 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.64 ms +I, [2018-08-07T01:04:34.972630 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:34.972892 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T01:04:34.972924 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:34.973850 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.42 ms +I, [2018-08-07T01:04:34.973897 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:34.975973 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.46 ms +I, [2018-08-07T01:04:34.976017 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:34.977940 #6] INFO -- : Inline processing of topic section_change with 1 messages took 1.76 ms +I, [2018-08-07T01:04:34.977988 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:34.978748 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.6 ms +I, [2018-08-07T01:04:34.978784 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:34.979948 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.98 ms +I, [2018-08-07T01:04:34.979992 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:34.980657 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.51 ms +I, [2018-08-07T01:04:34.980693 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:34.981396 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.57 ms +I, [2018-08-07T01:04:34.981434 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:34.982096 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.52 ms +I, [2018-08-07T01:04:34.982130 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:34.983015 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.74 ms +I, [2018-08-07T01:04:34.983059 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:34.984044 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.71 ms +I, [2018-08-07T01:04:34.984086 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:34.985036 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T01:04:34.985132 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:34.987376 #6] INFO -- : Inline processing of topic section_change with 1 messages took 1.91 ms +I, [2018-08-07T01:04:34.987513 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:34.987907 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T01:04:34.987939 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:34.988222 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T01:04:34.988252 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:34.988504 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T01:04:34.988746 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:34.989163 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T01:04:34.989202 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:34.989609 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T01:04:34.989641 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:34.990094 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-08-07T01:04:34.990129 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:34.990613 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T01:04:34.990647 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:34.990950 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T01:04:34.990980 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:34.991247 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T01:04:34.991276 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:34.991535 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T01:04:34.991564 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:34.991824 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T01:04:34.991850 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:34.992972 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-08-07T01:04:34.993013 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:34.993545 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-08-07T01:04:34.993584 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:34.993876 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T01:04:34.993907 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:34.994176 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T01:04:34.994226 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:34.994478 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T01:04:34.994507 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:36.995468 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T01:04:36.995516 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:36.995805 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T01:04:36.995861 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:36.996158 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T01:04:36.996187 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:36.996492 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T01:04:36.996521 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:36.996804 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T01:04:36.998425 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:36.998900 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T01:04:36.998955 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:36.999217 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T01:04:36.999259 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:36.999482 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T01:04:36.999512 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:36.999793 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T01:04:36.999827 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:37.000143 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T01:04:37.000176 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:37.000452 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T01:04:37.000481 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:37.000704 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T01:04:37.000734 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:37.000951 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T01:04:37.000987 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:37.001215 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T01:04:37.001246 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:37.001481 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T01:04:37.001512 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:37.001896 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T01:04:37.001933 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:37.002186 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T01:04:37.002220 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:37.002458 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T01:04:37.002490 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:37.002745 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T01:04:37.003425 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:37.003650 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T01:04:37.003680 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:37.003891 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T01:04:37.003921 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:37.004127 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T01:04:37.004156 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:37.004351 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T01:04:37.004380 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:37.004585 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T01:04:37.004617 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:37.004828 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T01:04:37.004857 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:37.005047 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T01:04:37.005094 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:37.005283 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T01:04:37.005311 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:37.005579 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T01:04:37.005624 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:37.006015 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T01:04:37.006050 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:37.006282 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T01:04:37.006311 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:37.006513 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T01:04:37.006542 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:37.006749 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T01:04:37.008101 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:37.008552 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T01:04:37.008673 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:37.008937 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T01:04:37.009033 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:37.009370 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T01:04:37.009403 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:37.009599 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T01:04:37.009628 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:37.012157 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T01:04:37.012424 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:37.012738 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T01:04:37.012770 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:37.013001 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T01:04:37.013031 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:37.013289 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T01:04:37.013333 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:37.013669 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T01:04:37.013720 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:37.014072 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T01:04:37.014121 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:37.014449 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T01:04:37.014492 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:37.014834 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T01:04:37.014882 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:37.015228 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T01:04:37.015262 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:37.015502 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T01:04:37.015533 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:37.017129 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T01:04:37.017208 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:37.017480 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T01:04:37.017513 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:37.018036 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T01:04:37.018076 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:37.018445 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T01:04:37.018476 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:37.018704 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T01:04:37.018733 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:37.018965 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T01:04:37.018994 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:37.019344 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T01:04:37.019378 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:37.019721 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T01:04:37.019851 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:37.020290 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T01:04:37.020336 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:37.020682 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T01:04:37.020715 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:37.020946 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T01:04:37.020976 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:37.021192 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T01:04:37.021220 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:37.021952 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T01:04:37.022085 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:37.022649 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T01:04:37.022711 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:37.023141 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-08-07T01:04:37.023173 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:37.023970 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.59 ms +I, [2018-08-07T01:04:37.024021 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:37.024530 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T01:04:37.024564 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:37.025339 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.47 ms +I, [2018-08-07T01:04:37.025381 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:37.025752 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T01:04:37.025784 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:37.026127 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T01:04:37.026158 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:37.026492 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T01:04:37.026522 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:37.027073 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.43 ms +I, [2018-08-07T01:04:37.029367 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:37.030552 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-08-07T01:04:37.030598 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:37.031299 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.56 ms +I, [2018-08-07T01:04:37.031338 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:37.031949 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T01:04:37.031988 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:37.032338 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T01:04:37.032371 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:37.033710 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-08-07T01:04:37.033750 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:37.034270 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-08-07T01:04:37.034305 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:37.034690 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T01:04:37.034752 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:37.035076 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T01:04:37.035106 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:37.035823 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.42 ms +I, [2018-08-07T01:04:37.035866 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:37.036499 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.41 ms +I, [2018-08-07T01:04:37.036535 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:37.036904 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T01:04:37.036935 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:37.038420 #6] INFO -- : Inline processing of topic section_change with 1 messages took 1.34 ms +I, [2018-08-07T01:04:37.038498 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:37.038914 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T01:04:37.038962 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:37.039296 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T01:04:37.039328 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:37.039554 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T01:04:37.040005 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:37.040282 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T01:04:37.040311 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:37.040574 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T01:04:37.040604 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:37.041241 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.5 ms +I, [2018-08-07T01:04:37.041348 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:37.041798 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T01:04:37.041841 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:37.042227 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T01:04:37.042257 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:37.042814 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-08-07T01:04:37.042884 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:37.043529 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.49 ms +I, [2018-08-07T01:04:37.043568 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:37.044074 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T01:04:37.044109 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:39.044779 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T01:04:39.044827 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:39.045129 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T01:04:39.045159 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:39.045362 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T01:04:39.045392 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:39.045607 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T01:04:39.045635 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:39.045910 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T01:04:39.045939 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:39.046155 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T01:04:39.046184 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:39.046483 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T01:04:39.046512 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:39.046771 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T01:04:39.046800 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:39.047761 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T01:04:39.047896 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:39.048515 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T01:04:39.048563 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:39.048863 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T01:04:39.048894 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:39.049098 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T01:04:39.049127 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:39.049319 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T01:04:39.049348 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:39.049567 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T01:04:39.049959 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:39.050464 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-08-07T01:04:39.050501 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:39.050834 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T01:04:39.050865 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:39.051146 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T01:04:39.051175 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:39.051633 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T01:04:39.051669 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:39.051975 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T01:04:39.052005 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:39.052238 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T01:04:39.052268 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:39.052568 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T01:04:39.052597 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:39.052879 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T01:04:39.052919 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:39.053143 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T01:04:39.053180 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:39.053436 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T01:04:39.053465 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:39.053676 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-08-07T01:04:39.053705 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:39.053903 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T01:04:39.053931 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:39.054352 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-08-07T01:04:39.054388 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:39.054700 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T01:04:39.054807 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:39.055112 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T01:04:39.055142 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:39.055354 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T01:04:39.055383 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:39.055598 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T01:04:39.055627 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:39.055846 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T01:04:39.055874 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:39.056419 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T01:04:39.056496 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:39.056861 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T01:04:39.056893 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:39.057235 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T01:04:39.057274 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:39.057823 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.42 ms +I, [2018-08-07T01:04:39.057859 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:39.058135 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T01:04:39.058166 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:39.058412 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T01:04:39.058449 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:39.058670 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T01:04:39.058714 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:39.058940 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T01:04:39.060793 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:39.061407 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-08-07T01:04:39.061548 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:39.061942 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T01:04:39.061994 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:39.062380 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T01:04:39.062436 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:39.062799 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T01:04:39.062848 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:39.063499 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T01:04:39.064157 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:39.064615 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T01:04:39.064660 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:39.066823 #6] INFO -- : Inline processing of topic section_change with 1 messages took 2.0 ms +I, [2018-08-07T01:04:39.066866 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:39.067148 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T01:04:39.067179 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:39.067547 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T01:04:39.067579 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:39.068112 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-08-07T01:04:39.068151 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:39.068890 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T01:04:39.068929 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:39.069251 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T01:04:39.069282 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:39.069580 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T01:04:39.069610 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:39.070062 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-08-07T01:04:39.070095 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:39.070819 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.6 ms +I, [2018-08-07T01:04:39.070861 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:39.071175 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T01:04:39.071244 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:39.071548 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T01:04:39.071578 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:39.072033 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-08-07T01:04:39.072087 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:39.072864 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-08-07T01:04:39.072913 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:39.073350 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T01:04:39.073511 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:39.073935 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T01:04:39.073968 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:39.074211 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T01:04:39.074240 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:39.074532 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T01:04:39.074561 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:39.075203 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T01:04:39.075248 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:39.075625 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T01:04:39.075657 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:39.075984 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T01:04:39.076014 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:39.076272 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T01:04:39.076302 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:39.076991 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T01:04:39.077124 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:39.077503 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T01:04:39.077535 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:39.078114 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-08-07T01:04:39.078206 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:39.078509 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T01:04:39.078540 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:39.081612 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.44 ms +I, [2018-08-07T01:04:39.081655 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:39.081979 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T01:04:39.082035 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:39.082294 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T01:04:39.082344 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:39.082837 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-08-07T01:04:39.082877 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:39.083428 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-08-07T01:04:39.083464 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:39.083765 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T01:04:39.083796 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:39.084021 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T01:04:39.084052 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:39.084267 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T01:04:39.084297 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:39.084864 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T01:04:39.084953 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:39.085458 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T01:04:39.085521 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:39.085728 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T01:04:39.085778 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:39.085985 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T01:04:39.086871 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:39.087253 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T01:04:39.087305 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:39.087779 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T01:04:39.087813 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:39.088050 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T01:04:39.088079 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:39.088300 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-08-07T01:04:39.088907 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:39.089341 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T01:04:39.089433 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:39.089813 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T01:04:39.089849 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:39.090174 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T01:04:39.090205 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:39.090416 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T01:04:39.090446 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:39.090649 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T01:04:39.090697 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:39.090884 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-08-07T01:04:39.090935 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:39.091265 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T01:04:39.091297 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:39.091766 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T01:04:39.091800 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:39.092017 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T01:04:39.092046 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:39.092262 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T01:04:39.092291 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:39.092788 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T01:04:39.092825 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:39.093188 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T01:04:39.093223 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:39.093553 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T01:04:39.093583 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:41.097895 #6] INFO -- : Inline processing of topic section_change with 1 messages took 1.46 ms +I, [2018-08-07T01:04:41.098093 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:41.117058 #6] INFO -- : Inline processing of topic section_change with 1 messages took 18.47 ms +I, [2018-08-07T01:04:41.120627 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:41.128742 #6] INFO -- : Inline processing of topic section_change with 1 messages took 7.23 ms +I, [2018-08-07T01:04:41.130841 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:41.163533 #6] INFO -- : Inline processing of topic section_change with 1 messages took 26.36 ms +I, [2018-08-07T01:04:41.163632 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:41.165239 #6] INFO -- : Inline processing of topic section_change with 1 messages took 1.0 ms +I, [2018-08-07T01:04:41.165449 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:41.166581 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.5 ms +I, [2018-08-07T01:04:41.166655 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:41.167896 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-08-07T01:04:41.167969 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:41.168873 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.48 ms +I, [2018-08-07T01:04:41.169343 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:41.170346 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.66 ms +I, [2018-08-07T01:04:41.170672 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:41.171502 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-08-07T01:04:41.171567 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:41.172962 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.94 ms +I, [2018-08-07T01:04:41.173038 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:41.174258 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.41 ms +I, [2018-08-07T01:04:41.174332 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:41.176357 #6] INFO -- : Inline processing of topic section_change with 1 messages took 1.77 ms +I, [2018-08-07T01:04:41.176430 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:41.177515 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-08-07T01:04:41.177573 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:41.178470 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.65 ms +I, [2018-08-07T01:04:41.178522 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:41.179836 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.44 ms +I, [2018-08-07T01:04:41.179904 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:41.181181 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.78 ms +I, [2018-08-07T01:04:41.181439 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:41.183359 #6] INFO -- : Inline processing of topic section_change with 1 messages took 1.66 ms +I, [2018-08-07T01:04:41.183455 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:41.185072 #6] INFO -- : Inline processing of topic section_change with 1 messages took 1.04 ms +I, [2018-08-07T01:04:41.185146 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:41.187078 #6] INFO -- : Inline processing of topic section_change with 1 messages took 1.44 ms +I, [2018-08-07T01:04:41.187155 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:41.189578 #6] INFO -- : Inline processing of topic section_change with 1 messages took 1.86 ms +I, [2018-08-07T01:04:41.189726 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:41.514929 #6] INFO -- : Committing offsets: course_change/0:1815 +I, [2018-08-07T01:04:43.192188 #6] INFO -- : Inline processing of topic section_change with 1 messages took 1.07 ms +I, [2018-08-07T01:04:43.192259 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:43.192782 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-08-07T01:04:43.194735 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:43.195468 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-08-07T01:04:43.195504 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:43.195834 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T01:04:43.195865 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:43.196159 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T01:04:43.196188 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:43.196645 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-08-07T01:04:43.196676 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:43.196991 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T01:04:43.197021 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:43.197339 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T01:04:43.197368 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:43.197775 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-08-07T01:04:43.197805 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:43.198113 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T01:04:43.198142 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:43.198446 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T01:04:43.198475 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:43.198839 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T01:04:43.198869 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:43.199264 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-08-07T01:04:43.201504 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:43.202420 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.6 ms +I, [2018-08-07T01:04:43.202498 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:43.203136 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-08-07T01:04:43.203303 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:43.205186 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.57 ms +I, [2018-08-07T01:04:43.205321 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:43.206076 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.48 ms +I, [2018-08-07T01:04:43.206136 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:43.207069 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.47 ms +I, [2018-08-07T01:04:43.207127 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:43.207861 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T01:04:43.207900 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:43.208451 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-08-07T01:04:43.208496 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:43.209013 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-08-07T01:04:43.209054 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:43.209494 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T01:04:43.209529 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:43.209900 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T01:04:43.209932 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:43.210284 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T01:04:43.210312 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:43.210769 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-08-07T01:04:43.210817 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:43.211622 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.52 ms +I, [2018-08-07T01:04:43.211737 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:43.212356 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T01:04:43.212395 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:43.212751 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T01:04:43.212787 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:45.213828 #6] INFO -- : Committing offsets: section_change/0:2832 +I, [2018-08-07T01:04:45.218416 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T01:04:45.218461 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:45.218721 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T01:04:45.218751 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:45.218982 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T01:04:45.219011 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:45.219227 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-08-07T01:04:45.219257 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:45.219473 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T01:04:45.219502 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:45.219722 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T01:04:45.219750 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:45.219956 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T01:04:45.219985 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:45.220429 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-08-07T01:04:45.220497 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:45.220875 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T01:04:45.220907 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:45.221126 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T01:04:45.222372 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:45.223043 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-08-07T01:04:45.223135 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:45.223502 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T01:04:45.223542 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:45.223969 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T01:04:45.224008 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:45.224278 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T01:04:45.224308 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:45.224828 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T01:04:45.224861 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:45.225292 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T01:04:45.225917 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:45.226275 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T01:04:45.226309 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:45.226596 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T01:04:45.226626 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:45.227261 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T01:04:45.227316 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:45.227807 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-08-07T01:04:45.227852 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:45.228386 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T01:04:45.228435 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:45.229490 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T01:04:45.229532 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:45.229807 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T01:04:45.229838 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:45.230471 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.46 ms +I, [2018-08-07T01:04:45.230514 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:45.230823 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T01:04:45.230869 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:45.232710 #6] INFO -- : Inline processing of topic section_change with 1 messages took 1.68 ms +I, [2018-08-07T01:04:45.232930 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:45.233345 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T01:04:45.233381 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:45.233677 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T01:04:45.233707 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:45.233995 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T01:04:45.234047 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:45.234408 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T01:04:45.234439 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:45.234700 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T01:04:45.234756 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:45.235051 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T01:04:45.235080 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:45.235335 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T01:04:45.235397 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:45.235603 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-08-07T01:04:45.235633 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:45.235843 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T01:04:45.235872 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:45.236161 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T01:04:45.236194 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:45.238082 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T01:04:45.238168 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:45.238475 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T01:04:45.238506 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:45.238743 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T01:04:45.238772 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:45.238988 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T01:04:45.239018 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:45.239259 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T01:04:45.239289 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:45.239500 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T01:04:45.239529 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:45.239757 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T01:04:45.239786 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:45.240004 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T01:04:45.240033 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:45.240333 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T01:04:45.240362 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:45.240671 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T01:04:45.240701 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:45.242287 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-08-07T01:04:45.242334 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:45.242698 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T01:04:45.242729 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:45.242975 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T01:04:45.243004 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:45.243209 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T01:04:45.243237 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:45.243451 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-08-07T01:04:45.243515 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:45.243959 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T01:04:45.243993 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:45.244217 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T01:04:45.244247 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:45.244471 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T01:04:45.244500 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:45.244730 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T01:04:45.244759 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:45.244969 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T01:04:45.244999 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:45.245207 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T01:04:45.245244 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:45.245570 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T01:04:45.245630 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:45.245905 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T01:04:45.245936 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:45.246159 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T01:04:45.246198 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:45.246415 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T01:04:45.246447 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:45.246673 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T01:04:45.246714 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:45.246930 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T01:04:45.246959 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:45.247202 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T01:04:45.247359 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:45.248283 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.65 ms +I, [2018-08-07T01:04:45.248368 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:45.248811 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T01:04:45.248846 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:45.249159 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T01:04:45.249190 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:45.249484 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T01:04:45.249523 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:45.250520 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.51 ms +I, [2018-08-07T01:04:45.250589 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:45.250943 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T01:04:45.250987 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:45.251470 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T01:04:45.251537 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:45.251967 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T01:04:45.252018 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:45.252363 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T01:04:45.252620 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:45.253202 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.42 ms +I, [2018-08-07T01:04:45.253252 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:45.253756 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-08-07T01:04:45.253802 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:45.254388 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T01:04:45.254451 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:45.254835 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T01:04:45.254875 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:45.255264 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T01:04:45.255317 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:45.255777 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T01:04:45.256042 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:45.257101 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.56 ms +I, [2018-08-07T01:04:45.257147 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:45.258876 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-08-07T01:04:45.258970 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:45.259329 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T01:04:45.259363 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:45.260149 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T01:04:45.261120 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:45.261775 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-08-07T01:04:45.261852 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:45.263116 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T01:04:45.263165 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:45.263651 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-08-07T01:04:45.263708 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:45.264137 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-08-07T01:04:45.264171 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:47.265159 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T01:04:47.265207 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:47.265462 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T01:04:47.265492 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:47.265697 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T01:04:47.265726 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:47.265938 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T01:04:47.265967 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:47.266177 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-08-07T01:04:47.266206 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:47.266404 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-08-07T01:04:47.266432 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:47.266668 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T01:04:47.266697 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:47.266892 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T01:04:47.266921 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:47.267126 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T01:04:47.267155 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:47.267402 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T01:04:47.267431 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:47.267827 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-08-07T01:04:47.267931 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:47.268296 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T01:04:47.268332 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:47.268700 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T01:04:47.268744 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:47.269082 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T01:04:47.269112 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:47.269452 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T01:04:47.269489 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:47.269821 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T01:04:47.269850 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:47.270254 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T01:04:47.270297 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:47.270857 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-08-07T01:04:47.270892 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:47.271387 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-08-07T01:04:47.271429 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:47.271854 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T01:04:47.271887 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:47.272166 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T01:04:47.272206 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:47.272520 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T01:04:47.272580 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:47.272957 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T01:04:47.273021 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:47.273406 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T01:04:47.275088 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:47.275703 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.4 ms +I, [2018-08-07T01:04:47.275745 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:47.276514 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.54 ms +I, [2018-08-07T01:04:47.276577 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:47.278114 #6] INFO -- : Inline processing of topic section_change with 1 messages took 1.33 ms +I, [2018-08-07T01:04:47.278160 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:47.278801 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T01:04:47.278876 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:47.279457 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T01:04:47.279535 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:47.280108 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-08-07T01:04:47.280144 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:47.281273 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-08-07T01:04:47.281516 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:47.282374 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.61 ms +I, [2018-08-07T01:04:47.282528 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:47.284892 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-08-07T01:04:47.284939 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:47.285504 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-08-07T01:04:47.285837 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:47.286622 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.47 ms +I, [2018-08-07T01:04:47.286681 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:47.287217 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-08-07T01:04:47.287331 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:47.288391 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.84 ms +I, [2018-08-07T01:04:47.288436 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:47.289093 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-08-07T01:04:47.289134 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:47.289567 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-08-07T01:04:47.289602 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:47.291088 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-08-07T01:04:47.291234 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:47.291684 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T01:04:47.291719 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:47.292284 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.43 ms +I, [2018-08-07T01:04:47.292328 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:47.293421 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.62 ms +I, [2018-08-07T01:04:47.293466 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:47.293893 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T01:04:47.293926 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:47.294303 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T01:04:47.294335 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:47.294692 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T01:04:47.294724 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:47.296629 #6] INFO -- : Inline processing of topic section_change with 1 messages took 1.75 ms +I, [2018-08-07T01:04:47.296840 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:47.298673 #6] INFO -- : Inline processing of topic section_change with 1 messages took 1.51 ms +I, [2018-08-07T01:04:47.298753 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:47.299407 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.42 ms +I, [2018-08-07T01:04:47.299470 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:47.300717 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.77 ms +I, [2018-08-07T01:04:47.300872 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:47.301526 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-08-07T01:04:47.301584 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:47.302380 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.59 ms +I, [2018-08-07T01:04:47.302440 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:47.304105 #6] INFO -- : Inline processing of topic section_change with 1 messages took 1.32 ms +I, [2018-08-07T01:04:47.304321 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:47.305164 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.56 ms +I, [2018-08-07T01:04:47.305228 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:47.306044 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.62 ms +I, [2018-08-07T01:04:47.307657 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:47.309398 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.5 ms +I, [2018-08-07T01:04:47.309648 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:47.310552 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.45 ms +I, [2018-08-07T01:04:47.310603 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:47.311457 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.68 ms +I, [2018-08-07T01:04:47.311525 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:47.311962 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T01:04:47.312000 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:47.312585 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-08-07T01:04:47.312632 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:47.313011 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T01:04:47.313053 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:47.313896 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.67 ms +I, [2018-08-07T01:04:47.313944 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:47.314802 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T01:04:47.314844 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:47.315235 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T01:04:47.315270 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:47.315650 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T01:04:47.315688 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:47.316168 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T01:04:47.316210 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:47.316574 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T01:04:47.316608 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:47.316935 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T01:04:47.316966 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:47.317247 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T01:04:47.317739 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:47.318626 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.68 ms +I, [2018-08-07T01:04:47.318729 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:47.319102 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T01:04:47.319134 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:47.319467 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T01:04:47.319498 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:47.320158 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.53 ms +I, [2018-08-07T01:04:47.320213 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:47.320900 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.5 ms +I, [2018-08-07T01:04:47.320959 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:47.321368 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T01:04:47.321403 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:47.322542 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T01:04:47.322578 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:49.323735 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-08-07T01:04:49.323787 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:49.324104 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T01:04:49.324134 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:49.324384 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T01:04:49.324414 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:49.324715 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T01:04:49.324744 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:49.325021 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T01:04:49.325051 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:49.325318 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T01:04:49.325374 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:49.325629 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T01:04:49.325658 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:49.325937 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T01:04:49.325967 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:49.326304 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T01:04:49.326338 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:49.326989 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.47 ms +I, [2018-08-07T01:04:49.327042 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:49.331697 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-08-07T01:04:49.331747 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:49.332107 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T01:04:49.332139 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:49.332436 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T01:04:49.332522 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:49.332849 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T01:04:49.332880 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:49.333411 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T01:04:49.333467 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:49.333858 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T01:04:49.333911 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:49.334250 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T01:04:49.334281 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:49.334503 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T01:04:49.334544 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:49.334786 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T01:04:49.334830 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:49.335082 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T01:04:49.335114 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:49.335399 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T01:04:49.335428 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:49.335707 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T01:04:49.335736 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:49.336264 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T01:04:49.336382 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:49.336757 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T01:04:49.336812 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:49.337177 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T01:04:49.337208 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:49.337797 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.47 ms +I, [2018-08-07T01:04:49.337832 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:49.339158 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-08-07T01:04:49.339205 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:49.339553 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T01:04:49.339622 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:49.340046 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T01:04:49.340117 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:49.342150 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-08-07T01:04:49.342199 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:49.342491 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T01:04:49.342543 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:49.342777 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T01:04:49.342808 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:49.343490 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.45 ms +I, [2018-08-07T01:04:49.343563 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:49.344121 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T01:04:49.344210 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:49.344997 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-08-07T01:04:49.346011 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:49.346517 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T01:04:49.346570 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:49.347216 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-08-07T01:04:49.347276 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:49.347949 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T01:04:49.347996 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:49.348365 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T01:04:49.348426 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:49.348846 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T01:04:49.348896 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:49.349151 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T01:04:49.349185 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:49.349576 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T01:04:49.349649 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:49.353718 #6] INFO -- : Inline processing of topic section_change with 1 messages took 1.85 ms +I, [2018-08-07T01:04:49.353829 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:49.354302 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T01:04:49.354400 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:49.355394 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T01:04:49.355465 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:49.356060 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T01:04:49.356104 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:49.356363 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T01:04:49.356394 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:49.356657 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T01:04:49.356689 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:49.356910 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T01:04:49.358013 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:49.358652 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-08-07T01:04:49.358692 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:49.358967 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T01:04:49.359039 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:49.359436 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T01:04:49.359471 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:49.360650 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.73 ms +I, [2018-08-07T01:04:49.360726 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:49.362186 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.99 ms +I, [2018-08-07T01:04:49.362235 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:49.362760 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-08-07T01:04:49.362822 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:49.363324 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T01:04:49.363375 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:49.363676 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T01:04:49.363723 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:49.364395 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.46 ms +I, [2018-08-07T01:04:49.364447 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:49.367467 #6] INFO -- : Inline processing of topic section_change with 1 messages took 2.72 ms +I, [2018-08-07T01:04:49.367598 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:49.368554 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.45 ms +I, [2018-08-07T01:04:49.368676 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:49.369439 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-08-07T01:04:49.369521 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:49.370298 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-08-07T01:04:49.370355 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:49.370836 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T01:04:49.370889 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:49.371272 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T01:04:49.371321 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:49.372002 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T01:04:49.372120 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:49.372506 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T01:04:49.374209 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:49.374645 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T01:04:49.374681 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:49.375063 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T01:04:49.375096 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:49.375542 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T01:04:49.375578 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:49.375939 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T01:04:49.375987 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:49.376640 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-08-07T01:04:49.376716 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:49.377284 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-08-07T01:04:49.377502 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:49.378820 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.62 ms +I, [2018-08-07T01:04:49.378880 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:49.381741 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T01:04:49.381835 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:49.382319 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T01:04:49.382368 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:49.382751 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T01:04:49.382800 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:49.383332 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T01:04:49.383422 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:49.384406 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T01:04:49.384512 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:49.385448 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T01:04:49.385519 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:49.385831 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T01:04:49.385918 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:49.387520 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T01:04:49.387704 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:49.388157 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T01:04:49.388192 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:49.388581 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T01:04:49.388647 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:49.388972 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T01:04:49.389049 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:49.389495 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T01:04:49.389531 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:49.390037 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T01:04:49.390087 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:49.390498 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T01:04:49.390530 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:49.390859 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T01:04:49.390902 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:49.391156 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T01:04:49.391209 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:49.391421 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T01:04:49.391450 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:49.394105 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-08-07T01:04:49.394258 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:49.394700 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T01:04:49.394753 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:51.401716 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-08-07T01:04:51.401798 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:51.402303 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T01:04:51.402377 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:51.403487 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.62 ms +I, [2018-08-07T01:04:51.403817 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:51.406024 #6] INFO -- : Inline processing of topic section_change with 1 messages took 1.2 ms +I, [2018-08-07T01:04:51.406097 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:51.408589 #6] INFO -- : Inline processing of topic section_change with 1 messages took 1.93 ms +I, [2018-08-07T01:04:51.414552 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:51.420654 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.49 ms +I, [2018-08-07T01:04:51.420733 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:51.427353 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-08-07T01:04:51.427424 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:51.444254 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T01:04:51.444366 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:51.444907 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T01:04:51.444984 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:51.445366 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T01:04:51.449813 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:51.481032 #6] INFO -- : Inline processing of topic section_change with 1 messages took 16.79 ms +I, [2018-08-07T01:04:51.481258 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:51.481996 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T01:04:51.482076 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:51.482490 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T01:04:51.482613 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:51.483041 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T01:04:51.483137 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:51.485500 #6] INFO -- : Inline processing of topic section_change with 1 messages took 2.13 ms +I, [2018-08-07T01:04:51.485599 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:51.489939 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-08-07T01:04:51.490020 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:51.491544 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.44 ms +I, [2018-08-07T01:04:51.492810 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:51.494374 #6] INFO -- : Inline processing of topic section_change with 1 messages took 1.24 ms +I, [2018-08-07T01:04:51.494440 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:51.495018 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-08-07T01:04:51.495076 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:51.495584 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-08-07T01:04:51.495646 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:51.503306 #6] INFO -- : Inline processing of topic section_change with 1 messages took 7.4 ms +I, [2018-08-07T01:04:51.503401 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:51.504090 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.42 ms +I, [2018-08-07T01:04:51.504152 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:51.506463 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-08-07T01:04:51.506566 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:51.507992 #6] INFO -- : Inline processing of topic section_change with 1 messages took 1.17 ms +I, [2018-08-07T01:04:51.508090 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:51.510029 #6] INFO -- : Inline processing of topic section_change with 1 messages took 1.68 ms +I, [2018-08-07T01:04:51.510101 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:51.510640 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-08-07T01:04:51.510693 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:52.437612 #6] INFO -- : Committing offsets: course_change/0:1815 +I, [2018-08-07T01:04:53.512995 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-08-07T01:04:53.513081 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:53.513654 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T01:04:53.513783 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:53.515337 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.4 ms +I, [2018-08-07T01:04:53.515402 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:53.516028 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-08-07T01:04:53.516079 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:53.516513 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T01:04:53.516562 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:53.517034 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T01:04:53.517087 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:53.517637 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-08-07T01:04:53.517686 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:53.518441 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.58 ms +I, [2018-08-07T01:04:53.518518 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:53.519028 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-08-07T01:04:53.519159 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:53.520826 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-08-07T01:04:53.520876 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:53.521244 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T01:04:53.521278 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:53.521849 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T01:04:53.521956 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:53.522322 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T01:04:53.522368 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:53.522714 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T01:04:53.522764 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:53.523167 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T01:04:53.523268 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:53.523814 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-08-07T01:04:53.523880 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:53.524679 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.56 ms +I, [2018-08-07T01:04:53.524741 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:53.525382 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-08-07T01:04:53.528114 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:53.528722 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-08-07T01:04:53.528783 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:53.529477 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.41 ms +I, [2018-08-07T01:04:53.529542 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:53.531173 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.4 ms +I, [2018-08-07T01:04:53.531264 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:53.531759 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-08-07T01:04:53.531797 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:53.533633 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.64 ms +I, [2018-08-07T01:04:53.533705 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:53.534330 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T01:04:53.534379 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:53.534750 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T01:04:53.534901 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:53.535323 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T01:04:53.535446 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:55.536340 #6] INFO -- : Committing offsets: section_change/0:3139 +I, [2018-08-07T01:04:55.558009 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.46 ms +I, [2018-08-07T01:04:55.558070 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:55.558424 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T01:04:55.558456 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:55.560343 #6] INFO -- : Inline processing of topic section_change with 1 messages took 1.73 ms +I, [2018-08-07T01:04:55.560411 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:55.560928 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-08-07T01:04:55.560978 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:55.561495 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-08-07T01:04:55.561545 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:55.561996 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T01:04:55.562046 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:55.562540 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T01:04:55.562587 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:55.562992 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T01:04:55.563067 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:55.563398 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T01:04:55.563450 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:55.564079 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.45 ms +I, [2018-08-07T01:04:55.564147 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:55.564735 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-08-07T01:04:55.564816 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:55.565292 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-08-07T01:04:55.565346 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:55.565763 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T01:04:55.565798 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:55.566193 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T01:04:55.566230 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:55.566590 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T01:04:55.567001 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:55.568887 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.55 ms +I, [2018-08-07T01:04:55.568962 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:55.569450 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-08-07T01:04:55.569499 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:55.575439 #6] INFO -- : Inline processing of topic section_change with 1 messages took 5.74 ms +I, [2018-08-07T01:04:55.575493 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:55.575905 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T01:04:55.575939 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:55.576164 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T01:04:55.576194 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:55.576562 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T01:04:55.576592 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:55.577259 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.54 ms +I, [2018-08-07T01:04:55.577303 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:55.577633 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T01:04:55.580477 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:55.581382 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.65 ms +I, [2018-08-07T01:04:55.581451 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:55.582056 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T01:04:55.582093 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:55.582460 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T01:04:55.582494 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:55.582725 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T01:04:55.582777 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:55.583239 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T01:04:55.583290 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:55.585527 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.8 ms +I, [2018-08-07T01:04:55.585606 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:55.586000 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T01:04:55.586033 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:55.587947 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T01:04:55.587991 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:55.588335 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T01:04:55.588396 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:55.588960 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.42 ms +I, [2018-08-07T01:04:55.589036 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:55.589552 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T01:04:55.589609 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:55.590106 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-08-07T01:04:55.590158 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:55.590636 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-08-07T01:04:55.590681 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:55.591100 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T01:04:55.591139 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:57.593547 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-08-07T01:04:57.593686 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:57.594109 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T01:04:57.594156 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:57.594593 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T01:04:57.594656 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:57.594904 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T01:04:57.594936 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:57.595234 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T01:04:57.595276 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:57.595581 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T01:04:57.595620 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:57.595914 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T01:04:57.595972 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:57.596346 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T01:04:57.596382 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:57.596683 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T01:04:57.596730 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:57.597029 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T01:04:57.597076 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:57.597738 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.49 ms +I, [2018-08-07T01:04:57.599889 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:57.600431 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-08-07T01:04:57.600480 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:57.600856 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T01:04:57.600889 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:57.601268 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T01:04:57.601313 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:57.601724 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T01:04:57.601759 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:57.602129 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T01:04:57.602173 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:57.603102 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.75 ms +I, [2018-08-07T01:04:57.603180 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:57.606074 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-08-07T01:04:57.606127 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:57.606575 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T01:04:57.606657 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:57.609776 #6] INFO -- : Inline processing of topic section_change with 1 messages took 2.9 ms +I, [2018-08-07T01:04:57.609858 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:57.610246 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T01:04:57.610289 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:57.610520 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T01:04:57.610550 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:57.611084 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-08-07T01:04:57.611173 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:57.615459 #6] INFO -- : Inline processing of topic section_change with 1 messages took 2.81 ms +I, [2018-08-07T01:04:57.615531 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:57.615875 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T01:04:57.615908 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:57.620983 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T01:04:57.621051 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:57.621456 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T01:04:57.621508 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:57.621982 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T01:04:57.622032 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:57.622403 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T01:04:57.622448 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:57.622721 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T01:04:57.624326 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:57.624748 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T01:04:57.624902 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:57.625199 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T01:04:57.625232 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:57.625488 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T01:04:57.625519 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:57.625738 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T01:04:57.625767 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:57.625978 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T01:04:57.626007 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:57.626215 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T01:04:57.626258 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:57.626465 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-08-07T01:04:57.626495 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:57.626690 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T01:04:57.626720 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:57.627020 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T01:04:57.627064 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:57.627358 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T01:04:57.627404 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:57.627693 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T01:04:57.627736 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:57.628019 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T01:04:57.628053 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:57.628392 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T01:04:57.628424 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:57.628660 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T01:04:57.628689 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:57.628938 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T01:04:57.628979 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:57.629283 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T01:04:57.629321 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:57.629641 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T01:04:57.629879 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:57.630377 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T01:04:57.630432 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:57.630737 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T01:04:57.633130 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:57.633677 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T01:04:57.634121 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:57.634711 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T01:04:57.634775 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:57.635400 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-08-07T01:04:57.635466 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:57.638174 #6] INFO -- : Inline processing of topic section_change with 1 messages took 2.49 ms +I, [2018-08-07T01:04:57.638274 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:57.638644 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T01:04:57.638680 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:57.638986 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T01:04:57.639058 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:57.639317 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T01:04:57.639350 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:57.641662 #6] INFO -- : Inline processing of topic section_change with 1 messages took 1.78 ms +I, [2018-08-07T01:04:57.648234 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:57.650569 #6] INFO -- : Inline processing of topic section_change with 1 messages took 1.65 ms +I, [2018-08-07T01:04:57.650715 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:57.652182 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T01:04:57.652225 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:57.652861 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T01:04:57.653293 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:57.654302 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T01:04:57.654352 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:57.657419 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T01:04:57.657464 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:59.658752 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T01:04:59.658804 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:59.659142 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T01:04:59.659193 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:59.659558 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T01:04:59.659630 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:59.659871 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T01:04:59.659954 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:59.671051 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T01:04:59.671098 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:59.671340 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T01:04:59.671448 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:59.671722 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T01:04:59.671753 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:59.672134 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T01:04:59.672176 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:59.672627 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-08-07T01:04:59.672724 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:59.673271 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-08-07T01:04:59.673321 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:59.673799 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T01:04:59.673880 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:59.674336 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T01:04:59.674391 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:59.675877 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T01:04:59.676148 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:59.676692 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T01:04:59.676739 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:59.677224 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T01:04:59.677267 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:59.677598 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T01:04:59.677629 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:59.677999 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T01:04:59.678034 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:59.678282 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T01:04:59.678315 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:59.683318 #6] INFO -- : Inline processing of topic section_change with 1 messages took 1.15 ms +I, [2018-08-07T01:04:59.683385 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:59.684921 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.84 ms +I, [2018-08-07T01:04:59.685257 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:59.687220 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.82 ms +I, [2018-08-07T01:04:59.687624 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:59.691817 #6] INFO -- : Inline processing of topic section_change with 1 messages took 3.26 ms +I, [2018-08-07T01:04:59.691950 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:59.692358 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T01:04:59.692519 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:59.692963 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T01:04:59.693006 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:59.693604 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-08-07T01:04:59.693660 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:59.694103 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T01:04:59.694149 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:59.694797 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.4 ms +I, [2018-08-07T01:04:59.694889 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:59.695406 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T01:04:59.695467 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:59.696035 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T01:04:59.696078 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:59.696575 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T01:04:59.696621 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:59.697050 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T01:04:59.697095 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:59.697559 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T01:04:59.697647 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:59.697986 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T01:04:59.698028 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:59.739202 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T01:04:59.739342 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:59.739832 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T01:04:59.739879 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:59.740544 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T01:04:59.740581 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:59.741003 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-08-07T01:04:59.741038 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:59.741325 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T01:04:59.741356 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:59.741608 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T01:04:59.741638 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:59.741901 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T01:04:59.741932 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:59.742294 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T01:04:59.753863 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:59.756370 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T01:04:59.756414 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:04:59.756695 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T01:04:59.756726 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:01.757929 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.52 ms +I, [2018-08-07T01:05:01.758024 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:01.758493 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T01:05:01.758650 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:01.760670 #6] INFO -- : Inline processing of topic section_change with 1 messages took 1.55 ms +I, [2018-08-07T01:05:01.760930 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:01.765973 #6] INFO -- : Inline processing of topic section_change with 1 messages took 2.28 ms +I, [2018-08-07T01:05:01.766075 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:01.766585 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T01:05:01.766641 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:01.768030 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-08-07T01:05:01.768116 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:01.769000 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-08-07T01:05:01.778365 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:01.779164 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-08-07T01:05:01.779228 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:01.779826 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-08-07T01:05:01.779914 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:01.781363 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-08-07T01:05:01.781426 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:01.781899 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T01:05:01.781992 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:01.782576 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-08-07T01:05:01.782617 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:01.782943 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T01:05:01.783037 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:01.783495 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T01:05:01.783562 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:01.784278 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.4 ms +I, [2018-08-07T01:05:01.784358 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:01.785101 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.56 ms +I, [2018-08-07T01:05:01.785170 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:01.786743 #6] INFO -- : Inline processing of topic section_change with 1 messages took 1.38 ms +I, [2018-08-07T01:05:01.786827 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:01.787522 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.43 ms +I, [2018-08-07T01:05:01.787579 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:01.788322 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-08-07T01:05:01.788418 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:01.790867 #6] INFO -- : Inline processing of topic section_change with 1 messages took 1.78 ms +I, [2018-08-07T01:05:01.790982 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:01.791445 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T01:05:01.791563 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:01.792061 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-08-07T01:05:01.792113 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:02.525090 #6] INFO -- : Committing offsets: course_change/0:1815 +I, [2018-08-07T01:05:03.751768 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-08-07T01:05:03.751896 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:03.752297 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T01:05:03.752329 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:03.752578 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T01:05:03.752607 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:03.753074 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T01:05:03.753114 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:03.753517 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T01:05:03.753553 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:03.753917 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T01:05:03.753948 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:03.754411 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-08-07T01:05:03.754445 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:03.754968 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.4 ms +I, [2018-08-07T01:05:03.755007 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:03.755463 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T01:05:03.755502 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:03.756026 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-08-07T01:05:03.756240 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:03.756704 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-08-07T01:05:03.756746 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:03.757147 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T01:05:03.757743 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:03.758319 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-08-07T01:05:03.758410 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:03.759017 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-08-07T01:05:03.759062 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:03.759546 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-08-07T01:05:03.759598 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:03.759952 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T01:05:03.760015 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:03.771616 #6] INFO -- : Inline processing of topic section_change with 1 messages took 5.61 ms +I, [2018-08-07T01:05:03.771686 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:03.772334 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-08-07T01:05:03.772384 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:03.772749 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T01:05:03.772785 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:03.773118 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T01:05:03.773153 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:03.773454 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T01:05:03.773494 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:03.773827 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T01:05:03.773862 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:03.774182 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T01:05:03.774217 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:03.774516 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T01:05:03.774560 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:03.774829 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T01:05:03.774863 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:03.775183 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T01:05:03.775217 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:03.775637 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T01:05:03.775679 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:03.783509 #6] INFO -- : Inline processing of topic section_change with 1 messages took 6.12 ms +I, [2018-08-07T01:05:03.783623 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:03.785691 #6] INFO -- : Inline processing of topic section_change with 1 messages took 1.45 ms +I, [2018-08-07T01:05:03.785814 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:03.791434 #6] INFO -- : Inline processing of topic section_change with 1 messages took 2.05 ms +I, [2018-08-07T01:05:03.791507 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:03.792043 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-08-07T01:05:03.792079 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:03.792548 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-08-07T01:05:03.792599 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:03.793061 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T01:05:03.793174 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:03.793508 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T01:05:03.793604 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:03.794005 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T01:05:03.794052 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:03.794472 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T01:05:03.794526 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:03.794990 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-08-07T01:05:03.795028 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:03.795424 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T01:05:03.795464 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:03.795923 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-08-07T01:05:03.795959 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:03.798028 #6] INFO -- : Inline processing of topic section_change with 1 messages took 1.39 ms +I, [2018-08-07T01:05:03.798079 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:03.798643 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-08-07T01:05:03.798686 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:03.801472 #6] INFO -- : Inline processing of topic section_change with 1 messages took 2.29 ms +I, [2018-08-07T01:05:03.801883 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:03.808411 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-08-07T01:05:03.808459 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:03.809005 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-08-07T01:05:03.809301 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:03.809736 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T01:05:03.809773 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:03.810130 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T01:05:03.810162 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:03.810508 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T01:05:03.810540 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:03.812838 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.71 ms +I, [2018-08-07T01:05:03.812881 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:03.817434 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-08-07T01:05:03.817535 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:03.817949 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T01:05:03.817993 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:03.818484 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-08-07T01:05:03.818529 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:03.818920 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T01:05:03.818964 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:03.819439 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T01:05:03.819476 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:03.819821 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T01:05:03.819857 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:03.820195 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T01:05:03.820230 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:03.820595 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T01:05:03.820631 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:03.820974 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T01:05:03.821009 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:03.821352 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T01:05:03.821386 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:03.821823 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T01:05:03.821935 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:03.822456 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T01:05:03.822513 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:03.822964 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T01:05:03.823005 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:03.823500 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-08-07T01:05:03.823574 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:03.823988 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T01:05:03.824025 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:05.824351 #6] INFO -- : Committing offsets: section_change/0:3366 +I, [2018-08-07T01:05:05.827849 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.57 ms +I, [2018-08-07T01:05:05.827918 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:05.828395 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T01:05:05.828468 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:05.828890 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-08-07T01:05:05.828924 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:05.829296 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T01:05:05.829425 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:05.829904 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T01:05:05.829944 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:05.830556 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.42 ms +I, [2018-08-07T01:05:05.830598 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:05.830986 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T01:05:05.831019 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:05.831343 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T01:05:05.831375 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:05.831658 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T01:05:05.831689 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:05.832140 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T01:05:05.832174 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:05.832444 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T01:05:05.832519 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:05.832981 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-08-07T01:05:05.833027 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:05.833600 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-08-07T01:05:05.833644 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:05.834409 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.5 ms +I, [2018-08-07T01:05:05.834549 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:05.835330 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.46 ms +I, [2018-08-07T01:05:05.835423 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:05.838152 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.43 ms +I, [2018-08-07T01:05:05.838244 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:05.839507 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-08-07T01:05:05.839562 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:05.840225 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.46 ms +I, [2018-08-07T01:05:05.840279 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:05.840657 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T01:05:05.840708 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:05.841205 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T01:05:05.841256 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:05.842904 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.46 ms +I, [2018-08-07T01:05:05.843109 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:05.845539 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.44 ms +I, [2018-08-07T01:05:05.845585 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:05.845911 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T01:05:05.845971 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:05.846220 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T01:05:05.846762 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:05.847556 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.6 ms +I, [2018-08-07T01:05:05.847616 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:05.848305 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.48 ms +I, [2018-08-07T01:05:05.848352 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:05.848718 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T01:05:05.848751 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:05.849068 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T01:05:05.849101 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:05.849420 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T01:05:05.849451 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:05.849758 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T01:05:05.849791 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:05.850915 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.85 ms +I, [2018-08-07T01:05:05.851405 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:05.851982 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-08-07T01:05:05.852050 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:05.852508 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-08-07T01:05:05.852550 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:05.853047 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-08-07T01:05:05.853080 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:05.853544 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T01:05:05.856779 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:05.857455 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-08-07T01:05:05.857562 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:05.857941 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T01:05:05.857983 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:05.858357 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T01:05:05.858396 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:05.858973 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.42 ms +I, [2018-08-07T01:05:05.859026 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:05.859767 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T01:05:05.860979 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:05.861990 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.41 ms +I, [2018-08-07T01:05:05.862080 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:05.863051 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.75 ms +I, [2018-08-07T01:05:05.863199 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:05.864334 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-08-07T01:05:05.864436 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:05.864852 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T01:05:05.864885 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:05.865462 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.43 ms +I, [2018-08-07T01:05:05.865550 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:05.866162 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T01:05:05.866202 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:05.866678 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-08-07T01:05:05.869107 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:05.870202 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-08-07T01:05:05.870262 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:05.871652 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-08-07T01:05:05.871793 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:05.872156 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T01:05:05.872215 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:05.872454 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T01:05:05.872485 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:05.873356 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.51 ms +I, [2018-08-07T01:05:05.873399 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:05.873670 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T01:05:05.873702 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:05.873942 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T01:05:05.873973 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:05.874198 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T01:05:05.874228 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:05.874468 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T01:05:05.874498 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:05.874715 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-08-07T01:05:05.874744 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:05.876095 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T01:05:05.877642 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:05.878119 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T01:05:05.878627 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:05.879543 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T01:05:05.879583 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:05.879819 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T01:05:05.879850 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:05.880530 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-08-07T01:05:05.880587 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:05.881361 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T01:05:05.881476 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:05.881798 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T01:05:05.881830 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:05.882114 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T01:05:05.882364 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:05.883095 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.46 ms +I, [2018-08-07T01:05:05.883161 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:05.883622 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-08-07T01:05:05.883659 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:05.884292 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-08-07T01:05:05.884355 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:05.884807 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T01:05:05.884842 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:05.885121 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T01:05:05.885169 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:05.885447 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T01:05:05.885477 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:05.886238 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.42 ms +I, [2018-08-07T01:05:05.886309 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:05.886589 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T01:05:05.886620 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:05.886854 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T01:05:05.886883 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:05.887097 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T01:05:05.887126 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:05.888244 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.44 ms +I, [2018-08-07T01:05:05.888302 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:05.888708 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T01:05:05.888741 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:05.890053 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T01:05:05.890146 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:05.891353 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-08-07T01:05:05.891666 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:05.892064 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T01:05:05.892118 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:05.893046 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.62 ms +I, [2018-08-07T01:05:05.893110 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:05.893510 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T01:05:05.893556 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:05.893888 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T01:05:05.893934 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:05.894446 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T01:05:05.894556 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:05.894839 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T01:05:05.894883 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:05.895148 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T01:05:05.895179 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:07.961754 #6] INFO -- : Inline processing of topic section_change with 1 messages took 15.33 ms +I, [2018-08-07T01:05:07.961934 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:07.964384 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.48 ms +I, [2018-08-07T01:05:07.964540 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:07.974601 #6] INFO -- : Inline processing of topic section_change with 1 messages took 9.58 ms +I, [2018-08-07T01:05:07.974698 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:07.975619 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.61 ms +I, [2018-08-07T01:05:07.975709 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:07.976802 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.56 ms +I, [2018-08-07T01:05:07.976961 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:07.977881 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T01:05:07.977935 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:07.978640 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.45 ms +I, [2018-08-07T01:05:07.978700 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:07.979273 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-08-07T01:05:07.979325 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:07.982429 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.83 ms +I, [2018-08-07T01:05:07.982503 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:07.983283 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.54 ms +I, [2018-08-07T01:05:07.983349 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:07.983965 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.4 ms +I, [2018-08-07T01:05:07.984024 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:07.984865 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-08-07T01:05:07.984916 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:07.986410 #6] INFO -- : Inline processing of topic section_change with 1 messages took 1.29 ms +I, [2018-08-07T01:05:07.986478 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:07.987114 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.43 ms +I, [2018-08-07T01:05:07.987164 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:07.990017 #6] INFO -- : Inline processing of topic section_change with 1 messages took 2.32 ms +I, [2018-08-07T01:05:07.990168 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:07.991556 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.51 ms +I, [2018-08-07T01:05:07.991608 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:07.992091 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T01:05:07.992299 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:07.992924 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.45 ms +I, [2018-08-07T01:05:07.992971 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:07.993838 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.62 ms +I, [2018-08-07T01:05:07.993889 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:07.994442 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-08-07T01:05:07.994490 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:07.995343 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-08-07T01:05:07.995572 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:08.006506 #6] INFO -- : Inline processing of topic section_change with 1 messages took 10.68 ms +I, [2018-08-07T01:05:08.006596 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:08.007305 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-08-07T01:05:08.007363 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:08.008046 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-08-07T01:05:08.008278 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:08.009012 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.4 ms +I, [2018-08-07T01:05:08.009065 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:08.010239 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.74 ms +I, [2018-08-07T01:05:08.014291 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:08.015519 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.64 ms +I, [2018-08-07T01:05:08.015582 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:08.016292 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.52 ms +I, [2018-08-07T01:05:08.018299 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:08.019272 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.53 ms +I, [2018-08-07T01:05:08.019332 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:08.020144 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.6 ms +I, [2018-08-07T01:05:08.020280 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:10.022464 #6] INFO -- : Inline processing of topic section_change with 1 messages took 1.2 ms +I, [2018-08-07T01:05:10.022581 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:10.023083 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T01:05:10.023163 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:10.024273 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-08-07T01:05:10.024432 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:10.025772 #6] INFO -- : Inline processing of topic section_change with 1 messages took 1.0 ms +I, [2018-08-07T01:05:10.025830 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:10.027080 #6] INFO -- : Inline processing of topic section_change with 1 messages took 1.05 ms +I, [2018-08-07T01:05:10.027250 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:10.030532 #6] INFO -- : Inline processing of topic section_change with 1 messages took 3.04 ms +I, [2018-08-07T01:05:10.030598 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:10.031083 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T01:05:10.031134 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:10.031542 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T01:05:10.031582 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:10.031932 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T01:05:10.031982 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:10.032478 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-08-07T01:05:10.032522 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:10.032902 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T01:05:10.032940 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:10.033316 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T01:05:10.033354 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:10.033780 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-08-07T01:05:10.033818 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:10.034473 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.44 ms +I, [2018-08-07T01:05:10.034769 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:10.035617 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.56 ms +I, [2018-08-07T01:05:10.037023 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:10.038068 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-08-07T01:05:10.038159 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:10.038946 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.44 ms +I, [2018-08-07T01:05:10.039045 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:10.040169 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.71 ms +I, [2018-08-07T01:05:10.040238 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:10.040690 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T01:05:10.040744 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:10.041100 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T01:05:10.041145 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:10.041502 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T01:05:10.041554 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:10.041922 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T01:05:10.041963 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:10.043862 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-08-07T01:05:10.043931 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:10.044420 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T01:05:10.044990 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:10.045404 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T01:05:10.045455 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:10.047996 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.52 ms +I, [2018-08-07T01:05:10.048068 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:10.048641 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-08-07T01:05:10.048710 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:10.049174 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T01:05:10.049239 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:10.049840 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-08-07T01:05:10.049984 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:10.050602 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-08-07T01:05:10.050671 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:10.052696 #6] INFO -- : Inline processing of topic section_change with 1 messages took 1.75 ms +I, [2018-08-07T01:05:10.052811 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:10.053566 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-08-07T01:05:10.053626 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:10.054072 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T01:05:10.054121 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:10.055251 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-08-07T01:05:10.055315 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:10.055819 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-08-07T01:05:10.055875 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:10.056344 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T01:05:10.056504 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:10.057162 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.42 ms +I, [2018-08-07T01:05:10.057220 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:10.057851 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-08-07T01:05:10.057906 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:10.058329 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T01:05:10.058417 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:10.058887 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T01:05:10.058939 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:10.059406 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T01:05:10.059497 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:10.059845 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T01:05:10.059881 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:10.060168 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T01:05:10.060200 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:10.060475 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T01:05:10.060508 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:10.060798 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T01:05:10.060844 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:10.061305 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T01:05:10.061354 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:10.061804 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T01:05:10.061865 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:10.062430 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-08-07T01:05:10.062484 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:10.062945 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-08-07T01:05:10.063016 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:10.063614 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-08-07T01:05:10.063733 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:10.064351 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-08-07T01:05:10.064448 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:10.070809 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.62 ms +I, [2018-08-07T01:05:10.070933 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:10.071502 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-08-07T01:05:10.071709 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:10.073015 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.85 ms +I, [2018-08-07T01:05:10.073774 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:10.078244 #6] INFO -- : Inline processing of topic section_change with 1 messages took 2.7 ms +I, [2018-08-07T01:05:10.078357 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:12.079349 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-08-07T01:05:12.079462 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:12.080269 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-08-07T01:05:12.080362 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:12.082660 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-08-07T01:05:12.082717 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:12.083527 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T01:05:12.083598 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:12.083980 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T01:05:12.084043 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:12.084414 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T01:05:12.084897 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:12.086757 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T01:05:12.086818 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:12.087221 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T01:05:12.087264 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:12.091237 #6] INFO -- : Inline processing of topic section_change with 1 messages took 3.76 ms +I, [2018-08-07T01:05:12.091299 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:12.091861 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-08-07T01:05:12.091914 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:12.092293 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T01:05:12.092338 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:12.092639 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T01:05:12.092679 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:12.093136 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T01:05:12.093191 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:12.093625 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T01:05:12.093668 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:12.094099 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T01:05:12.094143 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:12.094592 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T01:05:12.094636 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:12.094922 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T01:05:12.094961 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:12.095255 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T01:05:12.095324 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:12.095586 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T01:05:12.095625 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:12.095885 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T01:05:12.095921 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:12.096221 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T01:05:12.096261 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:12.097016 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T01:05:12.097074 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:12.097567 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T01:05:12.097620 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:12.098099 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T01:05:12.098148 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:12.098922 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.5 ms +I, [2018-08-07T01:05:12.098976 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:12.099428 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T01:05:12.099474 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:12.099884 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T01:05:12.099940 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:12.100365 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T01:05:12.100417 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:12.101166 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.49 ms +I, [2018-08-07T01:05:12.101224 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:12.101963 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T01:05:12.102193 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:12.102803 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-08-07T01:05:12.102854 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:12.103299 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T01:05:12.103341 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:12.103837 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-08-07T01:05:12.105819 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:12.106517 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-08-07T01:05:12.106608 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:12.107031 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T01:05:12.107112 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:12.107734 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T01:05:12.107786 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:12.108276 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T01:05:12.108322 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:12.108741 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T01:05:12.108781 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:12.109163 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T01:05:12.109201 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:12.109613 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T01:05:12.109652 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:12.110005 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T01:05:12.110042 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:12.110692 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.5 ms +I, [2018-08-07T01:05:12.110739 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:12.111512 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.57 ms +I, [2018-08-07T01:05:12.111877 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:12.112479 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T01:05:12.112536 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:12.113051 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T01:05:12.113108 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:12.113568 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T01:05:12.113608 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:12.114053 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T01:05:12.114094 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:12.114527 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T01:05:12.114573 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:12.114996 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T01:05:12.115050 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:12.115509 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T01:05:12.115558 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:12.116247 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.46 ms +I, [2018-08-07T01:05:12.116304 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:12.538408 #6] INFO -- : Committing offsets: course_change/0:1815 +I, [2018-08-07T01:05:14.117722 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.59 ms +I, [2018-08-07T01:05:14.117814 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:14.118380 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-08-07T01:05:14.118441 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:14.118853 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T01:05:14.118906 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:14.119466 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-08-07T01:05:14.119541 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:14.120091 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-08-07T01:05:14.120169 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:14.120801 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.42 ms +I, [2018-08-07T01:05:14.120874 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:14.121250 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T01:05:14.121346 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:14.121786 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T01:05:14.121834 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:14.122998 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-08-07T01:05:14.123065 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:14.123475 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T01:05:14.123521 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:14.124247 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T01:05:14.124471 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:14.124777 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T01:05:14.124815 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:14.125066 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T01:05:14.125102 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:14.126212 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.94 ms +I, [2018-08-07T01:05:14.126246 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:14.126710 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T01:05:14.126741 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:14.127042 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T01:05:14.127072 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:14.127380 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T01:05:14.127410 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:14.127636 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T01:05:14.132648 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:14.133242 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T01:05:14.133300 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:14.133793 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T01:05:14.133846 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:14.134315 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T01:05:14.134366 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:14.134803 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T01:05:14.134853 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:14.135288 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T01:05:14.135340 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:14.135774 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T01:05:14.135848 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:14.136804 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.67 ms +I, [2018-08-07T01:05:14.137562 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:14.139286 #6] INFO -- : Inline processing of topic section_change with 1 messages took 1.43 ms +I, [2018-08-07T01:05:14.139370 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:14.140753 #6] INFO -- : Inline processing of topic section_change with 1 messages took 1.09 ms +I, [2018-08-07T01:05:14.140815 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:14.141647 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.51 ms +I, [2018-08-07T01:05:14.141696 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:14.142876 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.99 ms +I, [2018-08-07T01:05:14.142940 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:14.143691 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.53 ms +I, [2018-08-07T01:05:14.143741 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:14.144448 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.53 ms +I, [2018-08-07T01:05:14.144696 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:14.145618 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.71 ms +I, [2018-08-07T01:05:14.145671 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:14.146168 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-08-07T01:05:14.146239 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:14.146637 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T01:05:14.146685 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:14.147451 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T01:05:14.147504 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:14.148323 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T01:05:14.148377 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:14.148826 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T01:05:14.148877 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:14.149483 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T01:05:14.149527 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:14.150083 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-08-07T01:05:14.150144 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:14.151781 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.55 ms +I, [2018-08-07T01:05:14.151958 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:14.152680 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-08-07T01:05:14.152855 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:14.153483 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-08-07T01:05:14.153559 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:14.154139 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-08-07T01:05:14.154242 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:14.154822 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-08-07T01:05:14.154875 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:14.155785 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.55 ms +I, [2018-08-07T01:05:14.158675 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:14.159717 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.73 ms +I, [2018-08-07T01:05:14.159793 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:14.160362 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-08-07T01:05:14.160422 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:14.161053 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-08-07T01:05:14.161105 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:14.161736 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.4 ms +I, [2018-08-07T01:05:14.161788 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:14.162319 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-08-07T01:05:14.162403 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:14.162816 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T01:05:14.162866 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:14.163483 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-08-07T01:05:14.163529 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:14.163875 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T01:05:14.163945 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:14.164345 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T01:05:14.164385 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:14.165658 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-08-07T01:05:14.165713 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:16.166226 #6] INFO -- : Committing offsets: section_change/0:3643 +I, [2018-08-07T01:05:16.170128 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.47 ms +I, [2018-08-07T01:05:16.170194 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:16.170761 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-08-07T01:05:16.170812 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:16.171264 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T01:05:16.171310 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:16.171949 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-08-07T01:05:16.171991 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:16.172307 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T01:05:16.172344 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:16.172748 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T01:05:16.172822 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:16.173246 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T01:05:16.173288 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:16.173586 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T01:05:16.173616 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:16.173894 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T01:05:16.173923 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:16.174168 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T01:05:16.174197 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:16.174458 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T01:05:16.174513 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:16.174757 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T01:05:16.174786 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:16.175043 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T01:05:16.175072 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:16.175336 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T01:05:16.175366 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:16.175604 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T01:05:16.175633 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:16.175923 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T01:05:16.175953 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:16.176227 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T01:05:16.176279 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:16.176530 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T01:05:16.177352 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:16.177874 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T01:05:16.177949 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:16.178389 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T01:05:16.178432 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:16.178924 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T01:05:16.179009 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:16.180511 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-08-07T01:05:16.180548 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:16.180871 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T01:05:16.180902 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:16.181288 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T01:05:16.181319 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:16.181628 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T01:05:16.181688 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:16.181933 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T01:05:16.181964 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:16.182196 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T01:05:16.182225 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:16.182473 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T01:05:16.182502 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:16.182745 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T01:05:16.182774 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:16.183156 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T01:05:16.183244 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:16.183846 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T01:05:16.183901 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:16.184369 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T01:05:16.184423 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:16.184874 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T01:05:16.184925 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:16.185351 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T01:05:16.185402 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:16.185727 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T01:05:16.185821 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:16.187899 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T01:05:16.187943 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:16.188371 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T01:05:16.188421 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:16.188773 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T01:05:16.188804 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:16.189025 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T01:05:16.189055 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:16.189344 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T01:05:16.189683 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:16.190335 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.42 ms +I, [2018-08-07T01:05:16.190392 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:16.190805 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T01:05:16.190853 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:16.191317 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T01:05:16.191352 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:16.192053 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T01:05:16.192123 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:16.192674 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-08-07T01:05:16.192733 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:16.193309 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-08-07T01:05:16.193400 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:16.193811 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T01:05:16.193847 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:16.194858 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.81 ms +I, [2018-08-07T01:05:16.194938 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:16.195469 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T01:05:16.195508 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:16.196440 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.76 ms +I, [2018-08-07T01:05:16.196534 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:16.198034 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.68 ms +I, [2018-08-07T01:05:16.198493 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:16.199618 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.65 ms +I, [2018-08-07T01:05:16.199794 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:16.206039 #6] INFO -- : Inline processing of topic section_change with 1 messages took 1.71 ms +I, [2018-08-07T01:05:16.206132 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:16.208067 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.68 ms +I, [2018-08-07T01:05:16.208297 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:16.208825 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-08-07T01:05:16.208891 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:16.209398 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T01:05:16.209445 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:16.210401 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.45 ms +I, [2018-08-07T01:05:16.210576 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:16.214188 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-08-07T01:05:16.214257 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:16.214773 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T01:05:16.214828 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:16.215226 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T01:05:16.215281 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:16.215664 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T01:05:16.215715 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:16.216117 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T01:05:16.216195 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:16.216594 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T01:05:16.216643 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:16.217026 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T01:05:16.217079 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:16.217534 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T01:05:16.217590 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:16.217983 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T01:05:16.218175 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:16.218632 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T01:05:16.218687 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:16.219240 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T01:05:16.219289 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:16.220286 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.85 ms +I, [2018-08-07T01:05:16.220323 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:16.220574 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T01:05:16.220637 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:16.220876 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T01:05:16.220906 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:16.221126 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-08-07T01:05:16.222769 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:16.223368 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-08-07T01:05:16.223426 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:16.223832 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T01:05:16.223895 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:16.224135 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T01:05:16.224165 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:16.224399 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T01:05:16.224429 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:16.224669 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T01:05:16.224699 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:16.224967 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T01:05:16.225011 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:16.225350 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T01:05:16.225397 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:16.225752 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T01:05:16.225800 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:18.227292 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T01:05:18.227357 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:18.227642 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T01:05:18.227673 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:18.227896 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T01:05:18.227928 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:18.228325 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T01:05:18.228420 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:18.228901 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-08-07T01:05:18.228947 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:18.229257 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T01:05:18.229297 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:18.229596 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T01:05:18.229642 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:18.229934 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T01:05:18.230007 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:18.230460 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T01:05:18.230508 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:18.230950 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T01:05:18.231003 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:18.231329 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T01:05:18.231385 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:18.231697 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T01:05:18.231739 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:18.232012 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T01:05:18.232052 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:18.232984 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T01:05:18.233048 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:18.233416 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T01:05:18.233452 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:18.233690 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T01:05:18.233726 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:18.234081 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T01:05:18.234114 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:18.234358 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T01:05:18.234387 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:18.234629 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T01:05:18.234677 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:18.235106 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T01:05:18.235336 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:18.235864 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T01:05:18.235902 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:18.236624 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.53 ms +I, [2018-08-07T01:05:18.236679 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:18.238139 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-08-07T01:05:18.238199 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:18.238895 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T01:05:18.238967 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:18.241550 #6] INFO -- : Inline processing of topic section_change with 1 messages took 2.21 ms +I, [2018-08-07T01:05:18.241622 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:18.244191 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T01:05:18.244294 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:18.247332 #6] INFO -- : Inline processing of topic section_change with 1 messages took 2.43 ms +I, [2018-08-07T01:05:18.247392 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:18.249875 #6] INFO -- : Inline processing of topic section_change with 1 messages took 1.87 ms +I, [2018-08-07T01:05:18.249945 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:18.252065 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T01:05:18.252129 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:18.252498 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T01:05:18.252547 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:18.252908 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T01:05:18.252959 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:18.254087 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.95 ms +I, [2018-08-07T01:05:18.254129 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:18.255875 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T01:05:18.255929 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:18.256193 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T01:05:18.256225 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:18.256946 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.45 ms +I, [2018-08-07T01:05:18.256999 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:18.263391 #6] INFO -- : Inline processing of topic section_change with 1 messages took 3.1 ms +I, [2018-08-07T01:05:18.263783 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:18.265910 #6] INFO -- : Inline processing of topic section_change with 1 messages took 1.62 ms +I, [2018-08-07T01:05:18.266262 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:18.266864 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T01:05:18.266936 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:18.267536 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T01:05:18.267595 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:18.267958 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T01:05:18.268039 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:18.268412 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T01:05:18.268461 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:18.268759 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T01:05:18.268845 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:18.269142 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T01:05:18.269224 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:18.269520 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T01:05:18.269613 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:18.269910 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T01:05:18.269956 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:18.270888 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T01:05:18.270946 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:18.272838 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T01:05:18.272922 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:18.273361 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T01:05:18.273405 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:18.273729 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T01:05:18.273772 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:18.274112 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T01:05:18.274160 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:18.274513 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T01:05:18.274560 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:18.274931 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T01:05:18.274978 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:18.275311 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T01:05:18.275356 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:18.275697 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T01:05:18.275744 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:18.276129 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T01:05:18.276178 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:18.276912 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.5 ms +I, [2018-08-07T01:05:18.276971 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:18.277623 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T01:05:18.277678 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:18.278969 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T01:05:18.279046 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:18.279498 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T01:05:18.279549 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:18.279955 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T01:05:18.280004 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:18.282786 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T01:05:18.282937 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:18.283444 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T01:05:18.285695 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:18.286878 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-08-07T01:05:18.286956 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:18.287490 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T01:05:18.287536 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:18.287866 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T01:05:18.289347 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:18.289982 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-08-07T01:05:18.290038 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:18.290411 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T01:05:18.290952 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:18.291324 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T01:05:18.291366 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:18.291674 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T01:05:18.291709 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:18.291999 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T01:05:18.292035 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:18.292332 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T01:05:18.292372 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:18.292667 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T01:05:18.292706 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:18.293034 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T01:05:18.293073 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:18.293385 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T01:05:18.293576 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:18.293972 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T01:05:18.294022 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:18.294634 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.41 ms +I, [2018-08-07T01:05:18.294688 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:18.295243 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T01:05:18.295298 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:18.295662 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T01:05:18.295712 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:18.296356 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T01:05:18.296416 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:18.297274 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T01:05:18.297355 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:18.297863 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-08-07T01:05:18.297918 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:18.298284 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T01:05:18.298331 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:18.298694 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T01:05:18.298740 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:18.299079 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T01:05:18.299125 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:18.299455 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T01:05:18.299501 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:18.299827 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T01:05:18.299907 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:20.300703 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T01:05:20.300753 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:20.301009 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T01:05:20.301044 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:20.301274 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T01:05:20.301304 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:20.301538 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T01:05:20.301567 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:20.301765 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T01:05:20.301813 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:20.302253 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-08-07T01:05:20.302285 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:20.302925 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.48 ms +I, [2018-08-07T01:05:20.302968 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:20.303349 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T01:05:20.303382 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:20.303768 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T01:05:20.303801 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:20.304193 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T01:05:20.304238 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:20.304593 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T01:05:20.304623 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:20.304973 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T01:05:20.305003 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:20.305944 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.43 ms +I, [2018-08-07T01:05:20.305979 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:20.308590 #6] INFO -- : Inline processing of topic section_change with 1 messages took 2.32 ms +I, [2018-08-07T01:05:20.308647 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:20.309073 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T01:05:20.309140 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:20.310633 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.5 ms +I, [2018-08-07T01:05:20.310697 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:20.311335 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.44 ms +I, [2018-08-07T01:05:20.311386 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:20.312041 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.46 ms +I, [2018-08-07T01:05:20.312095 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:20.312661 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.41 ms +I, [2018-08-07T01:05:20.312705 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:20.319665 #6] INFO -- : Inline processing of topic section_change with 1 messages took 6.76 ms +I, [2018-08-07T01:05:20.319749 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:20.320469 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.45 ms +I, [2018-08-07T01:05:20.320554 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:20.321418 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.59 ms +I, [2018-08-07T01:05:20.321544 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:20.322262 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.42 ms +I, [2018-08-07T01:05:20.322316 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:20.322838 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-08-07T01:05:20.322950 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:20.323427 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-08-07T01:05:20.323468 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:20.323907 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T01:05:20.323943 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:20.324279 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T01:05:20.324344 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:20.324850 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-08-07T01:05:20.324912 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:20.325440 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-08-07T01:05:20.325475 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:20.325859 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T01:05:20.325921 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:20.326310 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T01:05:20.326340 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:20.326657 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T01:05:20.326687 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:20.326997 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T01:05:20.327027 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:20.327341 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T01:05:20.327372 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:20.327708 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T01:05:20.327740 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:20.343383 #6] INFO -- : Inline processing of topic section_change with 1 messages took 11.06 ms +I, [2018-08-07T01:05:20.343470 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:20.344020 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-08-07T01:05:20.344069 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:20.344664 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.42 ms +I, [2018-08-07T01:05:20.344713 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:20.345114 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T01:05:20.345160 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:20.345509 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T01:05:20.345540 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:20.345891 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T01:05:20.345922 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:20.346266 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T01:05:20.346310 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:20.346655 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T01:05:20.346696 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:20.347132 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T01:05:20.347794 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:20.349009 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.64 ms +I, [2018-08-07T01:05:20.349091 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:20.349587 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-08-07T01:05:20.349638 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:20.350433 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.58 ms +I, [2018-08-07T01:05:20.350491 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:20.354461 #6] INFO -- : Inline processing of topic section_change with 1 messages took 1.96 ms +I, [2018-08-07T01:05:20.355593 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:20.357724 #6] INFO -- : Inline processing of topic section_change with 1 messages took 1.84 ms +I, [2018-08-07T01:05:20.357809 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:20.358351 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-08-07T01:05:20.358399 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:20.359705 #6] INFO -- : Inline processing of topic section_change with 1 messages took 1.12 ms +I, [2018-08-07T01:05:20.361995 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:20.363085 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.63 ms +I, [2018-08-07T01:05:20.364007 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:20.364730 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.48 ms +I, [2018-08-07T01:05:20.364799 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:20.367409 #6] INFO -- : Inline processing of topic section_change with 1 messages took 2.36 ms +I, [2018-08-07T01:05:20.367482 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:20.368586 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.88 ms +I, [2018-08-07T01:05:20.368635 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:20.369109 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-08-07T01:05:20.369145 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:20.369628 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-08-07T01:05:20.369673 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:20.370609 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.52 ms +I, [2018-08-07T01:05:20.370831 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:20.371636 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.41 ms +I, [2018-08-07T01:05:20.371700 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:20.372487 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.56 ms +I, [2018-08-07T01:05:20.372550 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:20.373299 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.54 ms +I, [2018-08-07T01:05:20.373351 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:20.373869 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-08-07T01:05:20.374198 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:20.375016 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.59 ms +I, [2018-08-07T01:05:20.375066 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:20.376278 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.42 ms +I, [2018-08-07T01:05:20.376340 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:20.376841 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T01:05:20.376889 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:20.377655 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.57 ms +I, [2018-08-07T01:05:20.377718 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:20.378728 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-08-07T01:05:20.378792 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:20.379356 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-08-07T01:05:20.379407 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:20.381745 #6] INFO -- : Inline processing of topic section_change with 1 messages took 1.68 ms +I, [2018-08-07T01:05:20.381806 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:20.382392 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-08-07T01:05:20.382454 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:20.384815 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.83 ms +I, [2018-08-07T01:05:20.384887 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:20.385378 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T01:05:20.385462 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:22.409096 #6] INFO -- : Inline processing of topic section_change with 1 messages took 1.66 ms +I, [2018-08-07T01:05:22.409375 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:22.422595 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.49 ms +I, [2018-08-07T01:05:22.422722 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:22.423281 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-08-07T01:05:22.423340 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:22.425237 #6] INFO -- : Inline processing of topic section_change with 1 messages took 1.47 ms +I, [2018-08-07T01:05:22.425308 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:22.425864 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-08-07T01:05:22.425908 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:22.426620 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.56 ms +I, [2018-08-07T01:05:22.426668 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:22.427126 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-08-07T01:05:22.427174 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:22.427997 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T01:05:22.428072 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:22.428600 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-08-07T01:05:22.428659 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:22.429141 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T01:05:22.429198 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:22.429659 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T01:05:22.429709 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:22.430276 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-08-07T01:05:22.430337 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:22.430830 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-08-07T01:05:22.430888 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:22.431344 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T01:05:22.431397 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:22.431830 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T01:05:22.431889 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:22.433404 #6] INFO -- : Inline processing of topic section_change with 1 messages took 1.32 ms +I, [2018-08-07T01:05:22.433462 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:22.436543 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.42 ms +I, [2018-08-07T01:05:22.436656 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:22.439543 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.72 ms +I, [2018-08-07T01:05:22.439620 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:22.444152 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-08-07T01:05:22.444207 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:22.444622 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T01:05:22.444660 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:22.445093 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T01:05:22.445155 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:22.451034 #6] INFO -- : Inline processing of topic section_change with 1 messages took 4.85 ms +I, [2018-08-07T01:05:22.451130 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:22.451535 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T01:05:22.451568 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:22.451837 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T01:05:22.451867 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:22.452082 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T01:05:22.452111 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:22.452333 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T01:05:22.452362 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:22.452581 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T01:05:22.452617 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:22.453411 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T01:05:22.453462 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:22.453785 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T01:05:22.453830 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:22.454138 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T01:05:22.454181 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:22.454495 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T01:05:22.454538 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:22.454848 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T01:05:22.454892 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:22.455203 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T01:05:22.455247 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:22.455564 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T01:05:22.455609 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:22.455906 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T01:05:22.456069 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:22.460116 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T01:05:22.460204 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:22.460495 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T01:05:22.460539 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:22.460819 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T01:05:22.460861 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:22.461144 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T01:05:22.461185 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:22.464470 #6] INFO -- : Inline processing of topic section_change with 1 messages took 3.12 ms +I, [2018-08-07T01:05:22.464530 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:22.464882 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T01:05:22.464920 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:22.467442 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-08-07T01:05:22.467508 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:22.467877 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T01:05:22.467925 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:22.468267 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T01:05:22.468313 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:22.468646 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T01:05:22.468696 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:22.469061 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T01:05:22.469110 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:22.469464 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T01:05:22.469511 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:22.469837 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T01:05:22.469880 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:22.470209 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T01:05:22.470247 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:22.470600 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T01:05:22.470652 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:22.471065 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T01:05:22.471112 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:22.471465 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T01:05:22.471511 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:22.471822 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T01:05:22.474094 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:22.474597 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T01:05:22.474649 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:22.474998 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T01:05:22.475045 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:22.475549 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-08-07T01:05:22.475601 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:22.476463 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-08-07T01:05:22.476762 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:22.477755 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.74 ms +I, [2018-08-07T01:05:22.477824 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:22.561222 #6] INFO -- : Committing offsets: course_change/0:1815 +I, [2018-08-07T01:05:24.478718 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T01:05:24.478768 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:24.479074 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T01:05:24.479104 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:24.479387 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T01:05:24.479416 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:24.479652 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T01:05:24.479683 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:24.479953 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T01:05:24.479982 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:24.480246 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T01:05:24.480275 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:24.480532 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T01:05:24.480561 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:24.480804 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T01:05:24.480876 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:24.481360 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-08-07T01:05:24.481392 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:24.481629 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T01:05:24.481655 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:24.481914 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T01:05:24.481944 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:24.482172 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T01:05:24.482228 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:24.483071 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.6 ms +I, [2018-08-07T01:05:24.483271 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:24.484093 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.43 ms +I, [2018-08-07T01:05:24.484234 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:24.484731 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T01:05:24.484767 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:24.485099 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T01:05:24.485145 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:24.485756 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-08-07T01:05:24.485821 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:24.486274 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T01:05:24.486323 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:24.486757 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T01:05:24.486848 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:24.487233 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T01:05:24.487281 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:24.487675 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T01:05:24.487722 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:24.488176 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T01:05:24.488224 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:24.488699 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-08-07T01:05:24.488746 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:24.489176 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T01:05:24.489226 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:24.489671 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T01:05:24.489729 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:24.490106 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T01:05:24.490141 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:24.490586 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T01:05:24.490632 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:24.491277 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-08-07T01:05:24.491316 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:24.491640 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T01:05:24.491671 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:24.491964 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T01:05:24.491994 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:24.492480 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T01:05:24.494015 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:24.494730 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-08-07T01:05:24.494862 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:24.495394 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T01:05:24.495440 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:24.497189 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.51 ms +I, [2018-08-07T01:05:24.497232 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:24.497760 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-08-07T01:05:24.497853 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:24.498327 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T01:05:24.498360 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:24.498750 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T01:05:24.498783 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:24.499133 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T01:05:24.499177 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:24.499529 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T01:05:24.499562 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:24.502233 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.83 ms +I, [2018-08-07T01:05:24.502340 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:24.503115 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-08-07T01:05:24.503172 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:24.503621 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T01:05:24.503678 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:24.504197 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-08-07T01:05:24.504259 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:24.505115 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-08-07T01:05:24.505202 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:24.506075 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.46 ms +I, [2018-08-07T01:05:24.506136 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:24.506692 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-08-07T01:05:24.506823 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:24.507436 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-08-07T01:05:24.507494 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:24.508293 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-08-07T01:05:24.508382 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:24.509104 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-08-07T01:05:24.509176 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:24.509711 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T01:05:24.509796 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:24.510338 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T01:05:24.510407 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:24.510975 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-08-07T01:05:24.511048 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:24.511439 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T01:05:24.511617 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:24.512033 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T01:05:24.512193 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:24.512659 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T01:05:24.512712 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:24.513256 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-08-07T01:05:24.513331 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:24.513815 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-08-07T01:05:24.514004 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:24.514571 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-08-07T01:05:24.514609 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:24.514880 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T01:05:24.514911 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:24.515171 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T01:05:24.515210 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:24.515482 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T01:05:24.515519 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:24.515843 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T01:05:24.515875 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:24.516145 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T01:05:24.517052 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:24.517503 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T01:05:24.517568 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:24.518408 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.65 ms +I, [2018-08-07T01:05:24.518458 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:24.518775 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T01:05:24.519204 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:24.521147 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.65 ms +I, [2018-08-07T01:05:24.521291 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:24.523053 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T01:05:24.523189 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:24.523738 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T01:05:24.523780 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:24.524019 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T01:05:24.524049 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:26.525032 #6] INFO -- : Committing offsets: section_change/0:4009 +I, [2018-08-07T01:05:26.551628 #6] INFO -- : Inline processing of topic section_change with 1 messages took 6.33 ms +I, [2018-08-07T01:05:26.551722 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:26.553875 #6] INFO -- : Inline processing of topic section_change with 1 messages took 1.79 ms +I, [2018-08-07T01:05:26.553958 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:26.554529 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-08-07T01:05:26.554574 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:26.559641 #6] INFO -- : Inline processing of topic section_change with 1 messages took 4.84 ms +I, [2018-08-07T01:05:26.559726 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:26.560209 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T01:05:26.560254 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:26.560623 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T01:05:26.560739 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:26.561858 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-08-07T01:05:26.561909 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:26.562413 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-08-07T01:05:26.562458 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:26.563086 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-08-07T01:05:26.563135 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:26.563563 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T01:05:26.563612 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:26.563985 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T01:05:26.564028 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:26.564610 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.41 ms +I, [2018-08-07T01:05:26.564658 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:26.565151 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-08-07T01:05:26.565198 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:26.565968 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-08-07T01:05:26.566146 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:26.582290 #6] INFO -- : Inline processing of topic section_change with 1 messages took 13.26 ms +I, [2018-08-07T01:05:26.582355 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:26.582867 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T01:05:26.582912 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:26.583484 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-08-07T01:05:26.583527 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:26.583841 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T01:05:26.583882 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:26.584426 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-08-07T01:05:26.584474 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:26.584900 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T01:05:26.584951 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:26.585316 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T01:05:26.585367 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:26.585983 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.4 ms +I, [2018-08-07T01:05:26.586030 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:26.586434 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T01:05:26.586476 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:26.586903 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T01:05:26.586951 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:26.587444 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T01:05:26.587495 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:26.588050 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-08-07T01:05:26.588097 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:26.588510 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T01:05:26.588555 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:26.589662 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-08-07T01:05:26.589710 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:26.590037 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T01:05:26.590083 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:26.590401 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T01:05:26.590452 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:26.590773 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T01:05:26.590819 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:26.591202 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T01:05:26.595209 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:26.597455 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T01:05:26.597573 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:26.599262 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T01:05:26.599381 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:26.599891 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T01:05:26.599944 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:26.600326 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T01:05:26.600379 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:26.600931 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T01:05:26.600985 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:26.601515 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T01:05:26.601560 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:26.601936 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T01:05:26.601991 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:26.602828 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.51 ms +I, [2018-08-07T01:05:26.602916 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:26.603581 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-08-07T01:05:26.603657 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:26.604447 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T01:05:26.604519 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:26.605011 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T01:05:26.605095 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:26.605702 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.41 ms +I, [2018-08-07T01:05:26.605761 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:26.606260 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-08-07T01:05:26.606312 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:26.606927 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-08-07T01:05:26.606994 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:26.607872 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.63 ms +I, [2018-08-07T01:05:26.608015 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:26.608647 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.4 ms +I, [2018-08-07T01:05:26.608695 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:26.609225 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-08-07T01:05:26.609277 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:26.609756 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-08-07T01:05:26.609800 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:26.610282 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-08-07T01:05:26.610327 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:26.610766 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T01:05:26.610812 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:26.611322 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T01:05:26.611413 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:26.613602 #6] INFO -- : Inline processing of topic section_change with 1 messages took 1.06 ms +I, [2018-08-07T01:05:26.613752 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:26.616244 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.98 ms +I, [2018-08-07T01:05:26.616643 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:26.618731 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.43 ms +I, [2018-08-07T01:05:26.618817 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:26.619744 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.74 ms +I, [2018-08-07T01:05:26.619804 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:26.623251 #6] INFO -- : Inline processing of topic section_change with 1 messages took 3.18 ms +I, [2018-08-07T01:05:26.623326 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:26.636126 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.7 ms +I, [2018-08-07T01:05:26.636271 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:26.636836 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-08-07T01:05:26.636891 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:26.637778 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.64 ms +I, [2018-08-07T01:05:26.637834 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:26.638809 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.51 ms +I, [2018-08-07T01:05:26.638899 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:26.639978 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.75 ms +I, [2018-08-07T01:05:26.640078 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:26.642571 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-08-07T01:05:26.642624 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:26.643632 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.8 ms +I, [2018-08-07T01:05:26.643697 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:26.692073 #6] INFO -- : Inline processing of topic section_change with 1 messages took 48.09 ms +I, [2018-08-07T01:05:26.704397 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:26.705539 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.52 ms +I, [2018-08-07T01:05:26.705672 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:26.707136 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.9 ms +I, [2018-08-07T01:05:26.707241 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:26.707684 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T01:05:26.707736 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:26.708134 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T01:05:26.726060 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:26.726630 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T01:05:26.726681 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:26.727055 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T01:05:26.727105 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:26.731817 #6] INFO -- : Inline processing of topic section_change with 1 messages took 4.5 ms +I, [2018-08-07T01:05:26.731911 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:26.732359 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T01:05:26.732411 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:26.733137 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-08-07T01:05:26.733203 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:26.733689 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T01:05:26.733747 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:26.734098 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T01:05:26.734147 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:26.734502 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T01:05:26.734553 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:26.734908 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T01:05:26.734957 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:26.735272 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T01:05:26.735320 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:26.736331 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-08-07T01:05:26.736392 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:26.736720 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T01:05:26.736774 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:26.737073 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T01:05:26.737111 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:26.737584 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T01:05:26.737631 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:26.738228 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T01:05:26.738266 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:26.738513 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T01:05:26.738546 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:26.738781 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T01:05:26.738819 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:26.739050 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T01:05:26.739082 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:26.740105 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.9 ms +I, [2018-08-07T01:05:26.740141 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:26.740671 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-08-07T01:05:26.740710 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:26.740940 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T01:05:26.740970 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:26.741191 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T01:05:26.741221 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:26.741430 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T01:05:26.741460 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:28.744715 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-08-07T01:05:28.744794 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:28.747149 #6] INFO -- : Inline processing of topic section_change with 1 messages took 2.09 ms +I, [2018-08-07T01:05:28.747238 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:28.763835 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T01:05:28.763906 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:28.765098 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-08-07T01:05:28.765225 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:28.774398 #6] INFO -- : Inline processing of topic section_change with 1 messages took 8.58 ms +I, [2018-08-07T01:05:28.774485 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:28.775444 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-08-07T01:05:28.775517 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:28.776456 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T01:05:28.776513 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:28.776904 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T01:05:28.776951 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:28.777558 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.42 ms +I, [2018-08-07T01:05:28.777673 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:28.778057 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T01:05:28.778105 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:28.786738 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-08-07T01:05:28.786817 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:28.787139 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T01:05:28.787183 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:28.787511 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T01:05:28.787553 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:28.797500 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T01:05:28.797561 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:28.798851 #6] INFO -- : Inline processing of topic section_change with 1 messages took 1.0 ms +I, [2018-08-07T01:05:28.799322 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:28.799683 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T01:05:28.799762 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:28.800074 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T01:05:28.800116 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:28.800432 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T01:05:28.800474 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:28.800770 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T01:05:28.800813 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:28.801132 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T01:05:28.801175 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:28.802020 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.67 ms +I, [2018-08-07T01:05:28.802123 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:28.803157 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.76 ms +I, [2018-08-07T01:05:28.803253 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:28.804015 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.55 ms +I, [2018-08-07T01:05:28.804072 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:28.808901 #6] INFO -- : Inline processing of topic section_change with 1 messages took 4.02 ms +I, [2018-08-07T01:05:28.808973 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:28.809405 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T01:05:28.809478 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:28.809814 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T01:05:28.809875 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:28.812097 #6] INFO -- : Inline processing of topic section_change with 1 messages took 2.0 ms +I, [2018-08-07T01:05:28.812164 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:28.818074 #6] INFO -- : Inline processing of topic section_change with 1 messages took 3.81 ms +I, [2018-08-07T01:05:28.818158 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:28.819407 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.4 ms +I, [2018-08-07T01:05:28.819493 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:28.832942 #6] INFO -- : Inline processing of topic section_change with 1 messages took 1.87 ms +I, [2018-08-07T01:05:28.833006 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:28.833689 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.41 ms +I, [2018-08-07T01:05:28.833732 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:28.834099 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T01:05:28.834136 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:28.834599 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T01:05:28.834716 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:28.835262 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-08-07T01:05:28.835306 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:28.835736 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T01:05:28.835782 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:28.836239 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-08-07T01:05:28.836280 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:28.836617 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T01:05:28.836650 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:28.836892 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T01:05:28.836928 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:28.837273 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T01:05:28.837334 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:28.837678 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T01:05:28.837728 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:28.838141 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T01:05:28.838180 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:28.838537 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T01:05:28.839345 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:28.839700 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T01:05:28.839742 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:28.840117 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T01:05:28.840148 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:28.840483 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T01:05:28.840526 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:28.840864 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T01:05:28.840894 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:28.841231 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T01:05:28.841264 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:28.841670 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T01:05:28.841704 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:28.842155 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T01:05:28.842194 #6] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:05:28.843371 #6] INFO -- : Inline processing of topic section_change with 1 messages took 0.92 ms +I, [2018-08-07T01:10:30.694157 #7] INFO -- : New topics added to target list: course_change +I, [2018-08-07T01:10:30.694767 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T01:10:30.716022 #7] INFO -- : New topics added to target list: section_change +I, [2018-08-07T01:10:30.716081 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T01:10:30.717954 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +E, [2018-08-07T01:10:30.718122 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +E, [2018-08-07T01:10:30.722137 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +E, [2018-08-07T01:10:30.722471 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +E, [2018-08-07T01:10:35.679894 #7] 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-08-07T01:10:35.681398 #7] INFO -- : New topics added to target list: section_change +I, [2018-08-07T01:10:35.681467 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T01:10:35.682744 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +E, [2018-08-07T01:10:35.682993 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +E, [2018-08-07T01:10:35.684239 #7] 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-08-07T01:10:35.695397 #7] INFO -- : New topics added to target list: course_change +I, [2018-08-07T01:10:35.698068 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T01:10:35.706574 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +E, [2018-08-07T01:10:35.706785 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +E, [2018-08-07T01:10:40.683769 #7] 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-08-07T01:10:40.687497 #7] INFO -- : New topics added to target list: section_change +I, [2018-08-07T01:10:40.688185 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T01:10:40.690085 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +E, [2018-08-07T01:10:40.690827 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +E, [2018-08-07T01:10:40.707386 #7] 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-08-07T01:10:40.715707 #7] INFO -- : New topics added to target list: course_change +I, [2018-08-07T01:10:40.716379 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T01:10:40.723260 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +E, [2018-08-07T01:10:40.723600 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +E, [2018-08-07T01:10:45.724384 #7] 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-08-07T01:10:45.728514 #7] INFO -- : New topics added to target list: section_change +I, [2018-08-07T01:10:45.728612 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T01:10:45.803127 #7] 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-08-07T01:10:45.876382 #7] INFO -- : New topics added to target list: course_change +I, [2018-08-07T01:10:45.876482 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T01:10:46.166972 #7] ERROR -- : No brokers in cluster +E, [2018-08-07T01:10:46.230285 #7] ERROR -- : No brokers in cluster +E, [2018-08-07T01:10:51.171268 #7] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: + +I, [2018-08-07T01:10:51.176496 #7] INFO -- : New topics added to target list: section_change +I, [2018-08-07T01:10:51.177156 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T01:10:51.230910 #7] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: + +I, [2018-08-07T01:10:51.267525 #7] INFO -- : New topics added to target list: course_change +I, [2018-08-07T01:10:51.267628 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T01:10:52.035497 #7] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-07T01:10:52.040721 #7] INFO -- : Joining group `notifications_course_change` +I, [2018-08-07T01:10:52.051193 #7] INFO -- : Will fetch at most 1048576 bytes at a time per partition from course_change +I, [2018-08-07T01:10:52.051468 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T01:10:52.066348 #7] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-07T01:10:52.075070 #7] INFO -- : Joining group `notifications_notifications` +I, [2018-08-07T01:10:52.112110 #7] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-07T01:10:52.112333 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T01:10:52.155737 #7] INFO -- : Will fetch at most 1048576 bytes at a time per partition from section_change +I, [2018-08-07T01:10:52.155869 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T01:10:52.229214 #7] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-07T01:10:52.229364 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T01:10:53.112849 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T01:10:53.231924 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T01:10:54.114155 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T01:10:54.232646 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T01:10:55.115164 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T01:10:55.233880 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T01:10:56.116246 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T01:10:56.237202 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T01:10:57.116959 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T01:10:57.239549 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T01:10:57.762144 #7] INFO -- : Joined group `notifications_notifications` with member id `notifications-84b23513-1fb2-459a-a1bc-eed6e7e0d9da` +I, [2018-08-07T01:10:57.763898 #7] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-07T01:10:57.818162 #7] INFO -- : Joined group `notifications_course_change` with member id `notifications-86732db7-a130-46a2-97fe-da274dbe47d5` +I, [2018-08-07T01:10:57.818232 #7] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-07T01:10:58.117313 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T01:10:58.240462 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T01:10:58.771924 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T01:10:58.776066 #7] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-07T01:10:58.819876 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T01:10:58.827640 #7] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-07T01:10:58.964427 #7] INFO -- : Partitions assigned for `course_change`: 0 +I, [2018-08-07T01:10:58.967282 #7] INFO -- : Partitions assigned for `section_change`: 0 +I, [2018-08-07T01:10:59.119087 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T01:10:59.240808 #7] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-07T01:10:59.240967 #7] INFO -- : New topics added to target list: section_change +I, [2018-08-07T01:10:59.241013 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T01:10:59.246376 #7] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-07T01:11:00.120544 #7] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-07T01:11:00.121898 #7] INFO -- : New topics added to target list: course_change +I, [2018-08-07T01:11:00.121995 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T01:11:00.283745 #7] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-07T01:11:03.163799 #7] INFO -- : Inline processing of topic section_change with 1 messages took 45.78 ms +I, [2018-08-07T01:11:03.163976 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:11:03.164111 #7] INFO -- : Committing offsets with recommit: section_change/0:1 +I, [2018-08-07T01:11:03.165939 #7] INFO -- : Inline processing of topic course_change with 1 messages took 24.74 ms +I, [2018-08-07T01:11:03.166008 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:11:03.166180 #7] INFO -- : Committing offsets with recommit: course_change/0:1 +I, [2018-08-07T01:11:03.167764 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-08-07T01:11:03.167831 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:11:03.170916 #7] INFO -- : Inline processing of topic section_change with 1 messages took 2.86 ms +I, [2018-08-07T01:11:03.170976 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:11:03.171538 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T01:11:03.171573 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:11:03.172750 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.34 ms +I, [2018-08-07T01:11:03.172813 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:11:03.173124 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T01:11:03.173155 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:11:05.173609 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T01:11:05.173679 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:11:05.177045 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T01:11:05.177102 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:11:05.177752 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.33 ms +I, [2018-08-07T01:11:05.177801 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:11:05.178367 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T01:11:05.178507 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:11:05.178945 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T01:11:05.178993 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:11:05.179310 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T01:11:05.179353 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:11:05.180390 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.83 ms +I, [2018-08-07T01:11:05.180471 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:11:05.180943 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T01:11:05.181058 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:11:05.181596 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T01:11:05.181628 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:11:05.181883 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T01:11:05.182043 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:11:05.182312 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T01:11:05.182389 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:11:05.182634 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T01:11:05.182719 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:11:05.182948 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T01:11:05.182977 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:11:05.183249 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T01:11:05.183278 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:11:05.183559 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T01:11:05.183589 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:11:05.183887 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T01:11:05.183916 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:11:05.184189 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T01:11:05.184219 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:11:05.184474 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T01:11:05.184503 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:11:05.195963 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.41 ms +I, [2018-08-07T01:11:05.196034 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:11:05.196623 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-08-07T01:11:05.196723 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:11:05.197195 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T01:11:05.197247 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:11:05.197626 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T01:11:05.197676 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:11:05.198051 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T01:11:05.198099 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:11:05.209271 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T01:11:05.210065 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:11:05.210879 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.53 ms +I, [2018-08-07T01:11:05.210945 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:11:05.212117 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.89 ms +I, [2018-08-07T01:11:05.212189 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:11:05.213354 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T01:11:05.216788 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:11:07.182775 #7] INFO -- : Inline processing of topic course_change with 1 messages took 1.87 ms +I, [2018-08-07T01:11:07.182971 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:11:07.193468 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.36 ms +I, [2018-08-07T01:11:07.193850 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:11:07.221758 #7] INFO -- : Inline processing of topic section_change with 1 messages took 3.88 ms +I, [2018-08-07T01:11:07.221858 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:11:09.199373 #7] INFO -- : Inline processing of topic course_change with 1 messages took 3.71 ms +I, [2018-08-07T01:11:09.199469 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:11:09.229649 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.41 ms +I, [2018-08-07T01:11:09.229714 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:11:09.230180 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T01:11:09.230228 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:11:09.230841 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-08-07T01:11:09.230895 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:11:09.231847 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T01:11:09.231929 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:11:09.232621 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-08-07T01:11:09.232688 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:11:09.233327 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T01:11:09.233382 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:11:09.233686 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T01:11:09.233791 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:11:09.234425 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T01:11:09.234481 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:11:09.234902 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T01:11:09.234950 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:11:09.262451 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-08-07T01:11:09.262510 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:11:09.262894 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T01:11:09.262934 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:11:09.263301 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T01:11:09.263495 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:11:09.270072 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.4 ms +I, [2018-08-07T01:11:09.270141 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:11:09.270791 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-08-07T01:11:09.270850 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:11:09.271468 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.41 ms +I, [2018-08-07T01:11:09.271522 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:11:11.272450 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T01:11:11.272518 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:11:11.272927 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T01:11:11.272973 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:11:11.273285 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T01:11:11.273330 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:11:11.273738 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T01:11:11.309030 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:11:11.309533 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T01:11:11.309732 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:11:11.310110 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T01:11:11.310163 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:11:11.291079 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-08-07T01:11:11.337505 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:11:11.346341 #7] INFO -- : Inline processing of topic course_change with 1 messages took 2.09 ms +I, [2018-08-07T01:11:11.346426 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:11:11.348121 #7] INFO -- : Inline processing of topic course_change with 1 messages took 1.43 ms +I, [2018-08-07T01:11:11.348181 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:11:13.317314 #7] INFO -- : Committing offsets: section_change/0:48 +I, [2018-08-07T01:11:13.666525 #7] INFO -- : Committing offsets: course_change/0:14 +I, [2018-08-07T01:11:13.811792 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.67 ms +I, [2018-08-07T01:11:13.811857 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:11:13.812198 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-08-07T01:11:13.812230 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:11:13.812691 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.33 ms +I, [2018-08-07T01:11:13.812742 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:11:13.813497 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.56 ms +I, [2018-08-07T01:11:13.821556 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:11:13.827801 #7] INFO -- : Inline processing of topic course_change with 1 messages took 5.41 ms +I, [2018-08-07T01:11:13.828234 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:11:13.829453 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.6 ms +I, [2018-08-07T01:11:13.829580 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:11:13.830804 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.63 ms +I, [2018-08-07T01:11:13.830944 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:11:13.876669 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.58 ms +I, [2018-08-07T01:11:13.876742 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:11:13.877283 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T01:11:13.877338 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:11:13.877928 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T01:11:13.878103 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:11:13.878770 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-08-07T01:11:13.878951 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:11:13.879658 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-08-07T01:11:13.879712 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:11:13.880321 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T01:11:13.880381 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:11:15.847649 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.65 ms +I, [2018-08-07T01:11:15.847773 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:11:15.848288 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.31 ms +I, [2018-08-07T01:11:15.848340 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:11:15.848693 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-08-07T01:11:15.848752 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:11:15.894727 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-08-07T01:11:15.894801 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:11:15.895480 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T01:11:15.895543 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:11:15.895885 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T01:11:15.895917 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:11:15.896263 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T01:11:15.896295 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:11:17.855471 #7] INFO -- : Inline processing of topic course_change with 1 messages took 3.84 ms +I, [2018-08-07T01:11:17.855538 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:11:17.856188 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.42 ms +I, [2018-08-07T01:11:17.856235 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:11:17.856736 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.32 ms +I, [2018-08-07T01:11:17.856781 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:11:17.857268 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.27 ms +I, [2018-08-07T01:11:17.857312 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:11:17.899522 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.48 ms +I, [2018-08-07T01:11:17.899586 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:11:17.900027 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T01:11:17.910864 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:11:17.947150 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.64 ms +I, [2018-08-07T01:11:17.947215 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:11:17.947676 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T01:11:17.947941 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:11:17.948428 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T01:11:17.948479 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:11:17.948968 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T01:11:17.949104 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:11:17.949576 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T01:11:17.949715 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:11:17.950148 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T01:11:17.950195 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:11:17.950637 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T01:11:17.950683 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:11:17.951199 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T01:11:17.951374 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:11:17.952038 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.51 ms +I, [2018-08-07T01:11:17.952088 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:11:19.858602 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.29 ms +I, [2018-08-07T01:11:19.858666 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:11:19.859535 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.58 ms +I, [2018-08-07T01:11:19.859595 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:11:19.860627 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.68 ms +I, [2018-08-07T01:11:19.860780 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:11:19.861776 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.54 ms +I, [2018-08-07T01:11:19.861898 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:11:19.911252 #7] INFO -- : Inline processing of topic course_change with 1 messages took 48.66 ms +I, [2018-08-07T01:11:19.911312 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:11:19.953265 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-08-07T01:11:19.953319 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:11:19.953672 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T01:11:19.953704 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:11:19.954018 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T01:11:19.954048 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:11:19.954301 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T01:11:19.954330 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:11:19.954601 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T01:11:19.954630 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:11:19.954910 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T01:11:19.954937 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:11:19.955131 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T01:11:19.955239 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:11:19.955518 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T01:11:19.955561 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:11:19.955917 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T01:11:19.955961 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:11:19.957171 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.01 ms +I, [2018-08-07T01:11:19.957246 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:11:19.957621 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T01:11:19.958297 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:11:21.916517 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.33 ms +I, [2018-08-07T01:11:21.916589 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:11:21.917110 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.27 ms +I, [2018-08-07T01:11:21.917159 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:11:21.917523 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-08-07T01:11:21.917563 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:11:21.919937 #7] INFO -- : Inline processing of topic course_change with 1 messages took 1.44 ms +I, [2018-08-07T01:11:21.920007 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:11:21.924799 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.4 ms +I, [2018-08-07T01:11:21.924858 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:11:21.925372 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.27 ms +I, [2018-08-07T01:11:21.925406 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:11:21.935910 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.26 ms +I, [2018-08-07T01:11:21.935972 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:11:21.936428 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.27 ms +I, [2018-08-07T01:11:21.936476 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:11:21.936847 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T01:11:21.936891 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:11:21.937250 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T01:11:21.937295 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:11:21.937635 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T01:11:21.937681 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:11:21.938020 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T01:11:21.938063 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:11:21.938498 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T01:11:21.938557 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:11:21.938932 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-08-07T01:11:21.938980 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:11:21.939323 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T01:11:21.939368 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:11:21.939685 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T01:11:21.939730 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:11:21.961765 #7] INFO -- : Inline processing of topic section_change with 1 messages took 2.43 ms +I, [2018-08-07T01:11:21.961855 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:11:21.962467 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T01:11:21.962518 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:11:21.962847 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T01:11:21.962887 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:11:21.963157 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T01:11:21.963194 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:11:21.963468 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T01:11:21.963539 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:11:21.963791 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T01:11:21.963889 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:11:21.964189 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T01:11:21.964227 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:11:21.964613 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T01:11:21.964653 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:11:21.964987 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T01:11:21.965028 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:11:21.965294 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T01:11:21.966451 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:11:21.967182 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T01:11:21.967235 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:11:21.967498 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T01:11:21.967529 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:11:21.967798 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T01:11:21.967867 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:11:21.968177 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T01:11:21.968220 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:11:21.968524 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T01:11:21.968568 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:11:23.941374 #7] INFO -- : Committing offsets: course_change/0:49 +I, [2018-08-07T01:11:23.946299 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.81 ms +I, [2018-08-07T01:11:23.946365 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:11:23.946782 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-08-07T01:11:23.946829 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:11:23.947185 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-08-07T01:11:23.947244 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:11:23.947803 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.38 ms +I, [2018-08-07T01:11:23.947849 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:11:23.948178 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T01:11:23.948220 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:11:23.948535 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T01:11:23.948577 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:11:23.948957 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-08-07T01:11:23.949205 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:11:23.949616 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T01:11:23.949663 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:11:23.949979 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T01:11:23.950021 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:11:23.950275 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T01:11:23.950313 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:11:23.950523 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T01:11:23.950565 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:11:23.951060 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.37 ms +I, [2018-08-07T01:11:23.951101 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:11:23.955029 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.23 ms +I, [2018-08-07T01:11:23.955093 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:11:23.955477 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T01:11:23.955526 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:11:23.960879 #7] INFO -- : Inline processing of topic course_change with 1 messages took 5.12 ms +I, [2018-08-07T01:11:23.960960 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:11:23.969032 #7] INFO -- : Committing offsets: section_change/0:95 +I, [2018-08-07T01:11:23.983197 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T01:11:23.983263 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:11:23.983653 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T01:11:23.983700 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:11:23.984024 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T01:11:23.984094 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:11:23.984454 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T01:11:23.984500 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:11:23.984826 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T01:11:23.984872 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:11:23.985211 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T01:11:23.985255 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:11:23.985614 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T01:11:23.985673 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:11:23.986014 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T01:11:23.987022 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:11:23.990205 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-08-07T01:11:23.990274 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:11:23.990826 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-08-07T01:11:23.990873 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:11:23.991389 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-08-07T01:11:23.991433 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:11:23.991754 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T01:11:23.991795 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:11:23.992600 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.45 ms +I, [2018-08-07T01:11:23.992683 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:11:23.993221 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T01:11:23.993282 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:11:23.993648 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T01:11:23.993698 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:11:25.975674 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-08-07T01:11:25.977158 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:11:25.977498 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T01:11:25.977549 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:11:25.977769 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T01:11:25.977798 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:11:25.978013 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T01:11:25.978042 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:11:25.978265 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T01:11:25.978294 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:11:25.978507 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T01:11:25.978535 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:11:25.978792 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T01:11:25.978821 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:11:25.979053 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T01:11:25.979114 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:11:25.979499 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T01:11:25.979522 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:11:25.979725 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T01:11:25.979752 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:11:25.979940 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T01:11:25.979994 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:11:25.991635 #7] INFO -- : Inline processing of topic course_change with 1 messages took 11.49 ms +I, [2018-08-07T01:11:25.991709 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:11:26.003046 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T01:11:26.003096 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:11:26.003383 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T01:11:26.003417 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:11:26.003694 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T01:11:26.003737 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:11:26.003993 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T01:11:26.004024 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:11:26.004282 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T01:11:26.004313 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:11:26.004683 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T01:11:26.004746 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:11:26.021403 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T01:11:26.021602 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:11:26.021944 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T01:11:26.021976 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:11:26.022197 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T01:11:26.022226 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:11:26.022436 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T01:11:26.022465 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:11:26.022685 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T01:11:26.022714 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:11:26.023510 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-08-07T01:11:26.023641 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:11:26.024672 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.59 ms +I, [2018-08-07T01:11:26.024775 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:11:26.048766 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.5 ms +I, [2018-08-07T01:11:26.048835 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:11:26.049860 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.54 ms +I, [2018-08-07T01:11:26.050142 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:11:26.050530 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T01:11:26.050578 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:11:26.050927 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T01:11:26.050979 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:11:26.051359 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T01:11:26.051414 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:11:28.023493 #7] INFO -- : Inline processing of topic course_change with 1 messages took 1.67 ms +I, [2018-08-07T01:11:28.023804 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:11:28.024342 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-08-07T01:11:28.024393 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:11:28.066068 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.44 ms +I, [2018-08-07T01:11:28.066178 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:11:28.066706 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T01:11:28.066757 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:11:28.067278 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T01:11:28.067554 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:11:28.076517 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.83 ms +I, [2018-08-07T01:11:28.076678 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:11:28.078025 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.56 ms +I, [2018-08-07T01:11:28.078128 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:11:28.124651 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T01:11:28.124729 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:11:28.226111 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T01:11:28.226179 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:11:28.227048 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T01:11:28.227109 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:11:28.227579 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T01:11:28.227623 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:11:28.228005 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T01:11:28.228050 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:11:30.077935 #7] INFO -- : Inline processing of topic course_change with 1 messages took 13.2 ms +I, [2018-08-07T01:11:30.082025 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:11:30.083973 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.45 ms +I, [2018-08-07T01:11:30.084032 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:11:30.084573 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.25 ms +I, [2018-08-07T01:11:30.084702 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:11:30.232473 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.89 ms +I, [2018-08-07T01:11:30.244212 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:11:30.250426 #7] INFO -- : Inline processing of topic section_change with 1 messages took 5.22 ms +I, [2018-08-07T01:11:30.250507 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:11:30.251294 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-08-07T01:11:30.251356 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:11:30.251999 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-08-07T01:11:30.252065 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:11:30.252607 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-08-07T01:11:30.252700 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:11:32.148578 #7] INFO -- : Inline processing of topic course_change with 1 messages took 12.02 ms +I, [2018-08-07T01:11:32.149300 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:11:32.156321 #7] INFO -- : Inline processing of topic course_change with 1 messages took 6.53 ms +I, [2018-08-07T01:11:32.156411 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:11:32.157030 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T01:11:32.157088 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:11:32.163852 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.32 ms +I, [2018-08-07T01:11:32.164146 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:11:32.164844 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.38 ms +I, [2018-08-07T01:11:32.164878 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:11:32.254216 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.63 ms +I, [2018-08-07T01:11:32.254392 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:11:32.255154 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.5 ms +I, [2018-08-07T01:11:32.255210 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:11:32.255801 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-08-07T01:11:32.255852 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:11:32.256484 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T01:11:32.256534 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:11:32.257070 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-08-07T01:11:32.257152 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:11:32.257722 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T01:11:32.257809 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:11:32.258475 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.41 ms +I, [2018-08-07T01:11:32.258570 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:11:34.480157 #7] INFO -- : Committing offsets: course_change/0:86 +I, [2018-08-07T01:11:34.358632 #7] INFO -- : Committing offsets: section_change/0:150 +I, [2018-08-07T01:11:34.508535 #7] INFO -- : Inline processing of topic course_change with 1 messages took 2.79 ms +I, [2018-08-07T01:11:34.508645 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:11:34.509836 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-08-07T01:11:34.509884 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:11:34.510553 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.44 ms +I, [2018-08-07T01:11:34.510606 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:11:36.510490 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.63 ms +I, [2018-08-07T01:11:36.510702 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:11:36.511617 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T01:11:36.511684 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:11:36.512229 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T01:11:36.512266 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:11:36.512638 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T01:11:36.512669 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:11:36.513197 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T01:11:36.513232 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:11:36.529740 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T01:11:36.529803 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:11:36.520019 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.69 ms +I, [2018-08-07T01:11:36.530115 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:11:36.531118 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-08-07T01:11:36.532064 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:11:36.532481 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T01:11:36.532530 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:11:36.532964 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T01:11:36.533011 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:11:38.533116 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.64 ms +I, [2018-08-07T01:11:38.533245 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:11:38.533712 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T01:11:38.533745 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:11:38.534376 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.24 ms +I, [2018-08-07T01:11:38.534426 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:11:38.534800 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-08-07T01:11:38.534831 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:11:38.535130 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T01:11:38.535172 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:11:38.535471 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T01:11:38.535512 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:11:38.535903 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T01:11:38.535933 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:11:38.536209 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T01:11:38.536238 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:11:38.536768 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T01:11:38.536803 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:11:38.537235 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T01:11:38.537279 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:11:38.537568 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T01:11:38.537599 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:11:38.537866 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T01:11:38.537917 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:11:38.538394 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-08-07T01:11:38.538434 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:11:38.538766 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T01:11:38.538800 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:11:38.539084 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T01:11:38.539114 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:11:38.539449 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T01:11:38.539480 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:11:38.540031 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-08-07T01:11:38.540083 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:11:38.562877 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T01:11:38.563225 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:11:38.577079 #7] INFO -- : Inline processing of topic section_change with 1 messages took 12.39 ms +I, [2018-08-07T01:11:38.577188 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:11:38.578008 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-08-07T01:11:38.578085 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:11:38.578429 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T01:11:38.578461 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:11:38.578887 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T01:11:38.578946 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:11:38.579420 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T01:11:38.579458 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:11:40.559353 #7] INFO -- : Inline processing of topic course_change with 1 messages took 2.01 ms +I, [2018-08-07T01:11:40.559534 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:11:40.560185 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-08-07T01:11:40.560287 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:11:40.560910 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.42 ms +I, [2018-08-07T01:11:40.560962 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:11:40.561734 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.32 ms +I, [2018-08-07T01:11:40.561845 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:11:40.608600 #7] INFO -- : Inline processing of topic course_change with 1 messages took 46.51 ms +I, [2018-08-07T01:11:40.608668 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:11:40.609399 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.42 ms +I, [2018-08-07T01:11:40.609482 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:11:40.610073 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.33 ms +I, [2018-08-07T01:11:40.610109 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:11:40.610430 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T01:11:40.610463 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:11:40.623387 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.27 ms +I, [2018-08-07T01:11:40.623448 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:11:40.623796 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T01:11:40.623996 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:11:40.624430 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.28 ms +I, [2018-08-07T01:11:40.624491 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:11:40.628485 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.29 ms +I, [2018-08-07T01:11:40.628544 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:11:40.628942 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T01:11:40.628982 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:11:40.629299 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T01:11:40.629338 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:11:40.629655 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T01:11:40.629704 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:11:40.630633 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-08-07T01:11:40.630693 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:11:40.625332 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-08-07T01:11:40.630998 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:11:40.631334 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T01:11:40.631423 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:11:40.631755 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T01:11:40.631804 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:11:40.632255 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T01:11:40.632302 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:11:40.632716 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T01:11:40.632767 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:11:40.633236 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T01:11:40.633299 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:11:42.633530 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-08-07T01:11:42.633757 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:11:42.639823 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.49 ms +I, [2018-08-07T01:11:42.639902 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:11:42.640463 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T01:11:42.640519 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:11:42.641050 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T01:11:42.641084 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:11:42.643490 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T01:11:42.643534 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:11:42.644027 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-08-07T01:11:42.644064 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:11:42.644953 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.44 ms +I, [2018-08-07T01:11:42.645101 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:11:42.646138 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.61 ms +I, [2018-08-07T01:11:42.646201 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:11:42.646836 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.33 ms +I, [2018-08-07T01:11:42.647068 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:11:44.647445 #7] INFO -- : Committing offsets: course_change/0:118 +I, [2018-08-07T01:11:44.654936 #7] INFO -- : Committing offsets: section_change/0:185 +I, [2018-08-07T01:11:44.668056 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.26 ms +I, [2018-08-07T01:11:44.668106 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:11:44.668443 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-08-07T01:11:44.668496 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:11:44.668807 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-08-07T01:11:44.670510 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:11:44.670929 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.24 ms +I, [2018-08-07T01:11:44.671453 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:11:44.672272 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T01:11:44.672406 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:11:44.674014 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.8 ms +I, [2018-08-07T01:11:44.674074 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:11:44.674875 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.41 ms +I, [2018-08-07T01:11:44.674944 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:11:44.675367 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-08-07T01:11:44.675421 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:11:44.676691 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.31 ms +I, [2018-08-07T01:11:44.676836 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:11:44.671325 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T01:11:44.677030 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:11:44.677902 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.66 ms +I, [2018-08-07T01:11:44.677949 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:11:44.678698 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T01:11:44.678739 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:11:44.679204 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T01:11:44.679256 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:11:44.679668 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T01:11:44.679720 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:11:44.680104 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T01:11:44.680154 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:11:44.680813 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.41 ms +I, [2018-08-07T01:11:44.680879 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:11:44.682937 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T01:11:44.683000 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:11:44.683886 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.4 ms +I, [2018-08-07T01:11:44.683948 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:11:44.684601 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T01:11:44.684657 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:11:44.685108 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T01:11:44.685162 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:11:46.677908 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.27 ms +I, [2018-08-07T01:11:46.677973 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:11:46.678839 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.35 ms +I, [2018-08-07T01:11:46.679044 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:11:46.679504 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-08-07T01:11:46.679559 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:11:46.679979 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.26 ms +I, [2018-08-07T01:11:46.680279 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:11:46.680791 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T01:11:46.681191 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:11:46.681650 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T01:11:46.681741 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:11:46.682142 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T01:11:46.682202 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:11:46.682539 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T01:11:46.682590 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:11:46.682982 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-08-07T01:11:46.683028 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:11:46.683912 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.42 ms +I, [2018-08-07T01:11:46.684033 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:11:46.684608 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.28 ms +I, [2018-08-07T01:11:46.684659 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:11:46.685059 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T01:11:46.685111 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:11:46.685461 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T01:11:46.685507 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:11:46.686856 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.89 ms +I, [2018-08-07T01:11:46.686912 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:11:46.687779 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-08-07T01:11:46.687828 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:11:46.688226 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T01:11:46.688318 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:11:46.695811 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-08-07T01:11:46.695872 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:11:46.696272 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T01:11:46.696731 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:11:46.697252 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T01:11:46.697348 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:11:46.697844 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T01:11:46.697892 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:11:46.698404 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T01:11:46.698550 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:11:46.699075 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-08-07T01:11:46.699126 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:11:46.701677 #7] INFO -- : Inline processing of topic section_change with 1 messages took 2.09 ms +I, [2018-08-07T01:11:46.701742 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:11:46.702210 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T01:11:46.702269 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:11:46.702635 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T01:11:46.702682 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:11:46.703550 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-08-07T01:11:46.703616 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:11:46.704037 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T01:11:46.704116 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:11:46.704473 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T01:11:46.704522 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:11:46.705198 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.4 ms +I, [2018-08-07T01:11:46.705272 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:11:46.705658 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T01:11:46.705705 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:11:46.706364 #7] INFO -- : Inline processing of topic course_change with 1 messages took 20.68 ms +I, [2018-08-07T01:11:46.706465 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:11:46.706998 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.26 ms +I, [2018-08-07T01:11:46.707095 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:11:46.708244 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.92 ms +I, [2018-08-07T01:17:49.384707 #7] INFO -- : New topics added to target list: course_change +I, [2018-08-07T01:17:49.386180 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T01:17:49.403532 #7] INFO -- : New topics added to target list: section_change +I, [2018-08-07T01:17:49.403624 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T01:17:49.425600 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T01:17:49.426326 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T01:17:49.433172 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T01:17:49.433301 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T01:17:54.427766 #7] 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.14:9094 +I, [2018-08-07T01:17:54.430338 #7] INFO -- : New topics added to target list: section_change +I, [2018-08-07T01:17:54.430434 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T01:17:54.433498 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T01:17:54.433591 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T01:17:54.433705 #7] 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.14:9094 +I, [2018-08-07T01:17:54.434943 #7] INFO -- : New topics added to target list: course_change +I, [2018-08-07T01:17:54.435103 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T01:17:54.436379 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T01:17:54.436543 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T01:17:59.435225 #7] 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.14:9094 +E, [2018-08-07T01:17:59.439574 #7] 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.14:9094 +I, [2018-08-07T01:17:59.442086 #7] INFO -- : New topics added to target list: course_change +I, [2018-08-07T01:17:59.442187 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T01:17:59.444790 #7] INFO -- : New topics added to target list: section_change +I, [2018-08-07T01:17:59.444963 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T01:17:59.449770 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T01:17:59.450729 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T01:17:59.452753 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T01:17:59.453655 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T01:18:04.418786 #7] 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.14:9094 +I, [2018-08-07T01:18:04.423594 #7] INFO -- : New topics added to target list: course_change +E, [2018-08-07T01:18:04.424070 #7] 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.14:9094 +I, [2018-08-07T01:18:04.436888 #7] INFO -- : New topics added to target list: section_change +I, [2018-08-07T01:18:04.436990 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T01:18:04.445712 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T01:18:04.447364 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T01:18:04.447861 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T01:18:04.449440 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T01:18:04.451432 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T01:18:09.464373 #7] 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.14:9094 +I, [2018-08-07T01:18:09.471997 #7] INFO -- : New topics added to target list: course_change +I, [2018-08-07T01:18:09.472110 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T01:18:09.472517 #7] 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.14:9094 +I, [2018-08-07T01:18:09.473696 #7] INFO -- : New topics added to target list: section_change +I, [2018-08-07T01:18:09.474056 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T01:18:09.476126 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T01:18:09.476674 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T01:18:09.481725 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T01:18:09.481859 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T01:18:14.484003 #7] 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.14:9094 +E, [2018-08-07T01:18:14.588709 #7] 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.14:9094 +I, [2018-08-07T01:18:14.625813 #7] INFO -- : New topics added to target list: section_change +I, [2018-08-07T01:18:14.628109 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T01:18:14.671509 #7] INFO -- : New topics added to target list: course_change +I, [2018-08-07T01:18:14.671597 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T01:18:14.671964 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T01:18:14.672170 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T01:18:14.674608 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T01:18:14.676405 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T01:18:19.679310 #7] 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.14:9094 +E, [2018-08-07T01:18:19.750209 #7] 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.14:9094 +I, [2018-08-07T01:18:19.767711 #7] INFO -- : New topics added to target list: course_change +I, [2018-08-07T01:18:19.786241 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T01:18:19.796067 #7] INFO -- : New topics added to target list: section_change +I, [2018-08-07T01:18:19.969110 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T01:18:19.797974 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T01:18:19.971119 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T01:18:19.974021 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T01:18:19.989681 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T01:18:24.972048 #7] 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.14:9094 +I, [2018-08-07T01:18:24.974621 #7] INFO -- : New topics added to target list: course_change +I, [2018-08-07T01:18:24.974762 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T01:18:24.990137 #7] 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.14:9094 +I, [2018-08-07T01:18:24.993140 #7] INFO -- : New topics added to target list: section_change +I, [2018-08-07T01:18:24.993225 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T01:18:25.055761 #7] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-07T01:18:25.068397 #7] INFO -- : Joining group `notifications_notifications` +I, [2018-08-07T01:18:25.097319 #7] INFO -- : Will fetch at most 1048576 bytes at a time per partition from section_change +I, [2018-08-07T01:18:25.097668 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T01:18:25.106042 #7] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-07T01:18:25.106446 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T01:18:25.121747 #7] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-07T01:18:25.121919 #7] INFO -- : Joining group `notifications_course_change` +I, [2018-08-07T01:18:25.181707 #7] INFO -- : Will fetch at most 1048576 bytes at a time per partition from course_change +I, [2018-08-07T01:18:25.181944 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T01:18:25.194891 #7] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-07T01:18:25.195262 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T01:18:26.108421 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T01:18:26.195640 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T01:18:27.109557 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T01:18:27.195988 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T01:18:28.110276 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T01:18:28.196268 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T01:18:29.110988 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T01:18:29.196669 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T01:18:30.111608 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T01:18:30.199595 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T01:18:31.112046 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T01:18:31.207917 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T01:18:32.112410 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T01:18:32.209253 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-07T01:18:32.974521 #7] ERROR -- : Failed to find coordinator for group `notifications_course_change`; retrying... +I, [2018-08-07T01:18:33.075216 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T01:18:33.171729 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T01:18:33.308787 #7] INFO -- : Joined group `notifications_notifications` with member id `notifications-ae6884fd-0075-42e1-8da2-47cbb5c5351a` +I, [2018-08-07T01:18:33.308862 #7] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-07T01:18:33.936894 #7] INFO -- : Joining group `notifications_course_change` +I, [2018-08-07T01:18:33.950082 #7] INFO -- : Joined group `notifications_course_change` with member id `notifications-01229a14-b6a6-4d8f-a2c3-fca837ace97f` +I, [2018-08-07T01:18:33.950207 #7] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-07T01:18:34.075662 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T01:18:34.204941 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T01:18:34.311991 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T01:18:34.335765 #7] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-07T01:18:34.390559 #7] INFO -- : Partitions assigned for `section_change`: 0 +I, [2018-08-07T01:18:35.136675 #7] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-07T01:18:35.138994 #7] INFO -- : New topics added to target list: section_change +I, [2018-08-07T01:18:35.139132 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T01:18:35.140485 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T01:18:35.179121 #7] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-07T01:18:35.204383 #7] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-07T01:18:35.206212 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T01:18:36.208729 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T01:18:37.052494 #7] INFO -- : Partitions assigned for `course_change`: 0 +I, [2018-08-07T01:18:37.743936 #7] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-07T01:18:37.744842 #7] INFO -- : New topics added to target list: course_change +I, [2018-08-07T01:18:37.745904 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T01:18:37.809398 #7] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-07T01:18:45.931599 #7] INFO -- : Inline processing of topic course_change with 1 messages took 300.84 ms +I, [2018-08-07T01:18:45.931883 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:18:45.932127 #7] INFO -- : Committing offsets with recommit: course_change/0:1 +I, [2018-08-07T01:18:45.957300 #7] INFO -- : Inline processing of topic section_change with 1 messages took 935.02 ms +I, [2018-08-07T01:18:45.957481 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:18:46.022191 #7] INFO -- : Committing offsets with recommit: section_change/0:1 +I, [2018-08-07T01:18:46.422890 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-08-07T01:18:46.422993 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:18:46.432455 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T01:18:46.435564 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:18:46.465179 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T01:18:46.465305 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:18:46.474689 #7] INFO -- : Inline processing of topic section_change with 1 messages took 9.01 ms +I, [2018-08-07T01:18:46.635324 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:18:46.495931 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.28 ms +I, [2018-08-07T01:18:46.879068 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:18:46.913663 #7] INFO -- : Inline processing of topic course_change with 1 messages took 34.14 ms +I, [2018-08-07T01:18:46.913772 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:18:49.876766 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.68 ms +I, [2018-08-07T01:18:49.879220 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:18:51.909729 #7] INFO -- : Inline processing of topic section_change with 1 messages took 2.2 ms +I, [2018-08-07T01:18:51.909873 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:18:51.910456 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-08-07T01:18:51.910514 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:18:51.947788 #7] INFO -- : Inline processing of topic section_change with 1 messages took 37.02 ms +I, [2018-08-07T01:18:51.947851 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:18:51.950707 #7] INFO -- : Inline processing of topic section_change with 1 messages took 2.58 ms +I, [2018-08-07T01:18:51.959470 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:18:51.960111 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-08-07T01:18:51.960168 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:18:51.975302 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T01:18:51.975396 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:18:53.979206 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.52 ms +I, [2018-08-07T01:18:53.979336 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:18:53.979897 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T01:18:53.979940 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:18:53.980354 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T01:18:53.980475 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:18:53.980959 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T01:18:53.980997 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:18:53.981378 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T01:18:53.981410 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:18:53.981815 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T01:18:53.981850 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:18:53.982437 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T01:18:53.982488 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:18:53.984108 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.13 ms +I, [2018-08-07T01:18:53.984730 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:18:53.985651 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-08-07T01:18:53.985934 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:18:53.986717 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-08-07T01:18:53.986768 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:18:54.010427 #7] INFO -- : Inline processing of topic section_change with 1 messages took 11.82 ms +I, [2018-08-07T01:18:54.025812 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:18:54.026580 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.41 ms +I, [2018-08-07T01:18:54.026622 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:18:58.385263 #7] INFO -- : Committing offsets: course_change/0:3 +I, [2018-08-07T01:18:58.388773 #7] INFO -- : Committing offsets: section_change/0:24 +I, [2018-08-07T01:18:58.751028 #7] INFO -- : Inline processing of topic course_change with 1 messages took 2.53 ms +I, [2018-08-07T01:18:58.763307 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:18:58.769422 #7] INFO -- : Inline processing of topic course_change with 1 messages took 1.59 ms +I, [2018-08-07T01:18:58.774878 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:18:58.777114 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.83 ms +I, [2018-08-07T01:18:58.777208 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:18:58.783695 #7] INFO -- : Inline processing of topic course_change with 1 messages took 6.07 ms +I, [2018-08-07T01:18:58.783811 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:18:58.789049 #7] INFO -- : Inline processing of topic course_change with 1 messages took 4.36 ms +I, [2018-08-07T01:18:58.789215 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:18:58.818841 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.68 ms +I, [2018-08-07T01:18:58.839181 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:18:58.842384 #7] INFO -- : Inline processing of topic section_change with 1 messages took 2.25 ms +I, [2018-08-07T01:18:58.842804 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:18:58.848768 #7] INFO -- : Inline processing of topic section_change with 1 messages took 4.62 ms +I, [2018-08-07T01:18:59.030525 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:18:59.045758 #7] INFO -- : Inline processing of topic section_change with 1 messages took 14.73 ms +I, [2018-08-07T01:18:59.045878 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:18:59.046573 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T01:18:59.046625 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:18:59.049192 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T01:18:59.049267 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:18:59.055610 #7] INFO -- : Inline processing of topic section_change with 1 messages took 5.99 ms +I, [2018-08-07T01:18:59.055711 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:18:59.056462 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.43 ms +I, [2018-08-07T01:18:59.061087 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:18:59.062660 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.51 ms +I, [2018-08-07T01:18:59.062740 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:18:59.083854 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.43 ms +I, [2018-08-07T01:18:59.083941 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:18:59.068302 #7] INFO -- : Inline processing of topic course_change with 1 messages took 269.76 ms +I, [2018-08-07T01:18:59.109520 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:18:59.110332 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.27 ms +I, [2018-08-07T01:18:59.110392 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:18:59.112093 #7] INFO -- : Inline processing of topic section_change with 1 messages took 27.89 ms +I, [2018-08-07T01:18:59.112186 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:18:59.112761 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T01:18:59.112815 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:19:01.141866 #7] INFO -- : Inline processing of topic course_change with 1 messages took 2.9 ms +I, [2018-08-07T01:19:01.141943 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:19:01.162956 #7] INFO -- : Inline processing of topic section_change with 1 messages took 2.11 ms +I, [2018-08-07T01:19:01.163748 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:19:01.176304 #7] INFO -- : Inline processing of topic section_change with 1 messages took 9.1 ms +I, [2018-08-07T01:19:01.176432 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:19:01.185426 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-08-07T01:19:01.185500 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:19:01.187913 #7] INFO -- : Inline processing of topic section_change with 1 messages took 2.21 ms +I, [2018-08-07T01:19:01.187961 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:19:01.188298 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T01:19:01.188331 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:19:01.591008 #7] INFO -- : Inline processing of topic section_change with 1 messages took 373.74 ms +I, [2018-08-07T01:19:01.619225 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:19:01.646073 #7] INFO -- : Inline processing of topic section_change with 1 messages took 21.71 ms +I, [2018-08-07T01:19:01.646527 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:19:01.646887 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T01:19:01.646920 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:19:01.648320 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T01:19:01.648396 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:19:03.106006 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.96 ms +I, [2018-08-07T01:19:03.106103 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:19:03.106911 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T01:19:03.106948 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:19:03.107915 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T01:19:03.107948 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:19:03.108259 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T01:19:03.108290 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:19:03.797741 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.41 ms +I, [2018-08-07T01:19:03.797833 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:19:03.798374 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-08-07T01:19:03.798418 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:19:03.798846 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T01:19:03.798899 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:19:03.799479 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T01:19:03.799524 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:19:05.150929 #7] INFO -- : Inline processing of topic course_change with 1 messages took 3.41 ms +I, [2018-08-07T01:19:05.151384 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:19:05.996323 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.17 ms +I, [2018-08-07T01:19:05.997426 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:19:07.624035 #7] INFO -- : Inline processing of topic course_change with 1 messages took 2.11 ms +I, [2018-08-07T01:19:07.624208 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:19:08.007818 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.71 ms +I, [2018-08-07T01:19:08.008088 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:19:08.008515 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T01:19:08.008561 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:19:09.624756 #7] INFO -- : Committing offsets: course_change/0:17 +I, [2018-08-07T01:19:09.656716 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-08-07T01:19:09.656766 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:19:09.657275 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T01:19:09.657326 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:19:09.657977 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.24 ms +I, [2018-08-07T01:19:09.658028 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:19:09.658633 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T01:19:09.658687 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:19:09.659165 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.29 ms +I, [2018-08-07T01:19:09.659345 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:19:09.659966 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T01:19:09.660073 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:19:09.660391 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T01:19:09.660426 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:19:09.660792 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-08-07T01:19:09.660840 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:19:09.668509 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-08-07T01:19:09.668575 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:19:10.009045 #7] INFO -- : Committing offsets: section_change/0:52 +I, [2018-08-07T01:19:10.018844 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T01:19:10.018892 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:19:10.019195 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T01:19:10.019227 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:19:10.019420 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-08-07T01:19:10.019449 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:19:10.019640 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T01:19:10.019707 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:19:10.020561 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T01:19:10.020621 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:19:10.021027 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T01:19:10.021067 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:19:10.021415 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T01:19:10.021454 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:19:10.021687 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T01:19:10.021722 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:19:10.021937 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T01:19:10.022008 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:19:11.693198 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.33 ms +I, [2018-08-07T01:19:11.693269 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:19:11.693656 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T01:19:11.693705 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:19:12.026295 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T01:19:12.026358 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:19:12.026671 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T01:19:12.026724 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:19:12.027282 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-08-07T01:19:12.027339 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:19:12.027673 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T01:19:12.027717 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:19:12.029574 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.68 ms +I, [2018-08-07T01:19:12.029663 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:19:12.030100 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T01:19:12.030153 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:19:12.031724 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T01:19:12.032019 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:19:12.032846 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.59 ms +I, [2018-08-07T01:19:12.033110 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:19:12.053582 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.52 ms +I, [2018-08-07T01:19:12.053652 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:19:12.054162 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T01:19:12.054219 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:19:13.782972 #7] INFO -- : Inline processing of topic course_change with 1 messages took 15.49 ms +I, [2018-08-07T01:19:13.783111 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:19:13.783562 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T01:19:13.783599 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:19:13.783906 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T01:19:13.783949 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:19:13.790135 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-08-07T01:19:13.790199 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:19:14.055324 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.54 ms +I, [2018-08-07T01:19:14.055406 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:19:14.055921 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T01:19:14.055974 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:19:14.056417 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T01:19:14.056476 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:19:14.056811 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T01:19:14.056852 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:19:14.058783 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.77 ms +I, [2018-08-07T01:19:14.058908 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:19:14.059520 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T01:19:14.059561 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:19:14.060216 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-08-07T01:19:14.060270 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:19:15.797467 #7] INFO -- : Inline processing of topic course_change with 1 messages took 6.29 ms +I, [2018-08-07T01:19:15.797659 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:19:15.798133 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-08-07T01:19:15.798186 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:19:15.798774 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.39 ms +I, [2018-08-07T01:19:15.798833 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:19:15.801631 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-08-07T01:19:15.801702 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:19:15.802499 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-08-07T01:19:15.802555 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:19:15.802909 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T01:19:15.802966 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:19:15.803444 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T01:19:15.803515 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:19:16.061203 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T01:19:16.061254 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:19:16.061544 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T01:19:16.061578 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:19:16.062336 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T01:19:16.062380 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:19:16.062630 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T01:19:16.062660 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:19:16.062952 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T01:19:16.062983 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:19:16.063309 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T01:19:16.063341 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:19:16.063650 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T01:19:16.063684 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:19:16.063955 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T01:19:16.063986 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:19:16.064171 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T01:19:16.064200 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:19:17.804392 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.32 ms +I, [2018-08-07T01:19:17.804470 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:19:17.804853 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T01:19:17.804905 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:19:17.805423 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.31 ms +I, [2018-08-07T01:19:17.805597 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:19:17.806037 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-08-07T01:19:17.806085 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:19:17.806690 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.31 ms +I, [2018-08-07T01:19:17.806848 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:19:17.807569 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T01:19:17.807629 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:19:17.835730 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.78 ms +I, [2018-08-07T01:19:17.837811 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:19:17.843961 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.25 ms +I, [2018-08-07T01:19:17.844239 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:19:17.844780 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.24 ms +I, [2018-08-07T01:19:17.844945 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:19:17.845373 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T01:19:17.845420 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:19:17.845780 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-08-07T01:19:17.845828 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:19:17.846169 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T01:19:17.846217 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:19:17.846504 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T01:19:17.846597 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:19:18.065096 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.45 ms +I, [2018-08-07T01:19:18.065161 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:19:18.065507 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T01:19:18.065553 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:19:18.066014 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-08-07T01:19:18.066069 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:19:18.066416 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T01:19:18.066460 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:19:18.066874 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T01:19:18.066920 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:19:18.067226 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T01:19:18.067279 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:19:18.067608 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T01:19:18.067662 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:19:18.068012 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T01:19:18.068056 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:19:18.068547 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T01:19:18.068595 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:19:18.069743 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.95 ms +I, [2018-08-07T01:19:18.069801 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:19:18.070102 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T01:19:18.073005 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:19:18.079473 #7] INFO -- : Inline processing of topic section_change with 1 messages took 5.72 ms +I, [2018-08-07T01:19:18.079541 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:19:18.079978 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T01:19:18.080038 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:19:19.847931 #7] INFO -- : Committing offsets: course_change/0:52 +I, [2018-08-07T01:19:19.891440 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-08-07T01:19:19.891502 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:19:19.892542 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T01:19:19.892599 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:19:19.893137 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T01:19:19.893186 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:19:19.893785 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T01:19:19.894208 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:19:19.894623 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T01:19:19.895505 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:19:19.895992 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.23 ms +I, [2018-08-07T01:19:19.896086 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:19:19.897390 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.88 ms +I, [2018-08-07T01:19:19.897478 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:19:19.898065 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.35 ms +I, [2018-08-07T01:19:19.898122 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:19:19.919290 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-08-07T01:19:19.919340 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:19:19.919838 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T01:19:19.919877 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:19:19.922808 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-08-07T01:19:19.922856 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:19:20.094757 #7] INFO -- : Committing offsets: section_change/0:100 +I, [2018-08-07T01:19:20.898992 #7] INFO -- : Inline processing of topic section_change with 1 messages took 2.76 ms +I, [2018-08-07T01:19:20.899510 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:19:20.901940 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.91 ms +I, [2018-08-07T01:19:20.902013 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:19:20.923288 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.89 ms +I, [2018-08-07T01:19:20.937739 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:19:20.938923 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.67 ms +I, [2018-08-07T01:19:20.939094 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:19:20.940604 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.08 ms +I, [2018-08-07T01:19:20.940716 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:19:20.950020 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.82 ms +I, [2018-08-07T01:19:20.950163 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:19:20.951422 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.0 ms +I, [2018-08-07T01:19:20.951634 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:19:20.956080 #7] INFO -- : Inline processing of topic section_change with 1 messages took 4.03 ms +I, [2018-08-07T01:19:20.962475 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:19:20.963496 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.58 ms +I, [2018-08-07T01:19:20.965324 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:19:20.978610 #7] INFO -- : Inline processing of topic section_change with 1 messages took 10.92 ms +I, [2018-08-07T01:19:20.978692 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:19:21.938614 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.85 ms +I, [2018-08-07T01:19:21.938704 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:19:22.027831 #7] INFO -- : Inline processing of topic course_change with 1 messages took 88.12 ms +I, [2018-08-07T01:19:22.027933 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:19:22.028620 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.42 ms +I, [2018-08-07T01:19:22.028686 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:19:22.029147 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-08-07T01:19:22.029205 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:19:22.029707 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.29 ms +I, [2018-08-07T01:19:22.029770 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:19:22.030138 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T01:19:22.030237 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:19:23.000024 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T01:19:23.000095 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:19:23.000559 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T01:19:23.000608 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:19:23.001159 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-08-07T01:19:23.001212 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:19:23.001557 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T01:19:23.001660 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:19:23.003200 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T01:19:23.003633 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:19:23.004319 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.4 ms +I, [2018-08-07T01:19:23.004387 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:19:23.004882 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T01:19:23.014253 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:19:23.014743 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T01:19:23.014794 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:19:23.015140 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T01:19:23.015246 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:19:23.016394 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.48 ms +I, [2018-08-07T01:19:23.016471 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:19:24.441245 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.73 ms +I, [2018-08-07T01:19:24.441356 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:19:24.442293 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.24 ms +I, [2018-08-07T01:19:24.442387 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:19:24.453118 #7] INFO -- : Inline processing of topic course_change with 1 messages took 9.77 ms +I, [2018-08-07T01:19:24.453217 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:19:25.018377 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.87 ms +I, [2018-08-07T01:19:25.018507 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:19:27.153589 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.38 ms +I, [2018-08-07T01:19:27.153650 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:19:27.154407 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.54 ms +I, [2018-08-07T01:19:27.154448 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:19:29.157665 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.5 ms +I, [2018-08-07T01:19:29.157756 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:19:29.158393 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-08-07T01:19:29.158444 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:19:29.158786 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T01:19:29.158831 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:19:29.163273 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.53 ms +I, [2018-08-07T01:19:29.163387 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:19:29.164257 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.63 ms +I, [2018-08-07T01:19:29.164326 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:19:31.165281 #7] INFO -- : Committing offsets: section_change/0:125 +I, [2018-08-07T01:19:31.166776 #7] INFO -- : Committing offsets: course_change/0:75 +I, [2018-08-07T01:19:31.203644 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.54 ms +I, [2018-08-07T01:19:31.203698 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:19:31.204186 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T01:19:31.204232 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:19:31.204864 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T01:19:31.204931 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:19:31.237201 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T01:19:31.237257 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:19:31.237778 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-08-07T01:19:31.237816 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:19:31.238274 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T01:19:31.238340 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:19:31.238666 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T01:19:31.238708 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:19:31.239151 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-08-07T01:19:31.239211 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:19:31.239816 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-08-07T01:19:31.239879 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:19:31.240343 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T01:19:31.240397 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:19:31.241648 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T01:19:31.241692 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:19:33.187820 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.28 ms +I, [2018-08-07T01:19:33.187896 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:19:33.471121 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T01:19:33.471186 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:19:33.472351 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.52 ms +I, [2018-08-07T01:19:33.472408 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:19:33.472941 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-08-07T01:19:33.472985 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:19:33.473270 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T01:19:33.473448 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:19:33.473722 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T01:19:33.474307 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:19:33.474848 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-08-07T01:19:33.474895 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:19:33.475332 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T01:19:33.475377 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:19:33.491781 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T01:19:33.491918 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:19:35.195767 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.95 ms +I, [2018-08-07T01:19:35.196175 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:19:35.233534 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.94 ms +I, [2018-08-07T01:19:35.233605 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:19:35.249227 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.63 ms +I, [2018-08-07T01:19:35.249303 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:19:35.317190 #7] INFO -- : Inline processing of topic course_change with 1 messages took 40.61 ms +I, [2018-08-07T01:19:35.317274 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:19:35.493005 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-08-07T01:19:35.493084 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:19:35.493586 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-08-07T01:19:35.493632 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:19:35.494098 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-08-07T01:19:35.494146 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:19:35.494711 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-08-07T01:19:35.494763 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:19:37.341656 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.42 ms +I, [2018-08-07T01:19:37.341837 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:19:37.343557 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.23 ms +I, [2018-08-07T01:19:37.343785 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:19:37.366271 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.85 ms +I, [2018-08-07T01:19:37.366758 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:19:37.497688 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T01:19:37.497759 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:19:37.499709 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.71 ms +I, [2018-08-07T01:19:37.499782 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:19:37.558853 #7] INFO -- : Inline processing of topic section_change with 1 messages took 58.69 ms +I, [2018-08-07T01:19:37.558933 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:19:37.559352 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T01:19:37.559742 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:19:37.560181 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T01:19:37.560239 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:19:41.699011 #7] INFO -- : Committing offsets: section_change/0:150 +I, [2018-08-07T01:19:41.747002 #7] INFO -- : Committing offsets: course_change/0:86 +I, [2018-08-07T01:19:43.959778 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.8 ms +I, [2018-08-07T01:19:43.959858 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:19:43.961183 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.44 ms +I, [2018-08-07T01:19:43.961492 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:19:43.962049 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-08-07T01:19:43.962535 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:19:43.963351 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-08-07T01:19:43.963410 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:19:44.047596 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.71 ms +I, [2018-08-07T01:19:44.047687 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:19:44.049907 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.74 ms +I, [2018-08-07T01:19:44.069226 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:19:44.069831 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.3 ms +I, [2018-08-07T01:19:44.070168 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:19:45.964547 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.51 ms +I, [2018-08-07T01:19:45.964613 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:19:45.965623 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.48 ms +I, [2018-08-07T01:19:45.965662 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:19:45.966323 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.44 ms +I, [2018-08-07T01:19:45.966643 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:19:46.125167 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.33 ms +I, [2018-08-07T01:19:46.125631 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:19:46.126532 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.64 ms +I, [2018-08-07T01:19:46.126587 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:19:46.129344 #7] INFO -- : Inline processing of topic course_change with 1 messages took 2.5 ms +I, [2018-08-07T01:19:46.129394 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:19:46.136109 #7] INFO -- : Inline processing of topic course_change with 1 messages took 6.5 ms +I, [2018-08-07T01:19:46.136178 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:19:48.715159 #7] INFO -- : Inline processing of topic section_change with 1 messages took 3.09 ms +I, [2018-08-07T01:19:48.962872 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:19:48.965484 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.67 ms +I, [2018-08-07T01:19:48.997690 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:19:49.000003 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.11 ms +I, [2018-08-07T01:19:49.000067 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:19:48.956243 #7] INFO -- : Inline processing of topic course_change with 1 messages took 95.79 ms +I, [2018-08-07T01:19:49.026494 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:19:49.881064 #7] INFO -- : Inline processing of topic course_change with 1 messages took 781.59 ms +I, [2018-08-07T01:19:49.882107 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:19:51.027908 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.22 ms +I, [2018-08-07T01:19:51.028054 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:19:51.032905 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-08-07T01:19:51.032979 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:19:51.923188 #7] INFO -- : Inline processing of topic course_change with 1 messages took 2.56 ms +I, [2018-08-07T01:19:51.923273 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:19:51.923958 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.37 ms +I, [2018-08-07T01:19:51.924016 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:19:51.924569 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.38 ms +I, [2018-08-07T01:19:51.924844 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:19:53.062702 #7] INFO -- : Inline processing of topic section_change with 1 messages took 20.44 ms +I, [2018-08-07T01:19:53.065147 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:19:53.066999 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.11 ms +I, [2018-08-07T01:19:53.067068 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:19:53.067902 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.63 ms +I, [2018-08-07T01:19:53.068369 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:19:53.069352 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.79 ms +I, [2018-08-07T01:19:53.069404 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:19:53.071737 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.75 ms +I, [2018-08-07T01:19:53.071793 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:19:53.072930 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.84 ms +I, [2018-08-07T01:19:53.073116 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:19:53.103372 #7] INFO -- : Inline processing of topic section_change with 1 messages took 28.32 ms +I, [2018-08-07T01:19:53.104032 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:19:53.117824 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.72 ms +I, [2018-08-07T01:19:53.118021 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:19:53.120119 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.16 ms +I, [2018-08-07T01:19:53.120255 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:19:53.131291 #7] INFO -- : Inline processing of topic section_change with 1 messages took 4.11 ms +I, [2018-08-07T01:19:53.131547 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:19:53.176283 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.43 ms +I, [2018-08-07T01:19:53.176356 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:19:53.176825 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T01:19:53.177922 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:19:53.178960 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.7 ms +I, [2018-08-07T01:19:53.179024 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:19:53.181681 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.8 ms +I, [2018-08-07T01:19:53.181811 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:19:53.182886 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.75 ms +I, [2018-08-07T01:19:53.183008 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:19:53.189770 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T01:19:53.189832 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:19:53.192371 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T01:19:53.192414 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:19:53.195934 #7] INFO -- : Inline processing of topic section_change with 1 messages took 2.32 ms +I, [2018-08-07T01:19:53.195987 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:19:53.926111 #7] INFO -- : Committing offsets: course_change/0:98 +I, [2018-08-07T01:19:53.944781 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.48 ms +I, [2018-08-07T01:19:53.944854 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:19:53.945136 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T01:19:53.945163 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:19:53.945521 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.26 ms +I, [2018-08-07T01:19:53.945571 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:19:53.946140 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.36 ms +I, [2018-08-07T01:19:53.946187 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:19:53.946589 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T01:19:53.946801 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:19:53.947055 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T01:19:53.947109 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:19:53.947579 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.31 ms +I, [2018-08-07T01:19:53.947673 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:19:53.961790 #7] INFO -- : Inline processing of topic course_change with 1 messages took 1.19 ms +I, [2018-08-07T01:19:53.962623 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:19:53.963211 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-08-07T01:19:53.963268 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:19:53.963834 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T01:19:53.966466 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:19:53.972044 #7] INFO -- : Inline processing of topic course_change with 1 messages took 5.24 ms +I, [2018-08-07T01:19:53.972129 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:19:53.986962 #7] INFO -- : Inline processing of topic course_change with 1 messages took 8.26 ms +I, [2018-08-07T01:19:53.987089 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:19:53.987394 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T01:19:53.987427 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:19:53.987776 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.23 ms +I, [2018-08-07T01:19:53.987831 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:19:53.988224 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.26 ms +I, [2018-08-07T01:19:53.988259 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:19:53.994085 #7] INFO -- : Inline processing of topic course_change with 1 messages took 3.92 ms +I, [2018-08-07T01:19:53.994134 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:19:53.994600 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T01:19:53.994632 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:19:55.197622 #7] INFO -- : Committing offsets: section_change/0:180 +I, [2018-08-07T01:19:55.389894 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.48 ms +I, [2018-08-07T01:19:55.389991 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:19:55.391008 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.62 ms +I, [2018-08-07T01:19:55.391063 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:19:55.442912 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.41 ms +I, [2018-08-07T01:19:55.442979 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:19:55.445019 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.7 ms +I, [2018-08-07T01:19:55.445081 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:19:56.224750 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T01:19:56.224801 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:19:56.225349 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.41 ms +I, [2018-08-07T01:19:56.225384 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:19:57.446698 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-08-07T01:19:57.446772 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:19:58.226959 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.77 ms +I, [2018-08-07T01:19:58.227502 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:19:58.228025 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.24 ms +I, [2018-08-07T01:19:58.228078 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:19:59.491889 #7] INFO -- : Inline processing of topic section_change with 1 messages took 3.49 ms +I, [2018-08-07T01:19:59.492047 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:01.494659 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.51 ms +I, [2018-08-07T01:20:01.494811 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:02.233136 #7] INFO -- : Inline processing of topic course_change with 1 messages took 2.16 ms +I, [2018-08-07T01:20:02.233586 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:20:02.234599 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.81 ms +I, [2018-08-07T01:20:02.234647 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:20:03.462934 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-08-07T01:20:03.462999 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:03.463793 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T01:20:03.463828 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:03.464229 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T01:20:03.464260 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:03.464630 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T01:20:03.464661 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:03.464875 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T01:20:03.465171 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:04.222590 #7] INFO -- : Committing offsets: course_change/0:121 +I, [2018-08-07T01:20:04.619806 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.36 ms +I, [2018-08-07T01:20:04.619881 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:20:04.620398 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T01:20:04.620438 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:20:04.621047 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.46 ms +I, [2018-08-07T01:20:04.633187 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:20:04.633902 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-08-07T01:20:04.633946 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:20:05.043444 #7] INFO -- : Inline processing of topic course_change with 1 messages took 409.22 ms +I, [2018-08-07T01:20:05.073684 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:20:05.542679 #7] INFO -- : Committing offsets: section_change/0:192 +I, [2018-08-07T01:20:06.074820 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.65 ms +I, [2018-08-07T01:20:06.074976 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:06.075513 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T01:20:06.075593 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:06.076106 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-08-07T01:20:06.076164 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:06.080124 #7] INFO -- : Inline processing of topic section_change with 1 messages took 3.72 ms +I, [2018-08-07T01:20:06.089811 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:07.078609 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.53 ms +I, [2018-08-07T01:20:07.078663 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:20:07.078960 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T01:20:07.079075 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:20:07.079687 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.24 ms +I, [2018-08-07T01:20:07.080265 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:20:07.081288 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.73 ms +I, [2018-08-07T01:20:07.081359 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:20:07.082213 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.36 ms +I, [2018-08-07T01:20:07.082275 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:20:08.703646 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.51 ms +I, [2018-08-07T01:20:08.703743 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:08.704616 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.64 ms +I, [2018-08-07T01:20:08.947884 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:08.949303 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.1 ms +I, [2018-08-07T01:20:08.949359 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:08.961769 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.11 ms +I, [2018-08-07T01:20:08.961881 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:08.964302 #7] INFO -- : Inline processing of topic section_change with 1 messages took 2.09 ms +I, [2018-08-07T01:20:08.964384 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:08.974621 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.76 ms +I, [2018-08-07T01:20:08.974695 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:09.083725 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.49 ms +I, [2018-08-07T01:20:09.083790 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:20:09.089804 #7] INFO -- : Inline processing of topic course_change with 1 messages took 1.07 ms +I, [2018-08-07T01:20:09.102909 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:20:11.005288 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.56 ms +I, [2018-08-07T01:20:11.005348 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:11.005963 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-08-07T01:20:11.006305 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:11.006627 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T01:20:11.006659 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:11.007390 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-08-07T01:20:11.007424 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:11.007883 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T01:20:11.007917 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:11.008645 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T01:20:11.008678 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:11.030582 #7] INFO -- : Inline processing of topic section_change with 1 messages took 21.55 ms +I, [2018-08-07T01:20:11.030882 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:11.103961 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.39 ms +I, [2018-08-07T01:20:11.104013 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:20:11.104600 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.46 ms +I, [2018-08-07T01:20:11.104632 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:20:11.105122 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T01:20:11.105340 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:20:11.106497 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.99 ms +I, [2018-08-07T01:20:11.106542 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:20:11.107429 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.74 ms +I, [2018-08-07T01:20:11.107472 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:20:11.117150 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.44 ms +I, [2018-08-07T01:20:11.117241 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:20:11.117581 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T01:20:11.117884 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:20:13.052228 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.45 ms +I, [2018-08-07T01:20:13.052447 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:13.053361 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.64 ms +I, [2018-08-07T01:20:13.053399 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:13.053760 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T01:20:13.053791 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:13.054122 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T01:20:13.054153 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:13.118660 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.26 ms +I, [2018-08-07T01:20:13.118704 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:20:13.119034 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-08-07T01:20:13.119066 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:20:13.119350 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-08-07T01:20:13.119384 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:20:13.119768 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-08-07T01:20:13.119814 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:20:15.055668 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.46 ms +I, [2018-08-07T01:20:15.055941 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:15.056620 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.41 ms +I, [2018-08-07T01:20:15.056770 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:15.120999 #7] INFO -- : Committing offsets: course_change/0:144 +I, [2018-08-07T01:20:15.153867 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.28 ms +I, [2018-08-07T01:20:15.153937 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:20:15.155094 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.85 ms +I, [2018-08-07T01:20:15.155157 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:20:17.087671 #7] INFO -- : Committing offsets: section_change/0:215 +I, [2018-08-07T01:20:17.217396 #7] INFO -- : Inline processing of topic course_change with 1 messages took 1.16 ms +I, [2018-08-07T01:20:17.217615 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:20:17.221631 #7] INFO -- : Inline processing of topic course_change with 1 messages took 3.73 ms +I, [2018-08-07T01:20:17.221719 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:20:17.243017 #7] INFO -- : Inline processing of topic course_change with 1 messages took 2.11 ms +I, [2018-08-07T01:20:17.243241 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:20:17.277258 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.23 ms +I, [2018-08-07T01:20:17.279874 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:17.295705 #7] INFO -- : Inline processing of topic section_change with 1 messages took 12.97 ms +I, [2018-08-07T01:20:17.303160 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:17.391828 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.53 ms +I, [2018-08-07T01:20:17.391902 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:17.392793 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.59 ms +I, [2018-08-07T01:20:17.392860 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:17.398126 #7] INFO -- : Inline processing of topic section_change with 1 messages took 4.99 ms +I, [2018-08-07T01:20:17.398194 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:17.399329 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T01:20:17.399393 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:17.401468 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.45 ms +I, [2018-08-07T01:20:17.401625 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:17.403796 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.56 ms +I, [2018-08-07T01:20:17.404204 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:17.410555 #7] INFO -- : Inline processing of topic section_change with 1 messages took 6.03 ms +I, [2018-08-07T01:20:17.410652 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:19.259901 #7] INFO -- : Inline processing of topic course_change with 1 messages took 11.35 ms +I, [2018-08-07T01:20:19.260607 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:20:19.414048 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.86 ms +I, [2018-08-07T01:20:19.414115 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:19.414698 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T01:20:19.414767 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:19.415386 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T01:20:19.417325 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:19.417755 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T01:20:19.417810 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:19.441836 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-08-07T01:20:19.441908 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:19.442367 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T01:20:19.442421 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:19.447737 #7] INFO -- : Inline processing of topic section_change with 1 messages took 5.01 ms +I, [2018-08-07T01:20:19.448483 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:19.448947 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T01:20:19.449040 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:19.449424 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T01:20:19.449476 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:21.282135 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.24 ms +I, [2018-08-07T01:20:21.282208 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:20:21.282696 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.25 ms +I, [2018-08-07T01:20:21.282745 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:20:21.283145 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T01:20:21.283195 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:20:21.454534 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-08-07T01:20:21.454686 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:21.455178 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T01:20:21.455272 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:21.455941 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.4 ms +I, [2018-08-07T01:20:21.455996 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:21.456621 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-08-07T01:20:21.456674 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:21.457058 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T01:20:21.457104 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:21.457565 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T01:20:21.457635 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:21.458157 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-08-07T01:20:21.458205 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:21.458824 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.45 ms +I, [2018-08-07T01:20:21.458872 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:21.459420 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T01:20:21.459467 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:23.340162 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.26 ms +I, [2018-08-07T01:20:23.340372 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:20:23.340922 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T01:20:23.340973 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:20:23.341504 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.34 ms +I, [2018-08-07T01:20:23.344713 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:20:23.345276 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.24 ms +I, [2018-08-07T01:20:23.345778 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:20:23.346183 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T01:20:23.346239 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:20:23.346795 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.36 ms +I, [2018-08-07T01:20:23.346851 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:20:23.389478 #7] INFO -- : Inline processing of topic course_change with 1 messages took 20.02 ms +I, [2018-08-07T01:20:23.389569 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:20:23.390809 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-08-07T01:20:23.391058 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:20:23.391818 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.24 ms +I, [2018-08-07T01:20:23.391918 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:20:23.420084 #7] INFO -- : Inline processing of topic course_change with 1 messages took 25.73 ms +I, [2018-08-07T01:20:23.420160 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:20:23.420983 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.59 ms +I, [2018-08-07T01:20:23.421048 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:20:23.427329 #7] INFO -- : Inline processing of topic course_change with 1 messages took 4.63 ms +I, [2018-08-07T01:20:23.427404 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:20:23.427982 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-08-07T01:20:23.428045 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:20:23.435661 #7] INFO -- : Inline processing of topic course_change with 1 messages took 3.44 ms +I, [2018-08-07T01:20:23.435754 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:20:23.461696 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-08-07T01:20:23.468087 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:23.468859 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T01:20:23.468920 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:23.469264 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T01:20:23.469313 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:23.480488 #7] INFO -- : Inline processing of topic section_change with 1 messages took 10.95 ms +I, [2018-08-07T01:20:23.480566 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:23.481435 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.54 ms +I, [2018-08-07T01:20:23.481583 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:23.481974 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T01:20:23.482298 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:23.482670 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T01:20:23.482722 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:23.483232 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-08-07T01:20:23.483290 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:23.483671 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T01:20:23.483730 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:23.484239 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T01:20:23.484295 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:23.494784 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T01:20:23.494911 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:23.495642 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.49 ms +I, [2018-08-07T01:20:23.495695 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:23.496077 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T01:20:23.496122 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:25.436847 #7] INFO -- : Committing offsets: course_change/0:167 +I, [2018-08-07T01:20:25.497660 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.56 ms +I, [2018-08-07T01:20:25.497945 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:20:25.499258 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.37 ms +I, [2018-08-07T01:20:25.499384 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:20:25.500510 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.59 ms +I, [2018-08-07T01:20:25.500634 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:20:25.505005 #7] INFO -- : Inline processing of topic section_change with 1 messages took 3.83 ms +I, [2018-08-07T01:20:25.505114 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:25.505946 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.49 ms +I, [2018-08-07T01:20:25.506023 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:25.506577 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T01:20:25.506636 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:25.507551 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T01:20:25.507611 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:25.508267 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T01:20:25.508424 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:25.509054 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.41 ms +I, [2018-08-07T01:20:25.509114 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:25.509593 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T01:20:25.509651 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:25.510028 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T01:20:25.510148 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:25.510455 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T01:20:25.510500 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:27.505822 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.38 ms +I, [2018-08-07T01:20:27.505957 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:20:27.506825 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.45 ms +I, [2018-08-07T01:20:27.506895 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:20:27.507301 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T01:20:27.507349 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:20:27.509937 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.29 ms +I, [2018-08-07T01:20:27.510049 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:20:27.510464 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.23 ms +I, [2018-08-07T01:20:27.510510 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:20:27.510991 #7] INFO -- : Committing offsets: section_change/0:264 +I, [2018-08-07T01:20:27.511358 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.61 ms +I, [2018-08-07T01:20:27.511412 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:20:27.512014 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.34 ms +I, [2018-08-07T01:20:27.514020 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:20:27.514645 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.27 ms +I, [2018-08-07T01:20:27.514702 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:20:27.528843 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-08-07T01:20:27.528898 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:27.529248 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T01:20:27.529280 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:27.529697 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-08-07T01:20:27.529730 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:27.530176 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T01:20:27.530243 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:27.530602 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T01:20:27.530639 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:27.531037 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T01:20:27.531068 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:27.531799 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.47 ms +I, [2018-08-07T01:20:27.531840 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:27.532649 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.66 ms +I, [2018-08-07T01:20:27.532696 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:27.533044 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T01:20:27.533084 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:27.533399 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T01:20:27.533437 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:27.533918 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-08-07T01:20:27.533967 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:27.538857 #7] INFO -- : Inline processing of topic section_change with 1 messages took 4.69 ms +I, [2018-08-07T01:20:27.538918 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:27.539228 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T01:20:27.539259 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:27.539660 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T01:20:27.539689 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:27.540070 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T01:20:27.540100 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:27.540318 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-08-07T01:20:27.540375 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:27.540594 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-08-07T01:20:27.540625 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:27.540804 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-08-07T01:20:27.540833 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:27.541267 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T01:20:27.541298 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:27.541563 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T01:20:27.541655 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:27.541854 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T01:20:27.541882 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:27.542230 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T01:20:27.542261 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:30.049145 #7] INFO -- : Inline processing of topic course_change with 1 messages took 2.19 ms +I, [2018-08-07T01:20:30.049290 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:20:30.096860 #7] INFO -- : Inline processing of topic course_change with 1 messages took 45.75 ms +I, [2018-08-07T01:20:30.096972 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:20:30.100342 #7] INFO -- : Inline processing of topic section_change with 1 messages took 2.16 ms +I, [2018-08-07T01:20:30.100464 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:30.103942 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.64 ms +I, [2018-08-07T01:20:30.103998 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:30.104462 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T01:20:30.104498 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:30.105238 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.52 ms +I, [2018-08-07T01:20:30.105297 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:30.106561 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.64 ms +I, [2018-08-07T01:20:30.106851 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:30.108196 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.97 ms +I, [2018-08-07T01:20:30.108418 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:30.136535 #7] INFO -- : Inline processing of topic section_change with 1 messages took 7.54 ms +I, [2018-08-07T01:20:30.140212 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:30.158498 #7] INFO -- : Inline processing of topic section_change with 1 messages took 7.09 ms +I, [2018-08-07T01:20:30.254579 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:30.255036 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T01:20:30.255071 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:30.255538 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T01:20:30.255582 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:30.256319 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.58 ms +I, [2018-08-07T01:20:30.256363 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:32.258316 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.9 ms +I, [2018-08-07T01:20:32.258372 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:32.258802 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T01:20:32.258851 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:32.259369 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-08-07T01:20:32.259419 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:32.260922 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.45 ms +I, [2018-08-07T01:20:32.260979 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:32.261321 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T01:20:32.261366 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:32.261975 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T01:20:32.262025 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:34.061286 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T01:20:34.061336 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:20:34.061639 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-08-07T01:20:34.061670 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:20:34.061935 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T01:20:34.061966 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:20:34.227589 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.73 ms +I, [2018-08-07T01:20:34.227677 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:34.228410 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.4 ms +I, [2018-08-07T01:20:34.228480 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:34.228971 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T01:20:34.229036 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:34.229570 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-08-07T01:20:34.229632 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:34.230225 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-08-07T01:20:34.230276 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:34.230619 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T01:20:34.230662 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:34.233603 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T01:20:34.233658 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:34.234026 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T01:20:34.234068 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:34.234404 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T01:20:34.234448 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:36.062538 #7] INFO -- : Committing offsets: course_change/0:183 +I, [2018-08-07T01:20:36.065398 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-08-07T01:20:36.065446 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:20:36.065769 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T01:20:36.065802 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:20:36.066015 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T01:20:36.066056 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:20:36.066324 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T01:20:36.066353 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:20:36.066638 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T01:20:36.066682 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:20:36.066991 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T01:20:36.067032 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:20:36.067315 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T01:20:36.067357 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:20:36.067759 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.23 ms +I, [2018-08-07T01:20:36.067813 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:20:36.071319 #7] INFO -- : Inline processing of topic course_change with 1 messages took 3.25 ms +I, [2018-08-07T01:20:36.071400 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:20:36.071833 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T01:20:36.072057 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:20:36.236733 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.7 ms +I, [2018-08-07T01:20:36.236830 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:36.237385 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T01:20:36.237436 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:36.238085 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.46 ms +I, [2018-08-07T01:20:36.238142 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:36.239085 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-08-07T01:20:36.239167 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:36.240095 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T01:20:36.240147 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:36.240610 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T01:20:36.240667 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:36.241075 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T01:20:36.241129 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:36.241504 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T01:20:36.241554 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:36.241879 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T01:20:36.242680 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:36.243136 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T01:20:36.243187 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:38.078357 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-08-07T01:20:38.078480 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:20:38.078859 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T01:20:38.078916 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:20:38.079311 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-08-07T01:20:38.079367 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:20:38.080517 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.28 ms +I, [2018-08-07T01:20:38.080586 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:20:38.081253 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.34 ms +I, [2018-08-07T01:20:38.081322 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:20:38.081668 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T01:20:38.081716 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:20:38.082344 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T01:20:38.082397 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:20:38.082758 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-08-07T01:20:38.082807 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:20:38.086739 #7] INFO -- : Inline processing of topic course_change with 1 messages took 2.5 ms +I, [2018-08-07T01:20:38.086784 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:20:38.087263 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.32 ms +I, [2018-08-07T01:20:38.087298 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:20:38.087683 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T01:20:38.087733 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:20:38.088101 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T01:20:38.088137 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:20:38.088755 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T01:20:38.088792 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:20:38.088994 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-08-07T01:20:38.089401 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:20:38.244177 #7] INFO -- : Committing offsets: section_change/0:322 +I, [2018-08-07T01:20:38.250772 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T01:20:38.250885 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:38.251131 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T01:20:38.251161 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:38.251485 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T01:20:38.251530 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:38.251867 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T01:20:38.251913 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:38.252271 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T01:20:38.252318 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:38.252610 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T01:20:38.253209 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:38.253589 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T01:20:38.253625 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:38.254463 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-08-07T01:20:38.254524 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:38.254983 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T01:20:38.255030 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:38.257131 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.87 ms +I, [2018-08-07T01:20:38.257211 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:38.271211 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T01:20:38.271307 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:38.271805 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T01:20:38.271840 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:38.272374 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-08-07T01:20:38.272416 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:38.272727 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T01:20:38.272766 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:38.273141 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T01:20:38.273206 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:38.273577 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T01:20:38.273648 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:38.282762 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T01:20:38.282820 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:40.090675 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.5 ms +I, [2018-08-07T01:20:40.090746 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:20:40.091144 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T01:20:40.091191 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:20:40.092147 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T01:20:40.092187 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:20:40.092578 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T01:20:40.092619 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:20:40.092924 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T01:20:40.092953 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:20:40.093402 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-08-07T01:20:40.093434 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:20:40.094478 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.92 ms +I, [2018-08-07T01:20:40.094520 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:20:40.283925 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-08-07T01:20:40.284002 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:40.284393 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T01:20:40.284458 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:40.284825 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T01:20:40.284892 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:40.285241 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T01:20:40.285290 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:40.285990 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.53 ms +I, [2018-08-07T01:20:40.286067 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:40.286502 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T01:20:40.286555 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:40.287013 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T01:20:40.287064 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:40.287441 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T01:20:40.287490 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:40.287840 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T01:20:40.287884 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:40.288266 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T01:20:40.288311 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:40.288653 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T01:20:40.288698 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:40.289008 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T01:20:40.289068 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:40.289386 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T01:20:40.289433 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:40.300191 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T01:20:40.300237 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:40.300560 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T01:20:40.300604 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:40.300885 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T01:20:40.300917 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:40.301422 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T01:20:40.301494 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:40.301943 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T01:20:40.302016 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:40.302716 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-08-07T01:20:40.303070 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:40.307515 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T01:20:40.307637 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:40.308008 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T01:20:40.308047 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:40.311796 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T01:20:40.311888 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:40.312442 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T01:20:40.312534 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:40.312824 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T01:20:40.312854 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:40.313219 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T01:20:40.313251 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:40.314604 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.9 ms +I, [2018-08-07T01:20:40.314667 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:40.315000 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T01:20:40.315037 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:40.318609 #7] INFO -- : Inline processing of topic section_change with 1 messages took 2.85 ms +I, [2018-08-07T01:20:40.318674 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:40.323298 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T01:20:40.327026 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:40.327494 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T01:20:40.327539 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:40.328460 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.59 ms +I, [2018-08-07T01:20:40.328524 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:40.329324 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T01:20:40.329378 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:40.329802 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T01:20:40.329847 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:40.334268 #7] INFO -- : Inline processing of topic section_change with 1 messages took 3.07 ms +I, [2018-08-07T01:20:40.334602 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:40.335043 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T01:20:40.335085 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:40.337199 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.95 ms +I, [2018-08-07T01:20:40.337270 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:40.337772 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T01:20:40.339322 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:40.339749 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T01:20:40.339803 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:40.351610 #7] INFO -- : Inline processing of topic section_change with 1 messages took 11.44 ms +I, [2018-08-07T01:20:40.351691 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:40.352545 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.45 ms +I, [2018-08-07T01:20:40.352607 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:40.353251 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.43 ms +I, [2018-08-07T01:20:40.353296 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:42.095319 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.28 ms +I, [2018-08-07T01:20:42.095369 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:20:42.095623 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T01:20:42.095660 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:20:42.095908 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-08-07T01:20:42.095937 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:20:42.096199 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T01:20:42.096384 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:20:42.096653 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T01:20:42.096718 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:20:42.097031 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-08-07T01:20:42.097065 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:20:42.097269 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T01:20:42.097314 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:20:42.098334 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.25 ms +I, [2018-08-07T01:20:42.098396 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:20:42.356630 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.33 ms +I, [2018-08-07T01:20:42.356904 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:42.357515 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T01:20:42.357622 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:42.358683 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.52 ms +I, [2018-08-07T01:20:42.358835 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:42.359387 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T01:20:42.359419 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:42.359750 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T01:20:42.359859 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:42.360355 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T01:20:42.360386 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:42.361147 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.43 ms +I, [2018-08-07T01:20:42.361557 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:42.369204 #7] INFO -- : Inline processing of topic section_change with 1 messages took 6.61 ms +I, [2018-08-07T01:20:42.369278 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:42.369799 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-08-07T01:20:42.372537 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:42.378196 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T01:20:42.378257 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:42.378555 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T01:20:42.378594 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:42.378871 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T01:20:42.378954 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:42.379248 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T01:20:42.379283 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:42.379495 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T01:20:42.379551 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:44.158006 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.83 ms +I, [2018-08-07T01:20:44.158202 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:20:44.158898 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.3 ms +I, [2018-08-07T01:20:44.158945 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:20:44.171100 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.41 ms +I, [2018-08-07T01:20:44.171433 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:20:44.172722 #7] INFO -- : Inline processing of topic course_change with 1 messages took 1.06 ms +I, [2018-08-07T01:20:44.172781 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:20:44.173487 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.45 ms +I, [2018-08-07T01:20:44.176954 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:20:44.178290 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.25 ms +I, [2018-08-07T01:20:44.178342 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:20:44.178639 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T01:20:44.178679 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:20:44.186604 #7] INFO -- : Inline processing of topic course_change with 1 messages took 2.01 ms +I, [2018-08-07T01:20:44.186674 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:20:44.502903 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.42 ms +I, [2018-08-07T01:20:44.502984 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:44.504258 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.64 ms +I, [2018-08-07T01:20:44.504302 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:44.531510 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-08-07T01:20:44.531562 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:44.531929 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T01:20:44.531972 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:44.532480 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-08-07T01:20:44.532581 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:44.592161 #7] INFO -- : Inline processing of topic section_change with 1 messages took 42.57 ms +I, [2018-08-07T01:20:44.592289 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:44.593063 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-08-07T01:20:44.593125 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:46.187182 #7] INFO -- : Committing offsets: course_change/0:230 +I, [2018-08-07T01:20:46.190561 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.27 ms +I, [2018-08-07T01:20:46.190623 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:20:46.190938 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T01:20:46.190969 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:20:46.191157 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T01:20:46.191206 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:20:46.191386 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T01:20:46.191414 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:20:46.191712 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-08-07T01:20:46.191754 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:20:46.192580 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.57 ms +I, [2018-08-07T01:20:46.192639 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:20:46.193169 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T01:20:46.193221 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:20:46.193525 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T01:20:46.193566 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:20:46.595334 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.4 ms +I, [2018-08-07T01:20:46.595396 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:46.596086 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-08-07T01:20:46.596135 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:46.596621 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T01:20:46.596674 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:46.597020 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T01:20:46.597069 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:46.597471 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T01:20:46.597519 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:46.597893 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T01:20:46.597945 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:46.598307 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T01:20:46.598353 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:46.598762 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T01:20:46.598809 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:46.599248 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T01:20:46.599295 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:46.599615 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T01:20:46.599658 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:48.197678 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.33 ms +I, [2018-08-07T01:20:48.197774 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:20:48.198299 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.24 ms +I, [2018-08-07T01:20:48.198351 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:20:48.198797 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T01:20:48.198847 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:20:48.199278 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-08-07T01:20:48.199513 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:20:48.200032 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.28 ms +I, [2018-08-07T01:20:48.200099 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:20:48.204234 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.23 ms +I, [2018-08-07T01:20:48.204296 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:20:48.204645 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-08-07T01:20:48.204691 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:20:48.205007 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T01:20:48.205051 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:20:48.600823 #7] INFO -- : Committing offsets: section_change/0:411 +I, [2018-08-07T01:20:48.614091 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-08-07T01:20:48.614157 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:48.614464 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T01:20:48.614495 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:48.614772 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T01:20:48.614802 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:48.616923 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T01:20:48.616988 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:48.617413 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T01:20:48.617465 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:48.617870 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T01:20:48.617984 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:48.618396 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T01:20:48.618446 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:48.618826 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T01:20:48.618877 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:50.205669 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-08-07T01:20:50.205734 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:20:50.206077 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T01:20:50.206127 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:20:50.206599 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T01:20:50.206831 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:20:50.620610 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.55 ms +I, [2018-08-07T01:20:50.620747 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:50.623949 #7] INFO -- : Inline processing of topic section_change with 1 messages took 2.78 ms +I, [2018-08-07T01:20:50.624040 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:50.624487 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T01:20:50.624532 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:50.624982 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T01:20:50.625037 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:50.625506 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T01:20:50.625554 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:50.626026 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T01:20:50.626076 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:50.626401 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T01:20:50.626448 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:50.626819 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T01:20:50.626866 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:50.627311 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T01:20:50.627361 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:50.627769 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T01:20:50.627819 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:50.628178 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T01:20:50.628230 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:50.628772 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T01:20:50.628877 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:50.629397 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-08-07T01:20:50.629454 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:50.629761 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T01:20:50.629797 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:50.630113 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T01:20:50.630145 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:50.630387 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T01:20:50.630417 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:50.630637 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T01:20:50.630666 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:50.630850 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-08-07T01:20:50.630903 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:50.631085 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-08-07T01:20:50.631113 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:50.631324 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T01:20:50.631352 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:50.638296 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T01:20:50.638345 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:50.639602 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.03 ms +I, [2018-08-07T01:20:50.641728 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:50.642952 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T01:20:50.643012 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:50.643602 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T01:20:50.648014 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:50.648498 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T01:20:50.648537 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:50.648864 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T01:20:50.648896 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:50.649310 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T01:20:50.650222 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:50.651285 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-08-07T01:20:50.652840 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:50.654100 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.41 ms +I, [2018-08-07T01:20:50.654149 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:50.654523 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T01:20:50.654556 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:50.654784 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-08-07T01:20:50.654813 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:50.655071 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T01:20:50.655102 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:50.655340 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T01:20:50.655368 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:50.655598 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T01:20:50.655627 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:50.655870 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T01:20:50.655960 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:50.656148 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-08-07T01:20:50.656176 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:50.656388 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T01:20:50.656416 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:50.656704 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T01:20:50.656734 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:50.656916 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-08-07T01:20:50.656943 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:50.657172 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-08-07T01:20:50.657200 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:50.657464 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T01:20:50.657492 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:50.657673 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-08-07T01:20:50.657701 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:50.657906 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-08-07T01:20:50.657933 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:50.658196 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T01:20:50.658225 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:50.658432 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T01:20:50.658460 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:50.658638 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-08-07T01:20:50.658723 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:50.658978 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T01:20:50.659007 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:52.209449 #7] INFO -- : Inline processing of topic course_change with 1 messages took 1.44 ms +I, [2018-08-07T01:20:52.209781 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:20:52.210135 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T01:20:52.210167 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:20:52.659978 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-08-07T01:20:52.660029 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:52.660401 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T01:20:52.660431 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:52.660844 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T01:20:52.660876 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:52.661153 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T01:20:52.661183 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:52.661400 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T01:20:52.661505 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:54.210943 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.23 ms +I, [2018-08-07T01:20:54.210997 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:20:54.662926 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.54 ms +I, [2018-08-07T01:20:54.662991 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:54.663433 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T01:20:54.663465 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:54.663754 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T01:20:54.663784 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:54.664016 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T01:20:54.666081 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:54.666399 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T01:20:54.666498 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:54.666714 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T01:20:54.666743 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:54.667061 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T01:20:54.667102 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:56.214054 #7] INFO -- : Committing offsets: course_change/0:252 +I, [2018-08-07T01:20:56.220795 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.33 ms +I, [2018-08-07T01:20:56.220905 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:20:56.221222 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T01:20:56.221287 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:20:56.221603 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T01:20:56.221641 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:20:56.668233 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.42 ms +I, [2018-08-07T01:20:56.668289 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:56.668548 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T01:20:56.668635 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:56.668870 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T01:20:56.668900 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:56.669138 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T01:20:56.669166 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:56.669395 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T01:20:56.669423 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:56.669666 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T01:20:56.669694 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:56.669930 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T01:20:56.669958 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:58.229378 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.52 ms +I, [2018-08-07T01:20:58.229445 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:20:58.229833 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-08-07T01:20:58.229880 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:20:58.230154 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T01:20:58.230195 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:20:58.230546 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T01:20:58.230587 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:20:58.230927 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T01:20:58.230977 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:20:58.231306 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T01:20:58.231337 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:20:58.232375 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-08-07T01:20:58.232494 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:20:58.232870 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T01:20:58.234873 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:20:58.673923 #7] INFO -- : Committing offsets: section_change/0:485 +I, [2018-08-07T01:20:59.433705 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.6 ms +I, [2018-08-07T01:20:59.433772 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:59.434187 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T01:20:59.434230 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:59.434618 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T01:20:59.434659 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:59.437389 #7] INFO -- : Inline processing of topic section_change with 1 messages took 2.44 ms +I, [2018-08-07T01:20:59.437454 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:59.438635 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.55 ms +I, [2018-08-07T01:20:59.438687 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:59.440353 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.4 ms +I, [2018-08-07T01:20:59.440414 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:59.478454 #7] INFO -- : Inline processing of topic section_change with 1 messages took 25.66 ms +I, [2018-08-07T01:20:59.479407 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:20:59.663042 #7] INFO -- : Inline processing of topic section_change with 1 messages took 183.2 ms +I, [2018-08-07T01:20:59.663216 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:21:00.595310 #7] INFO -- : Inline processing of topic course_change with 1 messages took 3.6 ms +I, [2018-08-07T01:21:00.595390 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:21:00.596226 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.58 ms +I, [2018-08-07T01:21:00.596598 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:21:01.676071 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.52 ms +I, [2018-08-07T01:21:01.676317 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:21:13.148434 #7] INFO -- : Committing offsets: course_change/0:265 +I, [2018-08-07T01:21:13.635619 #7] INFO -- : Committing offsets: section_change/0:494 +I, [2018-08-07T01:21:15.609535 #7] INFO -- : Inline processing of topic section_change with 1 messages took 9.89 ms +I, [2018-08-07T01:21:15.609748 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:21:20.004837 #7] INFO -- : Inline processing of topic section_change with 1 messages took 56.85 ms +I, [2018-08-07T01:21:20.004942 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:21:24.395882 #7] INFO -- : Committing offsets: section_change/0:496 +I, [2018-08-07T01:21:26.851373 #7] INFO -- : Committing offsets: course_change/0:265 +I, [2018-08-07T01:21:29.732509 #7] INFO -- : Inline processing of topic section_change with 1 messages took 19.23 ms +I, [2018-08-07T01:21:29.732598 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:21:31.680529 #7] INFO -- : Inline processing of topic course_change with 1 messages took 1.43 ms +I, [2018-08-07T01:21:31.680675 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:21:31.685405 #7] INFO -- : Inline processing of topic course_change with 1 messages took 2.97 ms +I, [2018-08-07T01:21:31.685527 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:21:31.749469 #7] INFO -- : Inline processing of topic section_change with 1 messages took 6.66 ms +I, [2018-08-07T01:21:31.751633 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:21:31.759421 #7] INFO -- : Inline processing of topic section_change with 1 messages took 2.64 ms +I, [2018-08-07T01:21:31.759498 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:21:33.765201 #7] INFO -- : Inline processing of topic course_change with 1 messages took 63.66 ms +I, [2018-08-07T01:21:33.766147 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:21:33.942326 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T01:21:33.942405 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:21:33.943966 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.88 ms +I, [2018-08-07T01:21:33.944010 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:21:33.944631 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.47 ms +I, [2018-08-07T01:21:33.944663 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:21:33.944888 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T01:21:33.944918 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:21:33.959918 #7] INFO -- : Inline processing of topic course_change with 1 messages took 192.58 ms +I, [2018-08-07T01:21:33.960033 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:21:33.995455 #7] INFO -- : Inline processing of topic course_change with 1 messages took 21.81 ms +I, [2018-08-07T01:21:33.995532 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:21:33.996280 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.26 ms +I, [2018-08-07T01:21:33.996360 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:21:34.004125 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.53 ms +I, [2018-08-07T01:21:34.004268 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:21:35.982202 #7] INFO -- : Committing offsets: section_change/0:503 +I, [2018-08-07T01:21:36.154962 #7] INFO -- : Inline processing of topic section_change with 1 messages took 5.92 ms +I, [2018-08-07T01:21:36.156782 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:21:38.116979 #7] INFO -- : Committing offsets: course_change/0:272 +I, [2018-08-07T01:21:38.651846 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-08-07T01:21:38.651897 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:21:38.765028 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.39 ms +I, [2018-08-07T01:21:38.765164 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:21:38.766320 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.24 ms +I, [2018-08-07T01:21:38.766393 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:21:40.728055 #7] INFO -- : Inline processing of topic section_change with 1 messages took 69.11 ms +I, [2018-08-07T01:21:40.728179 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:21:40.729016 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.57 ms +I, [2018-08-07T01:21:40.729070 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:21:40.729891 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.56 ms +I, [2018-08-07T01:21:40.729967 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:21:40.730459 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T01:21:40.730508 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:21:40.731190 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T01:21:40.756277 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:21:40.773459 #7] INFO -- : Inline processing of topic section_change with 1 messages took 16.72 ms +I, [2018-08-07T01:21:40.773534 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:21:40.775687 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.87 ms +I, [2018-08-07T01:21:40.776432 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:21:40.865750 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.55 ms +I, [2018-08-07T01:21:40.865799 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:21:40.866082 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T01:21:40.866457 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:21:40.866837 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T01:21:40.866873 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:21:40.867356 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.32 ms +I, [2018-08-07T01:21:40.867389 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:21:40.867939 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.36 ms +I, [2018-08-07T01:21:40.867989 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:21:40.868307 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T01:21:40.868351 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:21:42.777379 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T01:21:42.777440 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:21:42.778140 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.57 ms +I, [2018-08-07T01:21:42.778182 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:21:42.783073 #7] INFO -- : Inline processing of topic section_change with 1 messages took 4.26 ms +I, [2018-08-07T01:21:42.783130 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:21:42.873190 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.78 ms +I, [2018-08-07T01:21:42.873256 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:21:42.873709 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.29 ms +I, [2018-08-07T01:21:42.876458 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:21:42.876885 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T01:21:42.877034 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:21:44.787926 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.49 ms +I, [2018-08-07T01:21:44.787997 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:21:44.788382 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T01:21:44.788620 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:21:44.788921 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T01:21:44.788964 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:21:44.789752 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.63 ms +I, [2018-08-07T01:21:44.789798 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:21:44.790859 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.87 ms +I, [2018-08-07T01:21:44.790924 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:21:44.791559 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.43 ms +I, [2018-08-07T01:21:44.791616 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:21:44.902815 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.24 ms +I, [2018-08-07T01:21:44.903713 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:21:44.904692 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.32 ms +I, [2018-08-07T01:21:44.904749 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:21:44.933723 #7] INFO -- : Inline processing of topic course_change with 1 messages took 28.26 ms +I, [2018-08-07T01:21:44.934264 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:21:44.967400 #7] INFO -- : Inline processing of topic course_change with 1 messages took 3.66 ms +I, [2018-08-07T01:21:44.967463 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:21:44.969687 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.66 ms +I, [2018-08-07T01:21:44.969783 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:21:44.987673 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.23 ms +I, [2018-08-07T01:21:44.987741 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:21:46.794399 #7] INFO -- : Committing offsets: section_change/0:521 +I, [2018-08-07T01:21:46.993890 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.29 ms +I, [2018-08-07T01:21:46.993958 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:21:49.368423 #7] INFO -- : Committing offsets: course_change/0:290 +I, [2018-08-07T01:21:49.860921 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.69 ms +I, [2018-08-07T01:21:49.861050 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:21:49.861820 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.41 ms +I, [2018-08-07T01:21:49.861881 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:21:49.862438 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-08-07T01:21:49.862493 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:21:49.862883 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T01:21:49.926850 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:21:49.927822 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.52 ms +I, [2018-08-07T01:21:49.927937 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:21:51.727455 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.61 ms +I, [2018-08-07T01:21:51.728192 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:21:51.728660 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-08-07T01:21:51.728714 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:21:51.733696 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.27 ms +I, [2018-08-07T01:21:51.735270 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:21:51.930586 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-08-07T01:21:51.930654 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:21:51.932027 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T01:21:51.932202 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:21:51.933058 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.69 ms +I, [2018-08-07T01:21:51.933106 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:21:51.934029 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.75 ms +I, [2018-08-07T01:21:51.934078 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:21:51.934392 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T01:21:51.934879 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:21:51.935284 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T01:21:51.935831 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:21:51.936488 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.43 ms +I, [2018-08-07T01:21:51.936547 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:21:51.937781 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.98 ms +I, [2018-08-07T01:21:51.937859 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:21:51.938882 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.51 ms +I, [2018-08-07T01:21:51.938929 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:21:51.939373 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T01:21:51.939406 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:21:51.940233 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.49 ms +I, [2018-08-07T01:21:51.940283 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:21:51.941181 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T01:21:51.941233 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:21:51.957896 #7] INFO -- : Inline processing of topic section_change with 1 messages took 15.93 ms +I, [2018-08-07T01:21:51.957993 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:21:51.962245 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.45 ms +I, [2018-08-07T01:21:51.962297 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:21:51.963017 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T01:21:51.963060 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:21:51.963490 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-08-07T01:21:51.963752 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:21:51.964262 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-08-07T01:21:51.964296 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:21:51.964885 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.47 ms +I, [2018-08-07T01:21:51.964918 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:21:51.965344 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-08-07T01:21:51.965374 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:21:51.973501 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T01:21:51.973550 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:21:51.974773 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.88 ms +I, [2018-08-07T01:21:51.974834 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:21:53.743136 #7] INFO -- : Inline processing of topic course_change with 1 messages took 7.08 ms +I, [2018-08-07T01:21:53.743195 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:21:53.743722 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.34 ms +I, [2018-08-07T01:21:53.744036 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:21:53.744581 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.39 ms +I, [2018-08-07T01:21:53.744631 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:21:53.746136 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.57 ms +I, [2018-08-07T01:21:53.746254 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:21:53.792412 #7] INFO -- : Inline processing of topic course_change with 1 messages took 33.32 ms +I, [2018-08-07T01:21:53.792490 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:21:53.976336 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.61 ms +I, [2018-08-07T01:21:53.976407 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:21:53.977568 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.93 ms +I, [2018-08-07T01:21:53.977616 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:21:53.979052 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.88 ms +I, [2018-08-07T01:21:53.979202 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:21:53.980649 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.5 ms +I, [2018-08-07T01:21:53.980719 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:21:53.981485 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-08-07T01:21:53.981536 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:21:55.795586 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.54 ms +I, [2018-08-07T01:21:55.795659 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:21:55.796233 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.37 ms +I, [2018-08-07T01:21:55.796283 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:21:55.797243 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.63 ms +I, [2018-08-07T01:21:55.797354 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:21:55.797954 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.34 ms +I, [2018-08-07T01:21:55.798007 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:21:55.983649 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.44 ms +I, [2018-08-07T01:21:55.983890 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:21:55.985126 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.01 ms +I, [2018-08-07T01:21:55.985353 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:21:55.991815 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.7 ms +I, [2018-08-07T01:21:55.991874 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:21:55.995824 #7] INFO -- : Inline processing of topic section_change with 1 messages took 3.66 ms +I, [2018-08-07T01:21:55.995873 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:21:55.996791 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.5 ms +I, [2018-08-07T01:21:55.996828 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:21:55.997587 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-08-07T01:21:55.997635 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:21:55.998402 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.51 ms +I, [2018-08-07T01:21:55.998436 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:21:57.799258 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.51 ms +I, [2018-08-07T01:21:57.799325 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:21:57.800401 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.73 ms +I, [2018-08-07T01:21:57.800522 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:21:57.801517 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.45 ms +I, [2018-08-07T01:21:57.801571 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:21:57.803024 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.27 ms +I, [2018-08-07T01:21:57.803097 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:21:57.804209 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.64 ms +I, [2018-08-07T01:21:57.804393 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:21:57.805757 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-08-07T01:21:57.805861 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:21:57.806468 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.23 ms +I, [2018-08-07T01:21:57.806525 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:21:58.016114 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T01:21:58.017832 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:21:58.018356 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T01:21:58.018411 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:21:58.018815 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-08-07T01:21:58.018846 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:21:58.019246 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-08-07T01:21:58.019276 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:21:58.019766 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-08-07T01:21:58.019798 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:21:58.020180 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T01:21:58.020212 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:21:58.020421 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T01:21:58.020515 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:21:59.806956 #7] INFO -- : Committing offsets: course_change/0:309 +I, [2018-08-07T01:21:59.814751 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.25 ms +I, [2018-08-07T01:21:59.814823 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:21:59.815444 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.41 ms +I, [2018-08-07T01:21:59.815501 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:21:59.815992 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T01:21:59.816094 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:21:59.816496 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T01:21:59.816537 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:21:59.816953 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.27 ms +I, [2018-08-07T01:21:59.816996 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:21:59.817339 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-08-07T01:21:59.817381 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:21:59.817676 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T01:21:59.817722 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:21:59.818110 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T01:21:59.818159 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:21:59.818574 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-08-07T01:21:59.818620 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:21:59.818944 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T01:21:59.818988 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:21:59.819266 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T01:21:59.819309 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:22:00.021664 #7] INFO -- : Committing offsets: section_change/0:566 +I, [2018-08-07T01:22:00.027478 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T01:22:00.027522 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:00.027952 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T01:22:00.027992 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:00.028575 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T01:22:00.028607 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:00.029190 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T01:22:00.029232 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:00.030203 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.66 ms +I, [2018-08-07T01:22:00.030436 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:00.031524 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.58 ms +I, [2018-08-07T01:22:00.031656 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:00.034643 #7] INFO -- : Inline processing of topic section_change with 1 messages took 2.18 ms +I, [2018-08-07T01:22:00.034918 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:00.036918 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T01:22:00.037024 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:00.042523 #7] INFO -- : Inline processing of topic section_change with 1 messages took 4.07 ms +I, [2018-08-07T01:22:00.043723 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:00.046752 #7] INFO -- : Inline processing of topic section_change with 1 messages took 2.29 ms +I, [2018-08-07T01:22:00.046839 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:00.050081 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.84 ms +I, [2018-08-07T01:22:00.050156 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:00.050695 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T01:22:00.052288 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:00.052636 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T01:22:00.052669 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:00.053030 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T01:22:00.055278 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:00.056291 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.74 ms +I, [2018-08-07T01:22:00.056364 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:00.056913 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T01:22:00.057096 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:00.057419 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T01:22:00.057464 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:00.057903 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T01:22:00.057949 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:00.063768 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T01:22:00.064057 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:00.064633 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-08-07T01:22:00.064688 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:01.895933 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.6 ms +I, [2018-08-07T01:22:01.896126 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:22:01.899045 #7] INFO -- : Inline processing of topic course_change with 1 messages took 2.66 ms +I, [2018-08-07T01:22:01.899120 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:22:02.069323 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.14 ms +I, [2018-08-07T01:22:02.073111 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:02.368399 #7] INFO -- : Inline processing of topic section_change with 1 messages took 14.68 ms +I, [2018-08-07T01:22:02.368474 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:02.369977 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.51 ms +I, [2018-08-07T01:22:02.370040 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:02.370474 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T01:22:02.370519 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:02.370862 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T01:22:02.370904 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:02.371339 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T01:22:02.371383 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:02.371905 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-08-07T01:22:02.371948 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:02.372284 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T01:22:02.372331 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:02.372882 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T01:22:02.372991 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:02.373444 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T01:22:02.373484 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:02.399954 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.41 ms +I, [2018-08-07T01:22:02.400064 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:02.405621 #7] INFO -- : Inline processing of topic section_change with 1 messages took 5.13 ms +I, [2018-08-07T01:22:02.405690 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:02.435253 #7] INFO -- : Inline processing of topic section_change with 1 messages took 2.08 ms +I, [2018-08-07T01:22:02.435366 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:02.435868 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T01:22:02.436029 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:02.453054 #7] INFO -- : Inline processing of topic section_change with 1 messages took 5.85 ms +I, [2018-08-07T01:22:02.453155 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:02.462065 #7] INFO -- : Inline processing of topic section_change with 1 messages took 6.19 ms +I, [2018-08-07T01:22:02.462237 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:02.462654 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T01:22:02.462703 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:02.463830 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T01:22:02.464205 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:02.466373 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.43 ms +I, [2018-08-07T01:22:02.466437 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:02.466836 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T01:22:02.466887 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:02.467307 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T01:22:02.467481 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:02.467911 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T01:22:02.467960 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:02.468381 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T01:22:02.468510 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:02.472142 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.74 ms +I, [2018-08-07T01:22:02.472209 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:03.863902 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-08-07T01:22:03.863961 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:22:03.864283 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T01:22:03.864314 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:22:03.864689 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T01:22:03.864726 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:22:03.864985 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T01:22:03.865032 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:22:03.865296 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T01:22:03.865370 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:22:04.438759 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-08-07T01:22:04.438830 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:04.439456 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-08-07T01:22:04.439521 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:04.439893 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T01:22:04.439924 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:04.440675 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.44 ms +I, [2018-08-07T01:22:04.448546 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:04.448973 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T01:22:04.449009 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:04.449396 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T01:22:04.449428 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:04.449718 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T01:22:04.449747 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:04.450108 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T01:22:04.450139 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:04.450413 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T01:22:04.450461 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:04.450751 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T01:22:04.450809 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:05.866072 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.25 ms +I, [2018-08-07T01:22:05.866157 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:22:05.866709 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-08-07T01:22:05.866798 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:22:05.867202 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T01:22:05.867262 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:22:05.870483 #7] INFO -- : Inline processing of topic course_change with 1 messages took 1.73 ms +I, [2018-08-07T01:22:05.870555 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:22:05.871125 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.23 ms +I, [2018-08-07T01:22:05.871185 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:22:05.875643 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-08-07T01:22:05.875846 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:22:05.877603 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.27 ms +I, [2018-08-07T01:22:05.877670 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:22:05.878184 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.3 ms +I, [2018-08-07T01:22:05.878239 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:22:05.878649 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-08-07T01:22:05.879522 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:22:06.452689 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T01:22:06.452780 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:06.453235 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T01:22:06.453351 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:06.454462 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.66 ms +I, [2018-08-07T01:22:06.454537 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:06.455339 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.59 ms +I, [2018-08-07T01:22:06.455385 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:06.458140 #7] INFO -- : Inline processing of topic section_change with 1 messages took 2.08 ms +I, [2018-08-07T01:22:06.458245 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:06.459233 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.55 ms +I, [2018-08-07T01:22:06.459297 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:06.461831 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-08-07T01:22:06.461934 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:06.467476 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.53 ms +I, [2018-08-07T01:22:06.467631 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:06.469660 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.34 ms +I, [2018-08-07T01:22:06.470576 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:06.471958 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.96 ms +I, [2018-08-07T01:22:06.472017 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:07.881151 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.31 ms +I, [2018-08-07T01:22:07.881274 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:22:07.881900 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.36 ms +I, [2018-08-07T01:22:07.881953 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:22:07.882280 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T01:22:07.882310 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:22:07.882644 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-08-07T01:22:07.882682 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:22:07.882891 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T01:22:07.882962 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:22:07.883246 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T01:22:07.885190 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:22:07.885564 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-08-07T01:22:07.885613 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:22:07.885928 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T01:22:07.885973 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:22:08.473665 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T01:22:08.473788 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:08.474193 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T01:22:08.474247 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:08.474556 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T01:22:08.474586 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:08.475943 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.41 ms +I, [2018-08-07T01:22:08.476005 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:08.476489 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T01:22:08.476543 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:08.477020 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T01:22:08.477081 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:08.480186 #7] INFO -- : Inline processing of topic section_change with 1 messages took 2.82 ms +I, [2018-08-07T01:22:08.480488 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:09.886275 #7] INFO -- : Committing offsets: course_change/0:344 +I, [2018-08-07T01:22:09.922978 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.3 ms +I, [2018-08-07T01:22:09.923058 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:22:09.923334 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-08-07T01:22:09.923364 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:22:09.923615 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T01:22:09.923645 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:22:09.923891 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T01:22:09.923920 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:22:09.924105 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T01:22:09.924134 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:22:09.924377 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-08-07T01:22:09.924406 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:22:09.924670 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T01:22:09.924708 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:22:10.487354 #7] INFO -- : Committing offsets: section_change/0:637 +I, [2018-08-07T01:22:10.509720 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.64 ms +I, [2018-08-07T01:22:10.509853 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:10.510488 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T01:22:10.510544 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:10.510993 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T01:22:10.511652 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:10.512621 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.73 ms +I, [2018-08-07T01:22:10.512734 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:10.513189 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T01:22:10.513240 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:10.513586 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T01:22:10.513620 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:10.514870 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.75 ms +I, [2018-08-07T01:22:10.514943 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:10.519374 #7] INFO -- : Inline processing of topic section_change with 1 messages took 4.07 ms +I, [2018-08-07T01:22:10.519436 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:10.519900 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T01:22:10.519958 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:10.520329 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T01:22:10.520365 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:10.520711 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T01:22:10.520747 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:10.520978 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T01:22:10.521023 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:10.521424 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T01:22:10.521475 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:10.521914 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T01:22:10.521964 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:10.522373 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T01:22:10.522855 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:10.539727 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T01:22:10.539796 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:10.540134 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T01:22:10.540234 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:10.540721 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T01:22:10.540778 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:10.541277 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T01:22:10.541398 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:10.541851 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T01:22:10.542001 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:10.542418 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T01:22:10.543412 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:10.543992 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T01:22:10.544049 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:10.544417 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T01:22:10.544464 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:10.545821 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T01:22:10.546031 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:10.548662 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T01:22:10.557453 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:10.557900 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T01:22:10.558026 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:10.558351 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T01:22:10.558385 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:12.690299 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.4 ms +I, [2018-08-07T01:22:12.690374 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:12.690875 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T01:22:12.690954 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:12.691504 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-08-07T01:22:12.691552 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:12.691924 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T01:22:12.697601 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:12.698103 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T01:22:12.698162 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:12.698613 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T01:22:12.698670 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:12.933823 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.23 ms +I, [2018-08-07T01:22:12.933941 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:22:12.934593 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.24 ms +I, [2018-08-07T01:22:12.934640 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:22:14.699760 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T01:22:14.699846 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:14.700308 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T01:22:14.700359 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:14.700895 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T01:22:14.700952 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:14.951461 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.23 ms +I, [2018-08-07T01:22:14.951535 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:22:14.952087 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T01:22:14.952136 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:22:16.709852 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-08-07T01:22:16.709944 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:16.710574 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-08-07T01:22:16.710634 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:16.711009 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T01:22:16.711045 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:16.711354 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T01:22:16.711388 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:16.711810 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-08-07T01:22:16.711850 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:16.954453 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.34 ms +I, [2018-08-07T01:22:16.954525 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:22:16.955051 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T01:22:16.955104 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:22:16.955454 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T01:22:16.955507 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:22:16.955907 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T01:22:16.955961 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:22:18.712965 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.63 ms +I, [2018-08-07T01:22:18.713130 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:18.714246 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.75 ms +I, [2018-08-07T01:22:18.714313 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:18.715472 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.9 ms +I, [2018-08-07T01:22:18.715537 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:18.715993 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T01:22:18.716057 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:18.716526 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T01:22:18.716581 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:18.716926 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T01:22:18.717017 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:18.717435 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T01:22:18.717594 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:18.721909 #7] INFO -- : Inline processing of topic section_change with 1 messages took 3.52 ms +I, [2018-08-07T01:22:18.721999 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:18.722732 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.5 ms +I, [2018-08-07T01:22:18.722791 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:18.724989 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.95 ms +I, [2018-08-07T01:22:18.725069 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:18.725987 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.58 ms +I, [2018-08-07T01:22:18.726029 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:18.732630 #7] INFO -- : Inline processing of topic section_change with 1 messages took 6.2 ms +I, [2018-08-07T01:22:18.732748 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:18.735984 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T01:22:18.736037 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:18.738807 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.83 ms +I, [2018-08-07T01:22:18.738915 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:18.739398 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T01:22:18.739472 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:18.957403 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.51 ms +I, [2018-08-07T01:22:18.957612 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:22:18.958269 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T01:22:18.958307 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:22:18.958757 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T01:22:18.958902 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:22:18.959388 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.31 ms +I, [2018-08-07T01:22:18.959425 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:22:18.959825 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-08-07T01:22:18.959874 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:22:20.740205 #7] INFO -- : Committing offsets: section_change/0:693 +I, [2018-08-07T01:22:20.821129 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-08-07T01:22:20.821200 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:20.821657 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T01:22:20.821711 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:20.822073 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T01:22:20.822140 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:20.822506 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T01:22:20.822559 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:20.834058 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.91 ms +I, [2018-08-07T01:22:20.845834 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:20.846411 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-08-07T01:22:20.846485 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:20.857074 #7] INFO -- : Inline processing of topic section_change with 1 messages took 10.28 ms +I, [2018-08-07T01:22:20.857185 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:20.858291 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-08-07T01:22:20.860569 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:21.005091 #7] INFO -- : Committing offsets: course_change/0:364 +I, [2018-08-07T01:22:21.059047 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.3 ms +I, [2018-08-07T01:22:21.059123 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:22:21.059658 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.23 ms +I, [2018-08-07T01:22:21.059746 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:22:21.063190 #7] INFO -- : Inline processing of topic course_change with 1 messages took 2.57 ms +I, [2018-08-07T01:22:21.063392 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:22:21.065119 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.44 ms +I, [2018-08-07T01:22:21.065189 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:22:22.883795 #7] INFO -- : Inline processing of topic section_change with 1 messages took 4.11 ms +I, [2018-08-07T01:22:22.883891 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:22.885586 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T01:22:22.885973 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:22.887746 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T01:22:22.887857 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:22.888381 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T01:22:22.888426 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:22.889320 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T01:22:22.889384 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:22.890419 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T01:22:22.890473 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:22.891009 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-08-07T01:22:22.891055 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:22.891503 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T01:22:22.891553 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:22.892673 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.94 ms +I, [2018-08-07T01:22:22.893263 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:22.893656 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T01:22:22.893771 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:22.894205 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T01:22:22.894249 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:23.136471 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.53 ms +I, [2018-08-07T01:22:23.136599 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:22:24.895477 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-08-07T01:22:24.895553 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:24.897592 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.78 ms +I, [2018-08-07T01:22:24.897678 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:24.898258 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-08-07T01:22:24.898335 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:24.899172 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-08-07T01:22:24.907304 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:25.141835 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.24 ms +I, [2018-08-07T01:22:25.141904 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:22:26.912677 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.59 ms +I, [2018-08-07T01:22:26.912809 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:26.913936 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T01:22:26.914297 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:26.914813 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-08-07T01:22:26.914864 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:27.158477 #7] INFO -- : Inline processing of topic course_change with 1 messages took 8.44 ms +I, [2018-08-07T01:22:27.158608 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:22:27.159799 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.32 ms +I, [2018-08-07T01:22:27.159889 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:22:27.160614 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.49 ms +I, [2018-08-07T01:22:27.160669 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:22:29.124668 #7] INFO -- : Inline processing of topic section_change with 1 messages took 15.8 ms +I, [2018-08-07T01:22:29.124748 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:29.167378 #7] INFO -- : Inline processing of topic section_change with 1 messages took 41.87 ms +I, [2018-08-07T01:22:29.167640 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:29.168359 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-08-07T01:22:29.168409 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:22:29.168849 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.27 ms +I, [2018-08-07T01:22:29.168899 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:22:31.168184 #7] INFO -- : Committing offsets: section_change/0:721 +I, [2018-08-07T01:22:31.169326 #7] INFO -- : Committing offsets: course_change/0:375 +I, [2018-08-07T01:22:31.202394 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-08-07T01:22:31.202452 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:22:31.202846 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-08-07T01:22:31.202931 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:22:31.203337 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T01:22:31.203389 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:22:31.203796 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.23 ms +I, [2018-08-07T01:22:31.203851 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:22:31.204326 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.27 ms +I, [2018-08-07T01:22:31.204377 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:22:31.204719 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T01:22:31.204771 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:22:31.210771 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.45 ms +I, [2018-08-07T01:22:31.210835 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:31.211309 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T01:22:31.211358 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:31.211661 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T01:22:31.211699 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:31.212501 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T01:22:31.212582 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:31.213116 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-08-07T01:22:31.213173 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:31.213961 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.51 ms +I, [2018-08-07T01:22:31.214135 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:31.214769 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.42 ms +I, [2018-08-07T01:22:31.214827 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:33.185378 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-08-07T01:22:33.185427 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:22:33.185740 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T01:22:33.185772 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:22:33.186018 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T01:22:33.186047 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:22:33.186242 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-08-07T01:22:33.186271 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:22:33.186609 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T01:22:33.186638 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:22:33.187065 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.27 ms +I, [2018-08-07T01:22:33.187100 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:22:33.188089 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-08-07T01:22:33.188146 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:33.188539 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T01:22:33.188582 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:33.189642 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-08-07T01:22:33.189694 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:33.190091 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T01:22:33.190159 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:33.190718 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T01:22:33.190751 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:33.191007 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T01:22:33.193718 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:35.187799 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T01:22:35.187854 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:22:35.188359 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.23 ms +I, [2018-08-07T01:22:35.188400 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:22:35.194625 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-08-07T01:22:35.194818 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:35.195272 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T01:22:35.195308 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:35.195529 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T01:22:35.195655 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:35.195925 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T01:22:35.195958 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:35.196247 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T01:22:35.198681 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:35.199046 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T01:22:35.199078 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:35.199327 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T01:22:35.199446 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:35.199649 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T01:22:35.199678 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:35.200011 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T01:22:35.200051 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:35.200349 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T01:22:35.200394 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:35.200817 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T01:22:35.201017 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:35.201750 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.41 ms +I, [2018-08-07T01:22:35.201808 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:35.202305 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T01:22:35.202360 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:37.204482 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.45 ms +I, [2018-08-07T01:22:37.204569 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:37.205760 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.45 ms +I, [2018-08-07T01:22:37.205832 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:37.206443 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-08-07T01:22:37.206510 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:37.207496 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.53 ms +I, [2018-08-07T01:22:37.207573 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:37.208451 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.52 ms +I, [2018-08-07T01:22:37.208522 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:39.189663 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.25 ms +I, [2018-08-07T01:22:39.189711 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:22:39.189952 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T01:22:39.189982 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:22:39.209663 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T01:22:39.209717 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:39.210214 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T01:22:39.210246 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:39.210830 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.42 ms +I, [2018-08-07T01:22:39.210867 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:39.211111 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T01:22:39.211188 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:39.211406 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T01:22:39.211483 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:39.211779 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T01:22:39.211808 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:39.212087 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T01:22:39.212116 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:41.212407 #7] INFO -- : Committing offsets: section_change/0:759 +I, [2018-08-07T01:22:41.219469 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-08-07T01:22:41.219861 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:41.220263 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T01:22:41.220305 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:41.221491 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.04 ms +I, [2018-08-07T01:22:41.221585 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:41.222616 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T01:22:41.222666 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:41.223075 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T01:22:41.223115 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:41.223453 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T01:22:41.223504 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:41.226111 #7] INFO -- : Inline processing of topic section_change with 1 messages took 2.4 ms +I, [2018-08-07T01:22:41.228716 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:43.190638 #7] INFO -- : Committing offsets: course_change/0:391 +I, [2018-08-07T01:22:43.194083 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.26 ms +I, [2018-08-07T01:22:43.194127 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:22:43.230455 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T01:22:43.231080 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:43.231758 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-08-07T01:22:43.231809 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:43.232334 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-08-07T01:22:43.232387 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:43.232833 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T01:22:43.232873 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:43.233168 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T01:22:43.233198 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:43.233902 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.58 ms +I, [2018-08-07T01:22:43.233948 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:43.234728 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.62 ms +I, [2018-08-07T01:22:43.234786 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:45.194965 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.25 ms +I, [2018-08-07T01:22:45.195020 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:22:45.235752 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-08-07T01:22:45.235823 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:45.236357 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T01:22:45.236392 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:45.236691 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T01:22:45.236723 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:45.236996 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T01:22:45.237025 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:45.237286 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T01:22:45.237314 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:45.237578 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T01:22:45.237607 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:45.237871 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T01:22:45.237899 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:45.238618 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T01:22:45.239020 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:47.196040 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-08-07T01:22:47.196108 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:22:47.240902 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-08-07T01:22:47.240962 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:47.241379 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T01:22:47.241416 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:47.241705 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T01:22:47.241735 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:47.242056 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T01:22:47.242086 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:47.242338 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T01:22:47.242366 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:47.242797 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T01:22:47.242881 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:49.197179 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-08-07T01:22:49.197230 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:22:49.197533 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T01:22:49.197565 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:22:49.197805 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T01:22:49.197836 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:22:49.198143 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T01:22:49.198217 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:22:49.198412 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T01:22:49.198446 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:22:49.198833 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T01:22:49.198868 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:22:49.199164 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T01:22:49.199194 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:22:49.244112 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-08-07T01:22:49.244187 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:49.244560 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T01:22:49.244693 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:49.245663 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-08-07T01:22:49.245700 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:49.247133 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.06 ms +I, [2018-08-07T01:22:49.247183 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:49.248042 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.47 ms +I, [2018-08-07T01:22:49.251367 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:49.257337 #7] INFO -- : Inline processing of topic section_change with 1 messages took 5.46 ms +I, [2018-08-07T01:22:49.257440 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:49.258035 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-08-07T01:22:49.258091 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:51.200878 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.45 ms +I, [2018-08-07T01:22:51.200993 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:22:51.201669 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T01:22:51.201704 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:22:51.202081 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T01:22:51.202117 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:22:51.202424 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T01:22:51.202478 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:22:51.202795 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T01:22:51.202875 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:22:51.203341 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T01:22:51.203379 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:22:51.203744 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T01:22:51.203777 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:22:51.258741 #7] INFO -- : Committing offsets: section_change/0:794 +I, [2018-08-07T01:22:51.266373 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-08-07T01:22:51.266442 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:51.266791 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T01:22:51.266869 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:51.267199 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T01:22:51.267239 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:51.267640 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T01:22:51.268098 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:51.268692 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T01:22:51.268744 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:51.269352 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T01:22:51.269391 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:51.269768 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T01:22:51.269821 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:51.270228 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T01:22:51.270273 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:51.270673 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T01:22:51.270722 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:53.204175 #7] INFO -- : Committing offsets: course_change/0:408 +I, [2018-08-07T01:22:53.208165 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T01:22:53.208209 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:22:53.208433 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T01:22:53.208463 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:22:53.208815 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T01:22:53.208847 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:22:53.209098 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T01:22:53.209127 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:22:53.209400 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T01:22:53.209435 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:22:53.209667 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T01:22:53.209697 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:22:53.209885 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-08-07T01:22:53.209950 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:22:53.210219 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T01:22:53.210249 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:22:53.274676 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.72 ms +I, [2018-08-07T01:22:53.274745 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:53.275174 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T01:22:53.275220 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:53.276231 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-08-07T01:22:53.276282 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:53.276680 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T01:22:53.276768 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:53.293273 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.52 ms +I, [2018-08-07T01:22:53.293544 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:53.305865 #7] INFO -- : Inline processing of topic section_change with 1 messages took 12.08 ms +I, [2018-08-07T01:22:53.305941 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:53.306627 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T01:22:53.306677 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:53.315147 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-08-07T01:22:53.315207 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:53.316512 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.43 ms +I, [2018-08-07T01:22:53.316634 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:55.210950 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-08-07T01:22:55.211584 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:22:55.211889 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T01:22:55.211959 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:22:55.212177 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-08-07T01:22:55.212207 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:22:55.212624 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.23 ms +I, [2018-08-07T01:22:55.212682 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:22:55.213044 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T01:22:55.213077 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:22:55.213303 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T01:22:55.213333 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:22:55.213546 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T01:22:55.213576 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:22:55.317980 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-08-07T01:22:55.318070 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:55.318383 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T01:22:55.318414 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:55.318710 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T01:22:55.318740 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:55.319000 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T01:22:55.319030 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:55.319333 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T01:22:55.319363 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:55.319615 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T01:22:55.319653 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:55.319990 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T01:22:55.320021 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:57.220091 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.61 ms +I, [2018-08-07T01:22:57.220825 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:22:57.249092 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.47 ms +I, [2018-08-07T01:22:57.249228 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:22:57.250176 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.49 ms +I, [2018-08-07T01:22:57.250234 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:22:57.250708 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.23 ms +I, [2018-08-07T01:22:57.250768 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:22:57.252613 #7] INFO -- : Inline processing of topic course_change with 1 messages took 1.6 ms +I, [2018-08-07T01:22:57.252678 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:22:57.253822 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.63 ms +I, [2018-08-07T01:22:57.253903 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:22:57.254676 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.24 ms +I, [2018-08-07T01:22:57.254745 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:22:57.257597 #7] INFO -- : Inline processing of topic course_change with 1 messages took 1.02 ms +I, [2018-08-07T01:22:57.257671 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:22:57.258617 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.7 ms +I, [2018-08-07T01:22:57.262704 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:22:57.279393 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.27 ms +I, [2018-08-07T01:22:57.279448 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:22:57.280115 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.38 ms +I, [2018-08-07T01:22:57.280496 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:22:57.320806 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T01:22:57.320857 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:57.321116 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T01:22:57.321147 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:57.321361 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T01:22:57.321420 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:57.321626 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T01:22:57.321654 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:57.321908 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T01:22:57.321936 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:57.322191 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T01:22:57.322220 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:57.322472 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T01:22:57.322500 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:57.322752 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T01:22:57.322781 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:57.323012 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T01:22:57.323040 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:57.323233 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T01:22:57.323436 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:57.323656 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T01:22:57.323684 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:59.284093 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.31 ms +I, [2018-08-07T01:22:59.284162 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:22:59.286728 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T01:22:59.286784 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:22:59.287150 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T01:22:59.287182 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:22:59.287377 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T01:22:59.287442 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:22:59.287627 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T01:22:59.287656 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:22:59.288005 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-08-07T01:22:59.288057 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:22:59.325133 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-08-07T01:22:59.325333 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:59.325732 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T01:22:59.326803 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:59.327600 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T01:22:59.327883 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:59.330233 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T01:22:59.330291 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:59.330690 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T01:22:59.330739 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:59.331045 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T01:22:59.331087 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:59.331906 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T01:22:59.332060 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:59.332474 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T01:22:59.332525 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:59.332878 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T01:22:59.332927 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:59.333222 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T01:22:59.333269 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:59.333694 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T01:22:59.333728 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:59.334272 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T01:22:59.334322 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:59.334663 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T01:22:59.334770 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:59.335132 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T01:22:59.335201 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:59.338085 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.52 ms +I, [2018-08-07T01:22:59.338147 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:59.338531 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T01:22:59.338582 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:59.338902 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T01:22:59.338947 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:59.339323 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T01:22:59.339373 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:59.346832 #7] INFO -- : Inline processing of topic section_change with 1 messages took 3.06 ms +I, [2018-08-07T01:22:59.346905 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:59.347429 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-08-07T01:22:59.347482 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:59.347989 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-08-07T01:22:59.348040 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:59.349215 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T01:22:59.349499 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:59.350021 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T01:22:59.350074 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:59.350416 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T01:22:59.350527 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:59.350821 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T01:22:59.350870 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:59.351229 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T01:22:59.351274 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:59.352195 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T01:22:59.352256 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:59.352784 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T01:22:59.352956 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:59.353322 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T01:22:59.353368 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:59.354202 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-08-07T01:22:59.354252 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:59.354713 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T01:22:59.354763 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:59.355123 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T01:22:59.355574 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:59.355898 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T01:22:59.355939 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:59.356230 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T01:22:59.356268 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:59.356936 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T01:22:59.356976 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:59.357270 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T01:22:59.357727 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:59.358012 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T01:22:59.358051 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:59.358607 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T01:22:59.358753 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:59.359244 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-08-07T01:22:59.359291 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:59.359848 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-08-07T01:22:59.359895 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:59.360191 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T01:22:59.360268 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:59.360776 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T01:22:59.360827 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:59.361167 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T01:22:59.361217 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:59.361789 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.4 ms +I, [2018-08-07T01:22:59.361841 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:59.362195 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T01:22:59.362242 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:59.362551 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T01:22:59.365299 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:59.365810 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T01:22:59.365861 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:59.366173 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T01:22:59.366223 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:22:59.366581 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T01:22:59.366768 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:01.289218 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.56 ms +I, [2018-08-07T01:23:01.289316 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:23:01.289608 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T01:23:01.289640 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:23:01.289852 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T01:23:01.289880 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:23:01.290092 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T01:23:01.290156 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:23:01.290575 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T01:23:01.290618 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:23:01.367198 #7] INFO -- : Committing offsets: section_change/0:879 +I, [2018-08-07T01:23:01.370291 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T01:23:01.370335 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:01.370575 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T01:23:01.370605 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:01.370956 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T01:23:01.371001 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:01.371237 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T01:23:01.371267 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:01.371482 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T01:23:01.371510 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:01.371808 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T01:23:01.371838 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:01.372055 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T01:23:01.372082 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:01.372287 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T01:23:01.372315 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:01.372508 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T01:23:01.372535 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:01.372733 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-08-07T01:23:01.372761 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:01.372959 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-08-07T01:23:01.373005 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:01.373194 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T01:23:01.373222 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:01.373424 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T01:23:01.373453 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:01.373651 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T01:23:01.375492 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:01.375896 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T01:23:01.375959 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:01.376233 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T01:23:01.376269 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:01.376531 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T01:23:01.376565 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:01.376839 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T01:23:01.376867 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:01.377100 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T01:23:01.377130 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:01.377343 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T01:23:01.377381 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:01.377608 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T01:23:01.377657 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:01.381180 #7] INFO -- : Inline processing of topic section_change with 1 messages took 2.87 ms +I, [2018-08-07T01:23:01.381262 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:01.382091 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-08-07T01:23:01.382139 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:01.384402 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.64 ms +I, [2018-08-07T01:23:01.384544 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:01.385398 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.52 ms +I, [2018-08-07T01:23:01.385462 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:01.385921 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T01:23:01.385995 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:01.387510 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T01:23:01.387575 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:01.387977 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T01:23:01.388040 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:01.389345 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.03 ms +I, [2018-08-07T01:23:01.389408 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:01.389803 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T01:23:01.389850 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:01.391303 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T01:23:01.391346 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:01.391773 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T01:23:01.391905 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:01.392375 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T01:23:01.392440 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:01.392947 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T01:23:01.392996 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:01.393239 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T01:23:01.393276 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:01.393520 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T01:23:01.393555 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:01.395135 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.43 ms +I, [2018-08-07T01:23:01.395190 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:01.395492 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T01:23:01.395639 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:01.404128 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.47 ms +I, [2018-08-07T01:23:01.404455 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:01.405039 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T01:23:01.405091 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:01.405579 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T01:23:01.405626 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:01.405977 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T01:23:01.406027 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:03.256651 #7] INFO -- : Committing offsets: course_change/0:445 +I, [2018-08-07T01:23:03.270368 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T01:23:03.270417 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:23:03.270690 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T01:23:03.270722 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:23:03.270970 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T01:23:03.271000 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:23:03.271203 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T01:23:03.271231 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:23:03.271450 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T01:23:03.271479 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:23:03.271704 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T01:23:03.271732 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:23:03.371445 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T01:23:03.371494 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:03.371776 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T01:23:03.373211 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:03.373551 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T01:23:03.373584 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:03.373878 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T01:23:03.373959 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:03.374182 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T01:23:03.374211 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:03.374456 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T01:23:03.374485 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:03.377508 #7] INFO -- : Inline processing of topic section_change with 1 messages took 2.85 ms +I, [2018-08-07T01:23:03.377597 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:03.378318 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-08-07T01:23:03.378372 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:03.378779 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T01:23:03.378828 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:05.272481 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.24 ms +I, [2018-08-07T01:23:05.272533 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:23:05.272939 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T01:23:05.272968 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:23:05.273168 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T01:23:05.273197 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:23:05.273417 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T01:23:05.273446 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:23:05.273659 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T01:23:05.273687 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:23:05.273880 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T01:23:05.273908 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:23:05.274106 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T01:23:05.274128 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:23:05.274312 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T01:23:05.274340 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:23:05.379837 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-08-07T01:23:05.379900 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:05.380223 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T01:23:05.380332 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:05.380722 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T01:23:05.380790 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:05.381102 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T01:23:05.381134 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:05.382745 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.48 ms +I, [2018-08-07T01:23:05.382797 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:05.383634 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T01:23:05.383675 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:05.384030 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T01:23:05.384063 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:05.384310 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T01:23:05.384341 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:07.275519 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.24 ms +I, [2018-08-07T01:23:07.276823 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:23:07.277311 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-08-07T01:23:07.277366 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:23:07.277678 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T01:23:07.277708 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:23:07.277920 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T01:23:07.277948 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:23:07.385011 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T01:23:07.385061 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:07.385390 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T01:23:07.385425 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:07.385711 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T01:23:07.385765 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:07.386014 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T01:23:07.386049 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:07.386267 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T01:23:07.386489 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:07.387402 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-08-07T01:23:07.387444 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:07.387717 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T01:23:07.387746 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:09.279769 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.3 ms +I, [2018-08-07T01:23:09.279879 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:23:09.280416 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.28 ms +I, [2018-08-07T01:23:09.281637 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:23:09.388575 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-08-07T01:23:09.388652 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:09.389571 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.7 ms +I, [2018-08-07T01:23:09.389770 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:09.390593 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-08-07T01:23:09.390722 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:09.393941 #7] INFO -- : Inline processing of topic section_change with 1 messages took 2.44 ms +I, [2018-08-07T01:23:09.394300 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:09.395801 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-08-07T01:23:09.395848 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:09.396220 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T01:23:09.396261 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:11.292260 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.79 ms +I, [2018-08-07T01:23:11.295032 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:23:11.297642 #7] INFO -- : Inline processing of topic course_change with 1 messages took 2.35 ms +I, [2018-08-07T01:23:11.297689 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:23:11.298009 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T01:23:11.298042 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:23:11.298320 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T01:23:11.298352 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:23:11.298590 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-08-07T01:23:11.298633 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:23:11.396827 #7] INFO -- : Committing offsets: section_change/0:951 +I, [2018-08-07T01:23:11.406279 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.47 ms +I, [2018-08-07T01:23:11.406373 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:11.407001 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-08-07T01:23:11.407064 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:11.407847 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T01:23:11.407896 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:11.408303 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T01:23:11.408355 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:11.408825 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T01:23:11.408870 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:11.409218 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T01:23:11.409255 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:13.309265 #7] INFO -- : Committing offsets: course_change/0:470 +I, [2018-08-07T01:23:13.445765 #7] INFO -- : Inline processing of topic section_change with 1 messages took 2.62 ms +I, [2018-08-07T01:23:13.445883 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:13.447116 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.76 ms +I, [2018-08-07T01:23:13.447199 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:13.548560 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.39 ms +I, [2018-08-07T01:23:13.548627 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:23:15.450912 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.36 ms +I, [2018-08-07T01:23:15.451243 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:15.453163 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.97 ms +I, [2018-08-07T01:23:15.453238 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:15.459662 #7] INFO -- : Inline processing of topic section_change with 1 messages took 5.45 ms +I, [2018-08-07T01:23:15.459738 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:15.466169 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.54 ms +I, [2018-08-07T01:23:15.466225 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:15.550876 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.74 ms +I, [2018-08-07T01:23:15.551240 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:23:15.552617 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.94 ms +I, [2018-08-07T01:23:15.552768 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:23:15.553556 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.23 ms +I, [2018-08-07T01:23:15.553687 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:23:15.554308 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.4 ms +I, [2018-08-07T01:23:15.554353 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:23:17.467239 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-08-07T01:23:17.467289 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:17.467740 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T01:23:17.467780 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:17.468206 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T01:23:17.470261 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:17.470658 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T01:23:17.470699 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:17.470956 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T01:23:17.470985 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:17.471260 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T01:23:17.471315 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:17.471575 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T01:23:17.471641 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:17.554983 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-08-07T01:23:17.556050 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:23:17.556412 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T01:23:17.556446 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:23:17.556697 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T01:23:17.556732 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:23:17.556959 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T01:23:17.556991 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:23:17.557242 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T01:23:17.557272 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:23:17.557478 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T01:23:17.557525 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:23:19.473360 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.19 ms +I, [2018-08-07T01:23:19.473478 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:19.474401 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.5 ms +I, [2018-08-07T01:23:19.474453 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:19.474844 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T01:23:19.474881 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:19.475270 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T01:23:19.475304 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:19.475550 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T01:23:19.475670 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:19.475896 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T01:23:19.475925 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:19.476211 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T01:23:19.476240 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:19.476523 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T01:23:19.476552 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:19.558399 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.26 ms +I, [2018-08-07T01:23:19.558472 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:23:19.558932 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-08-07T01:23:19.558971 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:23:19.559317 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T01:23:19.559350 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:23:19.559605 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T01:23:19.559650 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:23:19.559994 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T01:23:19.560037 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:23:19.560302 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T01:23:19.560337 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:23:21.477054 #7] INFO -- : Committing offsets: section_change/0:978 +I, [2018-08-07T01:23:21.481340 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T01:23:21.481448 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:21.481695 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T01:23:21.481725 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:21.481953 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-08-07T01:23:21.481982 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:21.482295 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T01:23:21.482334 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:21.482624 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T01:23:21.482655 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:21.482918 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T01:23:21.483079 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:21.483346 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T01:23:21.483374 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:21.485330 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T01:23:21.485367 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:21.561004 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T01:23:21.561110 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:23:21.561311 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-08-07T01:23:21.561341 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:23:21.561582 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T01:23:21.561612 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:23:21.561817 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T01:23:21.561846 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:23:21.562349 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.37 ms +I, [2018-08-07T01:23:21.562397 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:23:21.562987 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-08-07T01:23:21.563023 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:23:21.563262 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T01:23:21.563292 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:23:23.486962 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.44 ms +I, [2018-08-07T01:23:23.487022 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:23.487365 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T01:23:23.488828 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:23.489328 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-08-07T01:23:23.489364 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:23.490148 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.64 ms +I, [2018-08-07T01:23:23.490190 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:23.490780 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.44 ms +I, [2018-08-07T01:23:23.490820 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:23.563788 #7] INFO -- : Committing offsets: course_change/0:494 +I, [2018-08-07T01:23:23.569187 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.27 ms +I, [2018-08-07T01:23:23.569232 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:23:23.569448 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-08-07T01:23:23.569479 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:23:23.569710 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T01:23:23.569739 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:23:23.570015 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T01:23:23.570044 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:23:23.570268 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T01:23:23.570297 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:23:23.570491 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-08-07T01:23:23.570520 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:23:25.491460 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T01:23:25.491509 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:25.491830 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T01:23:25.491860 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:25.492156 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T01:23:25.492187 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:25.492386 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T01:23:25.492469 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:25.492678 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T01:23:25.492707 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:25.493180 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T01:23:25.493312 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:25.493835 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T01:23:25.493872 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:25.494137 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T01:23:25.494165 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:25.571143 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T01:23:25.571190 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:23:25.571415 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T01:23:25.571444 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:23:25.571649 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T01:23:25.571677 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:23:25.571858 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T01:23:25.571902 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:23:25.572083 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T01:23:25.573753 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:23:25.574051 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T01:23:25.574082 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:23:25.574298 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T01:23:25.574327 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:23:27.495487 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.65 ms +I, [2018-08-07T01:23:27.495618 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:27.496651 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.76 ms +I, [2018-08-07T01:23:27.496710 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:27.497177 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T01:23:27.497225 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:27.497776 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-08-07T01:23:27.497836 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:27.498393 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-08-07T01:23:27.498450 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:27.498893 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T01:23:27.498940 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:27.499250 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T01:23:27.499284 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:27.499572 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T01:23:27.499602 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:27.575987 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.23 ms +I, [2018-08-07T01:23:27.576065 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:23:27.576413 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T01:23:27.576479 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:23:27.576826 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T01:23:27.576906 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:23:27.577209 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T01:23:27.578282 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:23:27.578737 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-08-07T01:23:27.578868 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:23:27.579222 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T01:23:27.579264 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:23:27.579544 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T01:23:27.579574 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:23:27.579789 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T01:23:27.579845 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:23:29.500334 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T01:23:29.500416 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:29.500623 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T01:23:29.500652 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:29.500866 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T01:23:29.500894 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:29.501106 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T01:23:29.501134 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:29.501313 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-08-07T01:23:29.501340 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:29.501558 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-08-07T01:23:29.501585 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:29.501787 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T01:23:29.501816 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:29.502031 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T01:23:29.502059 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:29.502237 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-08-07T01:23:29.502265 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:29.502476 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-08-07T01:23:29.502502 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:29.503203 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T01:23:29.503256 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:29.503657 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T01:23:29.503712 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:29.504000 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T01:23:29.504033 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:29.505784 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T01:23:29.505823 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:29.506096 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T01:23:29.506128 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:29.506320 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-08-07T01:23:29.506394 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:29.506577 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-08-07T01:23:29.506606 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:29.506862 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T01:23:29.506894 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:29.507128 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T01:23:29.507156 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:29.507343 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-08-07T01:23:29.507374 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:29.507734 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T01:23:29.507784 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:29.508144 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T01:23:29.508193 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:29.508551 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T01:23:29.508600 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:29.508898 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T01:23:29.508946 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:29.509294 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T01:23:29.509342 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:29.509675 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T01:23:29.509723 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:29.510056 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T01:23:29.510105 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:29.510402 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T01:23:29.510450 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:29.510790 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T01:23:29.510839 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:29.511168 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T01:23:29.511216 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:29.511542 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T01:23:29.511592 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:29.511843 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T01:23:29.511874 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:29.514107 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T01:23:29.514163 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:29.515332 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.44 ms +I, [2018-08-07T01:23:29.518606 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:29.519275 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T01:23:29.519601 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:29.527739 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.18 ms +I, [2018-08-07T01:23:29.527789 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:29.528101 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T01:23:29.528133 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:29.528422 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T01:23:29.528452 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:29.528956 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-08-07T01:23:29.529021 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:29.530054 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T01:23:29.530092 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:29.530675 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.45 ms +I, [2018-08-07T01:23:29.531806 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:29.532082 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T01:23:29.532114 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:29.532359 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T01:23:29.532388 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:29.533439 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.93 ms +I, [2018-08-07T01:23:29.533577 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:29.535708 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.76 ms +I, [2018-08-07T01:23:29.538560 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:29.539379 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-08-07T01:23:29.539422 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:29.539737 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T01:23:29.539768 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:29.540559 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T01:23:29.540615 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:29.542741 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.67 ms +I, [2018-08-07T01:23:29.542811 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:29.543314 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T01:23:29.543358 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:29.543700 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T01:23:29.543744 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:29.544158 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T01:23:29.544223 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:29.545155 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T01:23:29.545326 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:29.548342 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.59 ms +I, [2018-08-07T01:23:29.548582 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:29.550657 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.81 ms +I, [2018-08-07T01:23:29.550726 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:29.551165 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T01:23:29.551218 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:29.551701 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T01:23:29.552001 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:29.553164 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T01:23:29.553229 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:29.554162 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.65 ms +I, [2018-08-07T01:23:29.554211 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:29.554594 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T01:23:29.554638 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:29.554922 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T01:23:29.554954 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:29.555188 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T01:23:29.555703 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:29.556063 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T01:23:29.556101 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:29.556435 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T01:23:29.556467 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:29.556666 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T01:23:29.556695 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:29.556915 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-08-07T01:23:29.556944 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:29.557243 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T01:23:29.557274 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:29.557910 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T01:23:29.558023 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:29.558287 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T01:23:29.559259 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:29.559713 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T01:23:29.559755 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:29.560121 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T01:23:29.560154 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:29.560352 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T01:23:29.560381 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:29.560604 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-08-07T01:23:29.560693 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:29.560926 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T01:23:29.560955 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:29.561172 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T01:23:29.561196 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:29.561993 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-08-07T01:23:29.562071 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:29.563028 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T01:23:29.563063 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:29.563633 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T01:23:29.563720 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:29.564149 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T01:23:29.564188 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:29.564432 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T01:23:29.564459 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:29.564672 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T01:23:29.564701 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:29.565118 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-08-07T01:23:29.565213 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:29.565652 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T01:23:29.565685 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:29.566039 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T01:23:29.566104 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:29.566425 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T01:23:29.566457 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:29.580495 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T01:23:29.580540 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:23:29.580790 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T01:23:29.580815 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:23:29.581024 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T01:23:29.581052 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:23:29.581261 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T01:23:29.581287 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:23:29.581466 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T01:23:29.581517 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:23:29.581697 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T01:23:29.581725 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:23:29.581927 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T01:23:29.581956 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:23:31.567956 #7] INFO -- : Committing offsets: section_change/0:1092 +I, [2018-08-07T01:23:31.572460 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T01:23:31.572521 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:31.572743 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T01:23:31.572772 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:31.573050 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T01:23:31.573080 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:31.573298 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T01:23:31.573326 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:31.573519 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T01:23:31.573565 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:31.573753 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T01:23:31.573798 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:31.576549 #7] INFO -- : Inline processing of topic section_change with 1 messages took 2.64 ms +I, [2018-08-07T01:23:31.576615 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:31.576872 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T01:23:31.576902 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:31.577124 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T01:23:31.577152 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:31.577361 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T01:23:31.577407 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:31.577643 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T01:23:31.577671 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:31.577876 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T01:23:31.577904 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:31.578128 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T01:23:31.579352 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:31.579699 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T01:23:31.579733 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:31.579968 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T01:23:31.579997 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:31.580833 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T01:23:31.580934 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:31.581347 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T01:23:31.581412 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:31.581928 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T01:23:31.581979 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:31.582291 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T01:23:31.582323 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:31.582616 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T01:23:31.582741 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:31.583017 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T01:23:31.583046 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:31.583373 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T01:23:31.583419 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:31.584577 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.89 ms +I, [2018-08-07T01:23:31.584657 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:31.585534 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.59 ms +I, [2018-08-07T01:23:31.585601 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:31.586323 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.28 ms +I, [2018-08-07T01:23:31.586419 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:23:31.586804 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-08-07T01:23:31.586854 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:23:31.587777 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-08-07T01:23:31.587866 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:23:33.551629 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.56 ms +I, [2018-08-07T01:23:33.551721 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:33.552521 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.49 ms +I, [2018-08-07T01:23:33.552656 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:33.553509 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.61 ms +I, [2018-08-07T01:23:33.553678 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:33.554450 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.46 ms +I, [2018-08-07T01:23:33.554589 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:33.555042 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T01:23:33.555100 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:33.555572 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T01:23:33.555627 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:33.556177 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-08-07T01:23:33.556230 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:33.556651 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T01:23:33.556706 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:33.559090 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T01:23:33.559133 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:23:35.558009 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T01:23:35.558069 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:35.558517 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T01:23:35.558601 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:35.558945 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T01:23:35.558977 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:35.559464 #7] INFO -- : Committing offsets: course_change/0:526 +I, [2018-08-07T01:23:37.559722 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T01:23:37.559783 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:37.560115 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T01:23:37.560146 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:37.560530 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T01:23:37.560575 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:37.561073 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-08-07T01:23:37.561117 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:39.562040 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.43 ms +I, [2018-08-07T01:23:39.562108 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:39.562788 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.49 ms +I, [2018-08-07T01:23:39.562841 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:39.563509 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.49 ms +I, [2018-08-07T01:23:39.563558 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:39.585403 #7] INFO -- : Inline processing of topic section_change with 1 messages took 21.6 ms +I, [2018-08-07T01:23:39.585544 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:39.586116 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-08-07T01:23:39.586166 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:39.586623 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T01:23:39.587550 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:39.587418 #7] INFO -- : Inline processing of topic course_change with 1 messages took 15.88 ms +I, [2018-08-07T01:23:39.587741 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:23:41.588053 #7] INFO -- : Committing offsets: section_change/0:1137 +I, [2018-08-07T01:23:41.589199 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.37 ms +I, [2018-08-07T01:23:41.589255 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:23:41.597381 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.48 ms +I, [2018-08-07T01:23:41.597455 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:41.597871 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T01:23:41.597999 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:41.598350 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T01:23:41.598391 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:41.598776 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T01:23:41.598812 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:41.599123 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T01:23:41.599159 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:41.599416 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T01:23:41.599455 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:41.599832 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T01:23:41.599874 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:43.601404 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.81 ms +I, [2018-08-07T01:23:43.601481 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:43.602101 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T01:23:43.602140 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:43.602504 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T01:23:43.602546 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:43.603019 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-08-07T01:23:43.603111 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:43.603794 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-08-07T01:23:43.603846 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:45.590100 #7] INFO -- : Committing offsets: course_change/0:528 +I, [2018-08-07T01:23:45.601680 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.64 ms +I, [2018-08-07T01:23:45.601797 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:23:45.602330 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.27 ms +I, [2018-08-07T01:23:45.602391 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:23:45.602850 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.29 ms +I, [2018-08-07T01:23:45.602908 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:23:45.604773 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T01:23:45.604819 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:45.605078 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T01:23:45.605146 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:45.605348 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T01:23:45.605377 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:45.605647 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T01:23:45.605694 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:45.605974 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T01:23:45.606003 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:47.607541 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.09 ms +I, [2018-08-07T01:23:47.607617 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:47.608192 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-08-07T01:23:47.608259 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:47.608574 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T01:23:47.608604 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:47.608841 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T01:23:47.608869 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:47.609101 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T01:23:47.609133 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:47.609373 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T01:23:47.609402 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:47.610138 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T01:23:47.610181 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:47.610543 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T01:23:47.610591 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:47.610896 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T01:23:47.610928 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:49.610326 #7] INFO -- : Inline processing of topic course_change with 1 messages took 3.56 ms +I, [2018-08-07T01:23:49.610427 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:23:49.610870 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T01:23:49.610905 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:23:49.611815 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T01:23:49.611903 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:23:49.612977 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.4 ms +I, [2018-08-07T01:23:49.613043 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:49.618459 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.0 ms +I, [2018-08-07T01:23:49.618581 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:49.620005 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.13 ms +I, [2018-08-07T01:23:49.620077 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:49.620790 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.45 ms +I, [2018-08-07T01:23:49.620854 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:49.624119 #7] INFO -- : Inline processing of topic section_change with 1 messages took 2.95 ms +I, [2018-08-07T01:23:49.624231 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:49.625132 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.51 ms +I, [2018-08-07T01:23:49.625198 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:49.625853 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.42 ms +I, [2018-08-07T01:23:49.625890 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:51.615134 #7] INFO -- : Inline processing of topic course_change with 1 messages took 1.47 ms +I, [2018-08-07T01:23:51.615617 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:23:51.626200 #7] INFO -- : Committing offsets: section_change/0:1170 +I, [2018-08-07T01:23:51.836572 #7] INFO -- : Inline processing of topic section_change with 1 messages took 16.58 ms +I, [2018-08-07T01:23:51.836859 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:51.855295 #7] INFO -- : Inline processing of topic section_change with 1 messages took 17.69 ms +I, [2018-08-07T01:23:51.855377 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:51.857972 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.81 ms +I, [2018-08-07T01:23:51.858052 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:51.859068 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.73 ms +I, [2018-08-07T01:23:51.859132 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:53.865866 #7] INFO -- : Inline processing of topic section_change with 1 messages took 4.22 ms +I, [2018-08-07T01:23:53.866152 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:53.872968 #7] INFO -- : Inline processing of topic section_change with 1 messages took 4.92 ms +I, [2018-08-07T01:23:53.893637 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:55.702791 #7] INFO -- : Committing offsets: course_change/0:535 +I, [2018-08-07T01:23:55.907874 #7] INFO -- : Inline processing of topic section_change with 1 messages took 11.52 ms +I, [2018-08-07T01:23:55.907958 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:23:57.975458 #7] INFO -- : Inline processing of topic section_change with 1 messages took 54.75 ms +I, [2018-08-07T01:23:57.975542 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:24:00.161028 #7] INFO -- : Inline processing of topic section_change with 1 messages took 2.03 ms +I, [2018-08-07T01:24:00.161207 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:24:02.165921 #7] INFO -- : Committing offsets: section_change/0:1179 +I, [2018-08-07T01:24:02.379353 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.11 ms +I, [2018-08-07T01:24:02.379498 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:24:04.283870 #7] INFO -- : Inline processing of topic course_change with 1 messages took 1.73 ms +I, [2018-08-07T01:24:04.284272 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:24:04.622803 #7] INFO -- : Inline processing of topic course_change with 1 messages took 336.78 ms +I, [2018-08-07T01:24:04.622899 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:24:07.935359 #7] INFO -- : Committing offsets: course_change/0:537 +I, [2018-08-07T01:24:09.762252 #7] INFO -- : Inline processing of topic section_change with 1 messages took 4.06 ms +I, [2018-08-07T01:24:09.779792 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:24:13.797616 #7] INFO -- : Committing offsets: section_change/0:1181 +I, [2018-08-07T01:24:13.892964 #7] INFO -- : Inline processing of topic section_change with 1 messages took 8.07 ms +I, [2018-08-07T01:24:13.893043 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:24:15.332346 #7] INFO -- : Inline processing of topic course_change with 1 messages took 1.59 ms +I, [2018-08-07T01:24:15.332432 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:24:15.895148 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.78 ms +I, [2018-08-07T01:24:15.895234 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:24:17.896858 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.65 ms +I, [2018-08-07T01:24:17.896938 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:24:19.354848 #7] INFO -- : Committing offsets: course_change/0:538 +I, [2018-08-07T01:24:19.410253 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.68 ms +I, [2018-08-07T01:24:19.410323 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:24:19.898167 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-08-07T01:24:19.898219 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:24:19.898818 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T01:24:19.898848 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:24:21.413156 #7] INFO -- : Inline processing of topic course_change with 1 messages took 1.35 ms +I, [2018-08-07T01:24:21.413274 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:24:21.900192 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.57 ms +I, [2018-08-07T01:24:21.900244 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:24:21.901408 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.73 ms +I, [2018-08-07T01:24:21.901464 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:24:21.902206 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.52 ms +I, [2018-08-07T01:24:21.902240 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:24:21.902839 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.47 ms +I, [2018-08-07T01:24:21.902883 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:24:23.905561 #7] INFO -- : Committing offsets: section_change/0:1190 +I, [2018-08-07T01:24:23.910585 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.49 ms +I, [2018-08-07T01:24:23.910632 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:24:23.911165 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.41 ms +I, [2018-08-07T01:24:23.912053 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:24:23.912573 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-08-07T01:24:23.912612 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:24:23.913140 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.4 ms +I, [2018-08-07T01:24:23.913175 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:24:23.914056 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.46 ms +I, [2018-08-07T01:24:23.914131 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:24:23.914675 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-08-07T01:24:23.914711 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:24:23.915161 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T01:24:23.915195 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:24:25.414881 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-08-07T01:24:25.414946 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:24:25.456149 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.38 ms +I, [2018-08-07T01:24:25.456237 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:24:25.461847 #7] INFO -- : Inline processing of topic course_change with 1 messages took 4.87 ms +I, [2018-08-07T01:24:25.462387 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:24:25.466655 #7] INFO -- : Inline processing of topic course_change with 1 messages took 1.5 ms +I, [2018-08-07T01:24:25.466739 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:24:25.467665 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.67 ms +I, [2018-08-07T01:24:25.467810 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:24:25.470798 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.42 ms +I, [2018-08-07T01:24:25.470857 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:24:25.471409 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.37 ms +I, [2018-08-07T01:24:25.471448 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:24:25.918067 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.29 ms +I, [2018-08-07T01:24:25.918154 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:24:25.918792 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.4 ms +I, [2018-08-07T01:24:25.918847 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:24:25.919184 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T01:24:25.919217 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:24:25.919562 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T01:24:25.919591 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:24:25.919915 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T01:24:25.919945 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:24:25.920206 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T01:24:25.920236 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:24:25.920530 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T01:24:25.920559 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:24:27.922342 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.17 ms +I, [2018-08-07T01:24:27.922419 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:24:27.923497 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.57 ms +I, [2018-08-07T01:24:27.923558 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:24:27.924598 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.66 ms +I, [2018-08-07T01:24:27.924663 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:24:27.928303 #7] INFO -- : Inline processing of topic section_change with 1 messages took 3.35 ms +I, [2018-08-07T01:24:27.928375 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:24:27.929886 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-08-07T01:24:27.929951 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:24:29.472528 #7] INFO -- : Committing offsets: course_change/0:547 +I, [2018-08-07T01:24:29.691189 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.27 ms +I, [2018-08-07T01:24:29.691354 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:24:29.692202 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T01:24:29.692253 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:24:29.931276 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-08-07T01:24:29.931359 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:24:29.933383 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T01:24:29.933497 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:24:29.934517 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-08-07T01:24:29.934604 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:24:31.961363 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.89 ms +I, [2018-08-07T01:24:31.961622 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:24:33.731818 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.39 ms +I, [2018-08-07T01:24:33.731929 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:24:33.997476 #7] INFO -- : Committing offsets: section_change/0:1213 +I, [2018-08-07T01:24:34.019923 #7] INFO -- : Inline processing of topic section_change with 1 messages took 7.42 ms +I, [2018-08-07T01:24:34.020030 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:24:37.742116 #7] INFO -- : Inline processing of topic course_change with 1 messages took 1.96 ms +I, [2018-08-07T01:24:37.742429 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:24:38.023707 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.51 ms +I, [2018-08-07T01:24:38.023899 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:24:38.024401 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-08-07T01:24:38.024434 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:24:39.749295 #7] INFO -- : Committing offsets: course_change/0:551 +I, [2018-08-07T01:24:39.958009 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.26 ms +I, [2018-08-07T01:24:39.958123 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:24:39.964475 #7] INFO -- : Inline processing of topic course_change with 1 messages took 5.6 ms +I, [2018-08-07T01:24:39.964624 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:24:39.973643 #7] INFO -- : Inline processing of topic course_change with 1 messages took 8.52 ms +I, [2018-08-07T01:24:39.974372 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:24:39.985855 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.5 ms +I, [2018-08-07T01:24:39.985961 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:24:40.017365 #7] INFO -- : Inline processing of topic course_change with 1 messages took 17.56 ms +I, [2018-08-07T01:24:40.017454 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:24:40.063971 #7] INFO -- : Inline processing of topic course_change with 1 messages took 45.78 ms +I, [2018-08-07T01:24:40.064316 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:24:40.080824 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.25 ms +I, [2018-08-07T01:24:40.081068 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:24:40.083174 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-08-07T01:24:40.083263 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:24:40.118515 #7] INFO -- : Inline processing of topic section_change with 1 messages took 34.46 ms +I, [2018-08-07T01:24:40.119422 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:24:40.121761 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.37 ms +I, [2018-08-07T01:24:40.121932 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:24:40.136827 #7] INFO -- : Inline processing of topic section_change with 1 messages took 14.56 ms +I, [2018-08-07T01:24:40.137007 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:24:40.138952 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.86 ms +I, [2018-08-07T01:24:40.139222 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:24:42.141819 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.23 ms +I, [2018-08-07T01:24:42.142376 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:24:44.143397 #7] INFO -- : Committing offsets: section_change/0:1223 +I, [2018-08-07T01:24:44.155287 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.56 ms +I, [2018-08-07T01:24:44.155381 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:24:46.072452 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-08-07T01:24:46.072548 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:24:46.158130 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.68 ms +I, [2018-08-07T01:24:46.158535 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:24:46.159355 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T01:24:46.159419 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:24:46.159901 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T01:24:46.159941 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:24:48.073222 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T01:24:48.073272 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:24:48.162139 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.6 ms +I, [2018-08-07T01:24:48.162329 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:24:50.073661 #7] INFO -- : Committing offsets: course_change/0:559 +I, [2018-08-07T01:24:50.079127 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T01:24:50.079184 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:24:50.079570 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T01:24:50.079607 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:24:50.079902 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T01:24:50.079935 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:24:50.080218 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T01:24:50.080252 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:24:50.080461 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-08-07T01:24:50.080494 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:24:50.080810 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T01:24:50.080843 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:24:50.081176 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-08-07T01:24:50.081209 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:24:50.081417 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-08-07T01:24:50.081572 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:24:50.081784 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-08-07T01:24:50.081817 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:24:50.082218 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.28 ms +I, [2018-08-07T01:24:50.082252 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:24:50.082671 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.29 ms +I, [2018-08-07T01:24:50.082706 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:24:50.163340 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-08-07T01:24:50.163390 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:24:50.163876 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T01:24:50.163919 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:24:50.164297 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T01:24:50.164329 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:24:50.164701 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T01:24:50.164730 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:24:50.165069 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T01:24:50.165098 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:24:50.167904 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T01:24:50.167948 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:24:50.168173 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T01:24:50.168286 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:24:50.168960 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.5 ms +I, [2018-08-07T01:24:50.169067 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:24:50.169608 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T01:24:50.169644 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:24:50.169856 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T01:24:50.170024 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:24:50.170532 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T01:24:50.170574 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:24:50.171187 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.48 ms +I, [2018-08-07T01:24:50.171225 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:24:50.171567 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T01:24:50.171597 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:24:50.171795 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T01:24:50.171824 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:24:50.172160 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-08-07T01:24:50.172187 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:24:50.173438 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.49 ms +I, [2018-08-07T01:24:50.175684 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:24:50.178497 #7] INFO -- : Inline processing of topic section_change with 1 messages took 2.19 ms +I, [2018-08-07T01:24:50.178584 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:24:52.083601 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T01:24:52.083650 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:24:52.084060 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.26 ms +I, [2018-08-07T01:24:52.084092 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:24:52.179773 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.43 ms +I, [2018-08-07T01:24:52.179837 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:24:52.180439 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-08-07T01:24:52.180477 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:24:52.180811 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T01:24:52.180843 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:24:54.085044 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.46 ms +I, [2018-08-07T01:24:54.085105 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:24:54.086087 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.62 ms +I, [2018-08-07T01:24:54.086139 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:24:54.086642 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T01:24:54.086763 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:24:54.086997 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T01:24:54.087044 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:24:54.087738 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.24 ms +I, [2018-08-07T01:24:54.087783 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:24:54.181357 #7] INFO -- : Committing offsets: section_change/0:1248 +I, [2018-08-07T01:24:54.219605 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.4 ms +I, [2018-08-07T01:24:54.219686 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:24:54.220051 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T01:24:54.220089 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:24:54.220366 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T01:24:54.220392 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:24:54.220713 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T01:24:54.220744 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:24:54.221020 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T01:24:54.221046 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:24:56.088983 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-08-07T01:24:56.089069 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:24:56.089691 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T01:24:56.089732 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:24:56.090241 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T01:24:56.090303 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:24:56.090843 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.31 ms +I, [2018-08-07T01:24:56.090901 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:24:56.222756 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-08-07T01:24:56.222821 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:24:56.223178 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T01:24:56.223217 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:24:56.224394 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.4 ms +I, [2018-08-07T01:24:56.224494 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:24:56.224939 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T01:24:56.224973 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:24:56.226737 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-08-07T01:24:56.226787 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:24:56.232103 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.56 ms +I, [2018-08-07T01:24:56.232185 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:24:58.103866 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.82 ms +I, [2018-08-07T01:24:58.103933 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:24:58.104487 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.23 ms +I, [2018-08-07T01:24:58.104749 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:24:58.106272 #7] INFO -- : Inline processing of topic course_change with 1 messages took 1.12 ms +I, [2018-08-07T01:24:58.106338 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:24:58.233715 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-08-07T01:24:58.233828 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:24:58.234277 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T01:24:58.234322 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:24:58.235353 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.56 ms +I, [2018-08-07T01:24:58.235474 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:24:58.236430 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.49 ms +I, [2018-08-07T01:24:58.236537 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:24:58.237726 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-08-07T01:24:58.237835 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:24:58.238324 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T01:24:58.238374 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:24:58.251425 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-08-07T01:24:58.251543 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:24:58.258848 #7] INFO -- : Inline processing of topic section_change with 1 messages took 2.71 ms +I, [2018-08-07T01:24:58.258954 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:25:01.667062 #7] INFO -- : Inline processing of topic section_change with 1 messages took 11.61 ms +I, [2018-08-07T01:25:01.738889 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:25:01.667841 #7] INFO -- : Committing offsets: course_change/0:584 +I, [2018-08-07T01:25:01.772690 #7] INFO -- : Inline processing of topic course_change with 1 messages took 7.96 ms +I, [2018-08-07T01:25:01.772813 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:25:03.710177 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.84 ms +I, [2018-08-07T01:25:03.710660 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:25:03.739371 #7] INFO -- : Inline processing of topic section_change with 1 messages took 28.41 ms +I, [2018-08-07T01:25:03.739578 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:25:03.740803 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.43 ms +I, [2018-08-07T01:25:03.740858 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:25:03.772938 #7] INFO -- : Inline processing of topic section_change with 1 messages took 3.59 ms +I, [2018-08-07T01:25:03.773299 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:25:03.774801 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.12 ms +I, [2018-08-07T01:25:03.775146 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:25:03.776721 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.73 ms +I, [2018-08-07T01:25:03.776799 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:25:03.777679 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.46 ms +I, [2018-08-07T01:25:03.778676 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:25:03.779841 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.8 ms +I, [2018-08-07T01:25:03.780442 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:25:03.781443 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-08-07T01:25:03.781788 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:25:03.782601 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.58 ms +I, [2018-08-07T01:25:03.782660 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:25:03.791597 #7] INFO -- : Inline processing of topic section_change with 1 messages took 8.43 ms +I, [2018-08-07T01:25:03.791700 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:25:03.792626 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.54 ms +I, [2018-08-07T01:25:03.792695 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:25:03.796304 #7] INFO -- : Inline processing of topic section_change with 1 messages took 2.85 ms +I, [2018-08-07T01:25:03.796522 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:25:03.797544 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.45 ms +I, [2018-08-07T01:25:03.797636 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:25:03.819006 #7] INFO -- : Inline processing of topic section_change with 1 messages took 21.15 ms +I, [2018-08-07T01:25:03.819076 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:25:03.819559 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T01:25:03.819598 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:25:03.820280 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T01:25:03.820316 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:25:03.820767 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.32 ms +I, [2018-08-07T01:25:03.820799 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:25:03.821534 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.59 ms +I, [2018-08-07T01:25:03.821582 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:25:05.820146 #7] INFO -- : Committing offsets: section_change/0:1284 +I, [2018-08-07T01:25:05.824456 #7] INFO -- : Inline processing of topic course_change with 1 messages took 1.18 ms +I, [2018-08-07T01:25:05.824559 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:25:05.826680 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T01:25:05.826723 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:25:05.827863 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T01:25:05.830805 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:25:05.828861 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.49 ms +I, [2018-08-07T01:25:05.831128 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:25:05.835013 #7] INFO -- : Inline processing of topic section_change with 1 messages took 3.37 ms +I, [2018-08-07T01:25:05.835081 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:25:05.835863 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.58 ms +I, [2018-08-07T01:25:05.835910 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:25:05.836662 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.55 ms +I, [2018-08-07T01:25:05.836731 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:25:05.837397 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.41 ms +I, [2018-08-07T01:25:05.837455 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:25:07.832845 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.99 ms +I, [2018-08-07T01:25:07.832993 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:25:07.833810 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.57 ms +I, [2018-08-07T01:25:07.833868 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:25:07.834752 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.63 ms +I, [2018-08-07T01:25:07.834848 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:25:07.835254 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T01:25:07.835301 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:25:07.838365 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T01:25:07.838430 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:25:07.839485 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T01:25:07.839541 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:25:07.840280 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T01:25:07.840775 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:25:07.841675 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T01:25:07.841728 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:25:09.837094 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.23 ms +I, [2018-08-07T01:25:09.837347 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:25:09.837797 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-08-07T01:25:09.837848 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:25:09.843373 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.54 ms +I, [2018-08-07T01:25:09.843455 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:25:09.844179 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T01:25:09.844230 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:25:09.845015 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.58 ms +I, [2018-08-07T01:25:09.845079 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:25:09.846001 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-08-07T01:25:09.846068 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:25:11.838205 #7] INFO -- : Committing offsets: course_change/0:597 +I, [2018-08-07T01:25:11.844145 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.35 ms +I, [2018-08-07T01:25:11.844194 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:25:11.844430 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T01:25:11.844647 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:25:11.844934 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T01:25:11.844965 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:25:11.845318 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.23 ms +I, [2018-08-07T01:25:11.845350 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:25:11.845719 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.25 ms +I, [2018-08-07T01:25:11.845751 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:25:11.847449 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.93 ms +I, [2018-08-07T01:25:11.847520 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:25:11.848141 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T01:25:11.848201 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:25:11.848550 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T01:25:11.848600 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:25:11.849450 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T01:25:11.849505 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:25:11.850998 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T01:25:11.851058 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:25:11.851789 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T01:25:11.851898 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:25:13.846602 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T01:25:13.846944 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:25:13.847247 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T01:25:13.847285 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:25:13.847949 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.46 ms +I, [2018-08-07T01:25:13.848000 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:25:13.850443 #7] INFO -- : Inline processing of topic course_change with 1 messages took 2.11 ms +I, [2018-08-07T01:25:13.850533 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:25:13.853724 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.45 ms +I, [2018-08-07T01:25:13.853799 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:25:13.854477 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.46 ms +======= +I, [2018-07-30T18:39:30.531026 #5] INFO -- : New topics added to target list: section_change +I, [2018-07-30T18:39:30.531103 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-07-30T18:39:30.542527 #5] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.9:9094 +E, [2018-07-30T18:39:30.542653 #5] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.9:9094 +E, [2018-07-30T18:39:35.546596 #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.9:9094 +I, [2018-07-30T18:39:35.547251 #5] INFO -- : New topics added to target list: section_change +I, [2018-07-30T18:39:35.547289 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-07-30T18:39:35.547778 #5] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.9:9094 +E, [2018-07-30T18:39:35.547858 #5] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.9:9094 +E, [2018-07-30T18:39:40.550319 #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.9:9094 +I, [2018-07-30T18:39:40.550990 #5] INFO -- : New topics added to target list: section_change +I, [2018-07-30T18:39:40.551034 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-07-30T18:39:40.551490 #5] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.9:9094 +E, [2018-07-30T18:39:40.551572 #5] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.9:9094 +E, [2018-07-30T18:39:45.554461 #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.9:9094 +I, [2018-07-30T18:39:45.570492 #5] INFO -- : New topics added to target list: section_change +I, [2018-07-30T18:39:45.570560 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-07-30T18:39:46.862849 #5] ERROR -- : No brokers in cluster +E, [2018-07-30T18:39:51.863519 #5] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: + +I, [2018-07-30T18:39:51.864250 #5] INFO -- : New topics added to target list: section_change +I, [2018-07-30T18:39:51.864332 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-07-30T18:39:51.876497 #5] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-07-30T18:39:51.876689 #5] INFO -- : Joining group `notifications_notifications` +I, [2018-07-30T18:39:51.965406 #5] INFO -- : Will fetch at most 1048576 bytes at a time per partition from section_change +I, [2018-07-30T18:39:51.965774 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-07-30T18:39:51.974975 #5] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-07-30T18:39:51.975069 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-30T18:39:52.975314 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-30T18:39:53.975680 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-30T18:39:54.976209 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-30T18:39:55.976395 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-30T18:39:56.978328 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-30T18:39:57.978989 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-30T18:39:58.979521 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-30T18:39:59.980583 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-30T18:40:00.980949 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-30T18:40:01.981427 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-30T18:40:02.981996 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-30T18:40:03.984416 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-30T18:40:04.987782 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-30T18:40:05.988383 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-30T18:40:06.988989 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-30T18:40:07.989342 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-30T18:40:08.989640 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-30T18:40:09.990206 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-30T18:40:10.990619 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-30T18:40:11.993611 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-30T18:40:12.996101 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-30T18:40:13.999293 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-30T18:40:14.999662 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-30T18:40:15.999945 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-30T18:40:17.004862 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-30T18:40:18.010222 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-30T18:40:19.011393 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-30T18:40:20.011603 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-30T18:40:21.027868 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-07-30T18:40:21.256006 #5] INFO -- : Joined group `notifications_notifications` with member id `notifications-e7ede1eb-3dd2-447a-a177-4d76383fce9c` +I, [2018-07-30T18:40:21.256055 #5] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-07-30T18:40:21.335320 #5] INFO -- : Partitions assigned for `section_change`: 0 +I, [2018-07-30T18:40:21.349831 #5] INFO -- : Committing offsets with recommit: section_change/0:920 +I, [2018-07-30T18:40:22.028480 #5] INFO -- : Seeking section_change/0 to offset 920 +I, [2018-07-30T18:40:22.028578 #5] INFO -- : New topics added to target list: section_change +I, [2018-07-30T18:40:22.028608 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-07-30T18:40:22.031334 #5] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-07-30T18:40:23.386769 #5] INFO -- : Inline processing of topic section_change with 1 messages took 3.37 ms +I, [2018-07-30T18:40:23.386817 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:23.386966 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-30T18:40:23.386988 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:23.387152 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-30T18:40:23.387176 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:23.387590 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-07-30T18:40:23.387617 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:23.394871 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-30T18:40:23.394964 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:23.395100 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-30T18:40:23.395125 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:23.396945 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-30T18:40:23.397014 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:23.398020 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-07-30T18:40:23.398068 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:23.398239 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-30T18:40:23.398269 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:23.398405 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-30T18:40:23.398433 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:23.399193 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.68 ms +I, [2018-07-30T18:40:23.399253 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:23.399415 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-30T18:40:23.399445 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:23.399593 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-30T18:40:23.399627 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:23.399790 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-30T18:40:23.399921 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:23.400083 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-30T18:40:23.400114 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:23.400871 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-30T18:40:23.400907 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:23.401063 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-30T18:40:23.401094 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:23.401239 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-30T18:40:23.401272 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:23.402029 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-30T18:40:23.402074 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:23.402241 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-30T18:40:23.402275 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:23.402417 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-30T18:40:23.402451 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:23.402639 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-30T18:40:23.403259 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:23.403444 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-30T18:40:23.403483 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:23.403679 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-30T18:40:23.403718 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:23.403959 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-30T18:40:23.403999 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:23.404630 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-30T18:40:23.404673 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:23.404936 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-30T18:40:23.404977 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:23.419152 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-07-30T18:40:23.419225 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:23.419428 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-30T18:40:23.419462 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:23.419642 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-30T18:40:23.419706 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:23.419853 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-30T18:40:23.419882 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:23.420017 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-30T18:40:23.420044 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:23.420200 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-30T18:40:23.420230 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:23.420391 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-30T18:40:23.420418 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:23.420543 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-30T18:40:23.420568 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:23.420719 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-30T18:40:23.420767 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:23.436393 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-30T18:40:23.436453 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:23.436658 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-30T18:40:23.436688 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:23.436832 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-30T18:40:23.436863 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:23.439347 #5] INFO -- : Inline processing of topic section_change with 1 messages took 2.4 ms +I, [2018-07-30T18:40:23.439400 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:23.439610 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-30T18:40:23.439641 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:23.439763 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-30T18:40:23.439790 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:23.440971 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.1 ms +I, [2018-07-30T18:40:23.441036 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:23.441220 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-30T18:40:23.441250 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:23.441416 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-30T18:40:23.441447 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:23.443547 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-30T18:40:23.443604 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:23.443805 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-30T18:40:23.443892 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:23.444099 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-30T18:40:23.444140 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:23.444360 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-30T18:40:23.444397 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:23.444568 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-30T18:40:23.444605 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:23.444778 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-30T18:40:23.444895 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:23.445074 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-30T18:40:23.445145 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:23.445305 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-30T18:40:23.451038 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:23.451293 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-30T18:40:23.451331 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:23.451548 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-30T18:40:23.451587 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:23.451814 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-30T18:40:23.451848 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:23.451986 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-30T18:40:23.452018 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:23.452156 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-30T18:40:23.452186 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:23.452337 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-30T18:40:23.452364 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:23.452484 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-30T18:40:23.452510 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:23.452617 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-30T18:40:23.452672 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:23.452812 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-30T18:40:23.452879 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:23.452998 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-30T18:40:23.453024 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:23.453141 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-30T18:40:23.453166 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:23.453287 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-30T18:40:23.453316 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:23.453474 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-30T18:40:23.453500 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:23.453655 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-30T18:40:23.453687 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:23.467248 #5] INFO -- : Inline processing of topic section_change with 1 messages took 13.39 ms +I, [2018-07-30T18:40:23.467500 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:23.468198 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-30T18:40:23.468226 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:23.468404 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-30T18:40:23.468429 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:23.468537 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-30T18:40:23.468558 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:23.468648 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-30T18:40:23.468668 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:23.468761 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-30T18:40:23.468783 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:23.468916 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-30T18:40:23.468937 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:23.469024 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-30T18:40:23.469044 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:23.469132 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-30T18:40:23.469155 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:23.469249 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-30T18:40:23.469272 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:23.474713 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-30T18:40:23.474837 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:23.475030 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-30T18:40:23.475055 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:23.475203 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-30T18:40:23.475254 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:23.475354 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-30T18:40:23.475379 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:23.475472 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-30T18:40:23.475491 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:23.475619 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-30T18:40:23.475639 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:23.475729 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-30T18:40:23.475749 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:23.475849 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-30T18:40:23.475870 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:23.475978 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-30T18:40:23.475999 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:23.476176 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-30T18:40:23.476223 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:23.476345 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-30T18:40:23.476366 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:23.476448 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.03 ms +I, [2018-07-30T18:40:23.476468 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:23.476552 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-30T18:40:23.476575 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:23.476703 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-30T18:40:23.476724 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:23.476808 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-30T18:40:23.476829 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:23.476933 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.03 ms +I, [2018-07-30T18:40:23.476963 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:23.479412 #5] INFO -- : Inline processing of topic section_change with 1 messages took 2.38 ms +I, [2018-07-30T18:40:23.479462 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:23.479639 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-30T18:40:23.479660 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:23.479751 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-30T18:40:23.479796 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:23.479905 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-30T18:40:23.479925 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:23.480008 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-30T18:40:23.480029 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:23.481822 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.71 ms +I, [2018-07-30T18:40:23.489402 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:23.489602 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-30T18:40:23.489625 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:23.489718 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-30T18:40:23.489738 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:23.489830 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-30T18:40:23.489850 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:23.490130 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-30T18:40:23.490359 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:23.490488 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-30T18:40:23.490512 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:23.490606 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-30T18:40:23.490625 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:23.490711 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-30T18:40:23.490734 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:23.490851 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-30T18:40:23.490870 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:23.492078 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.15 ms +I, [2018-07-30T18:40:23.492126 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:23.492246 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-30T18:40:23.492267 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:23.492373 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-30T18:40:23.492393 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:23.492515 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.03 ms +I, [2018-07-30T18:40:23.492534 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:23.492611 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.03 ms +I, [2018-07-30T18:40:23.492629 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:23.492715 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-30T18:40:23.492734 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:23.492819 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-30T18:40:23.492838 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:23.494035 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-07-30T18:40:23.494076 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:23.494191 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-30T18:40:23.494238 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:23.494329 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-30T18:40:23.494350 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:23.494440 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-30T18:40:23.494460 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:23.494548 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-30T18:40:23.494597 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:23.494679 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.03 ms +I, [2018-07-30T18:40:23.494698 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:23.494777 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.03 ms +I, [2018-07-30T18:40:23.494795 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:23.495977 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-30T18:40:23.496018 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:23.496176 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-30T18:40:23.496197 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:23.496277 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.03 ms +I, [2018-07-30T18:40:23.496296 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:23.496372 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.03 ms +I, [2018-07-30T18:40:23.496390 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:23.496476 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-30T18:40:23.496494 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:23.498016 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-30T18:40:23.498058 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:23.498150 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-30T18:40:23.498171 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:23.498260 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-30T18:40:23.498280 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:23.498923 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-30T18:40:23.498954 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:23.504135 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-30T18:40:23.504182 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:23.504281 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-30T18:40:23.504301 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:23.505534 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.12 ms +I, [2018-07-30T18:40:23.505586 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:23.509063 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-30T18:40:23.509110 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:23.509222 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-30T18:40:23.509244 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:23.509333 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-30T18:40:23.509353 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:23.510664 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.25 ms +I, [2018-07-30T18:40:23.510715 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:23.510881 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-30T18:40:23.510904 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:23.510995 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-30T18:40:23.511016 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:23.513133 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.28 ms +I, [2018-07-30T18:40:23.513191 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:23.513371 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-30T18:40:23.513394 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:23.513486 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-30T18:40:23.513527 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:23.513642 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-30T18:40:23.513663 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:23.513753 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-30T18:40:23.513774 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:23.513891 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-30T18:40:23.513912 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:23.513993 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.03 ms +I, [2018-07-30T18:40:23.519148 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:23.519884 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.4 ms +I, [2018-07-30T18:40:23.519935 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:23.520134 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-30T18:40:23.520162 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:23.520302 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-30T18:40:23.520323 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:23.520406 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.03 ms +I, [2018-07-30T18:40:23.520426 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:23.520508 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.03 ms +I, [2018-07-30T18:40:23.520981 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:23.521345 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-07-30T18:40:23.521382 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:23.521607 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-30T18:40:23.521671 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:23.521809 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-30T18:40:23.521839 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:23.521963 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-30T18:40:23.521991 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:23.523314 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-30T18:40:23.523377 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:23.523580 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-30T18:40:23.523607 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:23.523708 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-30T18:40:23.523729 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:23.523815 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-30T18:40:23.523836 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:23.523950 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-30T18:40:23.523983 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:23.524158 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-30T18:40:23.524199 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:23.524408 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-30T18:40:23.524478 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:23.530494 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-07-30T18:40:23.530595 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:23.530820 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-30T18:40:23.530862 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:23.531113 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-07-30T18:40:23.531174 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:23.531440 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-30T18:40:23.531497 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:23.531758 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-30T18:40:23.531821 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:23.532027 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-30T18:40:23.532065 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:23.532230 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-30T18:40:23.532263 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:23.532442 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-30T18:40:23.532477 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:23.532605 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-30T18:40:23.532635 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:23.532766 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-30T18:40:23.532796 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:23.532926 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-30T18:40:23.532982 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:23.533210 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-30T18:40:23.533246 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:23.533386 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-30T18:40:23.533420 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:23.533558 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-30T18:40:23.533594 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:23.533727 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-30T18:40:23.533759 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:23.533935 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-30T18:40:23.533993 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:23.534128 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-30T18:40:23.534161 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:23.534294 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-30T18:40:23.534327 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:23.590267 #5] INFO -- : Inline processing of topic section_change with 1 messages took 55.82 ms +I, [2018-07-30T18:40:23.590326 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:23.590623 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-30T18:40:23.590651 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:23.590749 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-30T18:40:23.590770 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:23.590871 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-30T18:40:23.590902 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:23.590996 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-30T18:40:23.591016 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:23.591131 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-30T18:40:23.591152 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:23.591234 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-30T18:40:23.591253 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:23.592351 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.04 ms +I, [2018-07-30T18:40:23.592392 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:23.592522 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-30T18:40:23.592618 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:23.592764 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-30T18:40:23.592785 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:23.592988 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-30T18:40:23.593014 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:23.593113 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-30T18:40:23.593132 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:23.593229 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-30T18:40:23.593250 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:23.610270 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-30T18:40:23.610321 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:23.610460 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-30T18:40:23.610482 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:23.610630 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-30T18:40:23.610651 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:23.610755 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-30T18:40:23.610776 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:23.610918 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-07-30T18:40:23.610939 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:23.611066 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-30T18:40:23.611091 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:23.611188 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-30T18:40:23.611209 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:23.611298 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-30T18:40:23.611321 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:23.611443 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-30T18:40:23.611463 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:23.612911 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-07-30T18:40:23.612944 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:23.617170 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-30T18:40:23.617220 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:23.617353 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-30T18:40:23.617418 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:23.617557 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-30T18:40:23.617582 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:23.617687 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-30T18:40:23.617707 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:23.617810 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-30T18:40:23.617830 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:23.618373 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-30T18:40:23.618501 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:23.618664 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-30T18:40:23.618687 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:23.620157 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.58 ms +I, [2018-07-30T18:40:23.620301 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:23.620506 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-30T18:40:23.620537 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:23.620700 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-30T18:40:23.620779 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:23.621317 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-30T18:40:23.621363 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:23.621545 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-07-30T18:40:23.621574 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:23.621714 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-30T18:40:23.621737 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:23.621915 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-30T18:40:23.621938 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:23.624320 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-30T18:40:23.624432 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:23.624733 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-30T18:40:23.624770 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:23.624893 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-30T18:40:23.624916 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:23.625111 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-30T18:40:23.625137 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:23.625239 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-30T18:40:23.625260 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:23.625391 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-30T18:40:23.625438 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:23.625611 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-30T18:40:23.625636 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:23.625755 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-30T18:40:23.625890 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:23.626087 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-30T18:40:23.626111 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:23.626221 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-30T18:40:23.626241 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:23.626399 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-30T18:40:23.626420 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:23.626580 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-30T18:40:23.626606 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:23.626718 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-30T18:40:23.626740 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:23.626839 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-30T18:40:23.626860 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:23.638115 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-30T18:40:23.638226 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:23.638411 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-30T18:40:23.638433 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:23.638887 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-07-30T18:40:23.638919 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:23.639038 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-30T18:40:23.639059 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:23.639159 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-30T18:40:23.639179 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:23.639329 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-30T18:40:23.639349 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:25.640339 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-07-30T18:40:25.640402 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:25.640613 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-30T18:40:25.640639 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:27.641340 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-07-30T18:40:27.641405 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:27.641605 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-30T18:40:27.641639 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:27.641861 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-30T18:40:27.642110 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:29.642763 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-07-30T18:40:29.642809 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:29.643028 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-07-30T18:40:29.643051 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:29.643206 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-30T18:40:29.643227 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:29.643360 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-30T18:40:29.643380 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:29.643489 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-30T18:40:29.643545 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:29.643681 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-30T18:40:29.643703 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:29.643868 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-30T18:40:29.643893 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:31.644021 #5] INFO -- : Committing offsets: section_change/0:1169 +I, [2018-07-30T18:40:31.648565 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-07-30T18:40:31.648628 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:31.648806 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.06 ms +I, [2018-07-30T18:40:31.648861 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:31.648985 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-30T18:40:31.649006 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:31.649128 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-30T18:40:31.649150 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:31.649272 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-30T18:40:31.649294 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:31.649482 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-07-30T18:40:31.649569 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:31.649683 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-30T18:40:31.649813 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:31.650000 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-30T18:40:31.650023 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:31.650135 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-30T18:40:31.650155 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:31.650297 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-30T18:40:31.650362 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:31.650486 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.05 ms +I, [2018-07-30T18:40:31.650507 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-07-30T18:40:31.650617 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.04 ms +I, [2018-07-30T18:40:31.650640 #5] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +>>>>>>> 4eed4ea158c4b2f6fa86b4f265ab06952dc6f304 +I, [2018-08-07T01:49:46.526010 #7] INFO -- : New topics added to target list: section_change +I, [2018-08-07T01:49:46.527583 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T01:49:46.531159 #7] INFO -- : New topics added to target list: course_change +I, [2018-08-07T01:49:46.532823 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T01:49:46.567058 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +E, [2018-08-07T01:49:46.567317 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +E, [2018-08-07T01:49:46.582560 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +E, [2018-08-07T01:49:46.583464 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +E, [2018-08-07T01:49:51.568137 #7] 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-08-07T01:49:51.573273 #7] INFO -- : New topics added to target list: section_change +I, [2018-08-07T01:49:51.573460 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T01:49:51.575198 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +E, [2018-08-07T01:49:51.575322 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +E, [2018-08-07T01:49:51.585746 #7] 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-08-07T01:49:51.589217 #7] INFO -- : New topics added to target list: course_change +I, [2018-08-07T01:49:51.589297 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T01:49:51.591412 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +E, [2018-08-07T01:49:51.591592 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +E, [2018-08-07T01:49:56.582356 #7] 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 +E, [2018-08-07T01:49:56.603499 #7] 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-08-07T01:49:56.644135 #7] INFO -- : New topics added to target list: course_change +I, [2018-08-07T01:49:56.644344 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T01:49:56.736888 #7] INFO -- : New topics added to target list: section_change +I, [2018-08-07T01:49:56.737033 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T01:49:56.745164 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +E, [2018-08-07T01:49:56.745772 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +E, [2018-08-07T01:49:56.752117 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +E, [2018-08-07T01:49:56.752572 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +E, [2018-08-07T01:50:01.747480 #7] 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-08-07T01:50:01.752335 #7] INFO -- : New topics added to target list: course_change +I, [2018-08-07T01:50:01.752457 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T01:50:01.753904 #7] 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-08-07T01:50:01.754558 #7] INFO -- : New topics added to target list: section_change +I, [2018-08-07T01:50:01.754599 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T01:50:01.755658 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +E, [2018-08-07T01:50:01.755824 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +E, [2018-08-07T01:50:01.756451 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +E, [2018-08-07T01:50:01.756524 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +E, [2018-08-07T01:50:06.716957 #7] 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-08-07T01:50:06.718480 #7] INFO -- : New topics added to target list: section_change +I, [2018-08-07T01:50:06.718547 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T01:50:06.720706 #7] 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-08-07T01:50:06.722028 #7] INFO -- : New topics added to target list: course_change +I, [2018-08-07T01:50:06.722264 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T01:50:06.794265 #7] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-07T01:50:06.794875 #7] INFO -- : Joining group `notifications_notifications` +I, [2018-08-07T01:50:06.801808 #7] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-07T01:50:06.802021 #7] INFO -- : Joining group `notifications_course_change` +I, [2018-08-07T01:50:06.819107 #7] INFO -- : Will fetch at most 1048576 bytes at a time per partition from section_change +I, [2018-08-07T01:50:06.819371 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T01:50:06.824711 #7] INFO -- : Will fetch at most 1048576 bytes at a time per partition from course_change +I, [2018-08-07T01:50:06.824853 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T01:50:06.841810 #7] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-07T01:50:06.842071 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T01:50:06.907669 #7] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-07T01:50:06.907796 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T01:50:07.842899 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T01:50:07.914600 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T01:50:08.843553 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T01:50:08.915456 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T01:50:09.844265 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T01:50:09.916336 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T01:50:10.849711 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T01:50:10.918445 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T01:50:11.094555 #7] INFO -- : Joined group `notifications_notifications` with member id `notifications-81282814-92ea-4a9b-84c9-32434bd449e5` +I, [2018-08-07T01:50:11.094671 #7] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-07T01:50:11.103002 #7] INFO -- : Joined group `notifications_course_change` with member id `notifications-d39ff46e-cec1-453d-8916-abe5c058a450` +I, [2018-08-07T01:50:11.103072 #7] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-07T01:56:23.038219 #7] INFO -- : New topics added to target list: course_change +I, [2018-08-07T01:56:23.038494 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T01:56:23.034567 #7] INFO -- : New topics added to target list: section_change +I, [2018-08-07T01:56:23.042792 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T01:56:23.051965 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T01:56:23.052126 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T01:56:23.052460 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T01:56:23.052526 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T01:56:28.056760 #7] 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.14:9094 +I, [2018-08-07T01:56:28.058890 #7] INFO -- : New topics added to target list: course_change +I, [2018-08-07T01:56:28.058959 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T01:56:28.059161 #7] 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.14:9094 +I, [2018-08-07T01:56:28.061664 #7] INFO -- : New topics added to target list: section_change +I, [2018-08-07T01:56:28.061786 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T01:56:28.090248 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T01:56:28.100098 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T01:56:28.106261 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T01:56:28.107504 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T01:56:33.328623 #7] 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.14:9094 +E, [2018-08-07T01:56:33.715261 #7] 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.14:9094 +I, [2018-08-07T01:56:33.750948 #7] INFO -- : New topics added to target list: course_change +I, [2018-08-07T01:56:33.822390 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T01:56:33.838259 #7] INFO -- : New topics added to target list: section_change +I, [2018-08-07T01:56:33.838344 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T01:56:33.846624 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T01:56:33.846871 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T01:56:34.102330 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T01:56:34.102912 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T01:56:38.911492 #7] 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.14:9094 +I, [2018-08-07T01:56:39.082533 #7] INFO -- : New topics added to target list: section_change +I, [2018-08-07T01:56:39.083455 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T01:56:39.129378 #7] 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.14:9094 +E, [2018-08-07T01:56:39.375713 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T01:56:39.379725 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +I, [2018-08-07T01:56:39.380342 #7] INFO -- : New topics added to target list: course_change +I, [2018-08-07T01:56:39.548216 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T01:56:39.652085 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T01:56:39.654902 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T01:56:45.616940 #7] 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.14:9094 +E, [2018-08-07T01:56:46.823889 #7] 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.14:9094 +I, [2018-08-07T01:56:49.885619 #7] INFO -- : New topics added to target list: section_change +I, [2018-08-07T01:56:49.886229 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T01:56:49.906117 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T01:56:50.420409 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +I, [2018-08-07T01:56:50.430786 #7] INFO -- : New topics added to target list: course_change +I, [2018-08-07T01:56:50.430882 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T01:56:50.432422 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T01:56:50.432545 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T01:56:55.428191 #7] 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.14:9094 +E, [2018-08-07T01:56:55.606286 #7] 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.14:9094 +I, [2018-08-07T01:57:02.826945 #7] INFO -- : New topics added to target list: course_change +I, [2018-08-07T01:57:02.828120 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T01:57:02.859700 #7] INFO -- : New topics added to target list: section_change +I, [2018-08-07T01:57:02.859792 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T01:57:05.906077 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T01:57:07.822072 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T01:57:08.114817 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T01:57:08.116690 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T01:57:13.110222 #7] 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.14:9094 +E, [2018-08-07T01:57:13.677472 #7] 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.14:9094 +I, [2018-08-07T01:57:15.488219 #7] INFO -- : New topics added to target list: section_change +I, [2018-08-07T01:57:15.490102 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T01:57:16.082372 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T01:57:16.105515 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +I, [2018-08-07T01:57:16.082934 #7] INFO -- : New topics added to target list: course_change +I, [2018-08-07T01:57:16.105674 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T01:57:16.106829 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T01:57:16.106945 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T01:57:21.145378 #7] 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.14:9094 +I, [2018-08-07T01:57:21.174027 #7] INFO -- : New topics added to target list: section_change +I, [2018-08-07T01:57:21.174296 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T01:57:21.116903 #7] 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.14:9094 +I, [2018-08-07T01:57:21.179988 #7] INFO -- : New topics added to target list: course_change +I, [2018-08-07T01:57:21.180040 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T01:57:21.421598 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T01:57:21.422120 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T01:57:21.422724 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T01:57:21.422820 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T01:57:26.425397 #7] 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.14:9094 +I, [2018-08-07T01:57:26.444333 #7] INFO -- : New topics added to target list: course_change +I, [2018-08-07T01:57:26.444738 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T01:57:26.459872 #7] 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.14:9094 +I, [2018-08-07T01:57:26.462998 #7] INFO -- : New topics added to target list: section_change +I, [2018-08-07T01:57:26.463070 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T01:57:41.161998 #7] ERROR -- : No brokers in cluster +E, [2018-08-07T01:57:41.163364 #7] ERROR -- : No brokers in cluster +E, [2018-08-07T01:57:46.792188 #7] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: + +E, [2018-08-07T01:57:46.854448 #7] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: + +I, [2018-08-07T01:57:46.864925 #7] INFO -- : New topics added to target list: course_change +I, [2018-08-07T01:57:46.871489 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T01:57:46.903080 #7] INFO -- : New topics added to target list: section_change +I, [2018-08-07T01:57:46.903394 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T01:57:47.303005 #7] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-07T01:57:47.306895 #7] INFO -- : Joining group `notifications_notifications` +I, [2018-08-07T01:57:47.310309 #7] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-07T01:57:47.311022 #7] INFO -- : Joining group `notifications_course_change` +I, [2018-08-07T01:57:47.407546 #7] INFO -- : Will fetch at most 1048576 bytes at a time per partition from course_change +I, [2018-08-07T01:57:47.408197 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T01:57:47.414917 #7] INFO -- : Will fetch at most 1048576 bytes at a time per partition from section_change +I, [2018-08-07T01:57:47.435314 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T01:57:47.591114 #7] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-07T01:57:47.608726 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T01:57:48.164786 #7] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-07T01:57:48.164997 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T01:57:48.609353 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T01:57:49.216004 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T01:57:49.611877 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T01:57:50.216412 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T01:57:50.914278 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T01:57:51.222276 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T01:57:51.916183 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T01:57:52.226551 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T01:57:52.917733 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T01:57:53.226888 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T01:57:53.923027 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T01:57:54.236630 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T01:57:54.927679 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T01:57:55.237601 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T01:57:55.928151 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T01:57:56.284894 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T01:57:56.928594 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T01:57:57.285549 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T01:57:57.929877 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T01:57:58.369598 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T01:57:58.931233 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T01:57:59.371092 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T01:57:59.933165 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T01:58:00.593855 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T01:58:01.003758 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T01:58:01.595448 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T01:58:02.069276 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T01:58:02.597140 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T01:58:03.070548 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T01:58:03.597872 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T01:58:03.607416 #7] INFO -- : Joined group `notifications_notifications` with member id `notifications-90f8470b-9d48-41c8-992f-68d589d2a7df` +I, [2018-08-07T01:58:03.607586 #7] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-07T01:58:03.640519 #7] INFO -- : Joined group `notifications_course_change` with member id `notifications-c4c4700f-f285-4929-a88f-5f9810e3332b` +I, [2018-08-07T01:58:03.640587 #7] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-07T01:58:04.034940 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T01:58:04.561464 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T01:58:04.595705 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T01:58:04.628379 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T01:58:04.637510 #7] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-07T01:58:04.672025 #7] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-07T01:58:05.035301 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T01:58:05.057244 #7] INFO -- : Partitions assigned for `course_change`: 0 +I, [2018-08-07T01:58:05.066538 #7] INFO -- : Partitions assigned for `section_change`: 0 +I, [2018-08-07T01:58:05.572961 #7] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-07T01:58:05.573194 #7] INFO -- : New topics added to target list: section_change +I, [2018-08-07T01:58:05.573252 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T01:58:05.649938 #7] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-07T01:58:06.035662 #7] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-07T01:58:06.054118 #7] INFO -- : New topics added to target list: course_change +I, [2018-08-07T01:58:06.054203 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T01:58:06.058760 #7] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-07T01:58:22.366791 #7] INFO -- : Inline processing of topic course_change with 1 messages took 2400.06 ms +I, [2018-08-07T01:58:22.367311 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:58:22.367494 #7] INFO -- : Committing offsets with recommit: course_change/0:1 +I, [2018-08-07T01:58:24.587533 #7] INFO -- : Inline processing of topic course_change with 1 messages took 2.85 ms +I, [2018-08-07T01:58:24.587624 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:58:24.590136 #7] INFO -- : Inline processing of topic course_change with 1 messages took 1.45 ms +I, [2018-08-07T01:58:24.671003 #7] INFO -- : Inline processing of topic section_change with 1 messages took 3.49 ms +I, [2018-08-07T01:58:24.671078 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:58:24.671323 #7] INFO -- : Committing offsets with recommit: section_change/0:1 +I, [2018-08-07T01:58:24.867246 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:58:24.887690 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.76 ms +I, [2018-08-07T01:58:24.887806 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:58:24.888692 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.5 ms +I, [2018-08-07T01:58:24.888760 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:58:24.890591 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-08-07T01:58:24.890849 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:58:24.907831 #7] INFO -- : Inline processing of topic section_change with 1 messages took 16.35 ms +I, [2018-08-07T01:58:24.907965 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:58:24.911706 #7] INFO -- : Inline processing of topic section_change with 1 messages took 3.0 ms +I, [2018-08-07T01:58:24.911792 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:58:24.915087 #7] INFO -- : Inline processing of topic section_change with 1 messages took 2.6 ms +I, [2018-08-07T01:58:24.915174 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:58:24.916181 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-08-07T01:58:24.916252 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:58:24.917122 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.57 ms +I, [2018-08-07T01:58:24.917365 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:58:26.869922 #7] INFO -- : Inline processing of topic course_change with 1 messages took 1.68 ms +I, [2018-08-07T01:58:26.869981 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:58:26.871665 #7] INFO -- : Inline processing of topic course_change with 1 messages took 1.5 ms +I, [2018-08-07T01:58:26.871735 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:58:26.872097 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T01:58:26.872131 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:58:26.918618 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.67 ms +I, [2018-08-07T01:58:26.918684 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:58:26.919024 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T01:58:26.919067 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:58:26.920511 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.26 ms +I, [2018-08-07T01:58:26.920575 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:58:26.920993 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T01:58:26.921072 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:58:26.923602 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T01:58:26.923701 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:58:26.946210 #7] INFO -- : Inline processing of topic section_change with 1 messages took 22.09 ms +I, [2018-08-07T01:58:26.946296 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:58:26.946710 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T01:58:26.946753 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:58:26.947922 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.98 ms +I, [2018-08-07T01:58:26.948066 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:58:26.965615 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T01:58:26.965692 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:58:27.006576 #7] INFO -- : Inline processing of topic section_change with 1 messages took 20.89 ms +I, [2018-08-07T01:58:27.006790 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:58:27.007446 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T01:58:27.007675 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:58:27.010744 #7] INFO -- : Inline processing of topic section_change with 1 messages took 2.68 ms +I, [2018-08-07T01:58:27.010817 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:58:27.011187 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T01:58:27.011234 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:58:27.029918 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-08-07T01:58:27.031753 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:58:27.033099 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.81 ms +I, [2018-08-07T01:58:27.033163 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:58:27.033507 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T01:58:27.033549 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:58:27.035618 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.88 ms +I, [2018-08-07T01:58:27.035685 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:58:27.051557 #7] INFO -- : Inline processing of topic section_change with 1 messages took 3.2 ms +I, [2018-08-07T01:58:27.052150 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:58:27.053157 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.75 ms +I, [2018-08-07T01:58:27.053214 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:58:27.053559 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T01:58:27.053610 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:58:28.916255 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.23 ms +I, [2018-08-07T01:58:28.916319 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:58:28.916687 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T01:58:28.916894 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:58:28.917263 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T01:58:28.917315 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:58:28.918267 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.58 ms +I, [2018-08-07T01:58:28.918365 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:58:28.918838 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.26 ms +I, [2018-08-07T01:58:28.918926 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:58:29.070803 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T01:58:29.070911 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:58:29.071298 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T01:58:29.071347 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:58:29.071698 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T01:58:29.071742 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:58:29.072047 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T01:58:29.072079 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:58:29.072294 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-08-07T01:58:29.072324 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:58:29.072676 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T01:58:29.072724 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:58:29.073044 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T01:58:29.073087 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:58:29.073416 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T01:58:29.073459 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:58:29.073774 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T01:58:29.073816 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:58:29.074244 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T01:58:29.074282 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:58:29.074543 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T01:58:29.074573 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:58:29.074889 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T01:58:29.074975 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:58:29.075651 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T01:58:29.075778 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:58:29.076864 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-08-07T01:58:29.077120 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:58:29.078829 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.01 ms +I, [2018-08-07T01:58:29.078898 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:58:29.079342 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T01:58:29.079394 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:58:30.920026 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.4 ms +I, [2018-08-07T01:58:30.920102 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:58:30.920818 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.47 ms +I, [2018-08-07T01:58:30.920880 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:58:30.921310 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-08-07T01:58:30.921362 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:58:30.922024 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.41 ms +I, [2018-08-07T01:58:30.922146 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:58:30.922843 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.3 ms +I, [2018-08-07T01:58:30.922905 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:58:30.923346 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.26 ms +I, [2018-08-07T01:58:30.923392 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:58:30.923726 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T01:58:30.923772 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:58:30.924145 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T01:58:30.924195 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:58:30.924556 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T01:58:30.924607 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:58:30.927364 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.24 ms +I, [2018-08-07T01:58:30.927433 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:58:30.927853 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-08-07T01:58:30.927907 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:58:30.928295 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T01:58:30.928349 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:58:31.080502 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T01:58:31.080570 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:58:31.080999 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T01:58:31.081051 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:58:31.081439 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T01:58:31.081505 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:58:31.081850 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T01:58:31.081893 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:58:31.082242 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T01:58:31.082286 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:58:31.082619 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T01:58:31.082665 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:58:31.083029 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T01:58:31.083076 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:58:31.083781 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T01:58:31.083867 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:58:31.084321 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T01:58:31.084388 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:58:31.084809 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T01:58:31.084866 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:58:31.085532 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T01:58:31.085580 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:58:31.089234 #7] INFO -- : Inline processing of topic section_change with 1 messages took 2.29 ms +I, [2018-08-07T01:58:31.091478 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:58:31.094812 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T01:58:31.094922 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:58:32.928699 #7] INFO -- : Committing offsets: course_change/0:23 +I, [2018-08-07T01:58:32.932299 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.23 ms +I, [2018-08-07T01:58:32.932546 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:58:32.933045 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.26 ms +I, [2018-08-07T01:58:32.933083 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:58:32.933503 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.24 ms +I, [2018-08-07T01:58:32.933593 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:58:32.934742 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.49 ms +I, [2018-08-07T01:58:32.934865 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:58:33.097054 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T01:58:33.097107 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:58:33.097405 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T01:58:33.097467 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:58:33.097711 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T01:58:33.097883 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:58:33.098852 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.64 ms +I, [2018-08-07T01:58:33.098918 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:58:33.099882 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T01:58:33.099934 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:58:33.100380 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T01:58:33.100421 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:58:33.100781 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T01:58:33.100833 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:58:33.101204 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T01:58:33.101285 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:58:35.159876 #7] INFO -- : Committing offsets: section_change/0:66 +I, [2018-08-07T01:58:36.032373 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.55 ms +I, [2018-08-07T01:58:36.032460 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:58:36.032981 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-08-07T01:58:36.033071 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:58:36.033522 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.27 ms +I, [2018-08-07T01:58:36.033571 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:58:36.033942 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T01:58:36.033988 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:58:36.034543 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.29 ms +I, [2018-08-07T01:58:36.034592 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:58:36.035320 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.33 ms +I, [2018-08-07T01:58:36.035488 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:58:36.036459 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T01:58:36.036544 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:58:36.037020 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T01:58:36.037074 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:58:36.223025 #7] INFO -- : Inline processing of topic section_change with 1 messages took 8.28 ms +I, [2018-08-07T01:58:36.223108 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:58:36.261142 #7] INFO -- : Inline processing of topic section_change with 1 messages took 37.67 ms +I, [2018-08-07T01:58:36.261300 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:58:36.262361 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.69 ms +I, [2018-08-07T01:58:36.262447 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:58:36.262883 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T01:58:36.272554 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:58:36.419600 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-08-07T01:58:36.419694 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:58:36.420170 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T01:58:36.420255 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:58:36.420660 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T01:58:36.420713 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:58:36.422192 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.23 ms +I, [2018-08-07T01:58:36.422261 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:58:36.422725 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T01:58:36.422804 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:58:36.423326 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-08-07T01:58:36.423388 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:58:36.423847 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T01:58:36.423900 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:58:36.424346 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T01:58:36.424403 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:58:36.424852 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T01:58:36.424906 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:58:36.425349 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T01:58:36.425403 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:58:36.425799 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T01:58:36.425852 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:58:36.426233 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T01:58:36.426285 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:58:38.050098 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.26 ms +I, [2018-08-07T01:58:38.050151 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:58:38.050557 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T01:58:38.050611 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:58:38.051588 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.79 ms +I, [2018-08-07T01:58:38.051634 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:58:38.052083 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T01:58:38.052145 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:58:38.052500 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T01:58:38.052549 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:58:38.054344 #7] INFO -- : Inline processing of topic course_change with 1 messages took 1.59 ms +I, [2018-08-07T01:58:38.054395 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:58:38.054692 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T01:58:38.054724 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:58:38.055026 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T01:58:38.055060 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:58:38.057036 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T01:58:38.057091 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T01:58:38.427503 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-08-07T01:58:38.427585 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:58:38.428072 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T01:58:38.428127 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:58:38.428524 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T01:58:38.428572 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:58:38.428971 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T01:58:38.429027 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:58:38.429715 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-08-07T01:58:38.429812 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:58:38.430398 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T01:58:38.430475 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:58:38.430883 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T01:58:38.430966 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:58:38.432155 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-08-07T01:58:38.432227 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:58:38.436625 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-08-07T01:58:38.436750 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:58:38.441208 #7] INFO -- : Inline processing of topic section_change with 1 messages took 3.61 ms +I, [2018-08-07T01:58:38.441291 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:58:38.442123 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-08-07T01:58:38.442196 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T01:58:38.443108 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T02:00:40.244850 #8] INFO -- : New topics added to target list: section_change +I, [2018-08-07T02:00:40.245816 #8] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T02:00:40.276722 #8] INFO -- : New topics added to target list: course_change +I, [2018-08-07T02:00:40.276806 #8] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T02:00:40.291161 #8] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.5:9094 +E, [2018-08-07T02:00:40.291451 #8] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.5:9094 +E, [2018-08-07T02:00:40.317710 #8] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.5:9094 +E, [2018-08-07T02:00:40.318006 #8] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.5:9094 +E, [2018-08-07T02:00:45.292426 #8] 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.5:9094 +I, [2018-08-07T02:00:45.293208 #8] INFO -- : New topics added to target list: course_change +I, [2018-08-07T02:00:45.293494 #8] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T02:00:45.305615 #8] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.5:9094 +E, [2018-08-07T02:00:45.305916 #8] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.5:9094 +E, [2018-08-07T02:00:45.323457 #8] 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.5:9094 +I, [2018-08-07T02:00:45.374908 #8] INFO -- : New topics added to target list: section_change +I, [2018-08-07T02:00:45.375002 #8] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T02:00:45.378502 #8] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.5:9094 +E, [2018-08-07T02:00:45.378700 #8] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.5:9094 +E, [2018-08-07T02:00:50.306588 #8] 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.5:9094 +I, [2018-08-07T02:00:50.314186 #8] INFO -- : New topics added to target list: course_change +I, [2018-08-07T02:00:50.314470 #8] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T02:00:50.326431 #8] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.5:9094 +E, [2018-08-07T02:00:50.328436 #8] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.5:9094 +E, [2018-08-07T02:00:50.443410 #8] 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.5:9094 +I, [2018-08-07T02:00:50.444875 #8] INFO -- : New topics added to target list: section_change +I, [2018-08-07T02:00:50.444932 #8] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T02:00:50.452232 #8] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.5:9094 +E, [2018-08-07T02:00:50.452655 #8] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.5:9094 +E, [2018-08-07T02:00:55.455511 #8] 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.5:9094 +I, [2018-08-07T02:00:55.529431 #8] INFO -- : New topics added to target list: section_change +I, [2018-08-07T02:00:55.531068 #8] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T02:00:55.531389 #8] 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.5:9094 +I, [2018-08-07T02:00:55.532845 #8] INFO -- : New topics added to target list: course_change +I, [2018-08-07T02:00:55.532931 #8] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T02:00:55.545498 #8] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.5:9094 +E, [2018-08-07T02:00:55.545868 #8] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.5:9094 +E, [2018-08-07T02:00:55.563218 #8] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.5:9094 +E, [2018-08-07T02:00:55.563325 #8] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.5:9094 +E, [2018-08-07T02:01:00.549951 #8] 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.5:9094 +I, [2018-08-07T02:01:00.560415 #8] INFO -- : New topics added to target list: course_change +I, [2018-08-07T02:01:00.560718 #8] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T02:01:00.577631 #8] 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.5:9094 +I, [2018-08-07T02:01:00.582154 #8] INFO -- : New topics added to target list: section_change +I, [2018-08-07T02:01:00.582236 #8] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T02:01:00.628548 #8] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.5:9094 +E, [2018-08-07T02:01:00.629179 #8] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.5:9094 +E, [2018-08-07T02:01:00.630969 #8] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.5:9094 +E, [2018-08-07T02:01:00.631314 #8] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.5:9094 +E, [2018-08-07T02:01:05.591005 #8] 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.5:9094 +I, [2018-08-07T02:01:05.594847 #8] INFO -- : New topics added to target list: section_change +I, [2018-08-07T02:01:05.594928 #8] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T02:01:05.595204 #8] 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.5:9094 +I, [2018-08-07T02:01:05.596663 #8] INFO -- : New topics added to target list: course_change +I, [2018-08-07T02:01:05.596720 #8] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T02:01:09.220405 #8] ERROR -- : No brokers in cluster +E, [2018-08-07T02:01:09.328807 #8] ERROR -- : No brokers in cluster +E, [2018-08-07T02:01:14.221333 #8] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: + +I, [2018-08-07T02:01:14.223399 #8] INFO -- : New topics added to target list: section_change +I, [2018-08-07T02:01:14.223456 #8] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T02:01:14.293778 #8] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-07T02:01:14.296524 #8] INFO -- : Joining group `notifications_notifications` +I, [2018-08-07T02:01:14.324021 #8] INFO -- : Will fetch at most 1048576 bytes at a time per partition from section_change +I, [2018-08-07T02:01:14.324495 #8] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T02:01:14.330673 #8] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: + +I, [2018-08-07T02:01:14.337237 #8] INFO -- : New topics added to target list: course_change +I, [2018-08-07T02:01:14.337323 #8] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T02:01:14.375546 #8] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-07T02:01:14.609403 #8] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T02:01:15.073250 #8] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-07T02:01:15.199966 #8] INFO -- : Joining group `notifications_course_change` +I, [2018-08-07T02:01:15.371105 #8] INFO -- : Will fetch at most 1048576 bytes at a time per partition from course_change +I, [2018-08-07T02:01:15.371300 #8] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T02:01:15.577199 #8] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-07T02:01:15.579966 #8] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T02:01:15.610129 #8] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T02:01:16.581456 #8] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T02:01:16.611525 #8] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T02:01:17.581863 #8] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T02:01:17.612054 #8] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T02:01:18.583922 #8] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T02:01:18.612583 #8] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T02:01:19.586047 #8] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T02:01:19.614614 #8] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T02:01:19.905060 #8] INFO -- : Joined group `notifications_notifications` with member id `notifications-3060349c-5374-4213-a401-1ccef854d7ec` +I, [2018-08-07T02:01:19.905124 #8] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-07T02:01:19.907408 #8] INFO -- : Joined group `notifications_course_change` with member id `notifications-f921b7ed-be56-4992-ac71-b1495e67a332` +I, [2018-08-07T02:01:19.907459 #8] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-07T02:01:20.586456 #8] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T02:01:20.618448 #8] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T02:01:20.907570 #8] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T02:01:20.909077 #8] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T02:01:20.918661 #8] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-07T02:01:20.949135 #8] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-07T02:01:21.086239 #8] INFO -- : Partitions assigned for `course_change`: 0 +I, [2018-08-07T02:01:21.089489 #8] INFO -- : Partitions assigned for `section_change`: 0 +I, [2018-08-07T02:01:21.586740 #8] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-07T02:01:21.587452 #8] INFO -- : New topics added to target list: course_change +I, [2018-08-07T02:01:21.587541 #8] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T02:01:21.592058 #8] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-07T02:01:21.619236 #8] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-07T02:01:21.619996 #8] INFO -- : New topics added to target list: section_change +I, [2018-08-07T02:01:21.620225 #8] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T02:01:21.624476 #8] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-07T02:01:25.233235 #8] INFO -- : Inline processing of topic section_change with 1 messages took 40.27 ms +I, [2018-08-07T02:01:25.233654 #8] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:01:25.233801 #8] INFO -- : Committing offsets with recommit: section_change/0:1 +I, [2018-08-07T02:01:25.257655 #8] INFO -- : Inline processing of topic course_change with 1 messages took 0.23 ms +I, [2018-08-07T02:01:25.257718 #8] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:01:25.258128 #8] INFO -- : Committing offsets with recommit: course_change/0:1 +I, [2018-08-07T02:01:25.288762 #8] INFO -- : Inline processing of topic section_change with 1 messages took 0.51 ms +I, [2018-08-07T02:01:25.288825 #8] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:01:25.289682 #8] INFO -- : Inline processing of topic section_change with 1 messages took 0.4 ms +I, [2018-08-07T02:01:25.289941 #8] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:01:25.290416 #8] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T02:01:25.290472 #8] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:01:25.291456 #8] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-08-07T02:01:25.291507 #8] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:01:25.292001 #8] INFO -- : Inline processing of topic course_change with 1 messages took 0.32 ms +I, [2018-08-07T02:01:25.292047 #8] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:01:27.296734 #8] INFO -- : Inline processing of topic section_change with 1 messages took 0.51 ms +I, [2018-08-07T02:01:27.296991 #8] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:01:27.297464 #8] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T02:01:27.297608 #8] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:01:27.300149 #8] INFO -- : Inline processing of topic section_change with 1 messages took 1.59 ms +I, [2018-08-07T02:01:27.300364 #8] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:01:27.306802 #8] INFO -- : Inline processing of topic section_change with 1 messages took 6.03 ms +I, [2018-08-07T02:01:27.306952 #8] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:01:27.307472 #8] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T02:01:27.307608 #8] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:01:27.308191 #8] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-08-07T02:01:27.308359 #8] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:01:27.309126 #8] INFO -- : Inline processing of topic section_change with 1 messages took 0.57 ms +I, [2018-08-07T02:01:27.309493 #8] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:01:27.311046 #8] INFO -- : Inline processing of topic section_change with 1 messages took 0.77 ms +I, [2018-08-07T02:01:27.311509 #8] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:01:27.335086 #8] INFO -- : Inline processing of topic section_change with 1 messages took 0.5 ms +I, [2018-08-07T02:01:27.335724 #8] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:01:27.336495 #8] INFO -- : Inline processing of topic section_change with 1 messages took 0.55 ms +I, [2018-08-07T02:01:27.336547 #8] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:01:27.337623 #8] INFO -- : Inline processing of topic section_change with 1 messages took 0.88 ms +I, [2018-08-07T02:01:27.337689 #8] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:01:27.338574 #8] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-08-07T02:01:27.338628 #8] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:01:27.417102 #8] INFO -- : Inline processing of topic course_change with 1 messages took 1.75 ms +I, [2018-08-07T02:01:27.417279 #8] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:01:27.418423 #8] INFO -- : Inline processing of topic course_change with 1 messages took 0.56 ms +I, [2018-08-07T02:01:27.418488 #8] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:01:27.419098 #8] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-08-07T02:01:27.419164 #8] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:01:27.419679 #8] INFO -- : Inline processing of topic course_change with 1 messages took 0.25 ms +I, [2018-08-07T02:01:27.419734 #8] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:01:27.420241 #8] INFO -- : Inline processing of topic course_change with 1 messages took 0.3 ms +I, [2018-08-07T02:01:27.420292 #8] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:01:27.455806 #8] INFO -- : Inline processing of topic section_change with 1 messages took 0.43 ms +I, [2018-08-07T02:01:27.455877 #8] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:01:27.456400 #8] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T02:01:27.456588 #8] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:01:27.457079 #8] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T02:01:27.457142 #8] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:01:27.457575 #8] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T02:01:27.457739 #8] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:01:27.523960 #8] INFO -- : Inline processing of topic section_change with 1 messages took 0.89 ms +I, [2018-08-07T02:01:27.524060 #8] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:01:27.524503 #8] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T02:01:27.524557 #8] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:01:27.524990 #8] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T02:01:27.532295 #8] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:01:27.533103 #8] INFO -- : Inline processing of topic section_change with 1 messages took 0.44 ms +I, [2018-08-07T02:01:27.533227 #8] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:01:27.554168 #8] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T02:01:27.554244 #8] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:01:27.554643 #8] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T02:01:27.554697 #8] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:01:27.555216 #8] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T02:01:27.555266 #8] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:01:27.555753 #8] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-08-07T02:01:27.555802 #8] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:01:27.556249 #8] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T02:01:27.556297 #8] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:01:27.566164 #8] INFO -- : Inline processing of topic section_change with 1 messages took 0.58 ms +I, [2018-08-07T02:01:27.566264 #8] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:01:27.566930 #8] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-08-07T02:01:27.566998 #8] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:01:27.571358 #8] INFO -- : Inline processing of topic section_change with 1 messages took 4.1 ms +I, [2018-08-07T02:01:27.571505 #8] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:01:27.572358 #8] INFO -- : Inline processing of topic section_change with 1 messages took 0.43 ms +I, [2018-08-07T02:01:27.572422 #8] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:01:29.422780 #8] INFO -- : Inline processing of topic course_change with 1 messages took 0.36 ms +I, [2018-08-07T02:01:29.422957 #8] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:01:29.423386 #8] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T02:01:29.423422 #8] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:01:29.423807 #8] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T02:01:29.423882 #8] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:01:29.428304 #8] INFO -- : Inline processing of topic course_change with 1 messages took 0.27 ms +I, [2018-08-07T02:01:29.428446 #8] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:01:29.575605 #8] INFO -- : Inline processing of topic section_change with 1 messages took 1.48 ms +I, [2018-08-07T02:01:29.575833 #8] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:01:29.576488 #8] INFO -- : Inline processing of topic section_change with 1 messages took 0.43 ms +I, [2018-08-07T02:01:29.576705 #8] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:01:29.577113 #8] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T02:01:29.577164 #8] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:01:29.577509 #8] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T02:01:29.577554 #8] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:01:29.577929 #8] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T02:01:29.577977 #8] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:01:29.578357 #8] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T02:01:29.578405 #8] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:01:29.579026 #8] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T02:01:29.579077 #8] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:01:29.579445 #8] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T02:01:29.579488 #8] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:01:29.579866 #8] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T02:01:29.579917 #8] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:01:29.580283 #8] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T02:01:29.580331 #8] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:01:29.580726 #8] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T02:01:29.581922 #8] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:01:29.582539 #8] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-08-07T02:01:29.582593 #8] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:01:29.583057 #8] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T02:01:29.583110 #8] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:01:31.453778 #8] INFO -- : Inline processing of topic course_change with 1 messages took 21.0 ms +I, [2018-08-07T02:01:31.453894 #8] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:01:31.466492 #8] INFO -- : Inline processing of topic course_change with 1 messages took 12.25 ms +I, [2018-08-07T02:01:31.466638 #8] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:01:31.468489 #8] INFO -- : Inline processing of topic course_change with 1 messages took 1.54 ms +I, [2018-08-07T02:01:31.468579 #8] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:01:31.509309 #8] INFO -- : Inline processing of topic course_change with 1 messages took 6.59 ms +I, [2018-08-07T02:01:31.509425 #8] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:01:31.560270 #8] INFO -- : Inline processing of topic course_change with 1 messages took 29.49 ms +I, [2018-08-07T02:01:31.560512 #8] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:01:31.561787 #8] INFO -- : Inline processing of topic course_change with 1 messages took 0.3 ms +I, [2018-08-07T02:01:31.561984 #8] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:01:31.615353 #8] INFO -- : Inline processing of topic section_change with 1 messages took 6.74 ms +I, [2018-08-07T02:01:31.615454 #8] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:01:31.615956 #8] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T02:01:31.616014 #8] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:01:31.627234 #8] INFO -- : Inline processing of topic section_change with 1 messages took 1.06 ms +I, [2018-08-07T02:01:31.627306 #8] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:01:31.630562 #8] INFO -- : Inline processing of topic section_change with 1 messages took 1.91 ms +I, [2018-08-07T02:01:31.704671 #8] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:01:31.719127 #8] INFO -- : Inline processing of topic section_change with 1 messages took 14.15 ms +I, [2018-08-07T02:01:31.719186 #8] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:01:31.719517 #8] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T02:01:31.734147 #8] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:01:31.740317 #8] INFO -- : Inline processing of topic section_change with 1 messages took 4.16 ms +I, [2018-08-07T02:01:31.740381 #8] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:01:31.756186 #8] INFO -- : Inline processing of topic section_change with 1 messages took 15.16 ms +I, [2018-08-07T02:01:31.756259 #8] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:01:31.756669 #8] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T02:01:31.761877 #8] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:01:31.702767 #8] INFO -- : Inline processing of topic course_change with 1 messages took 0.25 ms +I, [2018-08-07T02:01:31.783283 #8] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:01:31.783815 #8] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-08-07T02:01:31.783870 #8] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:01:31.786798 #8] INFO -- : Inline processing of topic course_change with 1 messages took 2.7 ms +I, [2018-08-07T02:01:31.786865 #8] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:01:31.841884 #8] INFO -- : Inline processing of topic course_change with 1 messages took 54.77 ms +I, [2018-08-07T02:01:31.841993 #8] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:01:31.842448 #8] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T02:01:31.842523 #8] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:01:31.843609 #8] INFO -- : Inline processing of topic course_change with 1 messages took 0.79 ms +I, [2018-08-07T02:01:31.844095 #8] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:01:31.887829 #8] INFO -- : Inline processing of topic course_change with 1 messages took 0.27 ms +I, [2018-08-07T02:01:31.887974 #8] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:01:31.893348 #8] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T02:01:31.910197 #8] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:01:31.911411 #8] INFO -- : Inline processing of topic section_change with 1 messages took 147.65 ms +I, [2018-08-07T02:01:31.911504 #8] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:01:31.915292 #8] INFO -- : Inline processing of topic section_change with 1 messages took 2.99 ms +I, [2018-08-07T02:01:31.915425 #8] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:01:31.942398 #8] INFO -- : Inline processing of topic section_change with 1 messages took 26.48 ms +I, [2018-08-07T02:01:31.942509 #8] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:01:31.970995 #8] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T02:01:31.971058 #8] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:01:33.877946 #8] INFO -- : Inline processing of topic course_change with 1 messages took 2.5 ms +I, [2018-08-07T02:01:33.878096 #8] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:01:33.881891 #8] INFO -- : Inline processing of topic course_change with 1 messages took 0.99 ms +I, [2018-08-07T02:01:33.881959 #8] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:01:33.939459 #8] INFO -- : Inline processing of topic section_change with 1 messages took 0.85 ms +I, [2018-08-07T02:01:33.939527 #8] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:01:33.940637 #8] INFO -- : Inline processing of topic section_change with 1 messages took 0.84 ms +I, [2018-08-07T02:01:33.940711 #8] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:01:33.947462 #8] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T02:01:33.947549 #8] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:01:33.947984 #8] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T02:01:33.948044 #8] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:01:33.949493 #8] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T02:01:33.949560 #8] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:01:33.961653 #8] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T02:01:33.961742 #8] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:01:33.962172 #8] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T02:01:33.962227 #8] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:01:33.963052 #8] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T02:01:33.965478 #8] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:01:33.965932 #8] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T02:01:33.965994 #8] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:01:33.979649 #8] INFO -- : Inline processing of topic section_change with 1 messages took 13.39 ms +I, [2018-08-07T02:01:33.979755 #8] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:01:35.946895 #8] INFO -- : Committing offsets: course_change/0:28 +I, [2018-08-07T02:01:36.433780 #8] INFO -- : Committing offsets: section_change/0:69 +I, [2018-08-07T02:01:36.588417 #8] INFO -- : Inline processing of topic course_change with 1 messages took 2.32 ms +I, [2018-08-07T02:01:36.588546 #8] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:01:36.589303 #8] INFO -- : Inline processing of topic course_change with 1 messages took 0.42 ms +I, [2018-08-07T02:01:36.589461 #8] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:01:36.590396 #8] INFO -- : Inline processing of topic course_change with 1 messages took 0.61 ms +I, [2018-08-07T02:01:36.590449 #8] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:01:36.591397 #8] INFO -- : Inline processing of topic course_change with 1 messages took 0.62 ms +I, [2018-08-07T02:01:36.594021 #8] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:01:36.597352 #8] INFO -- : Inline processing of topic course_change with 1 messages took 1.06 ms +I, [2018-08-07T02:01:36.597415 #8] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:01:36.599132 #8] INFO -- : Inline processing of topic course_change with 1 messages took 1.23 ms +I, [2018-08-07T02:01:36.599408 #8] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:01:36.600101 #8] INFO -- : Inline processing of topic course_change with 1 messages took 0.25 ms +I, [2018-08-07T02:01:36.600147 #8] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:01:36.603700 #8] INFO -- : Inline processing of topic course_change with 1 messages took 1.37 ms +I, [2018-08-07T02:01:36.603775 #8] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:01:36.604401 #8] INFO -- : Inline processing of topic course_change with 1 messages took 0.37 ms +I, [2018-08-07T02:01:36.604458 #8] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:01:36.607861 #8] INFO -- : Inline processing of topic course_change with 1 messages took 2.93 ms +I, [2018-08-07T02:01:36.607941 #8] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:01:36.616593 #8] INFO -- : Inline processing of topic section_change with 1 messages took 0.41 ms +I, [2018-08-07T02:01:36.616661 #8] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:01:36.617248 #8] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T02:01:36.617351 #8] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:01:36.617840 #8] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-08-07T02:01:36.617887 #8] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:01:36.618224 #8] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T02:01:36.618271 #8] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:01:36.623329 #8] INFO -- : Inline processing of topic section_change with 1 messages took 4.7 ms +I, [2018-08-07T02:01:36.623421 #8] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:01:36.624185 #8] INFO -- : Inline processing of topic section_change with 1 messages took 0.53 ms +I, [2018-08-07T02:01:36.624233 #8] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:01:36.624676 #8] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T02:01:36.624718 #8] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:01:36.625570 #8] INFO -- : Inline processing of topic section_change with 1 messages took 0.41 ms +I, [2018-08-07T02:01:36.625624 #8] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:01:36.626298 #8] INFO -- : Inline processing of topic section_change with 1 messages took 0.48 ms +I, [2018-08-07T02:01:36.626343 #8] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:01:36.630445 #8] INFO -- : Inline processing of topic section_change with 1 messages took 3.71 ms +I, [2018-08-07T02:01:36.630768 #8] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:01:36.655085 #8] INFO -- : Inline processing of topic section_change with 1 messages took 23.99 ms +I, [2018-08-07T02:01:36.655202 #8] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:01:36.658687 #8] INFO -- : Inline processing of topic section_change with 1 messages took 0.47 ms +I, [2018-08-07T02:01:36.658761 #8] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:01:36.662533 #8] INFO -- : Inline processing of topic section_change with 1 messages took 3.47 ms +I, [2018-08-07T02:01:36.662607 #8] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:01:36.663342 #8] INFO -- : Inline processing of topic section_change with 1 messages took 0.5 ms +I, [2018-08-07T02:01:36.663398 #8] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:01:36.666013 #8] INFO -- : Inline processing of topic section_change with 1 messages took 2.37 ms +I, [2018-08-07T02:01:36.666082 #8] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:01:36.666764 #8] INFO -- : Inline processing of topic section_change with 1 messages took 0.45 ms +I, [2018-08-07T02:01:36.666823 #8] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:01:38.609382 #8] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-08-07T02:01:38.609433 #8] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:01:38.609911 #8] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-08-07T02:01:38.609973 #8] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:01:38.610377 #8] INFO -- : Inline processing of topic course_change with 1 messages took 0.23 ms +I, [2018-08-07T02:01:38.610426 #8] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:01:38.611007 #8] INFO -- : Inline processing of topic course_change with 1 messages took 0.41 ms +I, [2018-08-07T02:01:38.611044 #8] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:01:38.611479 #8] INFO -- : Inline processing of topic course_change with 1 messages took 0.3 ms +I, [2018-08-07T02:01:38.611519 #8] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:01:38.614395 #8] INFO -- : Inline processing of topic course_change with 1 messages took 0.3 ms +I, [2018-08-07T02:01:38.614443 #8] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:01:38.614761 #8] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T02:01:38.614793 #8] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:01:38.615499 #8] INFO -- : Inline processing of topic course_change with 1 messages took 0.49 ms +I, [2018-08-07T02:01:38.615536 #8] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:01:38.615816 #8] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-08-07T02:01:38.615886 #8] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:01:38.616861 #8] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-08-07T02:01:38.616915 #8] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:01:38.617396 #8] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T02:01:38.617593 #8] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:01:38.617850 #8] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T02:01:38.617880 #8] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:01:38.618274 #8] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T02:01:38.618304 #8] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:01:38.618681 #8] INFO -- : Inline processing of topic course_change with 1 messages took 0.25 ms +I, [2018-08-07T02:01:38.618731 #8] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:01:38.619434 #8] INFO -- : Inline processing of topic course_change with 1 messages took 0.51 ms +I, [2018-08-07T02:01:38.619480 #8] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:01:38.626012 #8] INFO -- : Inline processing of topic course_change with 1 messages took 0.23 ms +I, [2018-08-07T02:01:38.626056 #8] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:01:38.626925 #8] INFO -- : Inline processing of topic course_change with 1 messages took 0.6 ms +I, [2018-08-07T02:01:38.626984 #8] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:01:38.668410 #8] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T02:01:38.668693 #8] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:01:38.669138 #8] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T02:01:38.669177 #8] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:01:38.669636 #8] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T02:01:38.669668 #8] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:01:38.670216 #8] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-08-07T02:01:38.670275 #8] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:01:38.670731 #8] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T02:01:38.670765 #8] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:01:38.671115 #8] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T02:01:38.671147 #8] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:01:38.671448 #8] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T02:01:38.671478 #8] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:01:38.671668 #8] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-08-07T02:01:38.671799 #8] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:01:38.671992 #8] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-08-07T02:01:38.672020 #8] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:01:38.672444 #8] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T02:01:38.672478 #8] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:01:38.672805 #8] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T02:01:38.672842 #8] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:01:38.673199 #8] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T02:01:38.673238 #8] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:01:38.673598 #8] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T02:01:38.673629 #8] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:01:38.673944 #8] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T02:01:38.673975 #8] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:01:38.674360 #8] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T02:01:38.674391 #8] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:01:38.674983 #8] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T02:01:38.675025 #8] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:01:40.628225 #8] INFO -- : Inline processing of topic course_change with 1 messages took 0.27 ms +I, [2018-08-07T02:01:40.628279 #8] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:01:40.629324 #8] INFO -- : Inline processing of topic course_change with 1 messages took 0.89 ms +I, [2018-08-07T02:01:40.629367 #8] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:01:40.629708 #8] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T02:01:40.629738 #8] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:01:40.630283 #8] INFO -- : Inline processing of topic course_change with 1 messages took 0.28 ms +I, [2018-08-07T02:01:40.630314 #8] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:01:40.630815 #8] INFO -- : Inline processing of topic course_change with 1 messages took 0.26 ms +I, [2018-08-07T02:01:40.630888 #8] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:01:40.631179 #8] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T02:01:40.631211 #8] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:01:40.636154 #8] INFO -- : Inline processing of topic course_change with 1 messages took 0.49 ms +I, [2018-08-07T02:01:40.636245 #8] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:01:40.636520 #8] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T02:01:40.636551 #8] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:01:40.637057 #8] INFO -- : Inline processing of topic course_change with 1 messages took 0.29 ms +I, [2018-08-07T02:01:40.640918 #8] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:01:40.641574 #8] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T02:01:40.641625 #8] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:01:40.641919 #8] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T02:01:40.641961 #8] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:01:40.642265 #8] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T02:01:40.642302 #8] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:01:40.642820 #8] INFO -- : Inline processing of topic course_change with 1 messages took 0.37 ms +I, [2018-08-07T02:01:40.642861 #8] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:01:40.643116 #8] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T02:01:40.643147 #8] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:01:40.643435 #8] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T02:01:40.643467 #8] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:01:40.676645 #8] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T02:01:40.676694 #8] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:01:40.676945 #8] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T02:01:40.677039 #8] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:01:40.677510 #8] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T02:01:40.677541 #8] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:01:40.677877 #8] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T02:01:40.677912 #8] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:01:40.678258 #8] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T02:01:40.678288 #8] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:01:40.678520 #8] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T02:01:40.678551 #8] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:01:40.680170 #8] INFO -- : Inline processing of topic section_change with 1 messages took 1.38 ms +I, [2018-08-07T02:01:40.680539 #8] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:01:40.680837 #8] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T02:01:40.680868 #8] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:01:40.681092 #8] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T02:01:40.681121 #8] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:01:40.681339 #8] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T02:01:40.681367 #8] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:01:40.681572 #8] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-08-07T02:01:40.681600 #8] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:01:40.681825 #8] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-08-07T02:01:40.681856 #8] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:01:40.682067 #8] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T02:01:40.682095 #8] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:01:40.682299 #8] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T02:01:40.682328 #8] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:01:40.682537 #8] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T02:01:40.682566 #8] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:01:40.682776 #8] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T02:01:40.682805 #8] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:01:40.683008 #8] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T02:01:40.683037 #8] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:01:40.683260 #8] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-08-07T02:01:40.683292 #8] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:01:42.666117 #8] INFO -- : Inline processing of topic course_change with 1 messages took 10.31 ms +I, [2018-08-07T02:01:42.667775 #8] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:01:42.668147 #8] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T02:01:42.668180 #8] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:01:42.668398 #8] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T02:01:42.668427 #8] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:01:42.668642 #8] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T02:01:42.668671 #8] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:01:42.669099 #8] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T02:01:42.669143 #8] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:01:42.669497 #8] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-08-07T02:01:42.669570 #8] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:01:42.669906 #8] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T02:01:42.669942 #8] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:01:42.670576 #8] INFO -- : Inline processing of topic course_change with 1 messages took 0.25 ms +I, [2018-08-07T02:01:42.670622 #8] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:01:42.670878 #8] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T02:01:42.670910 #8] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:01:42.671438 #8] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-08-07T02:01:42.671825 #8] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:01:42.672332 #8] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-08-07T02:01:42.672385 #8] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:01:42.688359 #8] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T02:01:42.688427 #8] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:01:42.691048 #8] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-08-07T02:01:42.691149 #8] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:01:42.691871 #8] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T02:01:42.692114 #8] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:01:42.694148 #8] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-08-07T02:01:42.694465 #8] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:01:42.700154 #8] INFO -- : Inline processing of topic section_change with 1 messages took 4.38 ms +I, [2018-08-07T02:01:42.700470 #8] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:01:42.701838 #8] INFO -- : Inline processing of topic section_change with 1 messages took 0.85 ms +I, [2018-08-07T02:01:42.701959 #8] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:01:42.702900 #8] INFO -- : Inline processing of topic section_change with 1 messages took 0.49 ms +I, [2018-08-07T02:01:42.702962 #8] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:01:42.703351 #8] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T02:01:42.703951 #8] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:01:42.704642 #8] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T02:01:42.705150 #8] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:01:42.705830 #8] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T02:01:42.705920 #8] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:01:42.706359 #8] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T02:01:42.706406 #8] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:01:42.707349 #8] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T02:01:42.707412 #8] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:01:42.707969 #8] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T02:01:42.708020 #8] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:01:42.708518 #8] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T02:01:42.708613 #8] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:01:42.708952 #8] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T02:01:42.708988 #8] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:01:42.709291 #8] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T02:01:42.709328 #8] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:01:42.710003 #8] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T02:01:42.710041 #8] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:01:42.710268 #8] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T02:01:42.710322 #8] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:01:42.710707 #8] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T02:01:42.710751 #8] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:01:42.711024 #8] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T02:01:42.711064 #8] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:01:42.711420 #8] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T02:01:42.711463 #8] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:01:42.711998 #8] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-08-07T02:01:42.712081 #8] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:01:42.712441 #8] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T02:01:42.712487 #8] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:01:44.755898 #8] INFO -- : Inline processing of topic section_change with 1 messages took 3.37 ms +I, [2018-08-07T02:01:44.756368 #8] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:01:46.683836 #8] INFO -- : Committing offsets: course_change/0:81 +I, [2018-08-07T02:01:46.757544 #8] INFO -- : Committing offsets: section_change/0:143 +I, [2018-08-07T02:01:46.822619 #8] INFO -- : Inline processing of topic course_change with 1 messages took 3.19 ms +I, [2018-08-07T02:01:46.823014 #8] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:01:46.826340 #8] INFO -- : Inline processing of topic course_change with 1 messages took 0.28 ms +I, [2018-08-07T02:01:46.827234 #8] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:01:46.841007 #8] INFO -- : Inline processing of topic section_change with 1 messages took 0.65 ms +I, [2018-08-07T02:01:46.841317 #8] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:01:46.842043 #8] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T02:01:46.842096 #8] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:01:46.843013 #8] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-08-07T02:01:46.843076 #8] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:01:48.850139 #8] INFO -- : Inline processing of topic section_change with 1 messages took 1.49 ms +I, [2018-08-07T02:01:48.850302 #8] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:01:48.852138 #8] INFO -- : Inline processing of topic section_change with 1 messages took 1.5 ms +I, [2018-08-07T02:01:48.852265 #8] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:01:48.853580 #8] INFO -- : Inline processing of topic section_change with 1 messages took 0.6 ms +I, [2018-08-07T02:01:48.853630 #8] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:01:48.859058 #8] INFO -- : Inline processing of topic course_change with 1 messages took 0.34 ms +I, [2018-08-07T02:01:48.859795 #8] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:01:48.863224 #8] INFO -- : Inline processing of topic course_change with 1 messages took 0.61 ms +I, [2018-08-07T02:01:48.863292 #8] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:01:48.864598 #8] INFO -- : Inline processing of topic course_change with 1 messages took 0.76 ms +I, [2018-08-07T02:01:48.865054 #8] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:01:48.868162 #8] INFO -- : Inline processing of topic course_change with 1 messages took 1.37 ms +I, [2018-08-07T02:01:48.868320 #8] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:01:48.880741 #8] INFO -- : Inline processing of topic section_change with 1 messages took 26.14 ms +I, [2018-08-07T02:04:36.300272 #7] INFO -- : New topics added to target list: section_change +I, [2018-08-07T02:04:36.300937 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T02:04:36.324355 #7] INFO -- : New topics added to target list: course_change +I, [2018-08-07T02:04:36.324417 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T02:04:36.332443 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T02:04:36.332611 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T02:04:36.333035 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T02:04:36.333141 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T02:04:41.393833 #7] 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.14:9094 +I, [2018-08-07T02:04:41.395254 #7] INFO -- : New topics added to target list: section_change +I, [2018-08-07T02:04:41.395342 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T02:04:41.395734 #7] 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.14:9094 +I, [2018-08-07T02:04:41.396635 #7] INFO -- : New topics added to target list: course_change +I, [2018-08-07T02:04:41.396685 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T02:04:41.474630 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T02:04:41.483035 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T02:04:41.488682 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T02:04:41.488842 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T02:04:46.490001 #7] 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.14:9094 +I, [2018-08-07T02:04:46.492035 #7] INFO -- : New topics added to target list: section_change +I, [2018-08-07T02:04:46.492238 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T02:04:46.513333 #7] 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.14:9094 +E, [2018-08-07T02:04:46.630753 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T02:04:46.631577 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +I, [2018-08-07T02:04:46.632306 #7] INFO -- : New topics added to target list: course_change +I, [2018-08-07T02:04:46.632361 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T02:04:46.665266 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T02:04:46.667190 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T02:04:51.771344 #7] 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.14:9094 +I, [2018-08-07T02:04:51.817872 #7] INFO -- : New topics added to target list: course_change +I, [2018-08-07T02:04:51.818014 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T02:04:51.853035 #7] 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.14:9094 +E, [2018-08-07T02:04:51.978404 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T02:04:51.997584 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +I, [2018-08-07T02:04:52.009358 #7] INFO -- : New topics added to target list: section_change +I, [2018-08-07T02:04:52.009497 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T02:04:52.127313 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T02:04:52.127950 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T02:04:58.204960 #7] 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.14:9094 +E, [2018-08-07T02:04:59.673877 #7] 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.14:9094 +I, [2018-08-07T02:05:00.526234 #7] INFO -- : New topics added to target list: section_change +I, [2018-08-07T02:05:00.526637 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T02:05:00.546558 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T02:05:00.548035 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +I, [2018-08-07T02:05:00.549411 #7] INFO -- : New topics added to target list: course_change +I, [2018-08-07T02:05:00.549899 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T02:05:00.585443 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T02:05:00.586350 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T02:05:05.510172 #7] 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.14:9094 +E, [2018-08-07T02:05:05.778947 #7] 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.14:9094 +I, [2018-08-07T02:05:05.829710 #7] INFO -- : New topics added to target list: section_change +I, [2018-08-07T02:05:05.829989 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T02:05:05.857674 #7] INFO -- : New topics added to target list: course_change +I, [2018-08-07T02:05:05.857763 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T02:05:05.878832 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T02:05:05.881796 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T02:05:06.076880 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T02:05:06.085422 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T02:05:13.366546 #7] 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.14:9094 +E, [2018-08-07T02:05:11.353957 #7] 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.14:9094 +I, [2018-08-07T02:05:13.817406 #7] INFO -- : New topics added to target list: course_change +I, [2018-08-07T02:05:13.837411 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T02:05:13.838972 #7] INFO -- : New topics added to target list: section_change +I, [2018-08-07T02:16:37.042866 #7] INFO -- : New topics added to target list: course_change +I, [2018-08-07T02:16:37.047290 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T02:16:37.554942 #7] INFO -- : New topics added to target list: section_change +I, [2018-08-07T02:16:37.555635 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T02:16:39.807877 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.5:9094 +E, [2018-08-07T02:16:39.819159 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.5:9094 +E, [2018-08-07T02:16:39.832557 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.5:9094 +E, [2018-08-07T02:16:39.833524 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.5:9094 +E, [2018-08-07T02:16:44.821680 #7] 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.5:9094 +I, [2018-08-07T02:16:44.825542 #7] INFO -- : New topics added to target list: course_change +I, [2018-08-07T02:16:44.825623 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T02:16:44.850068 #7] 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.5:9094 +E, [2018-08-07T02:16:45.209929 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.5:9094 +E, [2018-08-07T02:16:45.210337 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.5:9094 +I, [2018-08-07T02:16:45.231310 #7] INFO -- : New topics added to target list: section_change +I, [2018-08-07T02:16:45.231395 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T02:16:45.391839 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.5:9094 +E, [2018-08-07T02:16:45.392603 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.5:9094 +E, [2018-08-07T02:16:52.077374 #7] 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.5:9094 +E, [2018-08-07T02:16:52.349069 #7] 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.5:9094 +I, [2018-08-07T02:16:54.555787 #7] INFO -- : New topics added to target list: course_change +I, [2018-08-07T02:16:54.556265 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T02:16:58.811245 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.5:9094 +E, [2018-08-07T02:16:58.812914 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.5:9094 +I, [2018-08-07T02:16:58.816472 #7] INFO -- : New topics added to target list: section_change +I, [2018-08-07T02:16:58.816639 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T02:16:58.850821 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.5:9094 +E, [2018-08-07T02:16:58.851860 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.5:9094 +E, [2018-08-07T02:17:04.182643 #7] 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.5:9094 +E, [2018-08-07T02:17:04.272152 #7] 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.5:9094 +I, [2018-08-07T02:17:04.729104 #7] INFO -- : New topics added to target list: course_change +I, [2018-08-07T02:17:04.729309 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T02:17:04.749611 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.5:9094 +E, [2018-08-07T02:17:04.749936 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.5:9094 +I, [2018-08-07T02:17:06.833169 #7] INFO -- : New topics added to target list: section_change +I, [2018-08-07T02:17:06.833258 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T02:17:08.116935 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.5:9094 +E, [2018-08-07T02:17:08.117210 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.5:9094 +E, [2018-08-07T02:17:10.378310 #7] 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.5:9094 +I, [2018-08-07T02:17:11.668448 #7] INFO -- : New topics added to target list: course_change +I, [2018-08-07T02:17:11.681559 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T02:17:12.844865 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.5:9094 +E, [2018-08-07T02:17:12.845116 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.5:9094 +E, [2018-08-07T02:17:13.241571 #7] 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.5:9094 +I, [2018-08-07T02:17:15.289237 #7] INFO -- : New topics added to target list: section_change +I, [2018-08-07T02:17:15.289327 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T02:17:15.823288 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.5:9094 +E, [2018-08-07T02:17:16.060533 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.5:9094 +E, [2018-08-07T02:17:18.391757 #7] 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.5:9094 +I, [2018-08-07T02:17:18.833921 #7] INFO -- : New topics added to target list: course_change +I, [2018-08-07T02:17:18.834022 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T02:17:18.882855 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.5:9094 +E, [2018-08-07T02:17:18.883256 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.5:9094 +E, [2018-08-07T02:17:21.085745 #7] 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.5:9094 +I, [2018-08-07T02:17:21.513128 #7] INFO -- : New topics added to target list: section_change +I, [2018-08-07T02:17:21.513687 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T02:17:21.591369 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.5:9094 +E, [2018-08-07T02:17:21.591791 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.5:9094 +E, [2018-08-07T02:17:23.906967 #7] 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.5:9094 +I, [2018-08-07T02:17:23.934891 #7] INFO -- : New topics added to target list: course_change +I, [2018-08-07T02:17:23.935203 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T02:17:24.026412 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.5:9094 +E, [2018-08-07T02:17:24.027529 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.5:9094 +E, [2018-08-07T02:17:26.648949 #7] 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.5:9094 +I, [2018-08-07T02:17:26.774098 #7] INFO -- : New topics added to target list: section_change +I, [2018-08-07T02:17:26.774210 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T02:17:26.780924 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.5:9094 +E, [2018-08-07T02:17:26.813653 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.5:9094 +E, [2018-08-07T02:17:29.040590 #7] 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.5:9094 +I, [2018-08-07T02:17:29.044321 #7] INFO -- : New topics added to target list: course_change +I, [2018-08-07T02:17:29.044384 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T02:17:29.057875 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.5:9094 +E, [2018-08-07T02:17:29.058015 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.5:9094 +E, [2018-08-07T02:17:31.814460 #7] 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.5:9094 +I, [2018-08-07T02:17:31.818500 #7] INFO -- : New topics added to target list: section_change +I, [2018-08-07T02:17:31.818637 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T02:17:31.823432 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.5:9094 +E, [2018-08-07T02:17:31.823883 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.5:9094 +E, [2018-08-07T02:17:34.067028 #7] 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.5:9094 +I, [2018-08-07T02:17:34.271917 #7] INFO -- : New topics added to target list: course_change +I, [2018-08-07T02:17:34.272342 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T02:17:34.554167 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.5:9094 +E, [2018-08-07T02:17:34.554389 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.5:9094 +E, [2018-08-07T02:17:36.927317 #7] 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.5:9094 +I, [2018-08-07T02:17:39.219666 #7] INFO -- : New topics added to target list: section_change +I, [2018-08-07T02:17:39.333117 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T02:17:39.638143 #7] 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.5:9094 +E, [2018-08-07T02:17:40.019916 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.5:9094 +E, [2018-08-07T02:17:40.021241 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.5:9094 +I, [2018-08-07T02:17:40.099855 #7] INFO -- : New topics added to target list: course_change +I, [2018-08-07T02:17:40.100007 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T02:17:40.129985 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.5:9094 +E, [2018-08-07T02:17:40.131385 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.5:9094 +E, [2018-08-07T02:17:45.127972 #7] 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.5:9094 +E, [2018-08-07T02:17:45.815911 #7] 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.5:9094 +I, [2018-08-07T02:17:46.279728 #7] INFO -- : New topics added to target list: course_change +I, [2018-08-07T02:17:46.279878 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T02:17:46.345678 #7] INFO -- : New topics added to target list: section_change +I, [2018-08-07T02:17:46.346120 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T02:17:46.523932 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.5:9094 +E, [2018-08-07T02:17:46.524367 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.5:9094 +E, [2018-08-07T02:17:46.525177 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.5:9094 +E, [2018-08-07T02:17:46.525404 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.5:9094 +E, [2018-08-07T02:17:51.685031 #7] 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.5:9094 +E, [2018-08-07T02:17:51.794657 #7] 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.5:9094 +I, [2018-08-07T02:17:51.867389 #7] INFO -- : New topics added to target list: course_change +I, [2018-08-07T02:17:51.871321 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T02:17:51.994820 #7] INFO -- : New topics added to target list: section_change +I, [2018-08-07T02:17:51.994967 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T02:17:52.032006 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.5:9094 +E, [2018-08-07T02:17:52.113678 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.5:9094 +E, [2018-08-07T02:17:52.143998 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.5:9094 +E, [2018-08-07T02:17:52.155800 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.5:9094 +E, [2018-08-07T02:17:57.309647 #7] 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.5:9094 +E, [2018-08-07T02:18:02.007163 #7] 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.5:9094 +I, [2018-08-07T02:18:02.029128 #7] INFO -- : New topics added to target list: section_change +I, [2018-08-07T02:18:02.210329 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T02:18:03.005924 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.5:9094 +E, [2018-08-07T02:18:03.008069 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.5:9094 +I, [2018-08-07T02:18:03.029970 #7] INFO -- : New topics added to target list: course_change +I, [2018-08-07T02:18:03.030145 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T02:18:03.045781 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.5:9094 +E, [2018-08-07T02:18:03.047007 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.5:9094 +E, [2018-08-07T02:18:17.591563 #7] 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.5:9094 +E, [2018-08-07T02:18:18.211810 #7] 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.5:9094 +I, [2018-08-07T02:18:19.882202 #7] INFO -- : New topics added to target list: section_change +I, [2018-08-07T02:18:19.916847 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T02:18:19.909010 #7] INFO -- : New topics added to target list: course_change +I, [2018-08-07T02:18:19.917476 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T02:18:19.927257 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.5:9094 +E, [2018-08-07T02:18:19.931877 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.5:9094 +E, [2018-08-07T02:18:19.934823 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.5:9094 +E, [2018-08-07T02:18:19.961479 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.5:9094 +E, [2018-08-07T02:18:26.862601 #7] 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.5:9094 +E, [2018-08-07T02:18:27.799724 #7] 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.5:9094 +I, [2018-08-07T02:18:35.902876 #7] INFO -- : New topics added to target list: course_change +I, [2018-08-07T02:18:35.903514 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T02:18:35.918158 #7] INFO -- : New topics added to target list: section_change +I, [2018-08-07T02:18:35.918697 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T02:18:35.956428 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.5:9094 +E, [2018-08-07T02:18:35.958545 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.5:9094 +E, [2018-08-07T02:18:35.961003 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.5:9094 +E, [2018-08-07T02:18:35.966402 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.5:9094 +E, [2018-08-07T02:18:41.979042 #7] 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.5:9094 +E, [2018-08-07T02:18:42.014445 #7] 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.5:9094 +I, [2018-08-07T02:18:44.335338 #7] INFO -- : New topics added to target list: section_change +I, [2018-08-07T02:18:44.339795 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T02:18:43.557361 #7] INFO -- : New topics added to target list: course_change +I, [2018-08-07T02:18:44.347339 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T02:18:44.384063 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.5:9094 +E, [2018-08-07T02:18:44.386308 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.5:9094 +E, [2018-08-07T02:18:44.569995 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.5:9094 +E, [2018-08-07T02:18:44.570588 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.5:9094 +E, [2018-08-07T02:18:53.134603 #7] 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.5:9094 +E, [2018-08-07T02:18:53.712045 #7] 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.5:9094 +I, [2018-08-07T02:19:01.776803 #7] INFO -- : New topics added to target list: section_change +I, [2018-08-07T02:19:02.020524 #7] INFO -- : New topics added to target list: course_change +I, [2018-08-07T02:19:02.020755 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T02:19:02.065843 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.5:9094 +E, [2018-08-07T02:19:02.066257 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.5:9094 +I, [2018-08-07T02:19:02.069449 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T02:19:02.086506 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.5:9094 +E, [2018-08-07T02:19:02.088706 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.5:9094 +E, [2018-08-07T02:19:07.068580 #7] 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.5:9094 +E, [2018-08-07T02:19:07.092294 #7] 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.5:9094 +I, [2018-08-07T02:19:07.422368 #7] INFO -- : New topics added to target list: section_change +I, [2018-08-07T02:19:07.422525 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T02:19:07.430763 #7] INFO -- : New topics added to target list: course_change +I, [2018-08-07T02:19:07.430845 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T02:19:07.436324 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.5:9094 +E, [2018-08-07T02:19:07.436736 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.5:9094 +E, [2018-08-07T02:19:07.441086 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.5:9094 +E, [2018-08-07T02:19:07.442936 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.5:9094 +E, [2018-08-07T02:19:14.385822 #7] 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.5:9094 +E, [2018-08-07T02:19:15.257794 #7] 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.5:9094 +I, [2018-08-07T02:19:18.130368 #7] INFO -- : New topics added to target list: course_change +I, [2018-08-07T02:19:18.131165 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T02:19:18.265141 #7] INFO -- : New topics added to target list: section_change +I, [2018-08-07T02:19:18.265237 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T02:19:18.316087 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.5:9094 +E, [2018-08-07T02:19:18.332224 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.5:9094 +E, [2018-08-07T02:19:18.340340 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.5:9094 +E, [2018-08-07T02:19:18.358630 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.5:9094 +E, [2018-08-07T02:19:23.923065 #7] 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.5:9094 +E, [2018-08-07T02:19:23.983630 #7] 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.5:9094 +I, [2018-08-07T02:19:25.794937 #7] INFO -- : New topics added to target list: course_change +I, [2018-08-07T02:19:25.795258 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T02:19:25.822798 #7] INFO -- : New topics added to target list: section_change +I, [2018-08-07T02:19:25.823100 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T02:19:25.825238 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.5:9094 +E, [2018-08-07T02:19:25.854643 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.5:9094 +E, [2018-08-07T02:19:25.885542 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.5:9094 +E, [2018-08-07T02:19:25.885766 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.5:9094 +E, [2018-08-07T02:19:30.856166 #7] 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.5:9094 +I, [2018-08-07T02:19:30.915262 #7] INFO -- : New topics added to target list: course_change +I, [2018-08-07T02:19:30.915467 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T02:19:30.935440 #7] 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.5:9094 +I, [2018-08-07T02:19:31.012866 #7] INFO -- : New topics added to target list: section_change +I, [2018-08-07T02:19:31.012935 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T02:19:31.033475 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.5:9094 +E, [2018-08-07T02:19:31.033692 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.5:9094 +E, [2018-08-07T02:19:31.039416 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.5:9094 +E, [2018-08-07T02:19:31.039575 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.5:9094 +E, [2018-08-07T02:19:37.926264 #7] 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.5:9094 +E, [2018-08-07T02:19:37.992902 #7] 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.5:9094 +I, [2018-08-07T02:19:39.200984 #7] INFO -- : New topics added to target list: course_change +I, [2018-08-07T02:19:39.201285 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T02:19:39.204171 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.5:9094 +E, [2018-08-07T02:19:39.204496 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.5:9094 +I, [2018-08-07T02:19:39.205497 #7] INFO -- : New topics added to target list: section_change +I, [2018-08-07T02:19:39.205589 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T02:19:39.245540 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.5:9094 +E, [2018-08-07T02:19:39.248109 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.5:9094 +E, [2018-08-07T02:19:44.198272 #7] 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.5:9094 +I, [2018-08-07T02:19:44.202807 #7] INFO -- : New topics added to target list: course_change +I, [2018-08-07T02:19:44.203114 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T02:19:44.210568 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.5:9094 +E, [2018-08-07T02:19:44.210793 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.5:9094 +E, [2018-08-07T02:19:44.214981 #7] 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.5:9094 +I, [2018-08-07T02:19:44.231319 #7] INFO -- : New topics added to target list: section_change +I, [2018-08-07T02:19:44.231458 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T02:19:44.253723 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.5:9094 +E, [2018-08-07T02:19:44.254347 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.5:9094 +E, [2018-08-07T02:19:49.260798 #7] 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.5:9094 +E, [2018-08-07T02:19:49.586468 #7] 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.5:9094 +I, [2018-08-07T02:19:49.870979 #7] INFO -- : New topics added to target list: course_change +I, [2018-08-07T02:19:49.871498 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T02:19:49.949698 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.5:9094 +E, [2018-08-07T02:19:49.950039 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.5:9094 +I, [2018-08-07T02:19:49.970212 #7] INFO -- : New topics added to target list: section_change +I, [2018-08-07T02:19:49.970349 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T02:19:50.011707 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.5:9094 +E, [2018-08-07T02:19:50.012142 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.5:9094 +E, [2018-08-07T02:19:55.049195 #7] 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.5:9094 +I, [2018-08-07T02:19:55.154338 #7] INFO -- : New topics added to target list: course_change +I, [2018-08-07T02:19:55.154488 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T02:19:55.160639 #7] 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.5:9094 +E, [2018-08-07T02:19:55.217698 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.5:9094 +E, [2018-08-07T02:19:55.218076 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.5:9094 +I, [2018-08-07T02:19:55.424752 #7] INFO -- : New topics added to target list: section_change +I, [2018-08-07T02:19:55.424903 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T02:19:55.451568 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.5:9094 +E, [2018-08-07T02:19:55.452206 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.5:9094 +E, [2018-08-07T02:20:00.225037 #7] 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.5:9094 +I, [2018-08-07T02:20:00.400624 #7] INFO -- : New topics added to target list: course_change +I, [2018-08-07T02:20:00.400760 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T02:20:00.435127 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.5:9094 +E, [2018-08-07T02:20:00.435821 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.5:9094 +E, [2018-08-07T02:20:00.452726 #7] 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.5:9094 +I, [2018-08-07T02:20:00.464975 #7] INFO -- : New topics added to target list: section_change +I, [2018-08-07T02:20:00.465189 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T02:20:00.579635 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.5:9094 +E, [2018-08-07T02:20:00.590175 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.5:9094 +E, [2018-08-07T02:20:05.615142 #7] 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.5:9094 +E, [2018-08-07T02:20:05.655332 #7] 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.5:9094 +I, [2018-08-07T02:20:05.665386 #7] INFO -- : New topics added to target list: section_change +I, [2018-08-07T02:20:05.665823 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T02:20:05.702270 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.5:9094 +E, [2018-08-07T02:20:05.707574 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.5:9094 +I, [2018-08-07T02:20:05.772567 #7] INFO -- : New topics added to target list: course_change +I, [2018-08-07T02:20:05.772682 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T02:20:05.788957 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.5:9094 +E, [2018-08-07T02:20:05.789490 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.5:9094 +E, [2018-08-07T02:20:13.425191 #7] 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.5:9094 +E, [2018-08-07T02:20:13.783139 #7] 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.5:9094 +I, [2018-08-07T02:20:13.867703 #7] INFO -- : New topics added to target list: course_change +I, [2018-08-07T02:20:14.105774 #7] INFO -- : New topics added to target list: section_change +I, [2018-08-07T02:20:14.105864 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T02:20:13.868027 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T02:20:14.120514 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.5:9094 +E, [2018-08-07T02:20:14.120778 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.5:9094 +E, [2018-08-07T02:20:14.121003 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.5:9094 +E, [2018-08-07T02:20:14.121119 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.5:9094 +E, [2018-08-07T02:20:19.779064 #7] 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.5:9094 +E, [2018-08-07T02:20:19.413583 #7] 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.5:9094 +I, [2018-08-07T02:20:19.907786 #7] INFO -- : New topics added to target list: section_change +I, [2018-08-07T02:20:19.922374 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T02:20:20.011280 #7] INFO -- : New topics added to target list: course_change +I, [2018-08-07T02:20:20.011381 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T02:20:20.049526 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.5:9094 +E, [2018-08-07T02:20:20.051609 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.5:9094 +E, [2018-08-07T02:20:20.052106 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.5:9094 +E, [2018-08-07T02:20:20.052953 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.5:9094 +E, [2018-08-07T02:20:25.115883 #7] 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.5:9094 +I, [2018-08-07T02:20:25.138088 #7] INFO -- : New topics added to target list: course_change +I, [2018-08-07T02:20:25.138465 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T02:20:25.149550 #7] 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.5:9094 +I, [2018-08-07T02:20:25.152815 #7] INFO -- : New topics added to target list: section_change +I, [2018-08-07T02:20:25.152883 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T02:20:25.167538 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.5:9094 +E, [2018-08-07T02:20:25.167730 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.5:9094 +E, [2018-08-07T02:20:25.176569 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.5:9094 +E, [2018-08-07T02:20:25.176932 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.5:9094 +E, [2018-08-07T02:20:30.168225 #7] 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.5:9094 +I, [2018-08-07T02:20:30.170434 #7] INFO -- : New topics added to target list: section_change +I, [2018-08-07T02:20:30.170557 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T02:20:30.193790 #7] 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.5:9094 +I, [2018-08-07T02:20:30.200836 #7] INFO -- : New topics added to target list: course_change +I, [2018-08-07T02:20:30.201031 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T02:20:42.380806 #7] ERROR -- : No brokers in cluster +E, [2018-08-07T02:20:42.399501 #7] ERROR -- : No brokers in cluster +E, [2018-08-07T02:20:47.398274 #7] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: + +I, [2018-08-07T02:20:47.403097 #7] INFO -- : New topics added to target list: course_change +I, [2018-08-07T02:20:47.403298 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T02:20:47.403596 #7] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: + +I, [2018-08-07T02:20:47.408225 #7] INFO -- : New topics added to target list: section_change +I, [2018-08-07T02:20:47.408632 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T02:20:47.591573 #7] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-07T02:20:47.592644 #7] INFO -- : Joining group `notifications_notifications` +I, [2018-08-07T02:20:47.594243 #7] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-07T02:20:47.595129 #7] INFO -- : Joining group `notifications_course_change` +I, [2018-08-07T02:20:47.615258 #7] INFO -- : Will fetch at most 1048576 bytes at a time per partition from course_change +I, [2018-08-07T02:20:47.616059 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T02:20:47.616684 #7] INFO -- : Will fetch at most 1048576 bytes at a time per partition from section_change +I, [2018-08-07T02:20:47.616937 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T02:20:47.627078 #7] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-07T02:20:47.631813 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T02:20:47.638186 #7] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-07T02:20:47.639597 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T02:20:48.632755 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T02:20:48.640450 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T02:20:49.633216 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T02:20:49.641062 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T02:20:50.633693 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T02:20:50.641551 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T02:20:51.634311 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T02:20:51.642021 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T02:20:52.664884 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T02:20:52.673714 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T02:20:53.666348 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T02:20:53.674122 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T02:20:54.722472 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T02:20:54.806392 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T02:20:55.901887 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T02:20:56.009483 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T02:20:57.024826 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T02:20:57.137394 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T02:20:59.220809 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T02:20:59.229372 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T02:21:00.238651 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T02:21:00.455828 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T02:21:00.976509 #7] INFO -- : Joined group `notifications_course_change` with member id `notifications-9c6d19b7-542e-493a-95ff-0264002a8f50` +I, [2018-08-07T02:21:00.976672 #7] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-07T02:21:01.100390 #7] INFO -- : Joined group `notifications_notifications` with member id `notifications-3fcc0b69-39e3-4ea9-8728-1e94c245160f` +I, [2018-08-07T02:21:01.100500 #7] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-07T02:21:01.240969 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T02:21:01.688645 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T02:21:02.037436 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T02:21:02.261247 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T02:21:02.347358 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T02:21:02.419836 #7] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-07T02:21:02.438608 #7] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-07T02:21:02.743576 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T02:21:03.211134 #7] INFO -- : Partitions assigned for `section_change`: 0 +I, [2018-08-07T02:21:03.483037 #7] INFO -- : Partitions assigned for `course_change`: 0 +I, [2018-08-07T02:21:03.719946 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T02:21:03.750144 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T02:21:04.860562 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T02:21:04.881933 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T02:21:05.914533 #7] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-07T02:21:05.914839 #7] INFO -- : New topics added to target list: course_change +I, [2018-08-07T02:21:05.914926 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T02:21:05.918468 #7] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-07T02:21:05.918833 #7] INFO -- : New topics added to target list: section_change +I, [2018-08-07T02:21:05.918887 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T02:21:05.938995 #7] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-07T02:21:06.065161 #7] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-07T02:21:28.168865 #7] INFO -- : Inline processing of topic section_change with 1 messages took 820.48 ms +I, [2018-08-07T02:21:28.169300 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:21:28.171733 #7] INFO -- : Committing offsets with recommit: section_change/0:1 +I, [2018-08-07T02:21:28.233066 #7] INFO -- : Inline processing of topic course_change with 1 messages took 648.21 ms +I, [2018-08-07T02:21:28.233249 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:21:28.233351 #7] INFO -- : Committing offsets with recommit: course_change/0:1 +I, [2018-08-07T02:21:28.317940 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T02:21:28.317993 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:21:28.318433 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T02:21:28.318542 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:21:28.319466 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.71 ms +I, [2018-08-07T02:21:28.319628 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:21:28.320313 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.42 ms +I, [2018-08-07T02:21:28.320409 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:21:28.321146 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T02:21:28.321194 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:21:28.331962 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.53 ms +I, [2018-08-07T02:21:28.332081 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:21:28.333333 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.62 ms +I, [2018-08-07T02:21:28.333392 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:21:30.322686 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.6 ms +I, [2018-08-07T02:21:30.322927 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:21:30.323654 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.59 ms +I, [2018-08-07T02:21:30.323894 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:21:30.327187 #7] INFO -- : Inline processing of topic section_change with 1 messages took 2.96 ms +I, [2018-08-07T02:21:30.327264 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:21:30.328167 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.47 ms +I, [2018-08-07T02:21:30.328220 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:21:30.329391 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.84 ms +I, [2018-08-07T02:21:30.349794 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:21:30.350484 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T02:21:30.350522 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:21:30.351372 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.47 ms +I, [2018-08-07T02:21:30.351430 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:21:30.352478 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.65 ms +I, [2018-08-07T02:21:30.352713 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:21:30.353678 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.77 ms +I, [2018-08-07T02:21:30.353736 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:21:30.355042 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.95 ms +I, [2018-08-07T02:21:30.355338 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:21:30.356936 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.48 ms +I, [2018-08-07T02:21:30.357544 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:21:30.391513 #7] INFO -- : Inline processing of topic section_change with 1 messages took 33.24 ms +I, [2018-08-07T02:21:30.392511 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:21:30.531404 #7] INFO -- : Inline processing of topic section_change with 1 messages took 138.22 ms +I, [2018-08-07T02:21:30.531472 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:21:30.532328 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.61 ms +I, [2018-08-07T02:21:30.532384 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:21:30.532749 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T02:21:30.533224 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:21:32.345449 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.31 ms +I, [2018-08-07T02:21:32.345536 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:21:32.346063 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.34 ms +I, [2018-08-07T02:21:32.346109 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:21:32.346550 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.26 ms +I, [2018-08-07T02:21:32.346596 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:21:32.346891 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T02:21:32.346941 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:21:32.347462 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T02:21:32.347510 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:21:32.348310 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.43 ms +I, [2018-08-07T02:21:32.348384 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:21:32.534105 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-08-07T02:21:32.534174 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:21:32.534820 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.46 ms +I, [2018-08-07T02:21:32.534872 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:21:32.535554 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.48 ms +I, [2018-08-07T02:21:32.536082 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:21:32.536543 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T02:21:32.536599 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:21:32.537735 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.68 ms +I, [2018-08-07T02:21:32.537806 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:21:32.538454 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.44 ms +I, [2018-08-07T02:21:32.538506 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:21:32.542946 #7] INFO -- : Inline processing of topic section_change with 1 messages took 4.23 ms +I, [2018-08-07T02:21:32.543023 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:21:32.543444 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T02:21:32.544119 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:21:32.544802 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T02:21:32.544853 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:21:32.555518 #7] INFO -- : Inline processing of topic section_change with 1 messages took 2.23 ms +I, [2018-08-07T02:21:32.555596 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:21:32.557269 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.99 ms +I, [2018-08-07T02:21:32.557369 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:21:32.585173 #7] INFO -- : Inline processing of topic section_change with 1 messages took 21.2 ms +I, [2018-08-07T02:21:32.585264 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:21:32.585693 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T02:21:32.585745 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:21:32.586117 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T02:21:32.586167 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:21:34.349407 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.23 ms +I, [2018-08-07T02:21:34.349474 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:21:34.349955 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T02:21:34.350002 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:21:34.350383 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.23 ms +I, [2018-08-07T02:21:34.350419 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:21:34.350646 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T02:21:34.350770 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:21:34.351066 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T02:21:34.351110 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:21:34.351752 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.48 ms +I, [2018-08-07T02:21:34.351799 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:21:34.589869 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.51 ms +I, [2018-08-07T02:21:34.589939 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:21:34.590587 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.43 ms +I, [2018-08-07T02:21:34.590691 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:21:34.594789 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-08-07T02:21:34.594851 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:21:34.595169 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T02:21:34.595209 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:21:34.595657 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T02:21:34.595709 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:21:34.596290 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.41 ms +I, [2018-08-07T02:21:34.604600 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:21:34.613253 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.44 ms +I, [2018-08-07T02:21:34.613347 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:21:34.623881 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T02:21:34.624027 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:21:34.624768 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T02:21:34.624829 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:21:34.625395 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-08-07T02:21:34.625443 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:21:34.625933 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-08-07T02:21:34.625979 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:21:34.626270 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T02:21:34.626316 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:21:34.626920 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T02:21:34.626965 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:21:34.627546 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.41 ms +I, [2018-08-07T02:21:34.627594 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:21:34.627963 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T02:21:34.628007 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:21:36.354838 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.24 ms +I, [2018-08-07T02:21:36.354909 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:21:36.355579 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.42 ms +I, [2018-08-07T02:21:36.355636 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:21:36.356248 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.26 ms +I, [2018-08-07T02:21:36.356301 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:21:36.357815 #7] INFO -- : Inline processing of topic course_change with 1 messages took 1.29 ms +I, [2018-08-07T02:21:36.357879 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:21:36.358530 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-08-07T02:21:36.358584 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:21:36.359372 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.39 ms +I, [2018-08-07T02:21:36.359427 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:21:36.363398 #7] INFO -- : Inline processing of topic course_change with 1 messages took 3.76 ms +I, [2018-08-07T02:21:36.363477 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:21:36.376386 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.41 ms +I, [2018-08-07T02:21:36.376496 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:21:36.377222 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-08-07T02:21:36.377269 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:21:36.377612 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-08-07T02:21:36.377653 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:21:36.377998 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-08-07T02:21:36.378039 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:21:36.378327 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T02:21:36.378367 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:21:36.629844 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-08-07T02:21:36.629917 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:21:36.630471 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-08-07T02:21:36.630520 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:21:36.632472 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.74 ms +I, [2018-08-07T02:21:36.632541 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:21:36.632987 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T02:21:36.633037 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:21:36.633465 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T02:21:36.633518 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:21:36.633892 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T02:21:36.633943 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:21:36.636636 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.45 ms +I, [2018-08-07T02:21:36.653208 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:21:36.653902 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-08-07T02:21:36.653955 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:21:36.654424 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T02:21:36.654475 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:21:36.658489 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T02:21:36.663315 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:21:36.663796 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T02:21:36.663846 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:21:36.664236 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T02:21:36.664284 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:21:36.667232 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T02:21:36.667285 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:21:36.667640 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T02:21:36.667685 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:21:36.673790 #7] INFO -- : Inline processing of topic section_change with 1 messages took 5.85 ms +I, [2018-08-07T02:21:36.673841 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:21:36.678264 #7] INFO -- : Inline processing of topic section_change with 1 messages took 4.2 ms +I, [2018-08-07T02:21:36.678325 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:21:38.378712 #7] INFO -- : Committing offsets: course_change/0:27 +I, [2018-08-07T02:21:38.414658 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.28 ms +I, [2018-08-07T02:21:38.414755 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:21:38.415155 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T02:21:38.415190 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:21:38.415482 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T02:21:38.415545 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:21:38.415875 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T02:21:38.415932 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:21:38.416264 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T02:21:38.416310 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:21:38.416639 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T02:21:38.416685 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:21:38.679003 #7] INFO -- : Committing offsets: section_change/0:66 +I, [2018-08-07T02:21:38.741241 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T02:21:38.741329 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:21:38.741886 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-08-07T02:21:38.741944 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:21:38.742361 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T02:21:38.742410 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:21:38.753398 #7] INFO -- : Inline processing of topic section_change with 1 messages took 5.19 ms +I, [2018-08-07T02:21:38.753466 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:21:38.754874 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T02:21:38.754921 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:21:38.755191 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T02:21:38.755226 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:21:38.755611 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T02:21:38.755668 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:21:38.756045 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T02:21:38.756102 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:21:38.757867 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.55 ms +I, [2018-08-07T02:21:38.757929 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:21:38.758330 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T02:21:38.758379 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:21:38.758697 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T02:21:38.758747 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:21:38.759096 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T02:21:38.759142 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:21:38.759499 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T02:21:38.759545 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:21:38.759893 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T02:21:38.760214 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:21:38.779310 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T02:21:38.779442 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:21:38.781842 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T02:21:38.781904 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:21:40.417733 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.26 ms +I, [2018-08-07T02:21:40.417813 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:21:40.418331 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.3 ms +I, [2018-08-07T02:21:40.418382 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:21:40.418691 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T02:21:40.418772 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:21:40.419066 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T02:21:40.419114 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:21:40.419431 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T02:21:40.419473 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:21:40.420070 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.41 ms +I, [2018-08-07T02:21:40.420132 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:21:40.420468 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T02:21:40.420512 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:21:40.420849 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T02:21:40.441773 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:21:40.442590 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.4 ms +I, [2018-08-07T02:21:40.442650 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:21:40.443150 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.23 ms +I, [2018-08-07T02:21:40.443261 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:21:40.444080 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.45 ms +I, [2018-08-07T02:21:40.444154 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:21:40.444917 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.35 ms +I, [2018-08-07T02:21:40.445005 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:21:40.445543 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T02:21:40.445594 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:21:40.782672 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T02:21:40.782728 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:21:40.783074 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T02:21:40.783112 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:21:40.783341 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T02:21:40.783421 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:21:40.783648 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T02:21:40.783682 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:21:40.783955 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T02:21:40.784023 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:21:40.793368 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.47 ms +I, [2018-08-07T02:21:40.793556 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:21:40.794900 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.57 ms +I, [2018-08-07T02:21:40.794962 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:21:40.795369 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T02:21:40.795417 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:21:40.795781 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T02:21:40.795826 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:21:40.796184 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T02:21:40.796240 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:21:40.796573 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T02:21:40.796623 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:21:40.797036 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T02:21:40.797088 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:21:40.797502 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T02:21:40.797550 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:21:42.408965 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.7 ms +I, [2018-08-07T02:21:42.409045 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:21:42.409606 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-08-07T02:21:42.409674 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:21:42.410122 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-08-07T02:21:42.410176 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:21:42.410565 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T02:21:42.410684 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:21:42.411306 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.27 ms +I, [2018-08-07T02:21:42.411367 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:21:42.411983 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.34 ms +I, [2018-08-07T02:21:42.412040 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:21:42.414336 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.36 ms +I, [2018-08-07T02:21:42.414648 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:21:42.415145 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T02:21:42.415202 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:21:42.415599 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T02:21:42.415701 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:21:42.416084 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-08-07T02:21:42.416136 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:21:42.416532 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-08-07T02:21:42.416585 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:21:42.417014 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.24 ms +I, [2018-08-07T02:21:42.417070 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:21:42.422454 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.55 ms +I, [2018-08-07T02:21:42.422513 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:21:42.423092 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.38 ms +I, [2018-08-07T02:21:42.423169 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:21:42.423727 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.26 ms +I, [2018-08-07T02:21:42.423794 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:21:42.424571 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.3 ms +I, [2018-08-07T02:21:42.424625 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:21:42.425052 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T02:21:42.425112 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:21:42.757062 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-08-07T02:21:42.757184 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:21:42.758208 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T02:21:42.758327 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:21:42.758722 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T02:21:42.758762 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:21:42.759106 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T02:21:42.759157 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:21:42.759583 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T02:21:42.759633 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:21:42.760095 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T02:21:42.760222 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:21:42.763169 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T02:21:42.763225 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:21:42.763570 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T02:21:42.763608 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:21:42.763860 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T02:21:42.763941 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:21:42.764194 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T02:21:42.764230 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:21:42.764523 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T02:21:42.764561 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:21:42.764826 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T02:21:42.764863 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:21:42.765162 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T02:21:42.765200 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:21:42.765476 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T02:21:42.765514 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:21:42.765826 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T02:21:42.765865 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:21:42.766167 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T02:21:42.766204 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:21:44.588678 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.27 ms +I, [2018-08-07T02:21:44.588792 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:21:44.589202 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T02:21:44.589254 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:21:44.589626 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-08-07T02:21:44.589701 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:21:44.590051 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-08-07T02:21:44.590100 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:21:44.590472 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T02:21:44.590569 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:21:44.591244 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.38 ms +I, [2018-08-07T02:21:44.591303 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:21:44.591833 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.32 ms +I, [2018-08-07T02:21:44.591882 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:21:44.592262 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T02:21:44.592308 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:21:44.592671 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T02:21:44.592953 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:21:44.593361 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T02:21:44.593406 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:21:44.593744 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T02:21:44.593790 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:21:44.594126 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T02:21:44.594196 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:21:44.767684 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T02:21:44.767758 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:21:44.768370 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T02:21:44.768434 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:21:44.768807 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T02:21:44.768971 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:21:44.769484 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T02:21:44.769546 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:21:44.769892 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T02:21:44.769924 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:21:44.770158 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T02:21:44.770183 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:21:44.770440 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T02:21:44.770472 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:21:44.770957 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-08-07T02:21:44.771008 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:21:44.771312 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T02:21:44.771343 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:21:44.778521 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-08-07T02:21:44.783940 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:21:44.785758 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-08-07T02:21:44.785816 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:21:44.786161 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T02:21:44.786430 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:21:44.787388 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T02:21:44.787518 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:21:44.799791 #7] INFO -- : Inline processing of topic section_change with 1 messages took 11.91 ms +I, [2018-08-07T02:21:44.799848 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:21:44.800203 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T02:21:44.800235 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:21:44.800612 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T02:21:44.800662 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:21:46.602312 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.3 ms +I, [2018-08-07T02:21:46.602379 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:21:46.602635 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T02:21:46.602666 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:21:46.603122 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T02:21:46.603158 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:21:46.603642 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.24 ms +I, [2018-08-07T02:21:46.603699 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:21:46.802229 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-08-07T02:21:46.802301 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:21:46.803029 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T02:21:46.803075 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:21:46.803448 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T02:21:46.803493 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:21:46.803965 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-08-07T02:21:46.804013 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:21:46.804422 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T02:21:46.804474 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:21:46.805222 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T02:21:46.805279 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:21:46.805722 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T02:21:46.805773 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:21:46.806144 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T02:21:46.806197 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:21:46.806523 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T02:21:46.806574 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:21:46.806907 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T02:21:46.806955 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:21:46.807332 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T02:21:46.807380 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:21:46.807724 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T02:21:46.807774 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:21:46.808908 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T02:21:46.809399 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:21:48.604541 #7] INFO -- : Committing offsets: course_change/0:79 +I, [2018-08-07T02:21:48.610195 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.28 ms +I, [2018-08-07T02:21:48.610261 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:21:48.610879 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.36 ms +I, [2018-08-07T02:21:48.610947 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:21:48.611317 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T02:21:48.611368 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:21:48.611937 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.27 ms +I, [2018-08-07T02:21:48.612284 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:21:48.612873 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.3 ms +I, [2018-08-07T02:21:48.612935 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:21:48.613297 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T02:21:48.625643 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:21:48.626223 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.33 ms +I, [2018-08-07T02:21:48.626271 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:21:48.809955 #7] INFO -- : Committing offsets: section_change/0:140 +I, [2018-08-07T02:21:48.818503 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-08-07T02:21:48.818577 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:21:48.818977 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T02:21:48.819033 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:21:48.819553 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T02:21:48.819602 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:21:48.820005 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T02:21:48.820061 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:21:48.820555 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-08-07T02:21:48.820615 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:21:48.820969 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T02:21:48.822940 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:21:48.823434 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T02:21:48.823472 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:21:48.823735 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T02:21:48.823765 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:21:48.824049 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T02:21:48.824099 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:21:48.824526 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T02:21:48.824579 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:21:48.824898 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T02:21:48.824947 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:21:48.825359 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T02:21:48.825409 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:21:50.627346 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-08-07T02:21:50.627420 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:21:50.627833 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-08-07T02:21:50.627889 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:21:50.628254 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T02:21:50.628471 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:21:50.628936 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-08-07T02:21:50.629041 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:21:50.629603 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.24 ms +I, [2018-08-07T02:21:50.629765 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:21:50.630495 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.52 ms +I, [2018-08-07T02:21:50.630554 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:21:50.631014 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-08-07T02:21:50.631356 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:21:50.631704 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T02:21:50.631760 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:21:50.632190 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T02:21:50.632229 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:21:50.632538 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T02:21:50.632597 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:21:50.632868 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T02:21:50.632967 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:21:50.827238 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.99 ms +I, [2018-08-07T02:21:50.827361 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:21:50.827799 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T02:21:50.827844 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:21:50.839082 #7] INFO -- : Inline processing of topic section_change with 1 messages took 11.02 ms +I, [2018-08-07T02:21:50.839165 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:21:50.839703 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T02:21:50.839755 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:21:50.840051 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T02:21:50.840094 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:21:50.840734 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.42 ms +I, [2018-08-07T02:21:50.840990 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:21:50.841829 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.4 ms +I, [2018-08-07T02:21:50.841880 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:21:50.842866 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.73 ms +I, [2018-08-07T02:21:50.842921 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:21:50.843910 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.76 ms +I, [2018-08-07T02:21:50.844022 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:21:50.844410 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T02:21:50.844458 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:21:52.641460 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.6 ms +I, [2018-08-07T02:21:52.641583 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:21:52.642982 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.58 ms +I, [2018-08-07T02:21:52.643231 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:21:52.645446 #7] INFO -- : Inline processing of topic course_change with 1 messages took 1.23 ms +I, [2018-08-07T02:21:52.645679 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:21:52.646276 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.24 ms +I, [2018-08-07T02:21:52.646331 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:21:52.646736 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-08-07T02:21:52.646784 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:21:52.647175 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.23 ms +I, [2018-08-07T02:21:52.647223 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:21:52.647636 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T02:21:52.647686 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:21:52.648177 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T02:21:52.653692 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:21:52.654380 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-08-07T02:21:52.654435 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:21:52.858839 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-08-07T02:21:52.858893 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:21:52.859469 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T02:21:52.859642 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:21:52.859959 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T02:21:52.860003 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:21:52.862994 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T02:21:52.863058 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:21:52.863830 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.44 ms +I, [2018-08-07T02:21:52.863887 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:21:52.864287 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T02:21:52.864329 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:21:52.864700 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T02:21:52.864743 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:21:52.865451 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.55 ms +I, [2018-08-07T02:21:52.865496 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:21:52.898380 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-08-07T02:21:52.898456 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:21:52.898987 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-08-07T02:21:52.899124 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:21:52.899808 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-08-07T02:21:52.899858 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:21:52.900271 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T02:21:52.900319 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:21:52.900581 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T02:21:52.900613 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:21:52.900859 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T02:21:52.900886 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:21:52.901124 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-08-07T02:21:52.901155 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:21:52.901544 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T02:21:52.901593 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:21:52.902110 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-08-07T02:21:52.902156 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:21:52.902680 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-08-07T02:21:52.910207 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:21:54.659174 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-08-07T02:21:54.659224 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:21:54.659641 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T02:21:54.659678 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:21:54.660358 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.26 ms +I, [2018-08-07T02:21:54.660427 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:21:54.663065 #7] INFO -- : Inline processing of topic course_change with 1 messages took 2.44 ms +I, [2018-08-07T02:21:54.663130 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:21:54.663507 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-08-07T02:21:54.663603 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:21:54.664081 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T02:21:54.664136 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:21:54.664527 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-08-07T02:21:54.664578 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:21:54.665138 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T02:21:54.665202 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:21:54.665501 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T02:21:54.665551 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:21:54.665946 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.23 ms +I, [2018-08-07T02:21:54.665990 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:21:54.666424 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T02:21:54.666480 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:21:54.666819 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T02:21:54.666874 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:21:54.667286 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-08-07T02:21:54.667342 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:21:54.667841 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-08-07T02:21:54.667889 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:21:54.691954 #7] INFO -- : Inline processing of topic course_change with 1 messages took 23.83 ms +I, [2018-08-07T02:21:54.692044 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:21:54.912199 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.4 ms +I, [2018-08-07T02:21:54.912292 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:21:54.912881 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-08-07T02:21:54.912992 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:21:54.913682 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.41 ms +I, [2018-08-07T02:21:54.913754 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:21:54.914299 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-08-07T02:21:54.916916 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:21:54.917589 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T02:21:54.917660 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:21:54.918056 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T02:21:54.918119 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:21:54.924089 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T02:21:54.924158 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:21:54.924591 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T02:21:54.924639 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:21:54.925039 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T02:21:54.925102 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:21:54.925433 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T02:21:54.925562 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:21:54.925890 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T02:21:54.925939 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:21:56.693034 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.32 ms +I, [2018-08-07T02:21:56.693083 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:21:56.693367 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T02:21:56.693398 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:21:56.693633 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T02:21:56.693662 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:21:56.693856 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T02:21:56.693974 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:21:56.694177 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-08-07T02:21:56.694361 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:21:56.694771 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.27 ms +I, [2018-08-07T02:21:56.694800 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:21:56.695014 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T02:21:56.695042 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:21:56.695206 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T02:21:56.695226 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:21:56.989924 #7] INFO -- : Inline processing of topic section_change with 1 messages took 9.65 ms +I, [2018-08-07T02:21:56.990048 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:21:56.990515 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T02:21:56.990550 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:21:56.990817 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T02:21:56.990853 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:21:56.991188 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T02:21:56.991252 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:21:56.991475 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T02:21:56.991504 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:21:56.991734 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T02:21:56.991762 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:21:56.992117 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T02:21:56.992190 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:22:01.289663 #7] INFO -- : Committing offsets: course_change/0:129 +I, [2018-08-07T02:22:01.351154 #7] INFO -- : Committing offsets: section_change/0:198 +I, [2018-08-07T02:22:03.287953 #7] INFO -- : Inline processing of topic section_change with 1 messages took 42.08 ms +I, [2018-08-07T02:22:03.288129 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:22:03.295879 #7] INFO -- : Inline processing of topic section_change with 1 messages took 6.1 ms +I, [2018-08-07T02:22:03.295951 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:22:03.298659 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.86 ms +I, [2018-08-07T02:22:03.298761 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:22:03.754744 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.86 ms +I, [2018-08-07T02:22:03.754832 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:22:03.756675 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.19 ms +I, [2018-08-07T02:22:03.757137 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:22:04.001538 #7] INFO -- : Inline processing of topic course_change with 1 messages took 5.77 ms +I, [2018-08-07T02:22:04.001628 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:22:04.002104 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-08-07T02:22:04.002149 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:22:04.002804 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.25 ms +I, [2018-08-07T02:22:04.002856 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:22:04.003742 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.71 ms +I, [2018-08-07T02:22:04.003793 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:22:04.004428 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.42 ms +I, [2018-08-07T02:22:04.004477 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:22:05.773664 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-08-07T02:22:05.773716 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:22:05.776554 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.52 ms +I, [2018-08-07T02:22:05.776639 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:22:06.032286 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.35 ms +I, [2018-08-07T02:22:06.032361 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:22:06.035412 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-08-07T02:22:06.351140 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:22:07.795785 #7] INFO -- : Inline processing of topic section_change with 1 messages took 6.1 ms +I, [2018-08-07T02:22:07.795968 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:22:07.803840 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.85 ms +I, [2018-08-07T02:22:07.803966 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:22:08.722171 #7] INFO -- : Inline processing of topic course_change with 1 messages took 18.08 ms +I, [2018-08-07T02:22:08.722260 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:22:08.722894 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.37 ms +I, [2018-08-07T02:22:08.722957 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:22:08.724165 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.84 ms +I, [2018-08-07T02:22:08.724228 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:22:08.725403 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.71 ms +I, [2018-08-07T02:22:08.764033 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:22:08.765100 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.68 ms +I, [2018-08-07T02:22:08.765173 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:22:09.806724 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.6 ms +I, [2018-08-07T02:22:09.806817 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:22:09.807428 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.41 ms +I, [2018-08-07T02:22:09.807467 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:22:09.808058 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T02:22:09.810981 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:22:09.814149 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.54 ms +I, [2018-08-07T02:22:09.814753 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:22:09.816867 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.87 ms +I, [2018-08-07T02:22:09.816919 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:22:09.817353 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T02:22:09.817388 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:22:09.817916 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T02:22:09.817952 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:22:09.825034 #7] INFO -- : Inline processing of topic section_change with 1 messages took 4.33 ms +I, [2018-08-07T02:22:09.825086 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:22:10.766456 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.65 ms +I, [2018-08-07T02:22:10.766660 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:22:10.767540 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.38 ms +I, [2018-08-07T02:22:10.767742 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:22:10.768310 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.32 ms +I, [2018-08-07T02:22:10.768354 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:22:10.771429 #7] INFO -- : Inline processing of topic course_change with 1 messages took 2.08 ms +I, [2018-08-07T02:22:10.771513 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:22:10.772525 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.5 ms +I, [2018-08-07T02:22:10.772606 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:22:10.774368 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.79 ms +I, [2018-08-07T02:22:10.774470 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:22:10.775776 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.59 ms +I, [2018-08-07T02:22:10.775921 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:22:10.777590 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.66 ms +I, [2018-08-07T02:22:10.777700 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:22:11.826073 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.41 ms +I, [2018-08-07T02:22:11.826186 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:22:11.826670 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T02:22:11.826715 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:22:11.827254 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-08-07T02:22:11.827301 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:22:11.828158 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.67 ms +I, [2018-08-07T02:22:11.828213 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:22:11.829236 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T02:22:11.829453 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:22:11.830158 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T02:22:11.830211 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:22:11.832357 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.78 ms +I, [2018-08-07T02:22:11.832432 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:22:11.835657 #7] INFO -- : Inline processing of topic section_change with 1 messages took 2.86 ms +I, [2018-08-07T02:22:11.839255 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:22:11.842835 #7] INFO -- : Inline processing of topic section_change with 1 messages took 2.22 ms +I, [2018-08-07T02:22:11.842887 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:22:11.850983 #7] INFO -- : Inline processing of topic section_change with 1 messages took 4.47 ms +I, [2018-08-07T02:22:11.852559 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:22:11.858879 #7] INFO -- : Inline processing of topic section_change with 1 messages took 5.88 ms +I, [2018-08-07T02:22:11.858933 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:22:11.859325 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T02:22:11.859357 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:22:11.859561 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T02:22:11.859670 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:22:11.862040 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T02:22:11.862679 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:22:11.865297 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.28 ms +I, [2018-08-07T02:22:11.865363 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:22:11.866262 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.66 ms +I, [2018-08-07T02:22:11.866357 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:22:11.867086 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T02:22:11.867140 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:22:11.867533 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T02:22:11.867582 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:22:11.868023 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T02:22:11.868071 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:22:11.868659 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T02:22:11.868709 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:22:11.869106 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T02:22:11.869416 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:22:11.869734 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T02:22:11.869788 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:22:11.875836 #7] INFO -- : Inline processing of topic section_change with 1 messages took 5.74 ms +I, [2018-08-07T02:22:11.875913 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:22:12.749710 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.25 ms +I, [2018-08-07T02:22:12.749764 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:22:12.750181 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T02:22:12.750214 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:22:13.847655 #7] INFO -- : Committing offsets: section_change/0:238 +I, [2018-08-07T02:22:13.862587 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.43 ms +I, [2018-08-07T02:22:13.862647 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:22:13.863101 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T02:22:13.863143 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:22:13.863533 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T02:22:13.863573 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:22:13.863855 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T02:22:13.864030 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:22:13.864561 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T02:22:13.864634 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:22:13.865252 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T02:22:13.865321 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:22:13.866119 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.48 ms +I, [2018-08-07T02:22:13.866174 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:22:13.867017 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.66 ms +I, [2018-08-07T02:22:13.867076 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:22:13.867436 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T02:22:13.867485 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:22:13.868098 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T02:22:13.868146 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:22:14.750570 #7] INFO -- : Committing offsets: course_change/0:151 +I, [2018-08-07T02:22:14.775025 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-08-07T02:22:14.775071 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:22:14.775688 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-08-07T02:22:14.775750 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:22:14.776022 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T02:22:14.776053 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:22:14.776288 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T02:22:14.776319 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:22:14.776601 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-08-07T02:22:14.776631 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:22:14.776819 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T02:22:14.776848 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:22:14.777059 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T02:22:14.777087 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:22:14.777314 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T02:22:14.777342 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:22:14.780363 #7] INFO -- : Inline processing of topic course_change with 1 messages took 2.86 ms +I, [2018-08-07T02:22:14.780439 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:22:14.780872 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-08-07T02:22:14.780915 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:22:14.781240 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T02:22:14.781281 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:22:14.781541 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T02:22:14.781581 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:22:14.785082 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.6 ms +I, [2018-08-07T02:22:14.785175 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:22:14.786123 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.45 ms +I, [2018-08-07T02:22:14.786173 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:22:14.811602 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.4 ms +I, [2018-08-07T02:22:14.811782 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:22:14.812168 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T02:22:14.814970 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:22:16.771420 #7] INFO -- : Inline processing of topic section_change with 1 messages took 14.0 ms +I, [2018-08-07T02:22:16.771842 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:22:16.772646 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-08-07T02:22:16.772877 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:22:16.774332 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.16 ms +I, [2018-08-07T02:22:16.774398 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:22:16.776522 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.31 ms +I, [2018-08-07T02:22:16.776604 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:22:16.777263 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.4 ms +I, [2018-08-07T02:22:16.777313 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:22:16.777765 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T02:22:16.777827 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:22:16.778446 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T02:22:16.778501 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:22:16.787554 #7] INFO -- : Inline processing of topic section_change with 1 messages took 8.79 ms +I, [2018-08-07T02:22:16.787654 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:22:16.816402 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.45 ms +I, [2018-08-07T02:22:16.816481 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:22:18.788874 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-08-07T02:22:18.788924 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:22:18.789401 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-08-07T02:22:18.789489 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:22:18.789762 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T02:22:18.789802 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:22:18.791529 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-08-07T02:22:18.791591 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:22:18.792110 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T02:22:18.792163 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:22:18.800841 #7] INFO -- : Inline processing of topic section_change with 1 messages took 8.47 ms +I, [2018-08-07T02:22:18.801004 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:22:18.801999 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.66 ms +I, [2018-08-07T02:22:18.802059 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:22:18.808636 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.21 ms +I, [2018-08-07T02:22:18.809370 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:22:18.813717 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.72 ms +I, [2018-08-07T02:22:18.813795 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:22:18.818103 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.51 ms +I, [2018-08-07T02:22:18.818287 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:22:18.828424 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-08-07T02:22:18.828731 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:22:18.834918 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.35 ms +I, [2018-08-07T02:22:18.834992 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:22:18.835622 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.4 ms +I, [2018-08-07T02:22:18.835664 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:22:18.836407 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.24 ms +I, [2018-08-07T02:22:18.836451 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:22:18.851155 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.31 ms +I, [2018-08-07T02:22:18.851204 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:22:20.965641 #7] INFO -- : Inline processing of topic section_change with 1 messages took 5.76 ms +I, [2018-08-07T02:22:20.967750 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:22:20.969379 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.97 ms +I, [2018-08-07T02:22:20.969486 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:22:20.970413 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.57 ms +I, [2018-08-07T02:22:20.970886 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:22:20.971740 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.54 ms +I, [2018-08-07T02:22:20.971811 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:22:20.972420 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-08-07T02:22:20.972529 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:22:20.973235 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.4 ms +I, [2018-08-07T02:22:20.973428 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:22:20.974519 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.77 ms +I, [2018-08-07T02:22:20.974612 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:22:20.975723 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.42 ms +I, [2018-08-07T02:22:20.976211 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:22:20.977068 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-08-07T02:22:20.977133 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:22:20.992200 #7] INFO -- : Inline processing of topic section_change with 1 messages took 14.72 ms +I, [2018-08-07T02:22:20.992612 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:22:20.995025 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.77 ms +I, [2018-08-07T02:22:21.027487 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:22:21.034278 #7] INFO -- : Inline processing of topic course_change with 1 messages took 6.07 ms +I, [2018-08-07T02:22:21.034365 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:22:21.035350 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.65 ms +I, [2018-08-07T02:22:21.035405 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:22:21.036081 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.42 ms +I, [2018-08-07T02:22:21.036134 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:22:21.069331 #7] INFO -- : Inline processing of topic course_change with 1 messages took 13.83 ms +I, [2018-08-07T02:22:21.069625 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:22:23.149535 #7] INFO -- : Inline processing of topic section_change with 1 messages took 15.5 ms +I, [2018-08-07T02:22:23.158902 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:22:23.486644 #7] INFO -- : Inline processing of topic section_change with 1 messages took 326.11 ms +I, [2018-08-07T02:22:23.488006 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:22:23.515605 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.59 ms +I, [2018-08-07T02:22:23.515777 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:22:25.486801 #7] INFO -- : Committing offsets: course_change/0:177 +I, [2018-08-07T02:22:25.515437 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.31 ms +I, [2018-08-07T02:22:25.515525 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:22:25.516444 #7] INFO -- : Committing offsets: section_change/0:280 +I, [2018-08-07T02:22:25.542299 #7] INFO -- : Inline processing of topic section_change with 1 messages took 2.17 ms +I, [2018-08-07T02:22:25.544093 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:22:25.544845 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.48 ms +I, [2018-08-07T02:22:25.545006 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:22:25.562958 #7] INFO -- : Inline processing of topic section_change with 1 messages took 14.89 ms +I, [2018-08-07T02:22:25.599484 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:22:29.760357 #7] INFO -- : Inline processing of topic section_change with 1 messages took 2.29 ms +I, [2018-08-07T02:22:29.760749 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:22:32.048944 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.34 ms +I, [2018-08-07T02:22:32.049054 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:22:36.867431 #7] INFO -- : Committing offsets: section_change/0:285 +I, [2018-08-07T02:22:36.896702 #7] INFO -- : Committing offsets: course_change/0:178 +I, [2018-08-07T02:22:37.258711 #7] INFO -- : Inline processing of topic section_change with 1 messages took 100.6 ms +I, [2018-08-07T02:22:37.259429 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:22:39.277781 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.82 ms +I, [2018-08-07T02:22:39.277855 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:22:39.293853 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.27 ms +I, [2018-08-07T02:22:39.293959 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:22:39.294503 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T02:22:39.294577 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:22:41.580800 #7] INFO -- : Inline processing of topic section_change with 1 messages took 282.07 ms +I, [2018-08-07T02:22:41.580898 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:22:45.231361 #7] INFO -- : Inline processing of topic section_change with 1 messages took 714.53 ms +I, [2018-08-07T02:22:45.232331 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:22:47.370053 #7] INFO -- : Committing offsets: section_change/0:290 +I, [2018-08-07T02:22:47.768948 #7] INFO -- : Committing offsets: course_change/0:179 +I, [2018-08-07T02:22:48.106311 #7] INFO -- : Inline processing of topic section_change with 1 messages took 178.91 ms +I, [2018-08-07T02:22:48.106661 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:22:50.128291 #7] INFO -- : Inline processing of topic section_change with 1 messages took 5.24 ms +I, [2018-08-07T02:22:50.128358 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:22:50.128944 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-08-07T02:22:50.128998 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:22:50.129678 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.52 ms +I, [2018-08-07T02:22:50.129732 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:22:50.130333 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.44 ms +I, [2018-08-07T02:22:50.130418 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:22:50.130843 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T02:22:50.130891 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:22:50.154784 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T02:22:50.154894 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:22:50.166085 #7] INFO -- : Inline processing of topic course_change with 1 messages took 2.8 ms +I, [2018-08-07T02:22:50.166174 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:22:52.539492 #7] INFO -- : Inline processing of topic section_change with 1 messages took 17.83 ms +I, [2018-08-07T02:22:52.539618 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:22:52.541141 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.26 ms +I, [2018-08-07T02:22:52.541209 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:22:52.542612 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.19 ms +I, [2018-08-07T02:22:52.542669 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:22:54.543962 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.46 ms +I, [2018-08-07T02:22:54.544041 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:22:54.544633 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-08-07T02:22:54.544922 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:22:54.545633 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.47 ms +I, [2018-08-07T02:22:54.546829 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:22:56.548305 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.85 ms +I, [2018-08-07T02:22:56.553340 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:22:59.111660 #7] INFO -- : Committing offsets: section_change/0:304 +I, [2018-08-07T02:22:59.198641 #7] INFO -- : Committing offsets: course_change/0:180 +I, [2018-08-07T02:23:03.610300 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.47 ms +I, [2018-08-07T02:23:03.610370 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:23:05.939929 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.59 ms +I, [2018-08-07T02:23:05.940928 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:23:08.023030 #7] INFO -- : Inline processing of topic section_change with 1 messages took 51.43 ms +I, [2018-08-07T02:23:08.023457 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:23:08.168294 #7] INFO -- : Inline processing of topic section_change with 1 messages took 141.95 ms +I, [2018-08-07T02:23:08.168369 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:23:08.169444 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.79 ms +I, [2018-08-07T02:23:08.169508 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:23:10.166646 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.74 ms +I, [2018-08-07T02:23:10.166719 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:23:10.167789 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.7 ms +I, [2018-08-07T02:23:10.167860 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:23:10.168842 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T02:23:10.168901 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:23:10.169470 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T02:23:10.169529 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:23:10.170554 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.42 ms +I, [2018-08-07T02:23:10.170612 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:23:10.173612 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.65 ms +I, [2018-08-07T02:23:10.173691 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:23:10.176346 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.23 ms +I, [2018-08-07T02:23:10.176418 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:23:10.176824 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T02:23:10.188103 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:23:10.196718 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.27 ms +I, [2018-08-07T02:23:10.196800 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:23:10.178021 #7] INFO -- : Committing offsets: section_change/0:309 +I, [2018-08-07T02:23:10.206327 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T02:23:10.206375 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:23:10.206800 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-08-07T02:23:10.206832 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:23:10.207221 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T02:23:10.207253 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:23:10.207615 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T02:23:10.207648 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:23:10.207859 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T02:23:10.207889 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:23:10.208357 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T02:23:10.208393 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:23:10.208679 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T02:23:10.208711 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:23:12.170662 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.35 ms +I, [2018-08-07T02:23:12.171132 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:23:12.171918 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.31 ms +I, [2018-08-07T02:23:12.171975 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:23:12.172501 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.3 ms +I, [2018-08-07T02:23:12.172579 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:23:12.173107 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.34 ms +I, [2018-08-07T02:23:12.173159 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:23:12.173469 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T02:23:12.173587 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:23:12.173868 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T02:23:12.173958 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:23:12.176334 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-08-07T02:23:12.176395 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:23:12.212938 #7] INFO -- : Inline processing of topic section_change with 1 messages took 36.33 ms +I, [2018-08-07T02:23:12.213012 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:23:12.214847 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.82 ms +I, [2018-08-07T02:23:12.214934 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:23:12.215649 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.49 ms +I, [2018-08-07T02:23:12.215717 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:23:12.216349 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.41 ms +I, [2018-08-07T02:23:12.216402 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:23:12.216736 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T02:23:12.216784 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:23:12.217254 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T02:23:12.217362 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:23:14.758224 #7] INFO -- : Committing offsets: course_change/0:195 +I, [2018-08-07T02:23:17.803751 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.66 ms +I, [2018-08-07T02:23:17.823343 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:23:17.815119 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.76 ms +I, [2018-08-07T02:23:18.021375 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:23:18.028093 #7] INFO -- : Inline processing of topic course_change with 1 messages took 1.97 ms +I, [2018-08-07T02:23:18.028414 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:23:18.098555 #7] INFO -- : Inline processing of topic course_change with 1 messages took 68.56 ms +I, [2018-08-07T02:23:18.098860 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:23:18.259471 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.59 ms +I, [2018-08-07T02:23:18.259537 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:23:18.259873 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T02:23:18.259919 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:23:18.360617 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.6 ms +I, [2018-08-07T02:23:18.360699 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:23:18.373343 #7] INFO -- : Inline processing of topic section_change with 1 messages took 11.78 ms +I, [2018-08-07T02:23:18.373914 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:23:18.380375 #7] INFO -- : Inline processing of topic section_change with 1 messages took 6.12 ms +I, [2018-08-07T02:23:18.670275 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:23:18.670970 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-08-07T02:23:18.671026 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:23:18.671713 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.48 ms +I, [2018-08-07T02:23:18.671773 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:23:18.672412 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-08-07T02:23:18.672462 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:23:18.380521 #7] INFO -- : Inline processing of topic course_change with 1 messages took 281.42 ms +I, [2018-08-07T02:23:18.710233 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:23:18.716927 #7] INFO -- : Inline processing of topic course_change with 1 messages took 1.1 ms +I, [2018-08-07T02:23:18.717315 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:23:18.720023 #7] INFO -- : Inline processing of topic course_change with 1 messages took 2.22 ms +I, [2018-08-07T02:23:18.720113 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:23:18.724368 #7] INFO -- : Inline processing of topic course_change with 1 messages took 3.82 ms +I, [2018-08-07T02:23:18.724452 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:23:20.673784 #7] INFO -- : Committing offsets: section_change/0:332 +I, [2018-08-07T02:23:20.726729 #7] INFO -- : Inline processing of topic course_change with 1 messages took 1.43 ms +I, [2018-08-07T02:23:20.727734 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:23:20.728496 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.38 ms +I, [2018-08-07T02:23:20.728591 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:23:20.729143 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T02:23:20.729202 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:23:20.730194 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T02:23:20.730517 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:23:20.754308 #7] INFO -- : Inline processing of topic course_change with 1 messages took 23.46 ms +I, [2018-08-07T02:23:20.754389 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:23:20.755119 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.44 ms +I, [2018-08-07T02:23:20.755174 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:23:20.755763 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.4 ms +I, [2018-08-07T02:23:20.755898 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:23:20.764748 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-08-07T02:23:20.764821 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:23:20.765304 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-08-07T02:23:20.765353 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:23:20.775761 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-08-07T02:23:20.786422 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:23:20.787189 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-08-07T02:23:20.787242 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:23:20.787699 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-08-07T02:23:20.787750 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:23:20.797777 #7] INFO -- : Inline processing of topic section_change with 1 messages took 9.81 ms +I, [2018-08-07T02:23:20.797844 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:23:20.798522 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.46 ms +I, [2018-08-07T02:23:20.798571 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:23:22.952510 #7] INFO -- : Inline processing of topic course_change with 1 messages took 5.24 ms +I, [2018-08-07T02:23:22.993291 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.1 ms +I, [2018-08-07T02:23:22.993368 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:23:22.994367 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-08-07T02:23:22.994431 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:23:23.461742 #7] INFO -- : Inline processing of topic section_change with 1 messages took 466.28 ms +I, [2018-08-07T02:23:23.463168 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:23:23.635502 #7] INFO -- : Inline processing of topic section_change with 1 messages took 8.05 ms +I, [2018-08-07T02:23:23.657547 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:23:23.694760 #7] INFO -- : Inline processing of topic section_change with 1 messages took 3.77 ms +I, [2018-08-07T02:23:23.694868 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:23:23.696521 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.25 ms +I, [2018-08-07T02:23:23.696580 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:23:24.018789 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:23:24.045966 #7] INFO -- : Inline processing of topic course_change with 1 messages took 1.06 ms +I, [2018-08-07T02:23:24.046214 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:23:24.047445 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.44 ms +I, [2018-08-07T02:23:24.047684 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:23:24.150206 #7] INFO -- : Inline processing of topic section_change with 1 messages took 411.42 ms +I, [2018-08-07T02:23:24.150398 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:23:24.202486 #7] INFO -- : Inline processing of topic section_change with 1 messages took 51.74 ms +I, [2018-08-07T02:23:24.205221 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:23:24.255042 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-08-07T02:23:24.255106 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:23:24.256093 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.57 ms +I, [2018-08-07T02:23:24.256183 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:23:24.256898 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.55 ms +I, [2018-08-07T02:23:24.257096 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:23:24.257812 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-08-07T02:23:24.257869 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:23:24.258495 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.41 ms +I, [2018-08-07T02:23:24.258587 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:23:24.815737 #7] INFO -- : Inline processing of topic section_change with 1 messages took 556.55 ms +I, [2018-08-07T02:23:24.815827 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:23:24.817594 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.16 ms +I, [2018-08-07T02:23:24.818000 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:23:24.819178 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.63 ms +I, [2018-08-07T02:23:24.819452 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:23:24.867128 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T02:23:24.867208 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:23:24.867642 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T02:23:24.867694 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:23:26.066943 #7] INFO -- : Committing offsets: course_change/0:212 +I, [2018-08-07T02:23:26.139341 #7] INFO -- : Inline processing of topic course_change with 1 messages took 1.76 ms +I, [2018-08-07T02:23:26.139413 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:23:26.871480 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.44 ms +I, [2018-08-07T02:23:26.871549 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:23:26.876698 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.95 ms +I, [2018-08-07T02:23:26.876768 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:23:26.877185 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T02:23:26.877233 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:23:26.879023 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-08-07T02:23:26.879081 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:23:26.879523 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T02:23:26.879573 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:23:26.880155 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T02:23:26.880227 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:23:26.880709 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-08-07T02:23:26.881592 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:23:26.893340 #7] INFO -- : Inline processing of topic section_change with 1 messages took 3.09 ms +I, [2018-08-07T02:23:26.893390 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:23:26.893966 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.4 ms +I, [2018-08-07T02:23:26.894019 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:23:26.897900 #7] INFO -- : Inline processing of topic section_change with 1 messages took 3.7 ms +I, [2018-08-07T02:23:26.902305 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:23:26.902807 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T02:23:26.902932 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:23:26.903768 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.41 ms +I, [2018-08-07T02:23:26.903821 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:23:26.905201 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T02:23:26.907931 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:23:26.908993 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.63 ms +I, [2018-08-07T02:23:26.909038 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:23:26.909504 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T02:23:26.921513 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:23:26.922274 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.49 ms +I, [2018-08-07T02:23:26.922352 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:23:26.934721 #7] INFO -- : Inline processing of topic section_change with 1 messages took 2.8 ms +I, [2018-08-07T02:23:26.934839 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:23:26.935283 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T02:23:26.935321 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:23:26.935669 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T02:23:26.935702 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:23:26.935958 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T02:23:26.935989 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:23:26.936809 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T02:23:26.959917 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:23:26.960588 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-08-07T02:23:26.960631 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:23:26.960905 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T02:23:26.960937 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:23:28.154084 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.31 ms +I, [2018-08-07T02:23:28.154133 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:23:28.154480 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-08-07T02:23:28.154513 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:23:28.154711 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-08-07T02:23:28.154741 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:23:28.155185 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T02:23:28.155227 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:23:28.155808 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.41 ms +I, [2018-08-07T02:23:28.155886 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:23:28.967410 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.67 ms +I, [2018-08-07T02:23:28.967524 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:23:28.968095 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-08-07T02:23:28.968154 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:23:28.968518 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T02:23:28.968572 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:23:28.969040 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T02:23:28.969106 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:23:28.969615 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-08-07T02:23:28.969670 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:23:28.970357 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.5 ms +I, [2018-08-07T02:23:28.970413 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:23:30.971351 #7] INFO -- : Committing offsets: section_change/0:386 +I, [2018-08-07T02:23:30.986416 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T02:23:30.986464 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:23:30.986794 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T02:23:30.986825 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:23:30.987110 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T02:23:30.987141 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:23:30.987359 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-08-07T02:23:30.987389 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:23:30.987592 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T02:23:30.987621 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:23:32.219145 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.46 ms +I, [2018-08-07T02:23:32.219236 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:23:32.220502 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.42 ms +I, [2018-08-07T02:23:32.220562 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:23:32.251374 #7] INFO -- : Inline processing of topic course_change with 1 messages took 17.49 ms +I, [2018-08-07T02:23:32.253325 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:23:32.274718 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T02:23:32.291585 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:23:32.293780 #7] INFO -- : Inline processing of topic course_change with 1 messages took 1.83 ms +I, [2018-08-07T02:23:32.293939 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:23:32.294294 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T02:23:32.295621 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:23:32.316696 #7] INFO -- : Inline processing of topic course_change with 1 messages took 20.78 ms +I, [2018-08-07T02:23:32.316767 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:23:32.317425 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.23 ms +I, [2018-08-07T02:23:32.317460 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:23:36.550964 #7] INFO -- : Committing offsets: course_change/0:226 +I, [2018-08-07T02:23:36.657647 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1994.48 ms +I, [2018-08-07T02:23:36.657848 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:23:37.104066 #7] INFO -- : Inline processing of topic section_change with 1 messages took 95.87 ms +I, [2018-08-07T02:23:37.115456 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:23:37.117159 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.65 ms +I, [2018-08-07T02:23:37.117228 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:23:37.117914 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.4 ms +I, [2018-08-07T02:23:37.118195 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:23:37.119329 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.84 ms +I, [2018-08-07T02:23:37.119410 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:23:37.120603 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.95 ms +I, [2018-08-07T02:23:37.120671 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:23:37.135010 #7] INFO -- : Inline processing of topic section_change with 1 messages took 3.37 ms +I, [2018-08-07T02:23:37.137504 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:23:37.209553 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.6 ms +I, [2018-08-07T02:23:37.209605 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:23:37.210351 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.55 ms +I, [2018-08-07T02:23:37.210396 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:23:39.153727 #7] INFO -- : Inline processing of topic section_change with 1 messages took 3.08 ms +I, [2018-08-07T02:23:39.157921 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:23:39.158927 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.55 ms +I, [2018-08-07T02:23:39.158966 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:23:39.164332 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.04 ms +I, [2018-08-07T02:23:39.164497 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:23:39.167191 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-08-07T02:23:39.167240 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:23:39.167853 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-08-07T02:23:39.167895 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:23:39.219746 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.57 ms +I, [2018-08-07T02:23:39.219799 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:23:39.220360 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.37 ms +I, [2018-08-07T02:23:39.220433 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:23:39.220746 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T02:23:39.220778 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:23:39.221072 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T02:23:39.221131 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:23:41.799858 #7] INFO -- : Inline processing of topic course_change with 1 messages took 1.23 ms +I, [2018-08-07T02:23:41.800443 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:23:41.800936 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T02:23:41.805544 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:23:41.869272 #7] INFO -- : Inline processing of topic course_change with 1 messages took 13.68 ms +I, [2018-08-07T02:23:41.869343 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:23:41.906367 #7] INFO -- : Inline processing of topic course_change with 1 messages took 2.36 ms +I, [2018-08-07T02:23:41.906442 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:23:42.145823 #7] INFO -- : Committing offsets: section_change/0:403 +I, [2018-08-07T02:23:42.160486 #7] INFO -- : Inline processing of topic course_change with 1 messages took 249.42 ms +I, [2018-08-07T02:23:42.160578 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:23:42.163508 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.23 ms +I, [2018-08-07T02:23:42.163568 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:23:42.281311 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.67 ms +I, [2018-08-07T02:23:42.281387 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:23:42.410414 #7] INFO -- : Inline processing of topic section_change with 1 messages took 63.05 ms +I, [2018-08-07T02:23:42.410493 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:23:42.411272 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.52 ms +I, [2018-08-07T02:23:42.411325 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:23:42.411675 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T02:23:42.411725 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:23:42.412311 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T02:23:42.412362 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:23:42.412961 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.42 ms +I, [2018-08-07T02:23:42.413011 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:23:44.179783 #7] INFO -- : Inline processing of topic course_change with 1 messages took 9.33 ms +I, [2018-08-07T02:23:44.180515 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:23:44.180972 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T02:23:44.181090 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:23:44.184333 #7] INFO -- : Inline processing of topic course_change with 1 messages took 1.66 ms +I, [2018-08-07T02:23:44.184416 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:23:44.417342 #7] INFO -- : Inline processing of topic section_change with 1 messages took 2.61 ms +I, [2018-08-07T02:23:44.419107 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:23:44.420598 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-08-07T02:23:44.420684 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:23:44.539512 #7] INFO -- : Inline processing of topic section_change with 1 messages took 118.1 ms +I, [2018-08-07T02:23:44.539583 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:23:44.540929 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-08-07T02:23:44.545134 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:23:46.186855 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.45 ms +I, [2018-08-07T02:23:46.186926 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:23:46.187558 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.42 ms +I, [2018-08-07T02:23:46.187606 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:23:46.187958 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T02:23:46.188005 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:23:46.188428 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T02:23:46.188473 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:23:46.188982 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.33 ms +I, [2018-08-07T02:23:46.189024 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:23:46.546043 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T02:23:46.546113 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:23:46.547290 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.98 ms +I, [2018-08-07T02:23:46.547348 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:23:46.547974 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.41 ms +I, [2018-08-07T02:23:46.548012 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:23:46.548472 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-08-07T02:23:46.564895 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:23:46.567437 #7] INFO -- : Inline processing of topic section_change with 1 messages took 2.22 ms +I, [2018-08-07T02:23:46.569311 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:23:46.570026 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-08-07T02:23:46.570091 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:23:46.570605 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T02:23:46.570666 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:23:46.571002 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T02:23:46.571049 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:23:46.571468 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T02:23:46.573994 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:23:46.574964 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.66 ms +I, [2018-08-07T02:23:46.575028 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:23:46.575380 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T02:23:46.575708 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:23:48.189364 #7] INFO -- : Committing offsets: course_change/0:246 +I, [2018-08-07T02:23:48.240386 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.33 ms +I, [2018-08-07T02:23:48.240435 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:23:48.240737 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-08-07T02:23:48.240772 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:23:48.241039 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T02:23:48.241070 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:23:48.576489 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T02:23:48.576559 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:23:48.577612 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-08-07T02:23:48.577668 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:23:48.578397 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T02:23:48.578570 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:23:48.579311 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.54 ms +I, [2018-08-07T02:23:48.579365 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:23:48.579714 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T02:23:48.579759 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:23:48.580504 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T02:23:48.580548 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:23:48.580983 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T02:23:48.581021 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:23:48.581448 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T02:23:48.581485 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:23:48.585778 #7] INFO -- : Inline processing of topic section_change with 1 messages took 4.11 ms +I, [2018-08-07T02:23:48.585869 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:23:48.608471 #7] INFO -- : Inline processing of topic section_change with 1 messages took 7.96 ms +I, [2018-08-07T02:23:48.608643 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:23:48.609467 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-08-07T02:23:48.609780 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:23:48.610455 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T02:23:48.610510 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:23:48.611043 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-08-07T02:23:48.611093 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:23:48.611817 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-08-07T02:23:48.611867 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:23:48.616415 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.47 ms +I, [2018-08-07T02:23:48.616476 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:23:48.618085 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.4 ms +I, [2018-08-07T02:23:48.618146 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:23:48.618672 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-08-07T02:23:48.618723 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:23:48.619929 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.63 ms +I, [2018-08-07T02:23:48.619998 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:23:48.620560 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-08-07T02:23:48.630407 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:23:48.630933 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-08-07T02:23:48.630969 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:23:48.631667 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.4 ms +I, [2018-08-07T02:23:48.631722 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:23:48.632606 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T02:23:48.632659 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:23:48.635832 #7] INFO -- : Inline processing of topic section_change with 1 messages took 2.88 ms +I, [2018-08-07T02:23:48.635909 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:23:48.636515 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-08-07T02:23:48.636566 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:23:48.637005 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T02:23:48.637053 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:23:48.637996 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T02:23:48.647391 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:23:48.647870 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T02:23:48.647905 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:23:48.650795 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T02:23:48.653774 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:23:48.654777 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.65 ms +I, [2018-08-07T02:23:48.654833 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:23:48.655453 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.42 ms +I, [2018-08-07T02:23:48.660477 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:23:48.661854 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.64 ms +I, [2018-08-07T02:23:48.666333 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:23:48.671487 #7] INFO -- : Inline processing of topic section_change with 1 messages took 4.85 ms +I, [2018-08-07T02:23:48.671550 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:23:48.672292 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-08-07T02:23:48.672459 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:23:48.675211 #7] INFO -- : Inline processing of topic section_change with 1 messages took 2.43 ms +I, [2018-08-07T02:23:48.675275 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:23:50.254571 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-08-07T02:23:50.254621 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:23:50.687275 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T02:23:50.687362 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:23:50.688490 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.64 ms +I, [2018-08-07T02:23:50.688535 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:23:50.688853 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T02:23:50.688885 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:23:50.689130 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T02:23:50.689161 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:23:50.689541 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T02:23:50.689579 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:23:50.689994 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T02:23:50.690048 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:23:50.690424 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T02:23:50.690465 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:23:50.690837 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T02:23:50.690886 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:23:50.691287 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T02:23:50.691325 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:23:52.257447 #7] INFO -- : Inline processing of topic course_change with 1 messages took 1.87 ms +I, [2018-08-07T02:23:52.257496 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:23:52.257789 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T02:23:52.257820 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:23:52.691620 #7] INFO -- : Committing offsets: section_change/0:467 +I, [2018-08-07T02:23:52.727037 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.08 ms +I, [2018-08-07T02:23:52.727107 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:23:52.727739 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.4 ms +I, [2018-08-07T02:23:52.727791 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:23:52.728172 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T02:23:52.728214 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:23:52.728569 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T02:23:52.728664 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:23:52.729006 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T02:23:52.729054 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:23:52.729468 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T02:23:52.729521 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:23:52.729913 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T02:23:52.729962 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:23:54.258969 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.47 ms +I, [2018-08-07T02:23:54.259040 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:23:54.259825 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.35 ms +I, [2018-08-07T02:23:54.260073 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:23:54.260540 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-08-07T02:23:54.260617 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:23:54.730792 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-08-07T02:23:54.730865 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:23:54.731302 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T02:23:54.731345 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:23:54.731751 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T02:23:54.731797 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:23:54.732180 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T02:23:54.732222 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:23:54.732560 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T02:23:54.732603 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:23:54.732981 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T02:23:54.734469 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:23:54.734817 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T02:23:54.734902 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:23:54.735125 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T02:23:54.735185 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:23:56.262786 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-08-07T02:23:56.262879 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:23:56.263087 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-08-07T02:23:56.263117 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:23:56.264099 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.27 ms +I, [2018-08-07T02:23:56.264148 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:23:56.264487 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T02:23:56.264538 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:23:56.264861 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T02:23:56.264916 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:23:56.265278 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T02:23:56.265328 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:23:56.265677 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-08-07T02:23:56.265727 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:23:56.736209 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T02:23:56.736259 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:23:56.736537 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T02:23:56.736567 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:23:56.736828 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T02:23:56.736857 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:23:56.737112 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T02:23:56.737141 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:23:56.737391 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T02:23:56.737420 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:23:56.737606 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-08-07T02:23:56.737792 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:23:56.738122 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T02:23:56.738152 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:23:56.738384 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-08-07T02:23:56.738413 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:23:56.738638 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T02:23:56.738666 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:23:56.738903 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T02:23:56.738932 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:23:56.739203 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T02:23:56.739231 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:23:58.266405 #7] INFO -- : Committing offsets: course_change/0:262 +I, [2018-08-07T02:23:58.270334 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.26 ms +I, [2018-08-07T02:23:58.270506 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:23:58.270745 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T02:23:58.270776 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:23:58.271049 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T02:23:58.271095 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:23:58.271538 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-08-07T02:23:58.271596 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:23:58.271967 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T02:23:58.272093 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:23:58.272445 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T02:23:58.272493 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:23:58.740010 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T02:23:58.740058 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:23:58.740309 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T02:23:58.740339 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:23:58.740655 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T02:23:58.740692 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:23:58.740966 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T02:23:58.740995 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:23:58.741221 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T02:23:58.741249 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:23:58.741924 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.53 ms +I, [2018-08-07T02:23:58.741966 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:23:58.742306 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T02:23:58.742343 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:23:58.742582 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T02:23:58.742611 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:23:58.742831 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T02:23:58.742896 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:00.276430 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.3 ms +I, [2018-08-07T02:24:00.276941 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:24:00.277476 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-08-07T02:24:00.277528 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:24:00.277912 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-08-07T02:24:00.277961 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:24:00.278335 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T02:24:00.278382 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:24:00.278702 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T02:24:00.278781 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:24:00.279110 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T02:24:00.279154 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:24:00.279505 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T02:24:00.279550 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:24:00.279908 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-08-07T02:24:00.279954 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:24:00.280267 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T02:24:00.280357 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:24:00.280744 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T02:24:00.280792 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:24:00.281128 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T02:24:00.281174 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:24:00.281700 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.33 ms +I, [2018-08-07T02:24:00.281744 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:24:00.282103 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T02:24:00.282176 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:24:00.282511 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T02:24:00.282555 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:24:00.282869 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T02:24:00.282913 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:24:00.744843 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T02:24:00.744892 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:00.745202 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T02:24:00.745234 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:00.745519 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T02:24:00.745614 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:00.746064 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T02:24:00.746118 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:00.746385 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T02:24:00.746432 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:00.746689 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T02:24:00.746718 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:00.746951 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T02:24:00.746979 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:00.747207 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T02:24:00.747243 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:00.747557 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T02:24:00.747590 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:00.747991 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T02:24:00.748162 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:00.748757 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-08-07T02:24:00.748809 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:00.749220 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T02:24:00.749280 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:00.756501 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.21 ms +I, [2018-08-07T02:24:00.756585 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:00.757155 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.4 ms +I, [2018-08-07T02:24:00.757194 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:00.757509 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T02:24:00.757540 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:00.757755 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T02:24:00.759274 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:00.759840 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-08-07T02:24:00.759896 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:02.284175 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.27 ms +I, [2018-08-07T02:24:02.284239 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:24:02.284584 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T02:24:02.284633 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:24:02.284981 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T02:24:02.285035 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:24:02.285404 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-08-07T02:24:02.285454 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:24:02.285799 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T02:24:02.285915 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:24:02.287448 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-08-07T02:24:02.287510 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:24:02.287919 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-08-07T02:24:02.287968 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:24:02.288368 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-08-07T02:24:02.288420 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:24:02.288927 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.29 ms +I, [2018-08-07T02:24:02.288990 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:24:02.289460 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T02:24:02.289519 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:24:02.289919 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-08-07T02:24:02.289969 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:24:02.290432 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T02:24:02.290487 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:24:02.760188 #7] INFO -- : Committing offsets: section_change/0:519 +I, [2018-08-07T02:24:02.762494 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T02:24:02.762537 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:02.762746 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T02:24:02.762812 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:02.763015 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T02:24:02.763044 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:02.763270 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-08-07T02:24:02.763298 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:02.763595 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T02:24:02.763626 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:02.763850 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T02:24:02.763880 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:02.764062 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-08-07T02:24:02.764090 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:02.764311 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-08-07T02:24:02.764339 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:02.764554 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T02:24:02.764581 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:02.764786 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T02:24:02.764814 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:02.764994 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-08-07T02:24:02.765022 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:02.765233 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-08-07T02:24:02.765261 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:02.765471 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T02:24:02.765499 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:02.765678 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-08-07T02:24:02.765743 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:02.765924 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-08-07T02:24:02.765952 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:02.766171 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T02:24:02.766200 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:02.766436 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T02:24:02.766465 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:02.773487 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T02:24:02.773552 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:02.773999 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T02:24:02.774049 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:02.774419 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T02:24:02.774469 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:02.774811 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T02:24:02.774860 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:02.775165 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T02:24:02.775215 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:02.775560 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T02:24:02.775608 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:02.775945 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T02:24:02.775994 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:02.776744 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.57 ms +I, [2018-08-07T02:24:02.776799 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:02.777120 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T02:24:02.777166 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:02.777496 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T02:24:02.777540 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:02.777885 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T02:24:02.777928 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:02.778271 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T02:24:02.778315 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:02.787395 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T02:24:02.787461 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:02.787822 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T02:24:02.787870 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:02.788225 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T02:24:02.788270 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:04.291395 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.29 ms +I, [2018-08-07T02:24:04.291462 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:24:04.291801 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T02:24:04.291851 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:24:04.292215 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-08-07T02:24:04.292264 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:24:04.292619 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T02:24:04.292666 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:24:04.292969 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T02:24:04.293017 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:24:04.293401 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T02:24:04.293453 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:24:04.293906 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.27 ms +I, [2018-08-07T02:24:04.293960 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:24:04.294327 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T02:24:04.294378 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:24:04.294621 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T02:24:04.294651 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:24:04.294865 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-08-07T02:24:04.294894 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:24:04.295111 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T02:24:04.295139 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:24:04.295340 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T02:24:04.295369 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:24:04.789317 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.43 ms +I, [2018-08-07T02:24:04.789388 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:04.789870 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T02:24:04.789922 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:04.790320 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T02:24:04.790367 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:04.790779 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T02:24:04.790869 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:04.793299 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-08-07T02:24:04.793388 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:04.793864 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T02:24:04.793970 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:04.794449 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T02:24:04.794505 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:04.794908 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T02:24:04.794961 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:04.795327 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T02:24:04.795362 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:04.795623 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T02:24:04.795664 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:04.795983 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T02:24:04.796017 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:04.796297 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T02:24:04.796341 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:04.796730 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T02:24:04.796778 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:04.797114 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T02:24:04.797159 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:04.797541 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T02:24:04.797583 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:06.296908 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.77 ms +I, [2018-08-07T02:24:06.297060 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:24:06.297429 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T02:24:06.297461 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:24:06.297753 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-08-07T02:24:06.297784 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:24:06.298077 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-08-07T02:24:06.298144 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:24:06.298373 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T02:24:06.298402 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:24:06.298661 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T02:24:06.298721 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:24:06.298954 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T02:24:06.299461 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:24:06.299776 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T02:24:06.299807 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:24:06.300053 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T02:24:06.300083 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:24:06.300399 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T02:24:06.300439 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:24:06.300647 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T02:24:06.300680 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:24:06.798674 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-08-07T02:24:06.798740 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:06.799220 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T02:24:06.799284 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:06.799706 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T02:24:06.799757 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:06.800218 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-08-07T02:24:06.800265 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:06.800611 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T02:24:06.800657 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:06.801099 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T02:24:06.801145 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:06.801628 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-08-07T02:24:06.801669 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:06.802089 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T02:24:06.802141 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:06.802888 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.57 ms +I, [2018-08-07T02:24:06.806172 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:06.807125 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-08-07T02:24:06.807190 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:06.807534 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T02:24:06.807583 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:06.808093 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-08-07T02:24:06.808145 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:06.809104 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.54 ms +I, [2018-08-07T02:24:06.809177 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:06.809989 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T02:24:06.810045 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:06.810453 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T02:24:06.810504 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:06.810950 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T02:24:06.811000 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:06.812049 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.73 ms +I, [2018-08-07T02:24:06.812118 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:06.813278 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.74 ms +I, [2018-08-07T02:24:06.813337 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:06.813759 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T02:24:06.813803 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:06.814512 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.54 ms +I, [2018-08-07T02:24:06.814550 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:08.301035 #7] INFO -- : Committing offsets: course_change/0:318 +I, [2018-08-07T02:24:08.304593 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.23 ms +I, [2018-08-07T02:24:08.304640 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:24:08.304937 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T02:24:08.304986 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:24:08.305197 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-08-07T02:24:08.305226 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:24:08.305457 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T02:24:08.305486 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:24:08.305692 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T02:24:08.305720 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:24:08.305929 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T02:24:08.305958 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:24:08.306147 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T02:24:08.306175 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:24:08.306384 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T02:24:08.306411 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:24:08.306614 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T02:24:08.306642 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:24:08.815511 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T02:24:08.815561 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:08.815787 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T02:24:08.815816 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:08.816104 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T02:24:08.817750 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:08.818162 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T02:24:08.818207 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:08.818444 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T02:24:08.818511 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:08.818699 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-08-07T02:24:08.818727 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:08.819048 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T02:24:08.819079 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:08.819269 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-08-07T02:24:08.819327 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:08.819508 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-08-07T02:24:08.819536 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:08.819751 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T02:24:08.819810 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:08.821290 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T02:24:08.821329 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:08.821540 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T02:24:08.821569 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:08.821785 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-08-07T02:24:08.821814 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:08.822034 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T02:24:08.822063 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:08.822276 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T02:24:08.822303 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:08.822482 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-08-07T02:24:08.822541 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:08.822721 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-08-07T02:24:08.822749 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:08.823020 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T02:24:08.823771 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:08.824734 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T02:24:08.824775 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:08.824991 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T02:24:08.825020 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:08.825249 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-08-07T02:24:08.825283 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:08.825943 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.54 ms +I, [2018-08-07T02:24:08.825991 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:08.826401 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T02:24:08.826463 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:08.826715 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T02:24:08.826745 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:08.826979 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-08-07T02:24:08.827008 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:08.827242 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T02:24:08.827270 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:08.827589 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-08-07T02:24:08.827692 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:08.829184 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-08-07T02:24:08.829253 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:08.829870 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T02:24:08.829928 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:08.830535 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-08-07T02:24:08.830638 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:08.830980 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T02:24:08.831075 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:08.831519 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T02:24:08.831564 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:08.832036 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T02:24:08.832074 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:10.309056 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.27 ms +I, [2018-08-07T02:24:10.309185 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:24:10.309557 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-08-07T02:24:10.309592 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:24:10.309860 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T02:24:10.309890 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:24:10.310230 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T02:24:10.310267 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:24:10.310558 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T02:24:10.310641 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:24:10.310920 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T02:24:10.310951 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:24:10.312941 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T02:24:10.312982 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:24:10.313435 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.33 ms +I, [2018-08-07T02:24:10.313482 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:24:10.313869 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T02:24:10.313898 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:24:10.314096 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T02:24:10.314122 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:24:10.314333 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-08-07T02:24:10.314362 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:24:10.314542 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-08-07T02:24:10.314623 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:24:10.834273 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T02:24:10.834336 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:10.834669 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T02:24:10.834740 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:10.834977 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T02:24:10.835006 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:10.835321 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T02:24:10.835409 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:10.835689 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T02:24:10.835731 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:10.836128 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T02:24:10.836176 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:10.836625 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T02:24:10.836733 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:10.837012 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T02:24:10.837044 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:10.837312 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T02:24:10.837354 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:10.837694 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T02:24:10.837741 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:10.838089 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T02:24:10.838121 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:10.838353 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T02:24:10.838401 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:10.838715 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T02:24:10.838758 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:10.839030 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T02:24:10.839060 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:12.271881 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-08-07T02:24:12.271944 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:24:12.273807 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T02:24:12.273933 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:24:12.274229 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T02:24:12.274260 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:24:12.274527 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T02:24:12.274735 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:24:12.274983 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T02:24:12.275052 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:24:12.275367 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T02:24:12.275399 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:24:12.275623 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T02:24:12.275652 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:24:12.275870 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T02:24:12.275899 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:24:12.276080 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T02:24:12.276108 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:24:12.276388 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T02:24:12.276417 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:24:12.276621 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T02:24:12.276649 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:24:12.797273 #7] INFO -- : Committing offsets: section_change/0:633 +I, [2018-08-07T02:24:12.807585 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-08-07T02:24:12.807728 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:12.810831 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-08-07T02:24:12.810877 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:12.811178 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T02:24:12.811209 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:12.811471 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T02:24:12.811500 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:12.811742 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T02:24:12.811771 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:13.082399 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.52 ms +I, [2018-08-07T02:24:13.082543 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:13.082980 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T02:24:13.083073 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:13.083597 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T02:24:13.083639 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:13.084110 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T02:24:13.084150 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:13.084541 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T02:24:13.084579 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:13.084904 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T02:24:13.085078 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:13.085701 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-08-07T02:24:13.085886 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:13.086337 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T02:24:13.086377 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:13.086824 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T02:24:13.086882 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:13.087229 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T02:24:13.087331 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:13.087635 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T02:24:13.087680 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:13.088036 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T02:24:13.088081 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:13.088451 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T02:24:13.088490 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:13.088840 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T02:24:13.088895 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:13.089240 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T02:24:13.089277 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:13.089542 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T02:24:13.089575 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:13.089788 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T02:24:13.089836 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:13.090225 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T02:24:13.090320 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:13.090800 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T02:24:13.090900 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:13.091236 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T02:24:13.091268 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:13.091647 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T02:24:13.091728 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:13.092055 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T02:24:13.092088 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:13.092346 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T02:24:13.092381 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:13.092657 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T02:24:13.092705 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:13.092998 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T02:24:13.093030 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:13.093283 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T02:24:13.093325 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:14.278109 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.3 ms +I, [2018-08-07T02:24:14.278270 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:24:14.278729 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T02:24:14.278764 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:24:14.278965 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-08-07T02:24:14.278995 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:24:14.279213 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T02:24:14.279242 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:24:14.279472 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T02:24:14.279502 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:24:14.279772 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T02:24:14.279801 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:24:15.094256 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T02:24:15.094303 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:15.094540 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T02:24:15.094570 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:15.094756 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-08-07T02:24:15.094784 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:15.094996 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-08-07T02:24:15.095024 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:15.095230 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T02:24:15.096897 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:15.097372 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T02:24:15.097427 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:15.097822 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T02:24:15.097879 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:15.098225 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T02:24:15.098275 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:15.098925 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T02:24:15.099037 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:15.099442 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T02:24:15.099489 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:15.099882 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T02:24:15.099933 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:15.100343 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T02:24:15.100390 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:15.100789 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T02:24:15.100845 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:15.101638 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T02:24:15.101683 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:15.102010 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T02:24:15.102133 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:15.102473 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T02:24:15.102528 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:15.102891 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T02:24:15.102946 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:15.103314 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T02:24:15.103358 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:15.103707 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T02:24:15.103765 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:15.104141 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T02:24:15.104184 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:15.104539 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T02:24:15.104591 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:16.280715 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.24 ms +I, [2018-08-07T02:24:16.280832 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:24:16.281156 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T02:24:16.281200 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:24:16.281537 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T02:24:16.281583 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:24:16.281930 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-08-07T02:24:16.282143 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:24:16.282567 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T02:24:16.282598 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:24:16.282883 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T02:24:16.282911 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:24:16.283103 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-08-07T02:24:16.283132 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:24:16.283310 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-08-07T02:24:16.283339 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:24:16.283761 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-08-07T02:24:16.283845 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:24:16.284277 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T02:24:16.284340 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:24:16.284741 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T02:24:16.284776 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:24:16.285155 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-08-07T02:24:16.285208 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:24:17.105449 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-08-07T02:24:17.105518 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:17.106031 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T02:24:17.106088 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:17.106427 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T02:24:17.106506 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:17.106895 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T02:24:17.107189 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:17.107527 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T02:24:17.107572 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:17.108047 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T02:24:17.108108 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:17.108534 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T02:24:17.108596 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:17.109046 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T02:24:17.109084 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:17.110800 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T02:24:17.110867 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:17.111342 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T02:24:17.111396 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:17.111806 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T02:24:17.111856 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:17.112284 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T02:24:17.112339 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:17.112697 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T02:24:17.112749 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:17.113155 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T02:24:17.113225 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:17.113630 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T02:24:17.113679 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:17.114076 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T02:24:17.114134 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:17.114572 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T02:24:17.114626 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:17.115013 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T02:24:17.115060 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:17.115734 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-08-07T02:24:17.115809 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:17.116158 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T02:24:17.116204 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:17.116456 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T02:24:17.116487 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:17.116739 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T02:24:17.116769 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:17.117045 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T02:24:17.117080 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:17.122443 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.67 ms +I, [2018-08-07T02:24:17.122510 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:17.123024 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T02:24:17.123085 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:17.125469 #7] INFO -- : Inline processing of topic section_change with 1 messages took 2.18 ms +I, [2018-08-07T02:24:17.125517 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:17.125808 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T02:24:17.125839 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:17.126057 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T02:24:17.126124 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:17.126652 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.41 ms +I, [2018-08-07T02:24:17.126688 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:17.127202 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T02:24:17.127239 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:17.127501 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T02:24:17.127531 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:17.127780 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T02:24:17.127809 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:18.286710 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.44 ms +I, [2018-08-07T02:24:18.286805 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:24:18.287453 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T02:24:18.287503 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:24:18.287886 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-08-07T02:24:18.287929 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:24:18.288362 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.23 ms +I, [2018-08-07T02:24:18.288409 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:24:18.288698 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T02:24:18.288820 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:24:18.289445 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-08-07T02:24:18.289516 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:24:18.289915 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-08-07T02:24:18.289966 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:24:18.290318 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T02:24:18.290369 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:24:18.290679 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T02:24:18.291217 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:24:19.129141 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T02:24:19.129194 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:19.129413 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T02:24:19.129480 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:19.129733 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T02:24:19.129764 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:19.130000 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T02:24:19.132239 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:19.132753 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T02:24:19.132797 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:19.133102 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T02:24:19.133137 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:19.133415 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T02:24:19.133449 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:19.133752 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T02:24:19.133786 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:19.134019 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T02:24:19.134091 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:19.134320 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T02:24:19.134353 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:19.134612 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T02:24:19.134646 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:19.134917 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T02:24:19.134949 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:20.292100 #7] INFO -- : Committing offsets: course_change/0:377 +I, [2018-08-07T02:24:20.294198 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T02:24:20.294359 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:24:20.294647 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T02:24:20.294680 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:24:20.294925 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T02:24:20.294955 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:24:20.295188 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T02:24:20.295225 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:24:20.295419 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T02:24:20.295447 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:24:20.295683 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T02:24:20.295711 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:24:20.295934 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T02:24:20.295962 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:24:20.296191 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T02:24:20.296220 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:24:20.296540 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-08-07T02:24:20.296569 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:24:20.296790 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T02:24:20.296818 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:24:20.297053 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T02:24:20.297135 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:24:20.297485 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T02:24:20.297518 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:24:21.137377 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T02:24:21.137463 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:21.137705 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T02:24:21.137736 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:21.137966 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T02:24:21.137993 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:21.138243 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T02:24:21.138272 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:21.138501 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T02:24:21.138530 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:21.138741 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T02:24:21.138770 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:21.138950 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-08-07T02:24:21.138978 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:21.139208 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-08-07T02:24:21.139236 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:21.139460 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T02:24:21.139488 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:21.139698 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T02:24:21.139726 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:21.139906 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-08-07T02:24:21.139934 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:21.140144 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-08-07T02:24:21.140172 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:21.140384 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T02:24:21.140411 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:21.140685 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-08-07T02:24:21.140718 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:21.140910 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T02:24:21.140939 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:21.141189 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T02:24:21.142439 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:21.142814 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T02:24:21.142846 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:21.143153 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T02:24:21.143183 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:23.144685 #7] INFO -- : Committing offsets: section_change/0:747 +I, [2018-08-07T02:24:23.157737 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.09 ms +I, [2018-08-07T02:24:23.157822 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:23.158702 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.42 ms +I, [2018-08-07T02:24:23.158767 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:23.159268 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-08-07T02:24:23.159321 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:23.160099 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.49 ms +I, [2018-08-07T02:24:23.160163 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:23.160625 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T02:24:23.160808 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:24.301199 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.37 ms +I, [2018-08-07T02:24:24.301249 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:24:24.301563 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-08-07T02:24:24.301596 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:24:25.167769 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-08-07T02:24:25.167862 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:25.176160 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-08-07T02:24:25.176264 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:25.177274 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.48 ms +I, [2018-08-07T02:24:25.177323 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:25.177703 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T02:24:25.177746 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:25.184853 #7] INFO -- : Inline processing of topic section_change with 1 messages took 6.0 ms +I, [2018-08-07T02:24:25.184929 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:25.191342 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.67 ms +I, [2018-08-07T02:24:25.191393 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:25.191837 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T02:24:25.191874 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:27.204663 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.99 ms +I, [2018-08-07T02:24:27.204962 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:29.207265 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.91 ms +I, [2018-08-07T02:24:29.207342 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:29.208152 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.58 ms +I, [2018-08-07T02:24:29.208194 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:29.208801 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.47 ms +I, [2018-08-07T02:24:29.208837 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:30.304016 #7] INFO -- : Committing offsets: course_change/0:391 +I, [2018-08-07T02:24:31.211778 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T02:24:31.211831 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:31.212178 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T02:24:31.212210 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:31.212422 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T02:24:31.212452 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:31.212742 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T02:24:31.212770 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:31.213121 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T02:24:31.213307 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:31.213852 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T02:24:31.213929 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:32.319035 #7] INFO -- : Inline processing of topic course_change with 1 messages took 3.86 ms +I, [2018-08-07T02:24:32.319106 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:24:33.215222 #7] INFO -- : Committing offsets: section_change/0:769 +I, [2018-08-07T02:24:33.227468 #7] INFO -- : Inline processing of topic section_change with 1 messages took 2.01 ms +I, [2018-08-07T02:24:33.227649 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:33.231380 #7] INFO -- : Inline processing of topic section_change with 1 messages took 2.39 ms +I, [2018-08-07T02:24:33.231486 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:33.233822 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.82 ms +I, [2018-08-07T02:24:33.233899 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:33.235155 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.57 ms +I, [2018-08-07T02:24:33.235245 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:33.236321 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.74 ms +I, [2018-08-07T02:24:33.236401 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:34.326778 #7] INFO -- : Inline processing of topic course_change with 1 messages took 1.72 ms +I, [2018-08-07T02:24:34.326935 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:24:35.246063 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.65 ms +I, [2018-08-07T02:24:35.246175 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:35.247028 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.52 ms +I, [2018-08-07T02:24:35.247087 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:35.252128 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.4 ms +I, [2018-08-07T02:24:35.252177 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:35.252764 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.42 ms +I, [2018-08-07T02:24:35.252802 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:35.253248 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-08-07T02:24:35.253289 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:35.253812 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-08-07T02:24:35.253848 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:36.329303 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.33 ms +I, [2018-08-07T02:24:36.329397 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:24:37.255027 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.49 ms +I, [2018-08-07T02:24:37.255181 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:37.255720 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-08-07T02:24:37.255755 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:37.256781 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.88 ms +I, [2018-08-07T02:24:37.256832 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:37.257267 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T02:24:37.257299 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:37.257774 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-08-07T02:24:37.257811 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:38.331935 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.51 ms +I, [2018-08-07T02:24:38.332008 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:24:38.332602 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.4 ms +I, [2018-08-07T02:24:38.332871 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:24:39.260162 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T02:24:39.260211 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:39.261186 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.74 ms +I, [2018-08-07T02:24:39.261248 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:39.261969 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-08-07T02:24:39.262009 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:39.262748 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.6 ms +I, [2018-08-07T02:24:39.262787 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:39.263308 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-08-07T02:24:39.263344 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:39.264294 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-08-07T02:24:39.264361 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:39.265019 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.52 ms +I, [2018-08-07T02:24:39.265056 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:39.265520 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T02:24:39.265553 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:40.333407 #7] INFO -- : Committing offsets: course_change/0:396 +I, [2018-08-07T02:24:40.336718 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.32 ms +I, [2018-08-07T02:24:40.336763 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:24:40.337073 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T02:24:40.337106 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:24:40.337396 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T02:24:40.337426 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:24:40.337687 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T02:24:40.337757 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:24:40.337977 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T02:24:40.338007 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:24:40.338299 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-08-07T02:24:40.338329 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:24:40.338582 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-08-07T02:24:40.338612 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:24:40.338839 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T02:24:40.338997 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:24:41.267961 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-08-07T02:24:41.268009 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:41.268525 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-08-07T02:24:41.268556 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:41.269020 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T02:24:41.269051 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:41.269371 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T02:24:41.269402 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:41.269907 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T02:24:41.269955 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:41.271158 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.92 ms +I, [2018-08-07T02:24:41.271229 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:41.276423 #7] INFO -- : Inline processing of topic section_change with 1 messages took 4.9 ms +I, [2018-08-07T02:24:41.276477 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:41.276954 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T02:24:41.276988 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:41.285633 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.56 ms +I, [2018-08-07T02:24:41.285695 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:41.287457 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.5 ms +I, [2018-08-07T02:24:41.287524 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:42.299530 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.24 ms +I, [2018-08-07T02:24:42.299580 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:24:42.299914 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T02:24:42.299946 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:24:42.300266 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-08-07T02:24:42.300297 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:24:42.300552 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T02:24:42.300581 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:24:42.300774 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-08-07T02:24:42.300803 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:24:42.301070 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T02:24:42.301099 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:24:42.301675 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.24 ms +I, [2018-08-07T02:24:42.301722 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:24:42.302021 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T02:24:42.302108 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:24:43.247488 #7] INFO -- : Committing offsets: section_change/0:803 +I, [2018-08-07T02:24:43.255271 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-08-07T02:24:43.255336 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:43.255908 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-08-07T02:24:43.255947 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:43.256416 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-08-07T02:24:43.256463 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:43.256865 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T02:24:43.256904 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:43.257126 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T02:24:43.257203 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:43.257411 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T02:24:43.257441 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:43.257784 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T02:24:43.257862 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:43.258226 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T02:24:43.258263 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:43.258628 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T02:24:43.258687 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:43.258978 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T02:24:43.259008 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:43.259280 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T02:24:43.259352 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:44.307680 #7] INFO -- : Inline processing of topic course_change with 1 messages took 1.18 ms +I, [2018-08-07T02:24:44.307751 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:24:44.315922 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.38 ms +I, [2018-08-07T02:24:44.316135 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:24:44.316562 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T02:24:44.316619 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:24:44.317014 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-08-07T02:24:44.317072 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:24:44.317509 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.25 ms +I, [2018-08-07T02:24:44.317556 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:24:44.317878 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T02:24:44.317930 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:24:44.318405 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T02:24:44.318455 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:24:44.318840 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-08-07T02:24:44.318889 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:24:44.319283 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T02:24:44.319332 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:24:45.260738 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-08-07T02:24:45.261125 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:45.261605 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-08-07T02:24:45.261638 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:45.261983 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T02:24:45.262014 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:45.262343 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T02:24:45.262373 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:46.320516 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.33 ms +I, [2018-08-07T02:24:46.320599 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:24:46.321008 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T02:24:46.321075 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:24:46.323819 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T02:24:46.323866 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:24:46.324269 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.27 ms +I, [2018-08-07T02:24:46.324307 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:24:46.324714 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.27 ms +I, [2018-08-07T02:24:46.324752 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:24:47.264040 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.42 ms +I, [2018-08-07T02:24:47.264118 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:47.264719 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-08-07T02:24:47.264761 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:47.265013 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T02:24:47.265240 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:47.265496 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T02:24:47.265530 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:47.265994 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T02:24:47.266032 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:47.266474 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T02:24:47.266508 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:47.266925 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-08-07T02:24:47.266960 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:47.267562 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.42 ms +I, [2018-08-07T02:24:47.267600 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:47.267932 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T02:24:47.267967 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:48.325419 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-08-07T02:24:48.325555 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:24:48.325906 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T02:24:48.325949 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:24:48.326213 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T02:24:48.326243 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:24:48.326712 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-08-07T02:24:48.326746 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:24:48.327035 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T02:24:48.327073 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:24:48.328022 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.27 ms +I, [2018-08-07T02:24:48.328211 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:24:48.329103 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.5 ms +I, [2018-08-07T02:24:48.329178 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:24:48.329676 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-08-07T02:24:48.329728 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:24:48.330081 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T02:24:48.330113 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:24:48.330390 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-08-07T02:24:48.330421 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:24:49.268880 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-08-07T02:24:49.268971 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:49.269386 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T02:24:49.269483 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:49.280565 #7] INFO -- : Inline processing of topic section_change with 1 messages took 10.91 ms +I, [2018-08-07T02:24:49.280626 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:49.281072 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T02:24:49.281106 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:49.281403 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T02:24:49.281512 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:49.281814 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T02:24:49.281845 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:49.282160 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T02:24:49.282197 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:49.282509 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T02:24:49.282572 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:49.282873 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T02:24:49.282905 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:49.283247 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T02:24:49.283282 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:49.283599 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T02:24:49.283633 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:49.283953 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T02:24:49.283995 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:49.284379 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T02:24:49.284417 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:49.284785 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T02:24:49.284823 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:49.285223 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T02:24:49.288662 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:49.289795 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T02:24:49.289833 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:49.290825 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.84 ms +I, [2018-08-07T02:24:49.290880 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:49.291173 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T02:24:49.291209 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:49.291540 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T02:24:49.291571 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:49.291892 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T02:24:49.291930 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:49.292399 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T02:24:49.297298 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:49.298341 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T02:24:49.298460 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:49.299016 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-08-07T02:24:49.299069 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:49.300798 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.46 ms +I, [2018-08-07T02:24:49.300864 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:49.301220 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T02:24:49.301264 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:49.301510 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T02:24:49.301596 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:50.331391 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.4 ms +I, [2018-08-07T02:24:50.331439 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:24:50.331655 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-08-07T02:24:50.331684 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:24:50.331915 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T02:24:50.331944 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:24:50.332173 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T02:24:50.332205 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:24:51.307367 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T02:24:51.307415 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:51.307633 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T02:24:51.307664 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:51.307907 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T02:24:51.307938 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:51.308256 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T02:24:51.308288 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:51.308599 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T02:24:51.308649 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:51.308902 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T02:24:51.308932 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:51.309197 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T02:24:51.309244 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:51.309633 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T02:24:51.309665 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:51.309934 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T02:24:51.309964 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:51.310154 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-08-07T02:24:51.310182 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:51.310414 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T02:24:51.310444 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:51.310720 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T02:24:51.310767 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:51.311079 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T02:24:51.311175 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:51.311485 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T02:24:51.311524 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:51.311851 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T02:24:51.311896 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:51.312317 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T02:24:51.312373 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:51.312637 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T02:24:51.312741 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:51.313604 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.66 ms +I, [2018-08-07T02:24:51.313671 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:51.314705 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-08-07T02:24:51.314770 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:51.315214 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T02:24:51.315269 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:51.316444 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T02:24:51.316716 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:51.319914 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T02:24:51.319956 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:51.320531 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T02:24:51.320634 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:51.320935 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T02:24:51.320965 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:51.329396 #7] INFO -- : Inline processing of topic section_change with 1 messages took 8.29 ms +I, [2018-08-07T02:24:51.329521 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:51.329849 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T02:24:51.329882 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:51.330283 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T02:24:51.330329 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:51.330690 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T02:24:51.330726 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:51.330992 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T02:24:51.331022 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:51.331275 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T02:24:51.331304 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:51.331706 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T02:24:51.331744 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:51.332071 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T02:24:51.332204 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:51.332517 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T02:24:51.332560 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:51.332841 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T02:24:51.332871 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:51.333178 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T02:24:51.333215 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:51.333884 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.52 ms +I, [2018-08-07T02:24:51.333928 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:51.334601 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T02:24:51.334662 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:51.335509 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.43 ms +I, [2018-08-07T02:24:51.335548 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:51.336041 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-08-07T02:24:51.336092 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:51.337384 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.43 ms +I, [2018-08-07T02:24:51.337455 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:51.337819 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T02:24:51.337865 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:51.338330 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T02:24:51.338382 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:51.338748 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T02:24:51.338798 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:51.339156 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T02:24:51.339206 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:51.339539 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T02:24:51.339586 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:51.339899 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T02:24:51.339948 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:51.340700 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.52 ms +I, [2018-08-07T02:24:51.340769 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:51.341262 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T02:24:51.341299 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:51.341548 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T02:24:51.341578 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:51.341795 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T02:24:51.341828 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:51.342012 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-08-07T02:24:51.342071 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:51.342601 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.42 ms +I, [2018-08-07T02:24:51.342693 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:51.343206 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T02:24:51.343257 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:51.343706 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T02:24:51.343868 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:51.344352 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T02:24:51.344410 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:51.344876 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T02:24:51.344934 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:51.345969 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.75 ms +I, [2018-08-07T02:24:51.356143 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:51.356938 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T02:24:51.358676 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:51.359435 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-08-07T02:24:51.359496 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:51.360089 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-08-07T02:24:51.360188 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:51.361088 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T02:24:51.361184 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:51.361829 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-08-07T02:24:51.361882 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:51.362306 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T02:24:51.362388 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:51.362877 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-08-07T02:24:51.362929 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:52.332722 #7] INFO -- : Committing offsets: course_change/0:440 +I, [2018-08-07T02:24:52.335714 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-08-07T02:24:52.335775 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:24:52.336074 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T02:24:52.336106 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:24:52.336359 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T02:24:52.336390 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:24:52.336708 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T02:24:52.336747 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:24:52.337032 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T02:24:52.337063 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:24:53.363251 #7] INFO -- : Committing offsets: section_change/0:917 +I, [2018-08-07T02:24:53.367024 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-08-07T02:24:53.367098 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:53.367695 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T02:24:53.367756 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:53.368133 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T02:24:53.368191 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:53.368423 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T02:24:53.368452 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:53.368706 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T02:24:53.368758 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:53.369018 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T02:24:53.369048 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:53.369254 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T02:24:53.369283 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:53.369518 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T02:24:53.369547 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:53.369788 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T02:24:53.369817 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:53.370037 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T02:24:53.370087 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:54.338935 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.24 ms +I, [2018-08-07T02:24:54.339001 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:24:54.339482 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.28 ms +I, [2018-08-07T02:24:54.339547 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:24:54.339832 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T02:24:54.339868 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:24:54.340223 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T02:24:54.340288 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:24:54.340687 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-08-07T02:24:54.340734 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:24:54.341032 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T02:24:54.341068 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:24:54.341305 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T02:24:54.341342 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:24:54.341584 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T02:24:54.341879 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:24:54.344319 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T02:24:54.344372 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:24:55.373073 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.99 ms +I, [2018-08-07T02:24:55.373217 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:55.379804 #7] INFO -- : Inline processing of topic section_change with 1 messages took 5.99 ms +I, [2018-08-07T02:24:55.380327 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:55.382079 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.34 ms +I, [2018-08-07T02:24:55.382258 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:55.389221 #7] INFO -- : Inline processing of topic section_change with 1 messages took 3.89 ms +I, [2018-08-07T02:24:55.393551 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:55.406717 #7] INFO -- : Inline processing of topic section_change with 1 messages took 3.96 ms +I, [2018-08-07T02:24:55.406982 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:55.407427 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T02:24:55.412101 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:55.414573 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-08-07T02:24:55.414633 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:55.415222 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T02:24:55.415284 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:55.415897 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.42 ms +I, [2018-08-07T02:24:55.415952 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:56.378227 #7] INFO -- : Inline processing of topic course_change with 1 messages took 2.94 ms +I, [2018-08-07T02:24:56.378299 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:24:56.379112 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.59 ms +I, [2018-08-07T02:24:56.379160 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:24:56.379667 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T02:24:56.379889 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:24:56.382022 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T02:24:56.382095 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:24:56.383775 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.93 ms +I, [2018-08-07T02:24:56.385391 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:24:56.390536 #7] INFO -- : Inline processing of topic course_change with 1 messages took 2.85 ms +I, [2018-08-07T02:24:56.391060 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:24:57.417061 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T02:24:57.417319 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:57.417721 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T02:24:57.417767 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:57.418277 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T02:24:57.418324 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:57.418760 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T02:24:57.418808 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:57.419297 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-08-07T02:24:57.419339 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:57.419751 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T02:24:57.419796 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:57.420103 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T02:24:57.420149 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:57.420589 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T02:24:57.420634 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:58.393586 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T02:24:58.393650 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:24:58.394085 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.24 ms +I, [2018-08-07T02:24:58.394128 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:24:58.394430 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T02:24:58.394589 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:24:58.395182 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.4 ms +I, [2018-08-07T02:24:58.395243 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:24:59.421533 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-08-07T02:24:59.421589 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:59.422285 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.51 ms +I, [2018-08-07T02:24:59.422358 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:59.494315 #7] INFO -- : Inline processing of topic section_change with 1 messages took 71.67 ms +I, [2018-08-07T02:24:59.494390 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:24:59.494933 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-08-07T02:24:59.494969 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:25:00.396937 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.27 ms +I, [2018-08-07T02:25:00.396991 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:25:01.499258 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-08-07T02:25:01.499379 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:25:01.499665 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T02:25:01.499695 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:25:01.499968 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T02:25:01.499997 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:25:02.397415 #7] INFO -- : Committing offsets: course_change/0:465 +I, [2018-08-07T02:25:02.400108 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T02:25:02.400151 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:25:02.400483 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-08-07T02:25:02.400552 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:25:03.500521 #7] INFO -- : Committing offsets: section_change/0:951 +I, [2018-08-07T02:25:03.503376 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.46 ms +I, [2018-08-07T02:25:03.503437 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:25:03.505284 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-08-07T02:25:03.505350 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:25:03.505852 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T02:25:03.505936 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:25:03.506263 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T02:25:03.506296 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:25:03.506855 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-08-07T02:25:03.507574 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:25:04.403517 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.29 ms +I, [2018-08-07T02:25:04.403697 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:25:04.404313 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.26 ms +I, [2018-08-07T02:25:04.404372 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:25:04.404868 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.29 ms +I, [2018-08-07T02:25:04.404920 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:25:05.508569 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-08-07T02:25:05.508640 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:25:05.510273 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T02:25:05.510359 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:25:05.510688 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T02:25:05.510726 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:25:05.511021 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T02:25:05.511060 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:25:05.511465 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T02:25:05.511519 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:25:05.511897 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T02:25:05.511928 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:25:05.512146 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T02:25:05.512175 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:25:05.512504 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T02:25:05.512550 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:25:06.450138 #7] INFO -- : Inline processing of topic course_change with 1 messages took 7.48 ms +I, [2018-08-07T02:25:06.450433 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:25:06.451276 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.34 ms +I, [2018-08-07T02:25:06.451490 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:25:06.454009 #7] INFO -- : Inline processing of topic course_change with 1 messages took 1.62 ms +I, [2018-08-07T02:25:06.454273 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:25:06.486603 #7] INFO -- : Inline processing of topic course_change with 1 messages took 1.63 ms +I, [2018-08-07T02:25:06.486732 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:25:06.494375 #7] INFO -- : Inline processing of topic course_change with 1 messages took 5.47 ms +I, [2018-08-07T02:25:06.494487 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:25:06.495466 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.41 ms +I, [2018-08-07T02:25:06.495578 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:25:06.496177 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.3 ms +I, [2018-08-07T02:25:06.496232 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:25:08.240833 #7] INFO -- : Inline processing of topic section_change with 1 messages took 283.56 ms +I, [2018-08-07T02:25:08.241105 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:25:08.270274 #7] INFO -- : Inline processing of topic section_change with 1 messages took 26.94 ms +I, [2018-08-07T02:25:08.270429 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:25:08.273740 #7] INFO -- : Inline processing of topic section_change with 1 messages took 2.95 ms +I, [2018-08-07T02:25:08.273835 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:25:08.499128 #7] INFO -- : Inline processing of topic course_change with 1 messages took 1.63 ms +I, [2018-08-07T02:25:08.499193 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:25:10.275267 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.73 ms +I, [2018-08-07T02:25:10.275327 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:25:10.276449 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.84 ms +I, [2018-08-07T02:25:10.276536 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:25:10.277429 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.66 ms +I, [2018-08-07T02:25:10.277475 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:25:10.500662 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.62 ms +I, [2018-08-07T02:25:10.500747 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:25:10.501096 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T02:25:10.501398 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:25:10.501681 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T02:25:10.501726 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:25:12.250298 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.15 ms +I, [2018-08-07T02:25:12.250823 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:25:12.252139 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.5 ms +I, [2018-08-07T02:25:12.252260 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:25:12.253048 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.41 ms +I, [2018-08-07T02:25:12.253118 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:25:12.253751 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-08-07T02:25:12.253802 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:25:12.255235 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.23 ms +I, [2018-08-07T02:25:12.255310 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:25:12.466740 #7] INFO -- : Committing offsets: course_change/0:481 +I, [2018-08-07T02:25:12.480168 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.37 ms +I, [2018-08-07T02:25:12.480266 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:25:12.481846 #7] INFO -- : Inline processing of topic course_change with 1 messages took 1.3 ms +I, [2018-08-07T02:25:12.481912 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:25:12.482307 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-08-07T02:25:12.483875 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:25:12.484643 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T02:25:12.484698 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:25:12.485144 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.28 ms +I, [2018-08-07T02:25:12.485188 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:25:12.485659 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.3 ms +I, [2018-08-07T02:25:12.485694 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:25:14.255725 #7] INFO -- : Committing offsets: section_change/0:975 +I, [2018-08-07T02:25:14.258842 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.51 ms +I, [2018-08-07T02:25:14.258928 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:25:14.259587 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-08-07T02:25:14.259625 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:25:14.260040 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T02:25:14.260073 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:25:14.260454 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T02:25:14.260485 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:25:14.261217 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.61 ms +I, [2018-08-07T02:25:14.261263 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:25:14.261697 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T02:25:14.266318 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:25:14.267250 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.44 ms +I, [2018-08-07T02:25:14.267375 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:25:14.268000 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-08-07T02:25:14.268054 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:25:14.268705 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.46 ms +I, [2018-08-07T02:25:14.268756 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:25:14.506003 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.23 ms +I, [2018-08-07T02:25:14.506075 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:25:14.507001 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.72 ms +I, [2018-08-07T02:25:14.507044 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:25:14.507686 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.48 ms +I, [2018-08-07T02:25:14.507731 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:25:14.507986 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T02:25:14.508017 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:25:14.508362 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-08-07T02:25:14.508393 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:25:16.269803 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T02:25:16.269877 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:25:16.270542 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.45 ms +I, [2018-08-07T02:25:16.270602 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:25:16.271220 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.43 ms +I, [2018-08-07T02:25:16.271269 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:25:16.271847 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.4 ms +I, [2018-08-07T02:25:16.271898 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:25:16.510183 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.96 ms +I, [2018-08-07T02:25:16.510312 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:25:16.510718 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-08-07T02:25:16.511188 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:25:16.511729 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.34 ms +I, [2018-08-07T02:25:16.511779 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:25:16.512769 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T02:25:16.512986 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:25:18.273002 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-08-07T02:25:18.273052 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:25:18.273511 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-08-07T02:25:18.273548 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:25:18.273928 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T02:25:18.274056 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:25:18.274561 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-08-07T02:25:18.274613 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:25:18.274973 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T02:25:18.275082 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:25:18.514147 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.45 ms +I, [2018-08-07T02:25:18.514213 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:25:18.514879 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T02:25:18.514928 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:25:18.515264 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-08-07T02:25:18.515458 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:25:18.515919 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.3 ms +I, [2018-08-07T02:25:18.515965 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:25:18.516394 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.27 ms +I, [2018-08-07T02:25:18.516440 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:25:20.281414 #7] INFO -- : Inline processing of topic section_change with 1 messages took 2.44 ms +I, [2018-08-07T02:25:20.285611 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:25:20.286572 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.56 ms +I, [2018-08-07T02:25:20.286624 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:25:20.287886 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.01 ms +I, [2018-08-07T02:25:20.287959 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:25:20.517570 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.4 ms +I, [2018-08-07T02:25:20.517631 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:25:20.518163 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-08-07T02:25:20.518200 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:25:20.518805 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.38 ms +I, [2018-08-07T02:25:20.518992 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:25:22.292333 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-08-07T02:25:22.292399 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:25:22.292867 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T02:25:22.292900 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:25:22.293494 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.43 ms +I, [2018-08-07T02:25:22.293532 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:25:22.294254 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.58 ms +I, [2018-08-07T02:25:22.294283 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:25:22.294595 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T02:25:22.294629 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:25:22.295312 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.53 ms +I, [2018-08-07T02:25:22.295573 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:25:22.519756 #7] INFO -- : Committing offsets: course_change/0:504 +I, [2018-08-07T02:25:22.529687 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.36 ms +I, [2018-08-07T02:25:22.529738 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:25:22.530071 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T02:25:22.530105 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:25:22.530351 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T02:25:22.530383 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:25:22.530721 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-08-07T02:25:22.530752 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:25:22.531038 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-08-07T02:25:22.531068 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:25:22.531408 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-08-07T02:25:22.531439 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:25:22.531636 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-08-07T02:25:22.531665 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:25:24.295975 #7] INFO -- : Committing offsets: section_change/0:1002 +I, [2018-08-07T02:25:24.298712 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T02:25:24.298759 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:25:24.299126 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T02:25:24.299162 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:25:24.299485 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T02:25:24.299515 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:25:24.299832 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T02:25:24.299862 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:25:24.300197 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T02:25:24.300227 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:25:24.300525 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T02:25:24.300556 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:25:24.300837 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T02:25:24.300867 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:25:24.301064 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T02:25:24.301093 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:25:24.301635 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T02:25:24.301686 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:25:24.302100 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T02:25:24.302151 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:25:24.302711 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-08-07T02:25:24.302764 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:25:24.303084 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T02:25:24.303132 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:25:24.303502 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T02:25:24.303548 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:25:24.304115 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.4 ms +I, [2018-08-07T02:25:24.304950 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:25:24.305506 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-08-07T02:25:24.305586 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:25:24.305904 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T02:25:24.305951 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:25:24.307057 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T02:25:24.307214 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:25:24.308850 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T02:25:24.308995 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:25:24.545734 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-08-07T02:25:24.545983 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:25:24.546338 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T02:25:24.546389 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:25:24.547442 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.45 ms +I, [2018-08-07T02:25:24.547503 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:25:24.547947 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.24 ms +I, [2018-08-07T02:25:24.548003 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:25:24.548320 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T02:25:24.548370 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:25:24.548789 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T02:25:24.549011 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:25:24.549653 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.46 ms +I, [2018-08-07T02:25:24.549704 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:25:24.550135 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.25 ms +I, [2018-08-07T02:25:24.550178 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:25:27.651772 #7] INFO -- : Inline processing of topic section_change with 1 messages took 817.38 ms +I, [2018-08-07T02:25:27.665508 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:25:27.667022 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.55 ms +I, [2018-08-07T02:25:27.667098 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:25:27.669004 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.45 ms +I, [2018-08-07T02:25:27.669091 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:25:27.675288 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.18 ms +I, [2018-08-07T02:25:27.675399 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:25:27.676035 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T02:25:27.676732 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:25:27.677677 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-08-07T02:25:27.677730 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:25:27.678709 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.59 ms +I, [2018-08-07T02:25:27.678851 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:25:27.684545 #7] INFO -- : Inline processing of topic section_change with 1 messages took 5.34 ms +I, [2018-08-07T02:25:27.684659 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:25:27.687483 #7] INFO -- : Inline processing of topic section_change with 1 messages took 2.01 ms +I, [2018-08-07T02:25:27.687649 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:25:27.692709 #7] INFO -- : Inline processing of topic section_change with 1 messages took 2.79 ms +I, [2018-08-07T02:25:27.692795 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:25:27.694282 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.07 ms +I, [2018-08-07T02:25:27.694355 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:25:27.695507 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.85 ms +I, [2018-08-07T02:25:27.695556 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:25:27.695900 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T02:25:27.695944 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:25:27.696746 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T02:25:27.696793 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:25:27.698125 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.14 ms +I, [2018-08-07T02:25:27.698280 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:25:27.699160 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.66 ms +I, [2018-08-07T02:25:27.699213 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:25:27.699624 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T02:25:27.699668 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:25:27.700532 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.69 ms +I, [2018-08-07T02:25:27.700638 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:25:30.847398 #7] INFO -- : Inline processing of topic course_change with 1 messages took 1.05 ms +I, [2018-08-07T02:25:30.847735 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:25:30.848721 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.32 ms +I, [2018-08-07T02:25:30.848782 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:25:30.849926 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.61 ms +I, [2018-08-07T02:25:30.849988 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:25:30.906651 #7] INFO -- : Inline processing of topic section_change with 1 messages took 2.25 ms +I, [2018-08-07T02:25:30.906727 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:25:32.071613 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1164.13 ms +I, [2018-08-07T02:25:32.071817 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:25:32.072811 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.63 ms +I, [2018-08-07T02:25:32.072859 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:25:32.086814 #7] INFO -- : Inline processing of topic section_change with 1 messages took 13.52 ms +I, [2018-08-07T02:25:32.086965 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:25:32.105910 #7] INFO -- : Inline processing of topic section_change with 1 messages took 3.23 ms +I, [2018-08-07T02:25:32.106025 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:25:32.107165 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.66 ms +I, [2018-08-07T02:25:32.107615 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:25:32.174928 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.41 ms +I, [2018-08-07T02:25:32.184372 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:25:32.196243 #7] INFO -- : Inline processing of topic section_change with 1 messages took 11.47 ms +I, [2018-08-07T02:25:32.196343 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:25:32.250434 #7] INFO -- : Inline processing of topic section_change with 1 messages took 53.75 ms +I, [2018-08-07T02:25:32.250524 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:25:32.251398 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.61 ms +I, [2018-08-07T02:25:32.251459 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:25:32.252450 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T02:25:32.252517 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:25:32.253276 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-08-07T02:25:32.253327 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:25:32.254131 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.4 ms +I, [2018-08-07T02:25:32.254183 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:25:32.255015 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.56 ms +I, [2018-08-07T02:25:32.255172 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:25:32.257837 #7] INFO -- : Inline processing of topic section_change with 1 messages took 2.28 ms +I, [2018-08-07T02:25:32.258640 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:25:32.267079 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.68 ms +I, [2018-08-07T02:25:32.267151 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:25:32.267928 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.45 ms +I, [2018-08-07T02:25:32.267983 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:25:32.275915 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-08-07T02:25:32.276018 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:25:32.277193 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.45 ms +I, [2018-08-07T02:25:32.277349 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:25:32.277998 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-08-07T02:25:32.278152 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:25:32.327773 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.41 ms +I, [2018-08-07T02:25:32.327827 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:25:32.328788 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.75 ms +I, [2018-08-07T02:25:32.328923 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:25:32.332124 #7] INFO -- : Inline processing of topic section_change with 1 messages took 2.8 ms +I, [2018-08-07T02:25:32.332200 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:25:32.338578 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.56 ms +I, [2018-08-07T02:25:32.338863 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:25:32.483925 #7] INFO -- : Inline processing of topic section_change with 1 messages took 5.77 ms +I, [2018-08-07T02:25:32.502617 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:25:32.517800 #7] INFO -- : Inline processing of topic section_change with 1 messages took 13.03 ms +I, [2018-08-07T02:25:32.518553 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:25:34.489412 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.65 ms +I, [2018-08-07T02:25:34.623256 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:25:34.623378 #7] INFO -- : Committing offsets: section_change/0:1065 +I, [2018-08-07T02:25:34.628348 #7] INFO -- : Committing offsets: course_change/0:522 +I, [2018-08-07T02:25:36.080023 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.79 ms +I, [2018-08-07T02:25:36.094763 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:25:36.145569 #7] INFO -- : Inline processing of topic section_change with 1 messages took 40.7 ms +I, [2018-08-07T02:25:36.145642 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:25:36.146641 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T02:25:36.146687 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:25:36.153542 #7] INFO -- : Inline processing of topic section_change with 1 messages took 6.15 ms +I, [2018-08-07T02:25:36.153958 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:25:36.158431 #7] INFO -- : Inline processing of topic section_change with 1 messages took 2.94 ms +I, [2018-08-07T02:25:36.158582 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:25:36.160109 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.51 ms +I, [2018-08-07T02:25:36.160542 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:25:36.162834 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-08-07T02:25:36.162976 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:25:36.167709 #7] INFO -- : Inline processing of topic section_change with 1 messages took 4.24 ms +I, [2018-08-07T02:25:36.168077 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:25:36.186177 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.35 ms +I, [2018-08-07T02:25:36.186248 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:25:36.186675 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T02:25:36.186719 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:25:36.187845 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-08-07T02:25:36.187895 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:25:36.188794 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.7 ms +I, [2018-08-07T02:25:36.188842 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:25:36.189443 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.43 ms +I, [2018-08-07T02:25:36.189491 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:25:39.036825 #7] INFO -- : Inline processing of topic section_change with 1 messages took 4.89 ms +I, [2018-08-07T02:25:39.038283 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:25:39.043804 #7] INFO -- : Inline processing of topic section_change with 1 messages took 3.08 ms +I, [2018-08-07T02:25:39.043877 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:25:39.056852 #7] INFO -- : Inline processing of topic section_change with 1 messages took 2.12 ms +I, [2018-08-07T02:25:39.056925 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:25:39.057373 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T02:25:39.068522 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:25:41.124067 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.44 ms +I, [2018-08-07T02:25:41.189531 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:25:41.190149 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T02:25:41.190215 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:25:41.191157 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T02:25:41.191233 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:25:41.192265 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.78 ms +I, [2018-08-07T02:25:41.192335 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:25:41.193185 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T02:25:41.193258 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:25:41.193754 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T02:25:41.193809 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:25:41.194775 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.77 ms +I, [2018-08-07T02:25:41.194828 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:25:41.337229 #7] INFO -- : Inline processing of topic section_change with 1 messages took 142.16 ms +I, [2018-08-07T02:25:41.337310 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:25:41.337837 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T02:25:41.337896 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:25:44.163561 #7] INFO -- : Inline processing of topic section_change with 1 messages took 48.45 ms +I, [2018-08-07T02:25:44.163995 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:25:44.172918 #7] INFO -- : Inline processing of topic section_change with 1 messages took 5.95 ms +I, [2018-08-07T02:25:44.173745 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:25:44.179580 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.59 ms +I, [2018-08-07T02:25:44.179672 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:25:44.181984 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-08-07T02:25:44.182120 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:25:44.182768 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.44 ms +I, [2018-08-07T02:25:44.182804 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:25:44.183202 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T02:25:44.183305 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:25:44.183805 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T02:25:44.183854 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:25:44.184643 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T02:25:44.184695 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:25:44.185956 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.96 ms +I, [2018-08-07T02:25:44.186015 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:25:44.197772 #7] INFO -- : Inline processing of topic section_change with 1 messages took 11.25 ms +I, [2018-08-07T02:25:44.198054 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:25:44.200450 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.78 ms +I, [2018-08-07T02:25:44.208797 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:25:44.209941 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T02:25:44.209993 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:25:45.960339 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.66 ms +I, [2018-08-07T02:25:45.960417 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:25:45.960735 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T02:25:45.960780 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:25:46.210571 #7] INFO -- : Committing offsets: section_change/0:1103 +I, [2018-08-07T02:25:46.227919 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T02:25:46.227976 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:25:46.228189 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T02:25:46.228217 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:25:46.228590 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T02:25:46.228633 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:25:46.229120 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-08-07T02:25:46.229170 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:25:46.229481 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T02:25:46.229771 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:25:46.230061 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T02:25:46.230101 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:25:46.230584 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-08-07T02:25:46.230686 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:25:46.231484 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-08-07T02:25:46.231529 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:25:46.232033 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-08-07T02:25:46.232073 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:25:48.228738 #7] INFO -- : Committing offsets: course_change/0:524 +I, [2018-08-07T02:25:48.542317 #7] INFO -- : Inline processing of topic section_change with 1 messages took 289.59 ms +I, [2018-08-07T02:25:48.542457 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:25:48.543675 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.73 ms +I, [2018-08-07T02:25:48.545716 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:25:48.547550 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.14 ms +I, [2018-08-07T02:25:48.547613 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:25:48.544747 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.56 ms +I, [2018-08-07T02:25:48.548092 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:25:50.551417 #7] INFO -- : Inline processing of topic section_change with 1 messages took 2.72 ms +I, [2018-08-07T02:25:50.552349 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:25:50.553574 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.58 ms +I, [2018-08-07T02:25:50.553651 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:25:50.555334 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.55 ms +I, [2018-08-07T02:25:50.555403 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:25:50.555937 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-08-07T02:25:50.555985 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:25:52.573390 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.45 ms +I, [2018-08-07T02:25:52.573479 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:25:52.574096 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-08-07T02:25:52.574241 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:25:52.579506 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.67 ms +I, [2018-08-07T02:25:52.579804 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:25:52.581306 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.02 ms +I, [2018-08-07T02:25:52.581735 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:25:54.578565 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.61 ms +I, [2018-08-07T02:25:54.578697 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:25:54.766308 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.64 ms +I, [2018-08-07T02:25:54.766381 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:25:54.772796 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.6 ms +I, [2018-08-07T02:25:54.772919 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:25:54.779261 #7] INFO -- : Inline processing of topic section_change with 1 messages took 4.22 ms +I, [2018-08-07T02:25:54.779357 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:25:57.061658 #7] INFO -- : Committing offsets: section_change/0:1126 +I, [2018-08-07T02:25:59.388368 #7] INFO -- : Committing offsets: course_change/0:526 +I, [2018-08-07T02:26:05.599109 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.58 ms +I, [2018-08-07T02:26:05.599536 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:26:07.688840 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.42 ms +I, [2018-08-07T02:26:07.688985 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:26:09.752409 #7] INFO -- : Committing offsets: section_change/0:1128 +I, [2018-08-07T02:26:09.800875 #7] INFO -- : Inline processing of topic section_change with 1 messages took 5.41 ms +I, [2018-08-07T02:26:09.801095 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:26:11.810127 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.55 ms +I, [2018-08-07T02:26:11.810862 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:26:13.787744 #7] INFO -- : Committing offsets: course_change/0:526 +I, [2018-08-07T02:26:13.815445 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.83 ms +I, [2018-08-07T02:26:13.815652 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:26:17.963508 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.46 ms +I, [2018-08-07T02:26:17.963581 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:26:17.963844 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T02:26:17.964325 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:26:17.964667 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T02:26:17.965027 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:26:19.965672 #7] INFO -- : Committing offsets: section_change/0:1134 +I, [2018-08-07T02:26:19.976782 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.6 ms +I, [2018-08-07T02:26:19.976859 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:26:19.977616 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.54 ms +I, [2018-08-07T02:26:19.977669 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:26:19.978174 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-08-07T02:26:19.978207 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:26:19.978684 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T02:26:19.978715 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:26:19.979275 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-08-07T02:26:19.979308 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:26:19.980254 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.7 ms +I, [2018-08-07T02:26:19.980297 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:26:19.980843 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T02:26:19.980886 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:26:20.454060 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.56 ms +I, [2018-08-07T02:26:20.454242 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:26:20.454730 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.3 ms +I, [2018-08-07T02:26:20.454771 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:26:21.982002 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-08-07T02:26:21.982055 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:26:21.982479 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-08-07T02:26:21.982510 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:26:21.982883 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T02:26:21.982925 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:26:21.984009 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T02:26:21.984080 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:26:21.984568 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T02:26:21.984610 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:26:23.985628 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T02:26:23.985717 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:26:23.986176 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T02:26:23.986368 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:26:23.986913 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-08-07T02:26:23.986965 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:26:23.987658 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.43 ms +I, [2018-08-07T02:26:23.987698 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:26:24.456450 #7] INFO -- : Committing offsets: course_change/0:528 +I, [2018-08-07T02:26:24.462725 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T02:26:24.462822 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:26:24.463289 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T02:26:24.463319 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:26:24.463731 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.27 ms +I, [2018-08-07T02:26:24.465909 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:26:25.990340 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-08-07T02:26:25.990402 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:26:25.990878 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-08-07T02:26:25.991168 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:26:25.991558 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T02:26:25.991601 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:26:25.992045 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T02:26:25.992097 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:26:25.992470 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T02:26:25.992572 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:26:25.993044 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T02:26:25.993107 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:26:28.006309 #7] INFO -- : Inline processing of topic section_change with 1 messages took 11.4 ms +I, [2018-08-07T02:26:28.006565 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:26:28.008063 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.95 ms +I, [2018-08-07T02:26:28.008122 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:26:30.139135 #7] INFO -- : Committing offsets: section_change/0:1158 +I, [2018-08-07T02:26:32.228760 #7] INFO -- : Inline processing of topic section_change with 1 messages took 4.35 ms +I, [2018-08-07T02:26:32.229309 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:26:34.893180 #7] INFO -- : Committing offsets: course_change/0:531 +I, [2018-08-07T02:26:42.425714 #7] INFO -- : Committing offsets: section_change/0:1159 +I, [2018-08-07T02:26:42.955687 #7] INFO -- : Inline processing of topic section_change with 1 messages took 50.03 ms +I, [2018-08-07T02:26:42.960137 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:26:44.949701 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.79 ms +I, [2018-08-07T02:26:44.949813 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:26:46.259658 #7] INFO -- : Committing offsets: course_change/0:531 +I, [2018-08-07T02:26:47.018805 #7] INFO -- : Inline processing of topic section_change with 1 messages took 63.23 ms +I, [2018-08-07T02:26:47.019977 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:26:49.029025 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.89 ms +I, [2018-08-07T02:26:49.029140 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:26:49.030090 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.66 ms +I, [2018-08-07T02:26:49.030889 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:26:49.047293 #7] INFO -- : Inline processing of topic section_change with 1 messages took 14.86 ms +I, [2018-08-07T02:26:49.047442 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:26:51.289466 #7] INFO -- : Inline processing of topic section_change with 1 messages took 3.21 ms +I, [2018-08-07T02:26:51.289554 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:26:52.831825 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.48 ms +I, [2018-08-07T02:26:52.831894 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:26:52.832760 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.35 ms +I, [2018-08-07T02:26:52.832839 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:26:52.833592 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.52 ms +I, [2018-08-07T02:26:52.833653 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:26:53.290298 #7] INFO -- : Committing offsets: section_change/0:1166 +I, [2018-08-07T02:26:53.317672 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.07 ms +I, [2018-08-07T02:26:53.317751 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:26:53.319410 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.81 ms +I, [2018-08-07T02:26:53.319631 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:26:55.329030 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.25 ms +I, [2018-08-07T02:26:55.329115 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:26:55.329869 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.47 ms +I, [2018-08-07T02:26:55.329948 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:26:55.331689 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.46 ms +I, [2018-08-07T02:26:55.331810 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:26:55.334915 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.52 ms +I, [2018-08-07T02:26:55.334969 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:26:55.336618 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.59 ms +I, [2018-08-07T02:26:55.337093 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:26:57.485247 #7] INFO -- : Inline processing of topic section_change with 1 messages took 105.44 ms +I, [2018-08-07T02:26:57.486744 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:26:57.488824 #7] INFO -- : Committing offsets: course_change/0:534 +I, [2018-08-07T02:26:57.560110 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.81 ms +I, [2018-08-07T02:26:57.560229 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:26:59.493753 #7] INFO -- : Inline processing of topic section_change with 1 messages took 4.34 ms +I, [2018-08-07T02:26:59.494123 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:26:59.608673 #7] INFO -- : Inline processing of topic section_change with 1 messages took 69.75 ms +I, [2018-08-07T02:26:59.608789 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:26:59.609692 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T02:26:59.609745 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:27:01.613462 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.72 ms +I, [2018-08-07T02:27:01.613558 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:27:03.616962 #7] INFO -- : Committing offsets: section_change/0:1178 +I, [2018-08-07T02:27:03.638740 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.51 ms +I, [2018-08-07T02:27:03.639278 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:27:03.639688 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T02:27:03.648548 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:27:05.719514 #7] INFO -- : Inline processing of topic course_change with 1 messages took 79.22 ms +I, [2018-08-07T02:27:05.719991 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:27:05.720760 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.33 ms +I, [2018-08-07T02:27:05.720826 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:27:07.719897 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.94 ms +I, [2018-08-07T02:27:07.720006 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:27:07.722077 #7] INFO -- : Committing offsets: course_change/0:537 +I, [2018-08-07T02:27:11.017169 #7] INFO -- : Inline processing of topic course_change with 1 messages took 889.16 ms +I, [2018-08-07T02:27:11.019385 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:27:11.024802 #7] INFO -- : Inline processing of topic section_change with 1 messages took 364.32 ms +I, [2018-08-07T02:27:11.036831 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:27:15.159700 #7] INFO -- : Committing offsets: section_change/0:1182 +I, [2018-08-07T02:27:17.173104 #7] INFO -- : Inline processing of topic section_change with 1 messages took 2.63 ms +I, [2018-08-07T02:27:17.173173 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:27:17.175762 #7] INFO -- : Inline processing of topic section_change with 1 messages took 2.17 ms +I, [2018-08-07T02:27:17.176620 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:27:19.032727 #7] INFO -- : Committing offsets: course_change/0:538 +I, [2018-08-07T02:27:19.041578 #7] INFO -- : Inline processing of topic course_change with 1 messages took 1.1 ms +I, [2018-08-07T02:27:19.041770 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:27:19.187804 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.73 ms +I, [2018-08-07T02:27:19.187895 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:27:19.188904 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.59 ms +I, [2018-08-07T02:27:19.188980 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:27:21.198194 #7] INFO -- : Inline processing of topic section_change with 1 messages took 3.97 ms +I, [2018-08-07T02:27:21.198392 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:27:23.356342 #7] INFO -- : Inline processing of topic section_change with 1 messages took 17.76 ms +I, [2018-08-07T02:27:23.356898 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:27:25.741681 #7] INFO -- : Committing offsets: section_change/0:1188 +I, [2018-08-07T02:27:30.859716 #7] INFO -- : Inline processing of topic section_change with 1 messages took 13.08 ms +I, [2018-08-07T02:27:30.860369 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:27:30.860975 #7] INFO -- : Committing offsets: course_change/0:539 +I, [2018-08-07T02:27:32.622127 #7] INFO -- : Inline processing of topic course_change with 1 messages took 9.91 ms +I, [2018-08-07T02:27:32.622230 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:27:34.894086 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.02 ms +I, [2018-08-07T02:27:34.894158 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:27:34.896842 #7] INFO -- : Inline processing of topic section_change with 1 messages took 2.0 ms +I, [2018-08-07T02:27:34.897964 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:27:36.954595 #7] INFO -- : Committing offsets: section_change/0:1191 +I, [2018-08-07T02:27:37.019803 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T02:27:37.019884 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:27:39.022651 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.75 ms +I, [2018-08-07T02:27:39.022873 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:27:41.026034 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.41 ms +I, [2018-08-07T02:27:41.026110 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:27:41.065549 #7] INFO -- : Inline processing of topic section_change with 1 messages took 39.14 ms +I, [2018-08-07T02:27:41.066757 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:27:42.947914 #7] INFO -- : Committing offsets: course_change/0:540 +I, [2018-08-07T02:27:43.069864 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-08-07T02:27:43.070159 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:27:43.071303 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.42 ms +I, [2018-08-07T02:27:43.071401 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:27:45.099479 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.72 ms +I, [2018-08-07T02:27:45.099551 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:27:45.100386 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.41 ms +I, [2018-08-07T02:27:45.100443 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:27:45.117594 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.62 ms +I, [2018-08-07T02:27:45.117686 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:27:47.105718 #7] INFO -- : Committing offsets: section_change/0:1197 +I, [2018-08-07T02:27:47.129995 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.59 ms +I, [2018-08-07T02:27:47.130116 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:27:47.130841 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.42 ms +I, [2018-08-07T02:27:47.130907 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:27:47.131968 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.56 ms +I, [2018-08-07T02:27:47.132034 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:27:47.136263 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.69 ms +I, [2018-08-07T02:27:47.136331 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:27:47.137321 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-08-07T02:27:47.137404 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:27:47.138103 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T02:27:47.138156 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:27:49.200947 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.92 ms +I, [2018-08-07T02:27:49.201267 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:27:49.210645 #7] INFO -- : Inline processing of topic course_change with 1 messages took 77.53 ms +I, [2018-08-07T02:27:49.210854 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:27:51.328000 #7] INFO -- : Inline processing of topic section_change with 1 messages took 28.47 ms +I, [2018-08-07T02:27:51.328105 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:27:51.351696 #7] INFO -- : Inline processing of topic section_change with 1 messages took 22.01 ms +I, [2018-08-07T02:27:51.356007 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:27:51.366912 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.28 ms +I, [2018-08-07T02:27:51.368765 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:27:53.714448 #7] INFO -- : Committing offsets: course_change/0:547 +I, [2018-08-07T02:27:53.948138 #7] INFO -- : Inline processing of topic section_change with 1 messages took 12.41 ms +I, [2018-08-07T02:27:53.951512 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:27:58.641686 #7] INFO -- : Committing offsets: section_change/0:1205 +I, [2018-08-07T02:27:59.664198 #7] INFO -- : Inline processing of topic section_change with 1 messages took 60.64 ms +I, [2018-08-07T02:27:59.664607 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:28:03.674128 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.01 ms +I, [2018-08-07T02:28:03.674471 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:28:05.458863 #7] INFO -- : Committing offsets: course_change/0:547 +I, [2018-08-07T02:28:09.889872 #7] INFO -- : Committing offsets: section_change/0:1207 +I, [2018-08-07T02:28:10.067872 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.29 ms +I, [2018-08-07T02:28:10.068592 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:28:12.077924 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.92 ms +I, [2018-08-07T02:28:12.078010 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:28:16.212986 #7] INFO -- : Inline processing of topic section_change with 1 messages took 16.87 ms +I, [2018-08-07T02:28:16.213150 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:28:16.224079 #7] INFO -- : Committing offsets: course_change/0:547 +I, [2018-08-07T02:28:18.223470 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.5 ms +I, [2018-08-07T02:28:18.223556 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:28:18.224560 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.63 ms +I, [2018-08-07T02:28:18.224615 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:28:18.473492 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.71 ms +I, [2018-08-07T02:28:18.473587 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:28:18.474353 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.41 ms +I, [2018-08-07T02:28:18.474913 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:28:20.230334 #7] INFO -- : Committing offsets: section_change/0:1212 +I, [2018-08-07T02:28:22.668887 #7] INFO -- : Inline processing of topic course_change with 1 messages took 1.56 ms +I, [2018-08-07T02:28:22.668979 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:28:22.670199 #7] INFO -- : Inline processing of topic section_change with 1 messages took 55.66 ms +I, [2018-08-07T02:28:22.670262 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:28:22.689924 #7] INFO -- : Inline processing of topic section_change with 1 messages took 19.37 ms +I, [2018-08-07T02:28:22.689996 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:28:24.670329 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.54 ms +I, [2018-08-07T02:28:24.670453 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:28:24.703129 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.69 ms +I, [2018-08-07T02:28:24.715125 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:28:24.715868 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T02:28:24.715921 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:28:26.670764 #7] INFO -- : Committing offsets: course_change/0:551 +I, [2018-08-07T02:28:26.679112 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.44 ms +I, [2018-08-07T02:28:26.679158 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:28:26.679404 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-08-07T02:28:26.679591 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:28:26.679861 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T02:28:26.679897 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:28:26.680221 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-08-07T02:28:26.680252 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:28:26.680587 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T02:28:26.680617 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:28:26.680925 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-08-07T02:28:26.683470 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:28:26.721988 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.8 ms +I, [2018-08-07T02:28:26.722048 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:28:26.722402 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T02:28:26.722439 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:28:26.722986 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T02:28:26.723081 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:28:26.723673 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T02:28:26.723711 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:28:26.724074 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T02:28:26.724118 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:28:26.724566 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-08-07T02:28:26.724611 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:28:28.735413 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-08-07T02:28:28.735482 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:28:28.736654 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T02:28:28.737087 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:28:28.739934 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.29 ms +I, [2018-08-07T02:28:28.740366 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:28:28.751685 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.62 ms +I, [2018-08-07T02:28:28.751785 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:28:30.712851 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.4 ms +I, [2018-08-07T02:28:30.713270 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:28:30.713832 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.3 ms +I, [2018-08-07T02:28:30.713872 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:28:30.776484 #7] INFO -- : Committing offsets: section_change/0:1226 +I, [2018-08-07T02:28:30.823656 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.42 ms +I, [2018-08-07T02:28:30.823711 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:28:30.824176 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-08-07T02:28:30.824243 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:28:36.775380 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1593.17 ms +I, [2018-08-07T02:28:36.784172 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:28:37.203173 #7] INFO -- : Committing offsets: course_change/0:559 +I, [2018-08-07T02:28:39.055465 #7] INFO -- : Inline processing of topic course_change with 1 messages took 32.16 ms +I, [2018-08-07T02:28:39.060707 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:28:39.085432 #7] INFO -- : Inline processing of topic section_change with 1 messages took 2.66 ms +I, [2018-08-07T02:28:39.085534 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:28:41.069502 #7] INFO -- : Inline processing of topic course_change with 1 messages took 3.71 ms +I, [2018-08-07T02:28:41.069609 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:28:41.087854 #7] INFO -- : Committing offsets: section_change/0:1230 +I, [2018-08-07T02:28:41.099951 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.51 ms +I, [2018-08-07T02:28:41.100313 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:28:43.075992 #7] INFO -- : Inline processing of topic course_change with 1 messages took 1.72 ms +I, [2018-08-07T02:28:43.076059 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:28:43.076878 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.37 ms +I, [2018-08-07T02:28:43.076954 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:28:43.077941 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.36 ms +I, [2018-08-07T02:28:43.078005 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:28:43.087724 #7] INFO -- : Inline processing of topic course_change with 1 messages took 9.41 ms +I, [2018-08-07T02:28:43.087808 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:28:43.091550 #7] INFO -- : Inline processing of topic course_change with 1 messages took 2.93 ms +I, [2018-08-07T02:28:43.091933 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:28:43.112526 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.61 ms +I, [2018-08-07T02:28:43.112681 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:28:43.114306 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.78 ms +I, [2018-08-07T02:28:43.114375 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:28:43.115377 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.77 ms +I, [2018-08-07T02:28:43.115435 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:28:43.116235 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.55 ms +I, [2018-08-07T02:28:43.116294 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:28:43.117172 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.47 ms +I, [2018-08-07T02:28:43.117404 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:28:43.118054 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.41 ms +I, [2018-08-07T02:28:43.118115 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:28:43.118713 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-08-07T02:28:43.118767 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:28:45.054752 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.47 ms +I, [2018-08-07T02:28:45.054837 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:28:45.055299 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.26 ms +I, [2018-08-07T02:28:45.055465 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:28:45.056231 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.5 ms +I, [2018-08-07T02:28:45.056274 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:28:45.056694 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.23 ms +I, [2018-08-07T02:28:45.056789 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:28:45.058515 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.42 ms +I, [2018-08-07T02:28:45.058711 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:28:45.093502 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-08-07T02:28:45.093576 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:28:45.094118 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T02:28:45.094155 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:28:45.094893 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-08-07T02:28:45.094974 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:28:45.095671 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.47 ms +I, [2018-08-07T02:28:45.095761 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:28:45.096293 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-08-07T02:28:45.096354 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:28:45.097750 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.81 ms +I, [2018-08-07T02:28:45.101586 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:28:45.101985 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T02:28:45.102593 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:28:47.059811 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.26 ms +I, [2018-08-07T02:28:47.059861 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:28:47.060656 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.62 ms +I, [2018-08-07T02:28:47.060721 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:28:47.061249 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.37 ms +I, [2018-08-07T02:28:47.061284 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:28:47.103506 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.42 ms +I, [2018-08-07T02:28:47.103557 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:28:47.103949 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T02:28:47.104037 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:28:47.104665 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.49 ms +I, [2018-08-07T02:28:47.104700 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:28:47.105175 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-08-07T02:28:47.105215 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:28:47.106143 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.66 ms +I, [2018-08-07T02:28:47.106191 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:28:49.061900 #7] INFO -- : Committing offsets: course_change/0:574 +I, [2018-08-07T02:28:49.069095 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T02:28:49.069140 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:28:49.069416 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T02:28:49.069476 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:28:49.069762 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T02:28:49.069799 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:28:49.108774 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T02:28:49.108936 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:28:49.109305 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T02:28:49.109477 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:28:49.109743 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T02:28:49.109777 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:28:51.070916 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.43 ms +I, [2018-08-07T02:28:51.071207 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:28:51.072841 #7] INFO -- : Inline processing of topic course_change with 1 messages took 1.18 ms +I, [2018-08-07T02:28:51.073047 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:28:51.074373 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T02:28:51.074438 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:28:51.075047 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.32 ms +I, [2018-08-07T02:28:51.075096 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:28:51.079425 #7] INFO -- : Inline processing of topic course_change with 1 messages took 4.13 ms +I, [2018-08-07T02:28:51.079494 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:28:51.080289 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.38 ms +I, [2018-08-07T02:28:51.080353 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:28:51.080799 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T02:28:51.080851 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:28:51.081523 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T02:28:51.081580 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:28:51.110338 #7] INFO -- : Committing offsets: section_change/0:1253 +I, [2018-08-07T02:28:51.124961 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-08-07T02:28:51.125034 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:28:51.125905 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-08-07T02:28:51.125956 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:28:51.126552 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-08-07T02:28:51.126624 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:28:51.127568 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.43 ms +I, [2018-08-07T02:28:51.127626 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:28:51.128636 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.8 ms +I, [2018-08-07T02:28:51.128734 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:28:51.129137 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T02:28:51.129383 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:28:51.137710 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.77 ms +I, [2018-08-07T02:28:51.137781 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:28:51.139337 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.68 ms +I, [2018-08-07T02:28:51.139446 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:28:51.140197 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.47 ms +I, [2018-08-07T02:28:51.140269 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:28:51.141010 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-08-07T02:28:51.141064 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:28:51.142700 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.2 ms +I, [2018-08-07T02:28:51.142768 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:28:51.146832 #7] INFO -- : Inline processing of topic section_change with 1 messages took 3.82 ms +I, [2018-08-07T02:28:51.146916 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:28:51.151600 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.02 ms +I, [2018-08-07T02:28:51.151772 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:28:51.152280 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T02:28:51.152336 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:28:51.152733 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T02:28:51.152778 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:28:51.153206 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T02:28:51.153258 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:28:51.153578 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T02:28:51.153623 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:28:51.154292 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-08-07T02:28:51.154348 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:28:51.157200 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-08-07T02:28:51.157558 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:28:51.158291 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T02:28:51.158823 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:28:51.159872 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T02:28:51.159927 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:28:51.161276 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T02:28:51.164300 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:28:53.082985 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.62 ms +I, [2018-08-07T02:28:53.083058 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:28:53.083468 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T02:28:53.083539 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:28:53.083887 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T02:28:53.084104 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:28:53.085412 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.25 ms +I, [2018-08-07T02:28:53.085469 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:28:53.178065 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.06 ms +I, [2018-08-07T02:28:53.178143 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:28:53.178968 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.53 ms +I, [2018-08-07T02:28:53.179033 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:28:53.179875 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T02:28:53.179932 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:28:53.180339 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T02:28:53.180384 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:28:53.180790 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T02:28:53.180840 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:28:53.181607 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T02:28:53.181717 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:28:53.182738 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T02:28:53.182800 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:28:53.183969 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.75 ms +I, [2018-08-07T02:28:53.184035 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:28:53.184892 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-08-07T02:28:53.184952 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:28:53.185639 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.47 ms +I, [2018-08-07T02:28:53.185702 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:28:55.088449 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.72 ms +I, [2018-08-07T02:28:55.088576 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:28:55.089154 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.31 ms +I, [2018-08-07T02:28:55.089211 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:28:55.187375 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.46 ms +I, [2018-08-07T02:28:55.187447 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:28:55.187967 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T02:28:55.188024 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:28:55.188576 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-08-07T02:28:55.188651 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:28:55.189350 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-08-07T02:28:55.189427 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:28:57.090547 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.63 ms +I, [2018-08-07T02:28:57.095686 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:28:57.096185 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-08-07T02:28:57.096278 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:28:57.097308 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-08-07T02:28:57.097373 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:28:57.191565 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.1 ms +I, [2018-08-07T02:28:57.191983 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:28:57.192661 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-08-07T02:28:57.192721 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:28:57.193334 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-08-07T02:28:57.193398 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:28:57.194018 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.4 ms +I, [2018-08-07T02:28:57.196987 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:28:59.098515 #7] INFO -- : Committing offsets: course_change/0:594 +I, [2018-08-07T02:28:59.159603 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.51 ms +I, [2018-08-07T02:28:59.159662 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:28:59.160205 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.34 ms +I, [2018-08-07T02:28:59.160262 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:28:59.160555 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T02:28:59.160587 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:28:59.207499 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.57 ms +I, [2018-08-07T02:28:59.207553 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:28:59.208100 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-08-07T02:28:59.208149 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:28:59.209021 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.58 ms +I, [2018-08-07T02:28:59.210153 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:29:01.221822 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.46 ms +I, [2018-08-07T02:29:01.221894 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:29:01.234574 #7] INFO -- : Committing offsets: section_change/0:1296 +I, [2018-08-07T02:29:01.432060 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T02:29:01.432110 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:29:01.432387 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T02:29:01.432529 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:29:01.432751 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T02:29:01.432780 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:29:01.433232 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T02:29:01.433269 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:29:03.238750 #7] INFO -- : Inline processing of topic course_change with 1 messages took 1.78 ms +I, [2018-08-07T02:29:03.247412 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:29:03.252699 #7] INFO -- : Inline processing of topic course_change with 1 messages took 3.64 ms +I, [2018-08-07T02:29:03.252813 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:29:03.450523 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.84 ms +I, [2018-08-07T02:29:03.450609 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:29:05.365912 #7] INFO -- : Inline processing of topic course_change with 1 messages took 85.39 ms +I, [2018-08-07T02:29:05.366109 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:29:05.545231 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.51 ms +I, [2018-08-07T02:29:05.545308 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:29:07.383440 #7] INFO -- : Inline processing of topic course_change with 1 messages took 11.08 ms +I, [2018-08-07T02:29:07.383673 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:29:07.547494 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.91 ms +I, [2018-08-07T02:29:07.547601 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:29:09.387990 #7] INFO -- : Committing offsets: course_change/0:602 +I, [2018-08-07T02:29:09.791384 #7] INFO -- : Inline processing of topic course_change with 1 messages took 1.28 ms +I, [2018-08-07T02:29:09.791571 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:29:09.831890 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.77 ms +I, [2018-08-07T02:29:09.837645 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:29:09.946898 #7] INFO -- : Inline processing of topic section_change with 1 messages took 98.43 ms +I, [2018-08-07T02:29:09.947069 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:29:09.948598 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.12 ms +I, [2018-08-07T02:29:09.948824 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:29:11.841557 #7] INFO -- : Inline processing of topic course_change with 1 messages took 1.27 ms +I, [2018-08-07T02:29:11.841640 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:29:11.949547 #7] INFO -- : Committing offsets: section_change/0:1305 +I, [2018-08-07T02:29:11.966024 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.83 ms +I, [2018-08-07T02:29:11.966097 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:29:13.842923 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.72 ms +I, [2018-08-07T02:29:13.842975 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:29:13.843484 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-08-07T02:29:13.843525 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:29:13.969296 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.69 ms +I, [2018-08-07T02:29:13.969385 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:29:13.971333 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.64 ms +I, [2018-08-07T02:29:13.971389 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:29:13.971922 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-08-07T02:29:13.974042 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:29:13.977088 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.59 ms +I, [2018-08-07T02:29:13.977205 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:29:15.943534 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.57 ms +I, [2018-08-07T02:29:15.943583 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:29:15.945019 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.52 ms +I, [2018-08-07T02:29:15.945101 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:29:15.945681 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-08-07T02:29:15.945746 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:29:17.810046 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.36 ms +I, [2018-08-07T02:29:17.810102 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:29:17.810342 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T02:29:17.810663 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:29:17.811217 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.35 ms +I, [2018-08-07T02:29:17.811256 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:29:17.811676 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.28 ms +I, [2018-08-07T02:29:17.811717 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:29:17.812038 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T02:29:17.812082 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:29:17.946604 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-08-07T02:29:17.946655 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:29:17.947144 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-08-07T02:29:17.947182 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:29:17.947527 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T02:29:17.947560 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:29:17.947876 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T02:29:17.947906 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:29:17.948235 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T02:29:17.948267 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:29:17.948556 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T02:29:17.948587 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:29:17.948782 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T02:29:17.948813 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:29:17.949256 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T02:29:17.949288 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:29:17.951143 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-08-07T02:29:17.951181 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:29:17.951582 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T02:29:17.951631 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:29:17.952180 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.4 ms +I, [2018-08-07T02:29:17.952216 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:29:17.952430 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T02:29:17.952460 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:29:17.952822 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T02:29:17.952854 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:29:19.812694 #7] INFO -- : Committing offsets: course_change/0:612 +I, [2018-08-07T02:29:19.819920 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.4 ms +I, [2018-08-07T02:29:19.819995 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:29:19.820308 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T02:29:19.820397 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:29:19.821075 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.25 ms +I, [2018-08-07T02:29:19.821128 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:29:19.822123 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.62 ms +I, [2018-08-07T02:29:19.822192 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:29:19.822671 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.27 ms +I, [2018-08-07T02:29:19.822710 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:29:19.822939 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T02:29:19.822970 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:29:19.959583 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.01 ms +I, [2018-08-07T02:29:19.959756 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:29:19.960993 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.65 ms +I, [2018-08-07T02:29:19.961051 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:29:19.961896 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.5 ms +I, [2018-08-07T02:29:19.965245 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:29:19.966817 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T02:29:19.967090 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:29:19.968771 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.4 ms +I, [2018-08-07T02:29:19.969030 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:29:19.970965 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-08-07T02:29:19.971057 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:29:21.824422 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.83 ms +I, [2018-08-07T02:29:21.824507 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:29:21.825011 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.27 ms +I, [2018-08-07T02:29:21.825808 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:29:21.971423 #7] INFO -- : Committing offsets: section_change/0:1332 +I, [2018-08-07T02:29:21.974408 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-08-07T02:29:21.974493 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:29:21.975045 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T02:29:21.975234 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:29:21.975783 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T02:29:21.975840 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:29:21.976288 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T02:29:21.976341 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:29:23.827411 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.39 ms +I, [2018-08-07T02:29:23.827555 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:29:23.828461 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.33 ms +I, [2018-08-07T02:29:23.828519 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:29:23.829023 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T02:29:23.829075 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:29:23.829766 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.34 ms +I, [2018-08-07T02:29:23.829838 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:29:23.830291 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-08-07T02:29:23.830340 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:29:23.978125 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-08-07T02:29:23.978196 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:29:23.978856 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-08-07T02:29:23.978956 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:29:23.979668 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.45 ms +I, [2018-08-07T02:29:23.979735 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:29:23.980195 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T02:29:23.980394 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:29:23.981323 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T02:29:23.981448 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:29:25.832469 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.47 ms +I, [2018-08-07T02:29:25.832547 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:29:25.833302 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.23 ms +I, [2018-08-07T02:29:25.833363 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:29:25.833830 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.27 ms +I, [2018-08-07T02:29:25.833882 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:29:25.982706 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-08-07T02:29:25.982950 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:29:25.983473 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-08-07T02:29:25.983680 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:29:25.984869 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.53 ms +I, [2018-08-07T02:29:25.984974 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:29:25.985518 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-08-07T02:29:25.985607 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:29:27.834991 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.33 ms +I, [2018-08-07T02:29:27.835056 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:29:27.840478 #7] INFO -- : Inline processing of topic course_change with 1 messages took 5.19 ms +I, [2018-08-07T02:29:27.840557 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:29:27.841791 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.65 ms +I, [2018-08-07T02:29:27.842042 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:29:27.842645 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.27 ms +I, [2018-08-07T02:29:27.842704 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:29:27.848642 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.32 ms +I, [2018-08-07T02:29:27.848711 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:29:27.850525 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-08-07T02:29:27.850586 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:29:27.851066 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T02:29:27.851123 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:29:27.986763 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-08-07T02:29:27.986921 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:29:27.987477 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T02:29:27.987536 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:29:27.989130 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T02:29:27.989191 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:29:27.989955 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T02:29:27.990105 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:29:27.991085 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.57 ms +I, [2018-08-07T02:29:27.991147 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:29:27.991659 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T02:29:27.991716 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:29:27.992077 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T02:29:27.992127 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:29:27.992908 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.47 ms +I, [2018-08-07T02:29:27.997073 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:29:27.998173 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.52 ms +I, [2018-08-07T02:29:27.998237 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:29:27.998654 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T02:29:27.998705 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:29:27.999027 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T02:29:27.999147 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:29:27.999582 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T02:29:27.999628 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:29:28.000056 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T02:29:28.000107 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:29:28.000653 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T02:29:28.001419 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:29:28.004757 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T02:29:28.004822 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:29:28.005274 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T02:29:28.005325 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:29:28.005719 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T02:29:28.005773 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:29:28.009150 #7] INFO -- : Inline processing of topic section_change with 1 messages took 3.08 ms +I, [2018-08-07T02:29:28.009223 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:29:28.012894 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T02:29:28.012975 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:29:28.013527 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T02:29:28.013954 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:29:28.015038 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.72 ms +I, [2018-08-07T02:29:28.015104 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:29:28.015736 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.41 ms +I, [2018-08-07T02:29:28.015795 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:29:28.016135 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T02:29:28.016181 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:29:28.016977 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.49 ms +I, [2018-08-07T02:29:28.017035 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:29:28.017540 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T02:29:28.017591 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:29:28.018083 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-08-07T02:29:28.018197 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:29:28.018881 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T02:29:28.019064 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:29:28.019994 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.54 ms +I, [2018-08-07T02:29:28.021013 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:29:29.851800 #7] INFO -- : Committing offsets: course_change/0:635 +I, [2018-08-07T02:29:29.862361 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-08-07T02:29:29.862410 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:29:29.862710 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T02:29:29.862741 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:29:29.863041 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T02:29:29.863072 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:29:29.863352 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T02:29:29.863396 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:29:29.863870 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T02:29:29.863907 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:29:30.035046 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.47 ms +I, [2018-08-07T02:29:30.035111 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:29:30.036447 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-08-07T02:29:30.036503 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:29:30.036936 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T02:29:30.036984 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:29:30.037459 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-08-07T02:29:30.037538 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:29:30.040000 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.72 ms +I, [2018-08-07T02:29:30.040270 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:29:31.865452 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.82 ms +I, [2018-08-07T02:29:31.865575 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:29:31.865864 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T02:29:31.866104 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:29:31.866368 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T02:29:31.866400 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:29:31.866845 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T02:29:31.866878 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:29:32.055559 #7] INFO -- : Committing offsets: section_change/0:1378 +I, [2018-08-07T02:29:32.058202 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T02:29:32.058328 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:29:32.059813 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T02:29:32.059936 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:29:32.060179 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T02:29:32.060210 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:29:32.060530 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T02:29:32.060561 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:29:32.060927 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T02:29:32.060967 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:29:33.867824 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.36 ms +I, [2018-08-07T02:29:33.867882 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:29:33.868230 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T02:29:33.868264 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:29:33.868560 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-08-07T02:29:33.868592 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:29:33.868945 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.24 ms +I, [2018-08-07T02:29:33.868981 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:29:33.869286 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T02:29:33.869318 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:29:33.869574 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T02:29:33.869613 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:29:34.062333 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.42 ms +I, [2018-08-07T02:29:34.062387 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:29:34.062879 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T02:29:34.062915 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:29:34.063489 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-08-07T02:29:34.063525 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:29:34.063823 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T02:29:34.063856 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:29:34.064369 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T02:29:34.064507 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:29:35.899047 #7] INFO -- : Inline processing of topic course_change with 1 messages took 10.9 ms +I, [2018-08-07T02:29:35.938353 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:29:36.191329 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.67 ms +I, [2018-08-07T02:29:36.191468 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:29:36.214874 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.8 ms +I, [2018-08-07T02:29:36.214954 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:29:41.712818 #7] INFO -- : Committing offsets: course_change/0:651 +I, [2018-08-07T02:29:44.017662 #7] INFO -- : Committing offsets: section_change/0:1390 +I, [2018-08-07T02:29:49.937158 #7] INFO -- : Inline processing of topic course_change with 1 messages took 11.47 ms +I, [2018-08-07T02:29:49.940989 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:29:49.979592 #7] INFO -- : Inline processing of topic section_change with 1 messages took 20.39 ms +I, [2018-08-07T02:29:49.979982 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:29:54.012667 #7] INFO -- : Committing offsets: course_change/0:652 +I, [2018-08-07T02:29:54.433438 #7] INFO -- : Committing offsets: section_change/0:1391 +I, [2018-08-07T02:29:55.256818 #7] INFO -- : Inline processing of topic section_change with 1 messages took 168.17 ms +I, [2018-08-07T02:29:55.256971 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:29:58.054235 #7] INFO -- : Inline processing of topic course_change with 1 messages took 16.46 ms +I, [2018-08-07T02:29:58.055966 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:29:59.931650 #7] INFO -- : Inline processing of topic section_change with 1 messages took 20.44 ms +I, [2018-08-07T02:29:59.931783 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:30:00.124347 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.36 ms +I, [2018-08-07T02:30:00.124436 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:30:01.946806 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.51 ms +I, [2018-08-07T02:30:01.947236 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:30:01.958017 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-08-07T02:30:01.958108 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:30:01.958970 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.58 ms +I, [2018-08-07T02:30:01.959042 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:30:02.125662 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.41 ms +I, [2018-08-07T02:30:02.125750 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:30:02.126847 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-08-07T02:30:02.126916 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:30:02.127784 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.63 ms +I, [2018-08-07T02:30:02.127843 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:30:06.992656 #7] INFO -- : Committing offsets: section_change/0:1396 +I, [2018-08-07T02:30:07.314012 #7] INFO -- : Committing offsets: course_change/0:657 +I, [2018-08-07T02:30:13.624742 #7] INFO -- : Inline processing of topic section_change with 1 messages took 2.82 ms +I, [2018-08-07T02:30:13.625093 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:30:15.603013 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.88 ms +I, [2018-08-07T02:30:15.603121 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:30:17.633421 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.32 ms +I, [2018-08-07T02:30:17.633716 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:30:19.141024 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.94 ms +I, [2018-08-07T02:30:19.141147 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:30:19.710781 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.87 ms +I, [2018-08-07T02:30:19.721553 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:30:19.722485 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.59 ms +I, [2018-08-07T02:30:19.722560 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:30:21.189474 #7] INFO -- : Committing offsets: course_change/0:658 +I, [2018-08-07T02:30:21.256417 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.69 ms +I, [2018-08-07T02:30:21.256642 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:30:21.264343 #7] INFO -- : Inline processing of topic course_change with 1 messages took 4.71 ms +I, [2018-08-07T02:30:21.267122 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:30:21.723102 #7] INFO -- : Committing offsets: section_change/0:1401 +I, [2018-08-07T02:30:21.727782 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.6 ms +I, [2018-08-07T02:30:21.727844 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:30:21.729632 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.37 ms +I, [2018-08-07T02:30:21.729679 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:30:23.272292 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.53 ms +I, [2018-08-07T02:30:23.272359 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:30:23.273273 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.43 ms +I, [2018-08-07T02:30:23.273340 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:30:23.273805 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.27 ms +I, [2018-08-07T02:30:23.273983 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:30:23.275097 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.33 ms +I, [2018-08-07T02:30:23.275230 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:30:23.731259 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.71 ms +I, [2018-08-07T02:30:23.731422 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:30:23.733741 #7] INFO -- : Inline processing of topic section_change with 1 messages took 2.07 ms +I, [2018-08-07T02:30:23.733804 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:30:23.735139 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.63 ms +I, [2018-08-07T02:30:23.735228 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:30:23.736781 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.09 ms +I, [2018-08-07T02:30:23.736965 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:30:25.276906 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.54 ms +I, [2018-08-07T02:30:25.276974 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:30:25.277529 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.35 ms +I, [2018-08-07T02:30:25.277579 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:30:25.278360 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.59 ms +I, [2018-08-07T02:30:25.278424 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:30:25.279153 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T02:30:25.279205 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:30:25.279835 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.45 ms +I, [2018-08-07T02:30:25.279883 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:30:25.281065 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.25 ms +I, [2018-08-07T02:30:25.281127 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:30:25.738000 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.49 ms +I, [2018-08-07T02:30:25.738054 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:30:25.738430 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T02:30:25.738463 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:30:25.738832 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T02:30:25.738865 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:30:25.739219 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T02:30:25.739252 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:30:25.739688 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-08-07T02:30:25.739792 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:30:25.740703 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T02:30:25.740971 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:30:25.741260 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T02:30:25.741312 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:30:25.741876 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-08-07T02:30:25.741912 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:30:25.742334 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-08-07T02:30:25.742380 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:30:25.742631 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T02:30:25.742853 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:30:25.743245 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T02:30:25.743450 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:30:27.281903 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-08-07T02:30:27.282120 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:30:27.282385 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T02:30:27.282419 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:30:27.282764 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.23 ms +I, [2018-08-07T02:30:27.282795 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:30:27.283129 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-08-07T02:30:27.283162 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:30:27.283364 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-08-07T02:30:27.283394 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:30:27.744312 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-08-07T02:30:27.744362 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:30:27.744769 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T02:30:27.744804 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:30:27.745143 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T02:30:27.745174 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:30:27.746659 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.36 ms +I, [2018-08-07T02:30:27.746977 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:30:27.747282 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T02:30:27.747433 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:30:29.285475 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.53 ms +I, [2018-08-07T02:30:29.285601 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:30:29.286164 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.27 ms +I, [2018-08-07T02:30:29.286218 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:30:29.286673 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T02:30:29.286719 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:30:29.287509 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.41 ms +I, [2018-08-07T02:30:29.287563 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:30:29.748437 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.45 ms +I, [2018-08-07T02:30:29.748511 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:30:29.749187 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.47 ms +I, [2018-08-07T02:30:29.749239 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:30:29.749847 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-08-07T02:30:29.749944 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:30:29.750602 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.4 ms +I, [2018-08-07T02:30:29.750663 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:30:29.751371 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.44 ms +I, [2018-08-07T02:30:29.751429 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:30:31.287869 #7] INFO -- : Committing offsets: course_change/0:679 +I, [2018-08-07T02:30:31.751894 #7] INFO -- : Committing offsets: section_change/0:1428 +I, [2018-08-07T02:30:31.755467 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-08-07T02:30:31.755511 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:30:31.755867 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T02:30:31.755898 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:30:33.756746 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T02:30:33.756837 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:30:33.757132 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T02:30:33.757211 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:30:35.758238 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-08-07T02:30:35.758286 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:30:35.758665 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T02:30:35.758697 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:30:35.758999 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T02:30:35.759029 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:30:37.308354 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T02:30:37.308430 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:30:37.308650 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T02:30:37.308680 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:30:37.759784 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T02:30:37.759833 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:30:37.760119 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T02:30:37.760152 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:30:37.760418 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T02:30:37.760450 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:30:37.760751 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T02:30:37.760782 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:30:37.761080 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T02:30:37.761117 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:30:37.761561 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-08-07T02:30:37.761604 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:30:37.762996 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.24 ms +I, [2018-08-07T02:30:37.763033 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:30:37.763346 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T02:30:37.763377 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:30:39.309374 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T02:30:39.309423 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:30:39.764059 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T02:30:39.764104 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:30:39.764433 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T02:30:39.764555 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:30:39.764890 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T02:30:39.764920 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:30:39.765232 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T02:37:22.684661 #7] INFO -- : New topics added to target list: course_change +I, [2018-08-07T02:37:22.685478 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T02:37:22.696247 #7] INFO -- : New topics added to target list: section_change +I, [2018-08-07T02:37:22.696332 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T02:37:22.729159 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +E, [2018-08-07T02:37:22.729386 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +E, [2018-08-07T02:37:22.729553 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +E, [2018-08-07T02:37:22.729636 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +E, [2018-08-07T02:37:27.730608 #7] 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 +E, [2018-08-07T02:37:27.731733 #7] 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-08-07T02:37:27.753162 #7] INFO -- : New topics added to target list: course_change +I, [2018-08-07T02:37:27.753627 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T02:37:27.758171 #7] INFO -- : New topics added to target list: section_change +I, [2018-08-07T02:37:27.758292 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T02:37:27.777749 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +E, [2018-08-07T02:37:27.778076 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +E, [2018-08-07T02:37:27.778745 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +E, [2018-08-07T02:37:27.778878 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +E, [2018-08-07T02:37:32.790814 #7] 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 +E, [2018-08-07T02:37:34.517871 #7] 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-08-07T02:37:36.364024 #7] INFO -- : New topics added to target list: section_change +I, [2018-08-07T02:37:36.364573 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T02:37:36.511136 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +I, [2018-08-07T02:37:37.527544 #7] INFO -- : New topics added to target list: course_change +I, [2018-08-07T02:37:37.527700 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T02:37:37.538328 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +E, [2018-08-07T02:37:37.549750 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +E, [2018-08-07T02:37:37.551657 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +E, [2018-08-07T02:37:43.696189 #7] 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 +E, [2018-08-07T02:37:45.169531 #7] 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-08-07T02:37:45.207294 #7] INFO -- : New topics added to target list: course_change +I, [2018-08-07T02:37:45.229301 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T02:37:45.260440 #7] INFO -- : New topics added to target list: section_change +I, [2018-08-07T02:37:45.260549 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T02:37:45.270401 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +E, [2018-08-07T02:37:45.270646 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +E, [2018-08-07T02:37:45.271733 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +E, [2018-08-07T02:37:45.272023 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +E, [2018-08-07T02:37:50.230976 #7] 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 +E, [2018-08-07T02:37:50.296455 #7] 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-08-07T02:37:50.298601 #7] INFO -- : New topics added to target list: section_change +I, [2018-08-07T02:37:50.298691 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T02:37:50.305346 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +E, [2018-08-07T02:37:50.320145 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +I, [2018-08-07T02:37:50.366622 #7] INFO -- : New topics added to target list: course_change +I, [2018-08-07T02:37:50.366696 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T02:37:50.370270 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +E, [2018-08-07T02:37:50.377991 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +E, [2018-08-07T02:37:55.459829 #7] 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-08-07T02:37:55.488896 #7] INFO -- : New topics added to target list: section_change +I, [2018-08-07T02:37:55.489045 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T02:37:55.539084 #7] 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-08-07T02:37:55.585655 #7] INFO -- : New topics added to target list: course_change +I, [2018-08-07T02:37:55.585792 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T02:37:55.621352 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +E, [2018-08-07T02:37:55.646260 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +E, [2018-08-07T02:37:55.646510 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +E, [2018-08-07T02:37:55.646670 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +E, [2018-08-07T02:38:00.730288 #7] 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 +E, [2018-08-07T02:38:00.753909 #7] 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-08-07T02:38:00.782287 #7] INFO -- : New topics added to target list: course_change +I, [2018-08-07T02:38:00.790446 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T02:38:00.824236 #7] INFO -- : New topics added to target list: section_change +I, [2018-08-07T02:38:00.836423 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T02:38:00.835638 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +E, [2018-08-07T02:38:00.845976 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +E, [2018-08-07T02:38:01.199353 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +E, [2018-08-07T02:38:01.199925 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +E, [2018-08-07T02:38:06.479942 #7] 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 +E, [2018-08-07T02:38:06.628129 #7] 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-08-07T02:38:06.653369 #7] INFO -- : New topics added to target list: course_change +I, [2018-08-07T02:38:06.653634 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T02:38:06.685385 #7] INFO -- : New topics added to target list: section_change +I, [2018-08-07T02:38:06.685548 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T02:38:07.512033 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +E, [2018-08-07T02:38:07.512303 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +E, [2018-08-07T02:38:07.512842 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +E, [2018-08-07T02:38:07.512949 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +E, [2018-08-07T02:38:12.513628 #7] 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 +E, [2018-08-07T02:38:12.520356 #7] 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-08-07T02:38:12.525475 #7] INFO -- : New topics added to target list: course_change +I, [2018-08-07T02:38:12.525568 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T02:38:12.538221 #7] INFO -- : New topics added to target list: section_change +I, [2018-08-07T02:38:12.538306 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T02:38:26.469018 #7] ERROR -- : No brokers in cluster +E, [2018-08-07T02:38:26.493973 #7] ERROR -- : No brokers in cluster +E, [2018-08-07T02:38:31.629375 #7] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: + +E, [2018-08-07T02:38:31.640754 #7] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: + +I, [2018-08-07T02:38:31.736383 #7] INFO -- : New topics added to target list: section_change +I, [2018-08-07T02:38:31.741880 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T02:38:31.891884 #7] INFO -- : New topics added to target list: course_change +I, [2018-08-07T02:38:31.891999 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T02:38:32.820189 #7] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-07T02:38:32.830273 #7] INFO -- : Joining group `notifications_notifications` +I, [2018-08-07T02:38:32.864616 #7] INFO -- : Will fetch at most 1048576 bytes at a time per partition from section_change +I, [2018-08-07T02:38:32.866919 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T02:38:32.870884 #7] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-07T02:38:32.872929 #7] INFO -- : Joining group `notifications_course_change` +I, [2018-08-07T02:38:32.948838 #7] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-07T02:38:32.950277 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T02:38:32.974667 #7] INFO -- : Will fetch at most 1048576 bytes at a time per partition from course_change +I, [2018-08-07T02:38:32.974850 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T02:38:33.001398 #7] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-07T02:38:33.001932 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T02:38:33.951667 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T02:38:34.033367 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T02:38:35.925471 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T02:38:35.925733 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T02:38:36.928783 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T02:38:36.933172 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T02:38:37.940924 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T02:38:37.942600 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T02:38:38.942638 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T02:38:38.944500 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T02:38:39.945023 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T02:38:39.945489 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T02:38:40.946005 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T02:38:40.949633 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T02:38:41.948550 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T02:38:41.950921 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T02:38:42.949411 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T02:38:42.951488 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T02:38:44.094181 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T02:38:44.094476 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T02:38:45.201552 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T02:38:45.201801 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T02:38:46.201947 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T02:38:46.202671 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T02:38:47.218699 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T02:38:47.219524 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T02:38:48.269491 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T02:38:48.269829 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T02:38:48.724657 #7] INFO -- : Joined group `notifications_course_change` with member id `notifications-30b78e3b-9dda-4564-a299-7eafe722fce3` +I, [2018-08-07T02:38:48.724805 #7] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-07T02:38:48.739764 #7] INFO -- : Joined group `notifications_notifications` with member id `notifications-e165e172-217e-4e80-bb4f-6aed51d4c4a4` +I, [2018-08-07T02:38:48.748252 #7] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-07T02:38:49.271463 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T02:38:49.287484 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T02:38:49.802888 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T02:38:49.829241 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T02:38:49.974708 #7] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-07T02:38:50.047447 #7] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-07T02:38:50.323378 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T02:38:50.331379 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T02:38:50.918523 #7] INFO -- : Partitions assigned for `course_change`: 0 +I, [2018-08-07T02:38:50.919396 #7] INFO -- : Partitions assigned for `section_change`: 0 +I, [2018-08-07T02:38:51.325205 #7] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-07T02:38:51.325328 #7] INFO -- : New topics added to target list: section_change +I, [2018-08-07T02:38:51.325413 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T02:38:51.331680 #7] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-07T02:38:51.331813 #7] INFO -- : New topics added to target list: course_change +I, [2018-08-07T02:38:51.331896 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T02:38:51.336259 #7] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-07T02:38:51.350853 #7] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-07T02:39:08.152751 #7] INFO -- : Inline processing of topic course_change with 1 messages took 454.16 ms +I, [2018-08-07T02:39:08.152857 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:39:08.152937 #7] INFO -- : Committing offsets with recommit: course_change/0:1 +I, [2018-08-07T02:39:08.262921 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-08-07T02:39:08.262989 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:39:08.316698 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.24 ms +I, [2018-08-07T02:39:08.316765 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:39:09.897515 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.5 ms +I, [2018-08-07T02:39:09.897601 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:39:10.032728 #7] INFO -- : Committing offsets with recommit: section_change/0:1 +I, [2018-08-07T02:39:10.128575 #7] INFO -- : Inline processing of topic section_change with 1 messages took 10.3 ms +I, [2018-08-07T02:39:10.128669 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:39:10.130287 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T02:39:10.130345 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:39:10.150726 #7] INFO -- : Inline processing of topic section_change with 1 messages took 20.13 ms +I, [2018-08-07T02:39:10.150809 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:39:10.151648 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.56 ms +I, [2018-08-07T02:39:10.151711 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:39:10.160905 #7] INFO -- : Inline processing of topic section_change with 1 messages took 6.83 ms +I, [2018-08-07T02:39:10.161014 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:39:10.179498 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-08-07T02:39:10.179597 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:39:10.185570 #7] INFO -- : Inline processing of topic section_change with 1 messages took 5.59 ms +I, [2018-08-07T02:39:10.185651 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:39:10.186878 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T02:39:10.186942 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:39:10.209382 #7] INFO -- : Inline processing of topic section_change with 1 messages took 15.34 ms +I, [2018-08-07T02:39:10.209495 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:39:10.210061 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T02:39:10.210119 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:39:10.210488 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T02:39:10.210544 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:39:10.215838 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T02:39:10.215903 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:39:10.216317 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T02:39:10.216369 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:39:10.218089 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T02:39:10.218250 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:39:10.218640 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T02:39:10.218687 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:39:10.232561 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T02:39:10.232613 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:39:10.232954 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T02:39:10.232987 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:39:10.239851 #7] INFO -- : Inline processing of topic section_change with 1 messages took 6.65 ms +I, [2018-08-07T02:39:10.239938 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:39:10.240479 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T02:39:10.240531 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:39:10.271512 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.76 ms +I, [2018-08-07T02:39:10.271607 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:39:10.277772 #7] INFO -- : Inline processing of topic section_change with 1 messages took 5.79 ms +I, [2018-08-07T02:39:10.277877 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:39:10.294801 #7] INFO -- : Inline processing of topic section_change with 1 messages took 11.8 ms +I, [2018-08-07T02:39:10.294876 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:39:10.295357 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T02:39:10.295401 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:39:10.804120 #7] INFO -- : Inline processing of topic section_change with 1 messages took 508.51 ms +I, [2018-08-07T02:39:10.804204 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:39:10.816028 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-08-07T02:39:10.816700 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:39:10.842075 #7] INFO -- : Inline processing of topic section_change with 1 messages took 7.28 ms +I, [2018-08-07T02:39:10.842159 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:39:10.812906 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-08-07T02:39:10.862514 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:39:10.935685 #7] INFO -- : Inline processing of topic course_change with 1 messages took 72.74 ms +I, [2018-08-07T02:39:10.935774 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:39:10.968124 #7] INFO -- : Inline processing of topic section_change with 1 messages took 124.57 ms +I, [2018-08-07T02:39:10.968226 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:39:15.222677 #7] INFO -- : Inline processing of topic section_change with 1 messages took 2.39 ms +I, [2018-08-07T02:39:15.223097 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:39:15.224519 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.98 ms +I, [2018-08-07T02:39:15.224589 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:39:15.226053 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.17 ms +I, [2018-08-07T02:39:15.226136 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:39:15.231319 #7] INFO -- : Inline processing of topic section_change with 1 messages took 3.44 ms +I, [2018-08-07T02:39:15.231426 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:39:15.249852 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.59 ms +I, [2018-08-07T02:39:15.250654 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:39:15.251478 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.28 ms +I, [2018-08-07T02:39:15.251578 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:39:15.254351 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.64 ms +I, [2018-08-07T02:39:15.254420 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:39:17.233094 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.98 ms +I, [2018-08-07T02:39:17.233280 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:39:17.234689 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.74 ms +I, [2018-08-07T02:39:17.234807 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:39:17.236187 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.81 ms +I, [2018-08-07T02:39:17.236491 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:39:17.238600 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.48 ms +I, [2018-08-07T02:39:17.238662 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:39:17.254944 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.53 ms +I, [2018-08-07T02:39:17.255005 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:39:17.255858 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.53 ms +I, [2018-08-07T02:39:17.255899 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:39:17.256656 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-08-07T02:39:17.256696 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:39:17.257267 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-08-07T02:39:17.257608 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:39:17.258373 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-08-07T02:39:17.258424 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:39:17.269697 #7] INFO -- : Inline processing of topic section_change with 1 messages took 11.03 ms +I, [2018-08-07T02:39:17.269781 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:39:17.270451 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-08-07T02:39:17.270507 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:39:17.271385 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.53 ms +I, [2018-08-07T02:39:17.273724 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:39:17.274410 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-08-07T02:39:17.274657 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:39:17.275346 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.47 ms +I, [2018-08-07T02:39:17.292303 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:39:17.295592 #7] INFO -- : Inline processing of topic section_change with 1 messages took 2.73 ms +I, [2018-08-07T02:39:17.295955 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:39:17.276197 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.59 ms +I, [2018-08-07T02:39:17.296469 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:39:17.297362 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.43 ms +I, [2018-08-07T02:39:17.298172 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:39:17.311625 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.28 ms +I, [2018-08-07T02:39:17.311675 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:39:17.312089 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-08-07T02:39:17.312270 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:39:17.312839 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.38 ms +I, [2018-08-07T02:39:17.313652 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:39:17.314024 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T02:39:17.314067 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:39:19.261134 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.32 ms +I, [2018-08-07T02:39:19.261211 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:39:19.262432 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T02:39:19.262664 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:39:19.263313 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T02:39:19.263368 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:39:19.266696 #7] INFO -- : Inline processing of topic section_change with 1 messages took 2.91 ms +I, [2018-08-07T02:39:19.274538 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:39:19.275050 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T02:39:19.275105 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:39:19.276017 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.63 ms +I, [2018-08-07T02:39:19.276068 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:39:19.276457 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T02:39:19.276506 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:39:19.282699 #7] INFO -- : Committing offsets: course_change/0:14 +I, [2018-08-07T02:39:19.283433 #7] INFO -- : Inline processing of topic section_change with 1 messages took 6.32 ms +I, [2018-08-07T02:39:19.283496 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:39:19.284813 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.08 ms +I, [2018-08-07T02:39:19.284886 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:39:19.289334 #7] INFO -- : Inline processing of topic section_change with 1 messages took 4.19 ms +I, [2018-08-07T02:39:19.289418 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:39:19.289864 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T02:39:19.290015 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:39:19.296092 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T02:39:19.296156 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:39:19.297975 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T02:39:19.298160 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:39:19.298796 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T02:39:19.298836 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:39:19.299145 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T02:39:19.299455 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:39:19.299781 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T02:39:19.299817 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:39:19.301012 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T02:39:19.301073 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:39:19.306323 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-08-07T02:39:19.306414 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:39:19.307008 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.27 ms +I, [2018-08-07T02:39:19.307061 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:39:19.310094 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-08-07T02:39:19.310175 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:39:19.310615 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-08-07T02:39:19.310664 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:39:19.312003 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.71 ms +I, [2018-08-07T02:39:19.312067 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:39:19.316689 #7] INFO -- : Inline processing of topic course_change with 1 messages took 1.84 ms +I, [2018-08-07T02:39:19.316808 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:39:19.319898 #7] INFO -- : Inline processing of topic course_change with 1 messages took 1.03 ms +I, [2018-08-07T02:39:19.319971 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:39:19.320509 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T02:39:19.320576 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:39:19.321550 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.75 ms +I, [2018-08-07T02:39:19.321615 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:39:19.322232 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.27 ms +I, [2018-08-07T02:39:19.322285 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:39:19.322669 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-08-07T02:39:19.334657 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:39:19.335214 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.27 ms +I, [2018-08-07T02:39:19.335273 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:39:19.338855 #7] INFO -- : Inline processing of topic course_change with 1 messages took 1.23 ms +I, [2018-08-07T02:39:19.338967 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:39:21.302425 #7] INFO -- : Committing offsets: section_change/0:64 +I, [2018-08-07T02:39:21.412169 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.63 ms +I, [2018-08-07T02:39:21.412257 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:39:21.412677 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T02:39:21.412821 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:39:21.424856 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-08-07T02:39:21.424937 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:39:21.425384 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T02:39:21.425439 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:39:21.425840 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T02:39:21.425892 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:39:21.426270 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T02:39:21.426325 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:39:21.426828 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-08-07T02:39:21.426883 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:39:21.427301 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T02:39:21.427349 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:39:21.427763 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T02:39:21.427799 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:39:23.414446 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.31 ms +I, [2018-08-07T02:39:23.415016 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:39:23.415862 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.56 ms +I, [2018-08-07T02:39:23.415907 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:39:23.416254 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-08-07T02:39:23.416309 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:39:23.428523 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T02:39:23.428629 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:39:23.429152 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T02:39:23.429188 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:39:23.429421 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T02:39:23.429451 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:39:23.429665 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T02:39:23.429695 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:39:23.429920 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T02:39:23.429950 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:39:23.430491 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.42 ms +I, [2018-08-07T02:39:23.430532 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:39:23.430822 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T02:39:23.430853 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:39:25.599127 #7] INFO -- : Inline processing of topic course_change with 1 messages took 1.92 ms +I, [2018-08-07T02:39:25.599934 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:39:25.600837 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T02:39:25.600898 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:39:25.625193 #7] INFO -- : Inline processing of topic course_change with 1 messages took 22.62 ms +I, [2018-08-07T02:39:25.629736 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:39:25.672821 #7] INFO -- : Inline processing of topic course_change with 1 messages took 5.98 ms +I, [2018-08-07T02:39:25.673397 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:39:25.673904 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T02:39:25.684115 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:39:25.804452 #7] INFO -- : Inline processing of topic section_change with 1 messages took 126.62 ms +I, [2018-08-07T02:39:25.804599 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:39:25.806321 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.43 ms +I, [2018-08-07T02:39:25.806462 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:39:25.810276 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.4 ms +I, [2018-08-07T02:39:25.810432 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:39:25.820756 #7] INFO -- : Inline processing of topic course_change with 1 messages took 19.92 ms +I, [2018-08-07T02:39:25.820874 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:39:25.821380 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.25 ms +I, [2018-08-07T02:39:25.821432 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:39:25.821835 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-08-07T02:39:25.821889 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:39:25.822372 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T02:39:25.822423 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:39:25.822760 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T02:39:25.822801 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:39:25.823135 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T02:39:25.823186 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:39:25.823539 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T02:39:25.823586 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:39:25.823907 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T02:39:25.823955 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:39:25.824287 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T02:39:25.824335 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:39:25.824678 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T02:39:25.824726 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:39:25.825068 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T02:39:25.825149 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:39:25.825542 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-08-07T02:39:25.825597 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:39:25.826048 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-08-07T02:39:25.826116 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:39:25.826553 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T02:39:25.826619 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:39:25.829826 #7] INFO -- : Inline processing of topic section_change with 1 messages took 19.17 ms +I, [2018-08-07T02:39:25.829933 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:39:25.830432 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T02:39:25.830484 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:39:25.830798 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T02:39:25.830835 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:39:25.831161 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T02:39:25.831201 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:39:25.876036 #7] INFO -- : Inline processing of topic section_change with 1 messages took 44.64 ms +I, [2018-08-07T02:39:25.876103 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:39:25.904645 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.97 ms +I, [2018-08-07T02:39:25.904714 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:39:25.905119 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T02:39:25.905166 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:39:25.905610 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T02:39:25.905693 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:39:25.906024 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T02:39:25.906070 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:39:25.906396 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T02:39:25.906452 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:39:25.906674 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T02:39:25.906709 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:39:25.906939 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T02:39:25.906969 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:39:25.907203 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T02:39:25.907233 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:39:25.907463 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T02:39:25.907503 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:39:25.916336 #7] INFO -- : Inline processing of topic section_change with 1 messages took 8.49 ms +I, [2018-08-07T02:39:25.916439 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:39:25.917132 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T02:39:25.917369 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:39:25.998015 #7] INFO -- : Inline processing of topic section_change with 1 messages took 80.45 ms +I, [2018-08-07T02:39:26.003640 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:39:27.847234 #7] INFO -- : Inline processing of topic course_change with 1 messages took 3.99 ms +I, [2018-08-07T02:39:27.847517 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:39:27.877334 #7] INFO -- : Inline processing of topic course_change with 1 messages took 27.41 ms +I, [2018-08-07T02:39:27.877479 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:39:27.878012 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.24 ms +I, [2018-08-07T02:39:27.878066 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:39:27.878458 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T02:39:27.878505 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:39:27.878796 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T02:39:27.878842 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:39:27.895621 #7] INFO -- : Inline processing of topic course_change with 1 messages took 1.56 ms +I, [2018-08-07T02:39:27.895701 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:39:27.903485 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.83 ms +I, [2018-08-07T02:39:27.912083 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:39:28.009564 #7] INFO -- : Inline processing of topic section_change with 1 messages took 2.39 ms +I, [2018-08-07T02:39:28.009661 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:39:28.010101 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T02:39:28.010150 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:39:28.010789 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.46 ms +I, [2018-08-07T02:39:28.010836 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:39:28.012025 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-08-07T02:39:28.012078 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:39:28.033638 #7] INFO -- : Inline processing of topic section_change with 1 messages took 21.26 ms +I, [2018-08-07T02:39:28.033717 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:39:28.036919 #7] INFO -- : Inline processing of topic section_change with 1 messages took 2.76 ms +I, [2018-08-07T02:39:28.036989 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:39:28.048791 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T02:39:28.048860 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:39:29.917261 #7] INFO -- : Committing offsets: course_change/0:58 +I, [2018-08-07T02:39:29.925227 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.43 ms +I, [2018-08-07T02:39:29.925308 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:39:29.925690 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T02:39:29.925745 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:39:29.926127 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T02:39:29.926172 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:39:29.927211 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.85 ms +I, [2018-08-07T02:39:29.927266 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:39:29.927738 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T02:39:29.927788 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:39:29.928213 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T02:39:29.928255 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:39:29.928526 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-08-07T02:39:29.928579 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:39:30.049842 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-08-07T02:39:30.049914 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:39:30.050308 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T02:39:30.050361 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:39:30.050736 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T02:39:30.050788 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:43:10.416166 #7] INFO -- : New topics added to target list: section_change +I, [2018-08-07T02:43:10.423965 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T02:43:10.463521 #7] INFO -- : New topics added to target list: course_change +I, [2018-08-07T02:43:10.464169 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T02:43:10.521175 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T02:43:10.522047 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T02:43:10.523062 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T02:43:10.523451 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T02:43:15.748595 #7] 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.14:9094 +E, [2018-08-07T02:43:16.126800 #7] 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.14:9094 +I, [2018-08-07T02:43:16.661890 #7] INFO -- : New topics added to target list: course_change +I, [2018-08-07T02:43:16.662278 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T02:43:17.031193 #7] INFO -- : New topics added to target list: section_change +I, [2018-08-07T02:43:17.031317 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T02:43:17.043303 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T02:43:17.900688 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T02:43:17.908499 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T02:43:17.908655 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T02:43:23.013947 #7] 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.14:9094 +E, [2018-08-07T02:43:22.896305 #7] 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.14:9094 +I, [2018-08-07T02:43:23.248553 #7] INFO -- : New topics added to target list: section_change +I, [2018-08-07T02:43:23.252709 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T02:43:23.253702 #7] INFO -- : New topics added to target list: course_change +I, [2018-08-07T02:43:23.254000 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T02:43:23.321906 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T02:43:23.322327 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T02:43:23.323895 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T02:43:23.331780 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T02:43:28.346934 #7] 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.14:9094 +I, [2018-08-07T02:43:28.350338 #7] INFO -- : New topics added to target list: section_change +I, [2018-08-07T02:43:28.350421 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T02:43:28.353874 #7] 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.14:9094 +I, [2018-08-07T02:43:28.358428 #7] INFO -- : New topics added to target list: course_change +I, [2018-08-07T02:43:28.358514 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T02:43:28.422548 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T02:43:28.425554 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T02:43:28.433566 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T02:43:28.433778 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T02:43:33.786539 #7] 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.14:9094 +I, [2018-08-07T02:43:34.275594 #7] INFO -- : New topics added to target list: course_change +I, [2018-08-07T02:43:34.275930 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T02:43:34.292232 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T02:43:34.292401 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T02:43:34.314032 #7] 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.14:9094 +I, [2018-08-07T02:43:34.371829 #7] INFO -- : New topics added to target list: section_change +I, [2018-08-07T02:43:34.371966 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T02:43:34.668488 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T02:43:34.668876 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T02:43:39.296179 #7] 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.14:9094 +I, [2018-08-07T02:43:39.332609 #7] INFO -- : New topics added to target list: course_change +I, [2018-08-07T02:43:39.332807 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T02:43:39.368837 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T02:43:39.369142 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T02:43:39.670088 #7] 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.14:9094 +I, [2018-08-07T02:43:39.733291 #7] INFO -- : New topics added to target list: section_change +I, [2018-08-07T02:43:39.733470 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T02:43:39.739296 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T02:43:39.739749 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T02:43:44.369977 #7] 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.14:9094 +I, [2018-08-07T02:43:44.372643 #7] INFO -- : New topics added to target list: course_change +I, [2018-08-07T02:43:44.372709 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T02:43:44.741579 #7] 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.14:9094 +I, [2018-08-07T02:43:44.744245 #7] INFO -- : New topics added to target list: section_change +I, [2018-08-07T02:43:44.745429 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T02:43:53.947972 #7] ERROR -- : No brokers in cluster +E, [2018-08-07T02:43:55.308815 #7] ERROR -- : No brokers in cluster +E, [2018-08-07T02:43:58.962792 #7] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: + +I, [2018-08-07T02:43:59.029845 #7] INFO -- : New topics added to target list: section_change +I, [2018-08-07T02:43:59.030191 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T02:44:00.310611 #7] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: + +I, [2018-08-07T02:44:00.351262 #7] INFO -- : New topics added to target list: course_change +I, [2018-08-07T02:44:00.351363 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T02:44:00.352204 #7] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-07T02:44:00.354834 #7] INFO -- : Joining group `notifications_notifications` +I, [2018-08-07T02:44:00.660116 #7] INFO -- : Will fetch at most 1048576 bytes at a time per partition from section_change +I, [2018-08-07T02:44:00.660646 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T02:44:00.791375 #7] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-07T02:44:00.791965 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T02:44:01.146840 #7] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-07T02:44:01.147095 #7] INFO -- : Joining group `notifications_course_change` +I, [2018-08-07T02:44:01.204528 #7] INFO -- : Will fetch at most 1048576 bytes at a time per partition from course_change +I, [2018-08-07T02:44:01.238720 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T02:44:01.256465 #7] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-07T02:44:01.258296 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T02:44:01.792904 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T02:44:02.259825 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T02:44:02.794448 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T02:44:03.304731 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T02:44:03.794875 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T02:44:04.305487 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T02:44:04.797453 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T02:44:05.306101 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T02:44:05.800105 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T02:44:06.306481 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T02:44:06.810470 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T02:44:07.308168 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T02:44:07.819035 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T02:44:08.408763 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T02:44:08.821947 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T02:44:09.411690 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T02:44:09.517973 #7] INFO -- : Joined group `notifications_notifications` with member id `notifications-eac07fee-ec92-4a31-9a79-2ed9f77e78ee` +I, [2018-08-07T02:44:09.518079 #7] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-07T02:44:09.533506 #7] INFO -- : Joined group `notifications_course_change` with member id `notifications-0cb851f4-10c9-4e20-b2d3-2bbe83fbbc81` +I, [2018-08-07T02:44:09.533576 #7] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-07T02:44:09.865473 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T02:44:10.416906 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T02:44:10.554418 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T02:44:10.569272 #7] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-07T02:44:10.585482 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T02:44:10.606069 #7] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-07T02:44:10.683305 #7] INFO -- : Partitions assigned for `section_change`: 0 +I, [2018-08-07T02:44:10.705974 #7] INFO -- : Partitions assigned for `course_change`: 0 +I, [2018-08-07T02:44:10.865994 #7] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-07T02:44:10.866232 #7] INFO -- : New topics added to target list: section_change +I, [2018-08-07T02:44:10.866287 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T02:44:10.886037 #7] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-07T02:44:11.417818 #7] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-07T02:44:11.418063 #7] INFO -- : New topics added to target list: course_change +I, [2018-08-07T02:44:11.418100 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T02:44:11.427644 #7] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-07T02:44:14.988687 #7] INFO -- : Inline processing of topic course_change with 1 messages took 104.81 ms +I, [2018-08-07T02:44:14.992553 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:44:14.992679 #7] INFO -- : Committing offsets with recommit: course_change/0:1 +I, [2018-08-07T02:44:14.998368 #7] INFO -- : Inline processing of topic section_change with 1 messages took 174.14 ms +I, [2018-08-07T02:44:14.998525 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:44:14.998805 #7] INFO -- : Committing offsets with recommit: section_change/0:1 +I, [2018-08-07T02:44:15.040284 #7] INFO -- : Inline processing of topic course_change with 1 messages took 1.79 ms +I, [2018-08-07T02:44:15.040504 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:44:15.042348 #7] INFO -- : Inline processing of topic course_change with 1 messages took 1.01 ms +I, [2018-08-07T02:44:15.042474 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:44:15.153442 #7] INFO -- : Inline processing of topic section_change with 1 messages took 63.06 ms +I, [2018-08-07T02:44:15.153523 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:44:15.154853 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.01 ms +I, [2018-08-07T02:44:15.154925 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:44:15.165054 #7] INFO -- : Inline processing of topic section_change with 1 messages took 9.64 ms +I, [2018-08-07T02:44:15.165116 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:44:15.167180 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.73 ms +I, [2018-08-07T02:44:15.168776 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:44:15.171507 #7] INFO -- : Inline processing of topic section_change with 1 messages took 2.42 ms +I, [2018-08-07T02:44:15.171925 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:44:15.173811 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.2 ms +I, [2018-08-07T02:44:15.173927 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:56:57.121152 #7] INFO -- : New topics added to target list: section_change +I, [2018-08-07T02:56:57.121909 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T02:56:57.143372 #7] INFO -- : New topics added to target list: course_change +I, [2018-08-07T02:56:57.143523 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T02:56:57.152395 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +E, [2018-08-07T02:56:57.152847 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +E, [2018-08-07T02:56:57.155757 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +E, [2018-08-07T02:56:57.156171 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +E, [2018-08-07T02:57:02.154003 #7] 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-08-07T02:57:02.157040 #7] INFO -- : New topics added to target list: section_change +I, [2018-08-07T02:57:02.157134 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T02:57:02.157866 #7] 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-08-07T02:57:02.164358 #7] INFO -- : New topics added to target list: course_change +I, [2018-08-07T02:57:02.165695 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T02:57:02.177656 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +E, [2018-08-07T02:57:02.177816 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +E, [2018-08-07T02:57:02.185931 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +E, [2018-08-07T02:57:02.186269 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +E, [2018-08-07T02:57:07.179686 #7] 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-08-07T02:57:07.183859 #7] INFO -- : New topics added to target list: course_change +I, [2018-08-07T02:57:07.183956 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T02:57:07.194814 #7] 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-08-07T02:57:07.196994 #7] INFO -- : New topics added to target list: section_change +I, [2018-08-07T02:57:07.197059 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T02:57:07.207646 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +E, [2018-08-07T02:57:07.207882 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +E, [2018-08-07T02:57:07.209678 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +E, [2018-08-07T02:57:07.209815 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +E, [2018-08-07T02:57:13.284054 #7] 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-08-07T02:57:13.328133 #7] INFO -- : New topics added to target list: course_change +I, [2018-08-07T02:57:13.329613 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T02:57:14.213477 #7] 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-08-07T02:57:14.257169 #7] INFO -- : New topics added to target list: section_change +I, [2018-08-07T02:57:14.257447 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T02:57:14.268559 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +E, [2018-08-07T02:57:14.273863 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +E, [2018-08-07T02:57:14.325591 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +E, [2018-08-07T02:57:14.326510 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +E, [2018-08-07T02:57:19.328832 #7] 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 +E, [2018-08-07T02:57:19.261865 #7] 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-08-07T02:57:20.243275 #7] INFO -- : New topics added to target list: section_change +I, [2018-08-07T02:57:20.243456 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T02:57:20.249498 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +E, [2018-08-07T02:57:20.250820 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +I, [2018-08-07T02:57:20.255314 #7] INFO -- : New topics added to target list: course_change +I, [2018-08-07T02:57:20.255403 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T02:57:20.263254 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +E, [2018-08-07T02:57:20.264729 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +E, [2018-08-07T02:57:29.485052 #7] 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 +E, [2018-08-07T02:57:29.812136 #7] 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-08-07T02:57:32.188580 #7] INFO -- : New topics added to target list: section_change +I, [2018-08-07T02:57:32.188843 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T02:57:32.205855 #7] INFO -- : New topics added to target list: course_change +I, [2018-08-07T02:57:32.223816 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T02:57:32.296459 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +E, [2018-08-07T02:57:32.312857 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +E, [2018-08-07T02:57:32.324054 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +E, [2018-08-07T02:57:32.325094 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +E, [2018-08-07T02:57:37.314373 #7] 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-08-07T02:57:37.325154 #7] INFO -- : New topics added to target list: section_change +I, [2018-08-07T02:57:37.325361 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T02:57:37.328518 #7] 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-08-07T02:57:37.332726 #7] INFO -- : New topics added to target list: course_change +E, [2018-08-07T02:57:37.334631 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +E, [2018-08-07T02:57:37.348254 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +I, [2018-08-07T02:57:37.348810 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T02:57:37.350297 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +E, [2018-08-07T02:57:37.350392 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +E, [2018-08-07T02:57:43.249642 #7] 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-08-07T02:57:43.267876 #7] INFO -- : New topics added to target list: course_change +I, [2018-08-07T02:57:43.268063 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T02:57:43.268576 #7] 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-08-07T02:57:43.282832 #7] INFO -- : New topics added to target list: section_change +I, [2018-08-07T02:57:43.282918 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T02:57:43.352464 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +E, [2018-08-07T02:57:43.352719 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +E, [2018-08-07T02:57:43.384203 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +E, [2018-08-07T02:57:43.384591 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +E, [2018-08-07T02:57:48.355961 #7] 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-08-07T02:57:48.425266 #7] INFO -- : New topics added to target list: section_change +I, [2018-08-07T02:57:48.425589 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T02:57:48.476446 #7] 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-08-07T02:57:48.478537 #7] INFO -- : New topics added to target list: course_change +I, [2018-08-07T02:57:48.478616 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T02:57:53.390761 #7] ERROR -- : No brokers in cluster +E, [2018-08-07T02:57:53.392568 #7] ERROR -- : No brokers in cluster +E, [2018-08-07T02:57:58.399490 #7] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: + +I, [2018-08-07T02:57:58.437278 #7] INFO -- : New topics added to target list: section_change +I, [2018-08-07T02:57:58.437593 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T02:57:58.437934 #7] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: + +I, [2018-08-07T02:57:58.443887 #7] INFO -- : New topics added to target list: course_change +I, [2018-08-07T02:57:58.443971 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T02:57:58.883668 #7] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-07T02:57:58.887526 #7] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-07T02:57:58.888563 #7] INFO -- : Joining group `notifications_course_change` +I, [2018-08-07T02:57:58.890918 #7] INFO -- : Will fetch at most 1048576 bytes at a time per partition from section_change +I, [2018-08-07T02:57:58.909164 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T02:57:58.909372 #7] INFO -- : Will fetch at most 1048576 bytes at a time per partition from course_change +I, [2018-08-07T02:57:58.909551 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T02:57:58.920856 #7] INFO -- : Joining group `notifications_notifications` +I, [2018-08-07T02:57:59.016801 #7] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-07T02:57:59.017092 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T02:57:59.017905 #7] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-07T02:57:59.018003 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T02:58:00.340067 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T02:58:00.436013 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T02:58:01.388200 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T02:58:01.440416 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T02:58:02.434791 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T02:58:02.482345 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T02:58:03.441277 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T02:58:03.519547 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T02:58:04.446759 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T02:58:04.520064 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T02:58:05.756742 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T02:58:05.782070 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T02:58:07.080961 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T02:58:07.391297 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T02:58:08.199162 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T02:58:08.796982 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T02:58:09.215120 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T02:58:09.807668 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T02:58:10.262606 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T02:58:10.812102 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T02:58:11.263297 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T02:58:11.861884 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T02:58:12.545468 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T02:58:12.939640 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T02:58:13.548900 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T02:58:13.946770 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T02:58:14.549387 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T02:58:14.953722 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T02:58:15.550436 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T02:58:15.958064 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T02:58:16.552370 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T02:58:16.958946 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T02:58:17.553333 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T02:58:17.961520 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T02:58:18.519853 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T02:58:18.930406 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T02:58:19.525164 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T02:58:19.932873 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T02:58:20.815448 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T02:58:21.025110 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T02:58:21.816061 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T02:58:22.034872 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T02:58:22.837289 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T02:58:23.051101 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T02:58:24.174381 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T02:58:24.656200 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T02:58:24.843206 #7] INFO -- : Joined group `notifications_notifications` with member id `notifications-95a4e7c0-d1a1-446a-b072-aa3fff8e6365` +I, [2018-08-07T02:58:24.843424 #7] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-07T02:58:24.853344 #7] INFO -- : Joined group `notifications_course_change` with member id `notifications-ae42bd87-4f0e-4df7-8c46-749de7724b2d` +I, [2018-08-07T02:58:25.168465 #7] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-07T02:58:25.248544 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T02:58:25.658063 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T02:58:26.171700 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T02:58:26.173558 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T02:58:26.252250 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T02:58:26.404864 #7] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-07T02:58:26.432134 #7] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-07T02:58:26.918246 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T02:58:27.370286 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T02:58:28.356515 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T02:58:28.370858 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T02:58:29.836394 #7] INFO -- : Partitions assigned for `section_change`: 0 +I, [2018-08-07T02:58:29.864392 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T02:58:29.975762 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T02:58:30.062548 #7] INFO -- : Partitions assigned for `course_change`: 0 +I, [2018-08-07T02:58:30.973856 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T02:58:30.998348 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T02:58:31.977240 #7] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-07T02:58:31.977759 #7] INFO -- : New topics added to target list: course_change +I, [2018-08-07T02:58:31.977965 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T02:58:32.001086 #7] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-07T02:58:32.001249 #7] INFO -- : New topics added to target list: section_change +I, [2018-08-07T02:58:32.255945 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T02:58:34.573839 #7] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-07T02:58:34.585682 #7] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-07T02:58:50.237591 #7] INFO -- : Inline processing of topic course_change with 1 messages took 116.53 ms +I, [2018-08-07T02:58:50.238344 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:58:50.238569 #7] INFO -- : Committing offsets with recommit: course_change/0:1 +I, [2018-08-07T02:58:51.009818 #7] INFO -- : Inline processing of topic section_change with 1 messages took 3.87 ms +I, [2018-08-07T02:58:51.010106 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:58:51.010150 #7] INFO -- : Committing offsets with recommit: section_change/0:1 +I, [2018-08-07T02:58:51.024493 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.85 ms +I, [2018-08-07T02:58:51.024547 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:58:51.025840 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.01 ms +I, [2018-08-07T02:58:51.026145 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:58:51.027651 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.3 ms +I, [2018-08-07T02:58:51.027718 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:58:51.030911 #7] INFO -- : Inline processing of topic section_change with 1 messages took 2.94 ms +I, [2018-08-07T02:58:51.030994 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:58:51.031982 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T02:58:51.032047 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:58:51.032879 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-08-07T02:58:51.032937 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:58:52.261278 #7] INFO -- : Inline processing of topic course_change with 1 messages took 1.04 ms +I, [2018-08-07T02:58:52.261338 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:58:52.262470 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T02:58:52.262542 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:58:53.197552 #7] INFO -- : Inline processing of topic section_change with 1 messages took 5.57 ms +I, [2018-08-07T02:58:53.197682 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:58:53.224486 #7] INFO -- : Inline processing of topic section_change with 1 messages took 2.13 ms +I, [2018-08-07T02:58:53.224606 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:58:53.235269 #7] INFO -- : Inline processing of topic section_change with 1 messages took 10.38 ms +I, [2018-08-07T02:58:53.235849 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:58:53.253825 #7] INFO -- : Inline processing of topic section_change with 1 messages took 17.57 ms +I, [2018-08-07T02:58:53.254740 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:58:53.255193 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T02:58:53.255230 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:58:53.262164 #7] INFO -- : Inline processing of topic section_change with 1 messages took 5.85 ms +I, [2018-08-07T02:58:53.262275 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:58:53.263189 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-08-07T02:58:53.263316 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:58:53.276012 #7] INFO -- : Inline processing of topic section_change with 1 messages took 12.14 ms +I, [2018-08-07T02:58:53.277535 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:58:53.277912 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T02:58:53.280476 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:58:53.280998 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T02:58:53.281052 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:58:53.287393 #7] INFO -- : Inline processing of topic section_change with 1 messages took 4.18 ms +I, [2018-08-07T02:58:53.288297 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:58:53.293050 #7] INFO -- : Inline processing of topic section_change with 1 messages took 4.35 ms +I, [2018-08-07T02:58:53.293245 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:58:53.295032 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.42 ms +I, [2018-08-07T02:58:53.295113 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:58:53.295691 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-08-07T02:58:53.295744 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:58:53.302008 #7] INFO -- : Inline processing of topic section_change with 1 messages took 6.04 ms +I, [2018-08-07T02:58:53.302063 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:58:53.302449 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T02:58:53.302484 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:58:53.305285 #7] INFO -- : Inline processing of topic section_change with 1 messages took 2.67 ms +I, [2018-08-07T02:58:53.305332 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:58:53.306512 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.91 ms +I, [2018-08-07T02:58:53.306557 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:58:54.282435 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.32 ms +I, [2018-08-07T02:58:54.282572 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:58:54.292369 #7] INFO -- : Inline processing of topic course_change with 1 messages took 9.5 ms +I, [2018-08-07T02:58:54.292735 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:58:54.295412 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.31 ms +I, [2018-08-07T02:58:54.295535 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:58:54.297150 #7] INFO -- : Inline processing of topic course_change with 1 messages took 1.32 ms +I, [2018-08-07T02:58:54.297225 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:58:55.309505 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.4 ms +I, [2018-08-07T02:58:55.309596 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:58:55.311872 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.52 ms +I, [2018-08-07T02:58:55.311942 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:58:55.312942 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-08-07T02:58:55.313597 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:58:55.314685 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.83 ms +I, [2018-08-07T02:58:55.314808 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:58:55.326401 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.71 ms +I, [2018-08-07T02:58:55.326463 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:58:55.327004 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T02:58:55.327056 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:58:55.327377 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T02:58:55.327411 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:58:55.327818 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T02:58:55.327855 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:58:55.328251 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T02:58:55.328295 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:58:55.328596 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T02:58:55.328629 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:58:55.329058 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T02:58:55.329095 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:58:55.329706 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.43 ms +I, [2018-08-07T02:58:55.329761 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:58:55.338254 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T02:58:55.338323 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:58:55.338717 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T02:58:55.338809 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:58:55.346754 #7] INFO -- : Inline processing of topic section_change with 1 messages took 7.71 ms +I, [2018-08-07T02:58:55.346839 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:58:56.298172 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.27 ms +I, [2018-08-07T02:58:56.298243 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:58:56.298624 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T02:58:56.298676 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:58:56.299272 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.3 ms +I, [2018-08-07T02:58:56.299355 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:58:56.299629 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T02:58:56.299660 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:58:56.301110 #7] INFO -- : Inline processing of topic course_change with 1 messages took 1.3 ms +I, [2018-08-07T02:58:56.301310 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:58:56.301695 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T02:58:56.301730 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:58:56.301998 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T02:58:56.302032 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:58:56.303753 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T02:58:56.303795 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:58:56.304283 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T02:58:56.304319 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:58:57.349446 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-08-07T02:58:57.349536 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:58:57.350010 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T02:58:57.350065 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:58:57.350497 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T02:58:57.350551 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:58:57.350990 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T02:58:57.351049 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:58:57.351491 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T02:58:57.351549 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:58:57.363322 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T02:58:57.363419 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:58:57.364789 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T02:58:57.395987 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:58:57.396712 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-08-07T02:58:57.396779 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:58:57.397299 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T02:58:57.397352 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:58:57.397802 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T02:58:57.397854 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:58:57.398383 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T02:58:57.398444 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:58:57.398882 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T02:58:57.398936 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:58:57.406720 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-08-07T02:58:57.406791 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:58:57.407787 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.4 ms +I, [2018-08-07T02:58:57.407854 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:58:57.408257 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T02:58:57.408321 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:58:57.408730 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T02:58:57.408776 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:58:58.305714 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.43 ms +I, [2018-08-07T02:58:58.305786 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:58:58.306198 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-08-07T02:58:58.306866 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:58:58.307454 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.23 ms +I, [2018-08-07T02:58:58.307553 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:58:58.313369 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.3 ms +I, [2018-08-07T02:58:58.313486 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:58:58.314997 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.26 ms +I, [2018-08-07T02:58:58.317435 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:58:58.317867 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-08-07T02:58:58.317991 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:58:58.318403 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T02:58:58.318456 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:58:58.318813 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T02:58:58.318862 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:58:58.327088 #7] INFO -- : Inline processing of topic course_change with 1 messages took 7.98 ms +I, [2018-08-07T02:58:58.327215 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:58:58.327639 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T02:58:58.327753 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:58:58.329569 #7] INFO -- : Inline processing of topic course_change with 1 messages took 1.47 ms +I, [2018-08-07T02:58:58.329752 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:58:59.409820 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T02:58:59.409874 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:58:59.410211 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T02:58:59.410245 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:58:59.410492 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T02:58:59.410524 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:58:59.410776 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T02:58:59.410808 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:58:59.411077 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T02:58:59.411109 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:58:59.411346 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T02:58:59.411378 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:58:59.411622 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T02:58:59.411654 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:58:59.411946 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T02:58:59.413886 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:58:59.414264 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T02:58:59.414299 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:58:59.414594 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T02:58:59.414627 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:58:59.414873 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T02:58:59.414905 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:58:59.415163 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T02:58:59.415195 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:58:59.417257 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T02:58:59.417586 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:58:59.419121 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T02:58:59.419181 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:58:59.419485 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T02:58:59.419538 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:59:00.330173 #7] INFO -- : Committing offsets: course_change/0:27 +I, [2018-08-07T02:59:00.344816 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.33 ms +I, [2018-08-07T02:59:00.345195 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:59:00.349219 #7] INFO -- : Inline processing of topic course_change with 1 messages took 3.24 ms +I, [2018-08-07T02:59:00.349311 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:59:00.350247 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.66 ms +I, [2018-08-07T02:59:00.350325 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:59:00.351839 #7] INFO -- : Inline processing of topic course_change with 1 messages took 1.24 ms +I, [2018-08-07T02:59:00.351911 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:59:00.355479 #7] INFO -- : Inline processing of topic course_change with 1 messages took 3.29 ms +I, [2018-08-07T02:59:00.355564 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:59:01.420431 #7] INFO -- : Committing offsets: section_change/0:71 +I, [2018-08-07T02:59:02.167068 #7] INFO -- : Inline processing of topic section_change with 1 messages took 4.36 ms +I, [2018-08-07T02:59:02.167143 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:59:02.167569 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T02:59:02.167651 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:59:02.171610 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-08-07T02:59:02.171962 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:59:02.173092 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.55 ms +I, [2018-08-07T02:59:02.173157 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:59:02.174096 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.43 ms +I, [2018-08-07T02:59:02.174165 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:59:02.174517 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T02:59:02.174569 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:59:02.174891 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T02:59:02.174939 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:59:02.175254 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T02:59:02.175295 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:59:02.363928 #7] INFO -- : Inline processing of topic course_change with 1 messages took 1.78 ms +I, [2018-08-07T02:59:02.364012 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:59:04.268155 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.55 ms +I, [2018-08-07T02:59:04.268313 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:59:04.269041 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.48 ms +I, [2018-08-07T02:59:04.269141 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:59:04.667072 #7] INFO -- : Inline processing of topic course_change with 1 messages took 1.22 ms +I, [2018-08-07T02:59:04.668190 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:59:04.688495 #7] INFO -- : Inline processing of topic course_change with 1 messages took 1.6 ms +I, [2018-08-07T02:59:04.688611 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:59:06.319170 #7] INFO -- : Inline processing of topic section_change with 1 messages took 35.51 ms +I, [2018-08-07T02:59:06.319266 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:59:06.319976 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-08-07T02:59:06.326410 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:59:06.326902 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T02:59:06.326970 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:59:06.334991 #7] INFO -- : Inline processing of topic section_change with 1 messages took 7.6 ms +I, [2018-08-07T02:59:06.335064 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:59:06.335492 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T02:59:06.335575 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:59:06.335953 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T02:59:06.336000 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:59:06.690730 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.86 ms +I, [2018-08-07T02:59:06.691646 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:59:06.692833 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.39 ms +I, [2018-08-07T02:59:06.693076 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:59:06.694149 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-08-07T02:59:06.694229 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:59:06.704187 #7] INFO -- : Inline processing of topic course_change with 1 messages took 9.7 ms +I, [2018-08-07T02:59:06.704265 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:59:06.704686 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T02:59:06.782311 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:59:06.832288 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.43 ms +I, [2018-08-07T02:59:06.832356 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:59:06.832779 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.25 ms +I, [2018-08-07T02:59:06.832827 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:59:08.467866 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.44 ms +I, [2018-08-07T02:59:08.468240 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:59:08.469177 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.54 ms +I, [2018-08-07T02:59:08.469229 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:59:08.470069 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.49 ms +I, [2018-08-07T02:59:08.470267 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:59:08.470751 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T02:59:08.470805 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:59:08.471401 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T02:59:08.471612 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:59:08.472112 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T02:59:08.472216 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:59:08.472951 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.46 ms +I, [2018-08-07T02:59:08.473069 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:59:08.473591 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-08-07T02:59:08.473726 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:59:11.265906 #7] INFO -- : Committing offsets: course_change/0:42 +I, [2018-08-07T02:59:12.070407 #7] INFO -- : Inline processing of topic course_change with 1 messages took 56.72 ms +I, [2018-08-07T02:59:12.104618 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:59:12.107896 #7] INFO -- : Inline processing of topic course_change with 1 messages took 2.61 ms +I, [2018-08-07T02:59:12.108393 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:59:12.112346 #7] INFO -- : Inline processing of topic course_change with 1 messages took 2.49 ms +I, [2018-08-07T02:59:12.112446 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:59:12.115400 #7] INFO -- : Inline processing of topic course_change with 1 messages took 1.46 ms +I, [2018-08-07T02:59:12.115566 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:59:12.117124 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.95 ms +I, [2018-08-07T02:59:12.117200 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:59:12.118555 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.57 ms +I, [2018-08-07T02:59:12.118650 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:59:12.119730 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.59 ms +I, [2018-08-07T02:59:12.119952 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:59:13.315417 #7] INFO -- : Committing offsets: section_change/0:95 +I, [2018-08-07T02:59:13.411745 #7] INFO -- : Inline processing of topic section_change with 1 messages took 38.33 ms +I, [2018-08-07T02:59:13.411843 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:59:13.420660 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.69 ms +I, [2018-08-07T02:59:13.420777 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:59:14.121839 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.61 ms +I, [2018-08-07T02:59:14.121905 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:59:14.122882 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.35 ms +I, [2018-08-07T02:59:14.123376 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:59:14.124329 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.57 ms +I, [2018-08-07T02:59:14.124477 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:59:15.467442 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.45 ms +I, [2018-08-07T02:59:15.467535 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:59:15.468048 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-08-07T02:59:15.468259 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:59:15.468936 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-08-07T02:59:15.468991 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:59:16.137950 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.59 ms +I, [2018-08-07T02:59:16.138051 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:59:16.138780 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.24 ms +I, [2018-08-07T02:59:16.138880 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:59:16.139447 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.43 ms +I, [2018-08-07T02:59:16.139484 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:59:16.139931 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.24 ms +I, [2018-08-07T02:59:16.140044 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:59:16.140330 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T02:59:16.140361 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:59:17.530593 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.4 ms +I, [2018-08-07T02:59:17.530715 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:59:17.531329 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T02:59:17.531533 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:59:17.532384 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.64 ms +I, [2018-08-07T02:59:17.532433 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:59:17.532902 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T02:59:17.532938 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:59:17.533387 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T02:59:17.533434 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:59:17.533977 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-08-07T02:59:17.849256 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:59:17.868767 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.61 ms +I, [2018-08-07T02:59:17.868837 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:59:18.256513 #7] INFO -- : Inline processing of topic course_change with 1 messages took 114.02 ms +I, [2018-08-07T02:59:18.256729 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:59:18.261894 #7] INFO -- : Inline processing of topic course_change with 1 messages took 4.81 ms +I, [2018-08-07T02:59:18.261986 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:59:18.262756 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-08-07T02:59:18.263234 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:59:18.263761 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.33 ms +I, [2018-08-07T02:59:18.263913 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:59:19.885729 #7] INFO -- : Inline processing of topic section_change with 1 messages took 4.7 ms +I, [2018-08-07T02:59:19.885808 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:59:20.038975 #7] INFO -- : Inline processing of topic section_change with 1 messages took 3.57 ms +I, [2018-08-07T02:59:20.039083 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:59:20.039724 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-08-07T02:59:20.039803 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:59:20.237704 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.57 ms +I, [2018-08-07T02:59:20.237808 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:59:20.238876 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.6 ms +I, [2018-08-07T02:59:20.238948 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:59:20.240466 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.49 ms +I, [2018-08-07T02:59:20.240535 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:59:22.048902 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.62 ms +I, [2018-08-07T02:59:22.050304 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:59:22.056487 #7] INFO -- : Inline processing of topic section_change with 1 messages took 5.12 ms +I, [2018-08-07T02:59:22.056561 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:59:22.068449 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-08-07T02:59:22.068645 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:59:22.069478 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T02:59:22.069542 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:59:22.070517 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-08-07T02:59:22.070572 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:59:22.071043 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-08-07T02:59:22.071085 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:59:22.071531 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T02:59:22.071761 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:59:22.072130 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T02:59:22.072166 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:59:22.076088 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T02:59:22.076163 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:59:22.076772 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T02:59:22.076847 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:59:22.248357 #7] INFO -- : Committing offsets: course_change/0:64 +I, [2018-08-07T02:59:22.529395 #7] INFO -- : Inline processing of topic course_change with 1 messages took 19.21 ms +I, [2018-08-07T02:59:22.529538 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:59:23.822096 #7] INFO -- : Inline processing of topic course_change with 1 messages took 1292.13 ms +I, [2018-08-07T02:59:23.822180 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:59:23.824852 #7] INFO -- : Inline processing of topic course_change with 1 messages took 1.84 ms +I, [2018-08-07T02:59:23.824926 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:59:23.825661 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.39 ms +I, [2018-08-07T02:59:23.825728 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:59:23.828096 #7] INFO -- : Inline processing of topic course_change with 1 messages took 2.12 ms +I, [2018-08-07T02:59:23.828169 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:59:23.892097 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.43 ms +I, [2018-08-07T02:59:23.892167 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:59:23.892984 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.36 ms +I, [2018-08-07T02:59:23.893063 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:59:23.897521 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.62 ms +I, [2018-08-07T02:59:23.897676 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:59:24.079356 #7] INFO -- : Committing offsets: section_change/0:120 +I, [2018-08-07T02:59:24.377175 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.43 ms +I, [2018-08-07T02:59:24.377249 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:59:24.378783 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-08-07T02:59:24.378832 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:59:24.379238 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T02:59:24.379398 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:59:25.932993 #7] INFO -- : Inline processing of topic course_change with 1 messages took 16.41 ms +I, [2018-08-07T02:59:25.935028 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:59:25.936218 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.31 ms +I, [2018-08-07T02:59:25.936633 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:59:25.937092 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.27 ms +I, [2018-08-07T02:59:25.937134 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:59:25.955725 #7] INFO -- : Inline processing of topic course_change with 1 messages took 18.38 ms +I, [2018-08-07T02:59:26.049419 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:59:26.050022 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.3 ms +I, [2018-08-07T02:59:26.050131 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:59:26.485109 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-08-07T02:59:26.485160 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:59:26.486167 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.66 ms +I, [2018-08-07T02:59:26.486249 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:59:26.486716 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T02:59:26.486770 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:59:26.487827 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.76 ms +I, [2018-08-07T02:59:26.487936 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:59:26.491214 #7] INFO -- : Inline processing of topic section_change with 1 messages took 2.61 ms +I, [2018-08-07T02:59:26.491366 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:59:26.505149 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.94 ms +I, [2018-08-07T02:59:26.510648 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:59:26.511200 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T02:59:26.511264 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:59:28.063648 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-08-07T02:59:28.063702 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:59:28.064951 #7] INFO -- : Inline processing of topic course_change with 1 messages took 1.1 ms +I, [2018-08-07T02:59:28.064996 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:59:28.065265 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T02:59:28.065295 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:59:28.066225 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.81 ms +I, [2018-08-07T02:59:28.066263 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:59:28.066479 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-08-07T02:59:28.066510 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:59:28.511942 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T02:59:28.511993 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:59:28.512683 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T02:59:28.512716 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:59:28.512920 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T02:59:28.512951 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:59:28.513725 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T02:59:28.513759 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:59:28.514812 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.85 ms +I, [2018-08-07T02:59:28.514872 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:59:28.515183 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T02:59:28.515226 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:59:28.521929 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.84 ms +I, [2018-08-07T02:59:28.521973 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:59:28.523584 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.44 ms +I, [2018-08-07T02:59:28.523641 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:59:28.523964 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T02:59:28.524007 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:59:28.524990 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.81 ms +I, [2018-08-07T02:59:28.525024 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:59:28.550360 #7] INFO -- : Inline processing of topic section_change with 1 messages took 25.17 ms +I, [2018-08-07T02:59:28.550428 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:59:28.557169 #7] INFO -- : Inline processing of topic section_change with 1 messages took 6.46 ms +I, [2018-08-07T02:59:28.557434 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:59:28.558092 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T02:59:28.558145 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:59:28.558610 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T02:59:28.558660 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:59:28.562979 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T02:59:28.563025 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:59:28.563342 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T02:59:28.563375 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:59:28.563609 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T02:59:28.563639 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:59:28.563918 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T02:59:28.563953 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:59:30.068496 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.24 ms +I, [2018-08-07T02:59:30.068570 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:59:30.069131 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.25 ms +I, [2018-08-07T02:59:30.069216 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:59:30.069770 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.26 ms +I, [2018-08-07T02:59:30.069825 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:59:30.070430 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.29 ms +I, [2018-08-07T02:59:30.070677 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:59:30.071200 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.24 ms +I, [2018-08-07T02:59:30.071250 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:59:30.073951 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T02:59:30.073993 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:59:30.074324 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T02:59:30.074376 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:59:30.076189 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.41 ms +I, [2018-08-07T02:59:30.076248 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:59:30.076713 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.27 ms +I, [2018-08-07T02:59:30.077127 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:59:30.077548 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T02:59:30.077585 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:59:32.977152 #7] INFO -- : Inline processing of topic section_change with 1 messages took 8.97 ms +I, [2018-08-07T02:59:33.007484 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:59:33.009519 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.28 ms +I, [2018-08-07T02:59:33.009582 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:59:33.017501 #7] INFO -- : Inline processing of topic section_change with 1 messages took 7.59 ms +I, [2018-08-07T02:59:33.017609 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:59:33.032501 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.58 ms +I, [2018-08-07T02:59:33.032733 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:59:33.071807 #7] INFO -- : Inline processing of topic course_change with 1 messages took 224.89 ms +I, [2018-08-07T02:59:33.072018 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:59:33.072159 #7] INFO -- : Committing offsets: course_change/0:93 +I, [2018-08-07T02:59:33.073193 #7] INFO -- : Inline processing of topic section_change with 1 messages took 40.12 ms +I, [2018-08-07T02:59:33.073248 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:59:33.077189 #7] INFO -- : Inline processing of topic section_change with 1 messages took 3.46 ms +I, [2018-08-07T02:59:33.077318 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:59:33.078554 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.62 ms +I, [2018-08-07T02:59:33.078750 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:59:33.132755 #7] INFO -- : Inline processing of topic section_change with 1 messages took 53.47 ms +I, [2018-08-07T02:59:33.136982 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:59:33.351500 #7] INFO -- : Inline processing of topic section_change with 1 messages took 28.56 ms +I, [2018-08-07T02:59:33.351614 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:59:33.358998 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.59 ms +I, [2018-08-07T02:59:33.359654 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:59:35.390147 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.7 ms +I, [2018-08-07T02:59:35.390486 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:59:35.391510 #7] INFO -- : Committing offsets: section_change/0:158 +I, [2018-08-07T02:59:36.261327 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-08-07T02:59:36.261399 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:59:38.265505 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.63 ms +I, [2018-08-07T02:59:38.265575 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:59:39.444113 #7] INFO -- : Inline processing of topic course_change with 1 messages took 3.74 ms +I, [2018-08-07T02:59:39.444758 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:59:39.445644 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.63 ms +I, [2018-08-07T02:59:39.445683 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:59:40.306953 #7] INFO -- : Inline processing of topic section_change with 1 messages took 25.18 ms +I, [2018-08-07T02:59:40.307553 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:59:41.457007 #7] INFO -- : Inline processing of topic course_change with 1 messages took 1.24 ms +I, [2018-08-07T02:59:41.557004 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:59:42.526601 #7] INFO -- : Inline processing of topic section_change with 1 messages took 65.34 ms +I, [2018-08-07T02:59:42.526751 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:59:43.557538 #7] INFO -- : Committing offsets: course_change/0:97 +I, [2018-08-07T02:59:44.528354 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.58 ms +I, [2018-08-07T02:59:44.528406 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:59:45.604516 #7] INFO -- : Inline processing of topic course_change with 1 messages took 6.45 ms +I, [2018-08-07T02:59:45.604621 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:59:46.530880 #7] INFO -- : Committing offsets: section_change/0:163 +I, [2018-08-07T02:59:46.559664 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T02:59:46.559741 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:59:46.560321 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-08-07T02:59:46.560387 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:59:46.563081 #7] INFO -- : Inline processing of topic section_change with 1 messages took 2.39 ms +I, [2018-08-07T02:59:46.563246 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:59:49.186115 #7] INFO -- : Inline processing of topic section_change with 1 messages took 12.24 ms +I, [2018-08-07T02:59:49.189340 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:59:49.208214 #7] INFO -- : Inline processing of topic section_change with 1 messages took 9.63 ms +I, [2018-08-07T02:59:49.208342 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:59:49.213374 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.41 ms +I, [2018-08-07T02:59:49.213463 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:59:49.215034 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T02:59:49.215097 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:59:49.218181 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.49 ms +I, [2018-08-07T02:59:49.219095 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:59:49.219558 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T02:59:49.219594 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:59:49.225000 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-08-07T02:59:49.225091 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:59:49.225915 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.56 ms +I, [2018-08-07T02:59:49.225965 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:59:49.226593 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-08-07T02:59:49.226659 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:59:49.228120 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.24 ms +I, [2018-08-07T02:59:49.228176 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:59:49.229606 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.21 ms +I, [2018-08-07T02:59:49.229661 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:59:49.231980 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.32 ms +I, [2018-08-07T02:59:49.232062 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:59:49.233327 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.05 ms +I, [2018-08-07T02:59:49.233383 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:59:50.135580 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.38 ms +I, [2018-08-07T02:59:50.135650 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:59:51.239494 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.3 ms +I, [2018-08-07T02:59:51.240084 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:59:52.137213 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.59 ms +I, [2018-08-07T02:59:52.137438 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:59:52.138404 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.42 ms +I, [2018-08-07T02:59:52.138491 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:59:52.187819 #7] INFO -- : Inline processing of topic course_change with 1 messages took 48.96 ms +I, [2018-08-07T02:59:52.188094 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:59:52.250179 #7] INFO -- : Inline processing of topic course_change with 1 messages took 58.85 ms +I, [2018-08-07T02:59:52.250259 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:59:52.250819 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.34 ms +I, [2018-08-07T02:59:52.250870 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:59:52.251458 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.34 ms +I, [2018-08-07T02:59:52.251515 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:59:52.251968 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.27 ms +I, [2018-08-07T02:59:52.252070 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:59:52.260971 #7] INFO -- : Inline processing of topic course_change with 1 messages took 8.54 ms +I, [2018-08-07T02:59:52.261108 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:59:52.264988 #7] INFO -- : Inline processing of topic course_change with 1 messages took 3.64 ms +I, [2018-08-07T02:59:52.265066 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:59:52.265786 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.27 ms +I, [2018-08-07T02:59:52.265844 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:59:52.270955 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.3 ms +I, [2018-08-07T02:59:52.271020 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:59:52.275720 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.75 ms +I, [2018-08-07T02:59:52.275793 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:59:52.276439 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.27 ms +I, [2018-08-07T02:59:52.276487 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:59:52.276976 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.31 ms +I, [2018-08-07T02:59:52.277026 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:59:52.285476 #7] INFO -- : Inline processing of topic course_change with 1 messages took 7.71 ms +I, [2018-08-07T02:59:52.285811 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:59:52.286729 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.36 ms +I, [2018-08-07T02:59:52.286935 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:59:52.287949 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.36 ms +I, [2018-08-07T02:59:52.288117 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:59:53.970511 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.52 ms +I, [2018-08-07T02:59:53.970589 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:59:53.971355 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-08-07T02:59:53.971425 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:59:53.972126 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.46 ms +I, [2018-08-07T02:59:53.972206 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:59:53.972915 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T02:59:53.972968 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:59:53.973820 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.62 ms +I, [2018-08-07T02:59:53.973886 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:59:54.369864 #7] INFO -- : Committing offsets: course_change/0:116 +I, [2018-08-07T02:59:54.414819 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.41 ms +I, [2018-08-07T02:59:54.414942 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:59:54.415920 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.37 ms +I, [2018-08-07T02:59:54.415973 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:59:55.974733 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T02:59:55.974862 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:59:55.975177 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T02:59:55.975212 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:59:55.975688 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T02:59:55.975735 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:59:55.977107 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T02:59:55.977201 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:59:55.977537 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T02:59:55.977576 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:59:55.977906 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T02:59:55.977940 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:59:56.423475 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.47 ms +I, [2018-08-07T02:59:56.423574 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:59:56.424313 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.38 ms +I, [2018-08-07T02:59:56.424387 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:59:56.424933 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.24 ms +I, [2018-08-07T02:59:56.425000 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:59:56.431466 #7] INFO -- : Inline processing of topic course_change with 1 messages took 6.07 ms +I, [2018-08-07T02:59:56.431539 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:59:56.432025 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.27 ms +I, [2018-08-07T02:59:56.432069 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:59:56.432590 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.35 ms +I, [2018-08-07T02:59:56.432638 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:59:57.978336 #7] INFO -- : Committing offsets: section_change/0:191 +I, [2018-08-07T02:59:57.992269 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.09 ms +I, [2018-08-07T02:59:57.992353 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:59:57.993454 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T02:59:57.993513 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:59:57.994319 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T02:59:57.994369 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:59:58.001590 #7] INFO -- : Inline processing of topic section_change with 1 messages took 4.59 ms +I, [2018-08-07T02:59:58.002026 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:59:58.016060 #7] INFO -- : Inline processing of topic section_change with 1 messages took 6.32 ms +I, [2018-08-07T02:59:58.016135 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:59:58.016859 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T02:59:58.016926 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:59:58.017400 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T02:59:58.017451 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:59:58.017830 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T02:59:58.017889 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:59:58.018304 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T02:59:58.018363 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:59:58.019899 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.39 ms +I, [2018-08-07T02:59:58.019950 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:59:58.020366 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T02:59:58.020427 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T02:59:58.440625 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.88 ms +I, [2018-08-07T02:59:58.440881 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:59:58.481036 #7] INFO -- : Inline processing of topic course_change with 1 messages took 37.66 ms +I, [2018-08-07T02:59:58.481120 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:59:58.481795 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.37 ms +I, [2018-08-07T02:59:58.481854 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:59:58.482376 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-08-07T02:59:58.482436 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:59:58.483204 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.27 ms +I, [2018-08-07T02:59:58.483262 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:59:58.483701 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.29 ms +I, [2018-08-07T02:59:58.483749 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:59:58.490004 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.28 ms +I, [2018-08-07T02:59:58.490072 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:59:58.490562 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T02:59:58.490611 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:59:58.498893 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T02:59:58.499116 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:59:58.506993 #7] INFO -- : Inline processing of topic course_change with 1 messages took 7.4 ms +I, [2018-08-07T02:59:58.507070 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T02:59:58.517914 #7] INFO -- : Inline processing of topic course_change with 1 messages took 6.21 ms +I, [2018-08-07T02:59:58.517978 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:00:00.031842 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-08-07T03:00:00.032264 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:00:00.039586 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.46 ms +I, [2018-08-07T03:00:00.039696 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:00:00.040237 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T03:00:00.040321 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:00:00.043080 #7] INFO -- : Inline processing of topic section_change with 1 messages took 2.4 ms +I, [2018-08-07T03:00:00.043420 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:00:00.046830 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.8 ms +I, [2018-08-07T03:00:00.047895 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:00:00.054948 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-08-07T03:00:00.055007 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:00:00.055515 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-08-07T03:00:00.055561 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:00:00.055978 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T03:00:00.056048 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:00:00.530981 #7] INFO -- : Inline processing of topic course_change with 1 messages took 3.07 ms +I, [2018-08-07T03:00:00.531039 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:00:00.549930 #7] INFO -- : Inline processing of topic course_change with 1 messages took 18.66 ms +I, [2018-08-07T03:00:00.550124 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:00:00.550582 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-08-07T03:00:00.550635 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:00:00.568622 #7] INFO -- : Inline processing of topic course_change with 1 messages took 4.34 ms +I, [2018-08-07T03:00:00.568695 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:00:00.578050 #7] INFO -- : Inline processing of topic course_change with 1 messages took 9.01 ms +I, [2018-08-07T03:00:00.578107 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:00:00.578518 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T03:00:00.578556 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:00:00.605344 #7] INFO -- : Inline processing of topic course_change with 1 messages took 26.57 ms +I, [2018-08-07T03:00:00.605425 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:00:02.061755 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.4 ms +I, [2018-08-07T03:00:02.061810 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:00:02.062710 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.77 ms +I, [2018-08-07T03:00:02.062750 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:00:02.062966 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T03:00:02.062997 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:00:02.066005 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.63 ms +I, [2018-08-07T03:00:02.066053 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:00:02.071175 #7] INFO -- : Inline processing of topic section_change with 1 messages took 4.29 ms +I, [2018-08-07T03:00:02.071232 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:00:02.073432 #7] INFO -- : Inline processing of topic section_change with 1 messages took 2.0 ms +I, [2018-08-07T03:00:02.073482 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:00:02.074192 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.56 ms +I, [2018-08-07T03:00:02.074227 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:00:02.610075 #7] INFO -- : Inline processing of topic course_change with 1 messages took 2.57 ms +I, [2018-08-07T03:00:02.610170 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:00:02.610572 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T03:00:02.610624 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:00:02.612011 #7] INFO -- : Inline processing of topic course_change with 1 messages took 1.19 ms +I, [2018-08-07T03:00:02.612074 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:00:02.612436 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T03:00:02.612486 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:00:02.624605 #7] INFO -- : Inline processing of topic course_change with 1 messages took 11.85 ms +I, [2018-08-07T03:00:02.624782 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:00:02.633389 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.29 ms +I, [2018-08-07T03:00:02.633458 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:00:02.684716 #7] INFO -- : Inline processing of topic course_change with 1 messages took 28.11 ms +I, [2018-08-07T03:00:02.686865 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:00:04.075674 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-08-07T03:00:04.075747 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:00:04.076198 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T03:00:04.076504 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:00:04.077061 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T03:00:04.077251 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:00:04.077751 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-08-07T03:00:04.077798 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:00:04.078531 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T03:00:04.078598 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:00:04.079144 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T03:00:04.079194 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:00:04.079796 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T03:00:04.079840 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:00:04.080326 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T03:00:04.080371 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:00:04.080843 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T03:00:04.080887 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:00:04.081334 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T03:00:04.081372 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:00:04.081734 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T03:00:04.081863 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:00:04.082530 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.43 ms +I, [2018-08-07T03:00:04.100171 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:00:04.100739 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-08-07T03:00:04.104005 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:00:04.104588 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T03:00:04.104643 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:00:04.105009 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T03:00:04.105057 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:00:04.105708 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.49 ms +I, [2018-08-07T03:00:04.105790 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:00:04.106376 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-08-07T03:00:04.106425 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:00:04.692378 #7] INFO -- : Committing offsets: course_change/0:149 +I, [2018-08-07T03:00:04.698667 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.35 ms +I, [2018-08-07T03:00:04.698748 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:00:04.699232 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.25 ms +I, [2018-08-07T03:00:04.699287 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:00:06.107541 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T03:00:06.107752 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:00:06.108207 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T03:00:06.108255 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:00:06.108771 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-08-07T03:00:06.108820 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:00:06.109529 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-08-07T03:00:06.109767 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:00:06.110697 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.47 ms +I, [2018-08-07T03:00:06.110749 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:00:06.111652 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.7 ms +I, [2018-08-07T03:00:06.111706 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:00:06.112221 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-08-07T03:00:06.112279 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:00:06.113059 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.56 ms +I, [2018-08-07T03:00:06.113107 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:00:06.113657 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T03:00:06.113708 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:00:06.701612 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.38 ms +I, [2018-08-07T03:00:06.701743 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:00:06.703125 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.4 ms +I, [2018-08-07T03:00:06.703192 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:00:06.705088 #7] INFO -- : Inline processing of topic course_change with 1 messages took 1.57 ms +I, [2018-08-07T03:00:06.705161 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:00:06.705882 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.32 ms +I, [2018-08-07T03:00:06.705996 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:00:06.706436 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.24 ms +I, [2018-08-07T03:00:06.706555 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:00:06.706999 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-08-07T03:00:06.707060 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:00:06.707502 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-08-07T03:00:06.708027 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:00:06.708700 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.33 ms +I, [2018-08-07T03:00:06.708860 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:00:06.709413 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.28 ms +I, [2018-08-07T03:00:06.709464 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:00:08.117072 #7] INFO -- : Committing offsets: section_change/0:243 +I, [2018-08-07T03:00:08.156109 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.59 ms +I, [2018-08-07T03:00:08.156228 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:00:08.156818 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T03:00:08.156964 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:00:08.157742 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.42 ms +I, [2018-08-07T03:00:08.157813 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:00:08.158361 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T03:00:08.158506 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:00:08.172908 #7] INFO -- : Inline processing of topic section_change with 1 messages took 13.83 ms +I, [2018-08-07T03:00:08.173048 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:00:08.173442 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T03:00:08.173476 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:00:08.173739 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T03:00:08.173770 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:00:08.174068 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T03:00:08.174098 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:00:08.174339 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T03:00:08.174369 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:00:08.174602 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T03:00:08.174635 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:00:08.174886 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T03:00:08.174915 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:00:08.175128 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-08-07T03:02:02.990688 #7] INFO -- : New topics added to target list: section_change +I, [2018-08-07T03:02:02.990921 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T03:02:03.008336 #7] INFO -- : New topics added to target list: course_change +I, [2018-08-07T03:02:03.008414 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T03:02:03.015574 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T03:02:03.016631 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T03:02:03.019966 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T03:02:03.020084 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T03:02:08.018431 #7] 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.14:9094 +I, [2018-08-07T03:02:08.019735 #7] INFO -- : New topics added to target list: course_change +I, [2018-08-07T03:02:08.019901 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T03:02:08.020565 #7] 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.14:9094 +I, [2018-08-07T03:02:08.022483 #7] INFO -- : New topics added to target list: section_change +I, [2018-08-07T03:02:08.022556 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T03:02:08.024316 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T03:02:08.024707 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T03:02:08.026195 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T03:02:08.030710 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T03:02:13.375211 #7] 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.14:9094 +E, [2018-08-07T03:02:13.349857 #7] 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.14:9094 +I, [2018-08-07T03:02:15.568164 #7] INFO -- : New topics added to target list: section_change +I, [2018-08-07T03:02:15.587838 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T03:02:15.605138 #7] INFO -- : New topics added to target list: course_change +I, [2018-08-07T03:02:15.605244 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T03:02:15.619387 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T03:02:15.620598 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T03:02:15.629063 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T03:02:15.629375 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T03:02:28.944662 #7] 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.14:9094 +I, [2018-08-07T03:02:29.788282 #7] INFO -- : New topics added to target list: section_change +I, [2018-08-07T03:02:29.789150 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T03:02:29.790821 #7] 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.14:9094 +E, [2018-08-07T03:02:31.624001 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T03:02:31.624605 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +I, [2018-08-07T03:02:31.657905 #7] INFO -- : New topics added to target list: course_change +I, [2018-08-07T03:02:31.658021 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T03:02:31.659672 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T03:02:31.659811 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T03:02:36.628965 #7] 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.14:9094 +I, [2018-08-07T03:02:36.637538 #7] INFO -- : New topics added to target list: section_change +I, [2018-08-07T03:02:36.650506 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T03:02:36.670397 #7] 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.14:9094 +I, [2018-08-07T03:02:36.678202 #7] INFO -- : New topics added to target list: course_change +I, [2018-08-07T03:02:36.678546 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T03:02:40.287714 #7] ERROR -- : No brokers in cluster +E, [2018-08-07T03:02:40.304417 #7] ERROR -- : No brokers in cluster +E, [2018-08-07T03:02:45.292757 #7] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: + +I, [2018-08-07T03:02:45.300970 #7] INFO -- : New topics added to target list: section_change +I, [2018-08-07T03:02:45.301075 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T03:02:45.304972 #7] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: + +I, [2018-08-07T03:02:45.308212 #7] INFO -- : New topics added to target list: course_change +I, [2018-08-07T03:02:45.308329 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T03:02:45.401349 #7] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-07T03:02:45.401897 #7] INFO -- : Joining group `notifications_notifications` +I, [2018-08-07T03:02:45.402840 #7] INFO -- : Will fetch at most 1048576 bytes at a time per partition from section_change +I, [2018-08-07T03:02:45.403990 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T03:02:45.421478 #7] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-07T03:02:45.421876 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T03:02:45.508510 #7] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-07T03:02:45.508731 #7] INFO -- : Joining group `notifications_course_change` +I, [2018-08-07T03:02:45.510866 #7] INFO -- : Will fetch at most 1048576 bytes at a time per partition from course_change +I, [2018-08-07T03:02:45.511701 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T03:02:45.591628 #7] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-07T03:02:45.591853 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T03:02:46.422243 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T03:02:46.592312 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T03:02:47.422875 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T03:02:47.947460 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T03:02:49.047618 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T03:02:49.050004 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T03:02:50.047960 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T03:02:50.249864 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T03:02:51.049648 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T03:02:51.250708 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T03:02:52.050223 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T03:02:52.253538 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T03:02:53.051147 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T03:02:53.254418 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T03:02:54.073702 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T03:02:54.267957 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T03:02:55.105830 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T03:02:55.269845 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T03:02:56.141923 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T03:02:56.281327 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T03:02:57.190783 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T03:02:57.281710 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T03:02:58.192097 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T03:02:58.283286 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T03:02:59.198713 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T03:02:59.284381 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T03:03:00.201346 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T03:03:00.284813 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T03:03:01.203353 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T03:03:01.296718 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T03:03:02.222685 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T03:03:02.496692 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T03:03:03.233739 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T03:03:03.499042 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T03:03:04.019655 #7] INFO -- : Joined group `notifications_course_change` with member id `notifications-45b390f6-8d9f-44b9-9854-8e9ffb762038` +I, [2018-08-07T03:03:04.019769 #7] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-07T03:03:04.028653 #7] INFO -- : Joined group `notifications_notifications` with member id `notifications-5c3ac5e7-729b-4e91-8b45-03c98c2c4136` +I, [2018-08-07T03:03:04.028740 #7] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-07T03:03:04.234293 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T03:03:04.503022 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T03:03:05.021551 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T03:03:05.047276 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T03:03:05.053044 #7] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-07T03:03:05.098933 #7] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-07T03:03:05.236388 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T03:03:05.338768 #7] INFO -- : Partitions assigned for `section_change`: 0 +I, [2018-08-07T03:03:05.374225 #7] INFO -- : Partitions assigned for `course_change`: 0 +I, [2018-08-07T03:03:05.872847 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T03:03:06.236906 #7] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-07T03:03:06.237425 #7] INFO -- : New topics added to target list: section_change +I, [2018-08-07T03:03:06.237714 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T03:03:06.261390 #7] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-07T03:03:06.875309 #7] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-07T03:03:06.876065 #7] INFO -- : New topics added to target list: course_change +I, [2018-08-07T03:03:06.876260 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T03:03:06.902845 #7] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-07T03:03:18.359473 #7] INFO -- : Inline processing of topic section_change with 1 messages took 85.7 ms +I, [2018-08-07T03:03:18.366663 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:03:18.366797 #7] INFO -- : Committing offsets with recommit: section_change/0:1 +I, [2018-08-07T03:03:18.380589 #7] INFO -- : Inline processing of topic course_change with 1 messages took 101.92 ms +I, [2018-08-07T03:03:18.380664 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:03:18.380965 #7] INFO -- : Committing offsets with recommit: course_change/0:1 +I, [2018-08-07T03:03:18.395528 #7] INFO -- : Inline processing of topic course_change with 1 messages took 1.65 ms +I, [2018-08-07T03:03:18.396679 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:03:18.399245 #7] INFO -- : Inline processing of topic course_change with 1 messages took 1.94 ms +I, [2018-08-07T03:03:18.399343 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:03:18.403047 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.65 ms +I, [2018-08-07T03:03:18.403129 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:03:18.403936 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.41 ms +I, [2018-08-07T03:03:18.404163 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:03:18.407445 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.96 ms +I, [2018-08-07T03:03:18.407537 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:03:18.408857 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.79 ms +I, [2018-08-07T03:03:18.408943 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:03:18.410899 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T03:03:18.411200 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:03:18.412843 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.31 ms +I, [2018-08-07T03:03:18.412927 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:03:20.360071 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.24 ms +I, [2018-08-07T03:03:20.360182 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:03:20.360486 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-08-07T03:03:20.360518 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:03:20.360867 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T03:03:20.360940 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:03:20.362869 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.31 ms +I, [2018-08-07T03:03:20.362945 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:03:20.382196 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.24 ms +I, [2018-08-07T03:03:20.382257 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:03:20.436271 #7] INFO -- : Inline processing of topic section_change with 1 messages took 52.61 ms +I, [2018-08-07T03:03:20.436330 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:03:20.436707 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T03:03:20.436743 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:03:20.450050 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T03:03:20.450101 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:03:20.468692 #7] INFO -- : Inline processing of topic section_change with 1 messages took 18.24 ms +I, [2018-08-07T03:03:20.468774 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:03:20.469211 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T03:03:20.647049 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:03:20.647806 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.51 ms +I, [2018-08-07T03:03:20.647954 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:03:20.727719 #7] INFO -- : Inline processing of topic section_change with 1 messages took 79.46 ms +I, [2018-08-07T03:03:20.752238 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:03:20.752809 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T03:03:20.752850 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:03:20.757048 #7] INFO -- : Inline processing of topic section_change with 1 messages took 3.98 ms +I, [2018-08-07T03:03:20.757100 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:03:20.757557 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T03:03:20.757592 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:03:20.796642 #7] INFO -- : Inline processing of topic section_change with 1 messages took 20.2 ms +I, [2018-08-07T03:03:20.796697 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:03:20.796992 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T03:03:20.845036 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:03:20.845600 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T03:03:20.845657 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:03:20.859911 #7] INFO -- : Inline processing of topic section_change with 1 messages took 13.79 ms +I, [2018-08-07T03:03:20.860096 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:03:20.860707 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T03:03:20.860756 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:03:20.862267 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T03:03:20.895890 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:03:20.896290 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T03:03:20.896323 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:03:20.928195 #7] INFO -- : Inline processing of topic section_change with 1 messages took 31.66 ms +I, [2018-08-07T03:03:20.928268 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:03:20.930098 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T03:03:20.930158 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:03:20.949314 #7] INFO -- : Inline processing of topic section_change with 1 messages took 18.88 ms +I, [2018-08-07T03:03:20.949374 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:03:20.971825 #7] INFO -- : Inline processing of topic section_change with 1 messages took 22.13 ms +I, [2018-08-07T03:03:20.971959 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:03:20.972853 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T03:03:20.972984 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:03:20.986813 #7] INFO -- : Inline processing of topic section_change with 1 messages took 13.6 ms +I, [2018-08-07T03:03:20.986891 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:03:20.987219 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T03:03:20.987251 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:03:20.988392 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T03:03:20.988433 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:03:20.988709 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T03:03:20.998336 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:03:20.998765 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T03:03:20.998800 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:03:21.055261 #7] INFO -- : Inline processing of topic section_change with 1 messages took 56.32 ms +I, [2018-08-07T03:03:21.055340 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:03:21.055828 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T03:03:21.104832 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:03:21.127643 #7] INFO -- : Inline processing of topic section_change with 1 messages took 22.57 ms +I, [2018-08-07T03:03:21.127717 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:03:22.388024 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.4 ms +I, [2018-08-07T03:03:22.388093 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:03:22.388526 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-08-07T03:03:22.388621 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:03:22.389064 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T03:03:22.389110 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:03:23.143540 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.4 ms +I, [2018-08-07T03:03:23.143595 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:03:23.143841 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T03:03:23.144645 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:03:23.144982 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T03:03:23.145038 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:03:23.145330 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T03:03:23.145360 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:03:23.145619 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T03:03:23.145650 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:03:23.145879 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T03:03:23.146012 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:03:23.146678 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-08-07T03:03:23.146715 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:03:23.147009 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T03:03:23.147042 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:03:24.390073 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.25 ms +I, [2018-08-07T03:03:24.390133 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:03:24.391935 #7] INFO -- : Inline processing of topic course_change with 1 messages took 1.53 ms +I, [2018-08-07T03:03:24.392035 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:03:24.394261 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.35 ms +I, [2018-08-07T03:03:24.394906 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:03:24.395289 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T03:03:24.395322 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:03:24.395629 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-08-07T03:03:24.395663 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:03:24.395989 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-08-07T03:03:24.396026 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:03:24.396780 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.37 ms +I, [2018-08-07T03:03:24.396849 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:03:24.401349 #7] INFO -- : Inline processing of topic course_change with 1 messages took 4.14 ms +I, [2018-08-07T03:03:24.401446 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:03:25.223783 #7] INFO -- : Inline processing of topic section_change with 1 messages took 15.69 ms +I, [2018-08-07T03:03:25.224151 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:03:25.234451 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.47 ms +I, [2018-08-07T03:03:25.234547 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:03:25.236181 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.89 ms +I, [2018-08-07T03:03:25.236331 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:03:25.237193 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.56 ms +I, [2018-08-07T03:03:25.237312 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:03:25.486024 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.02 ms +I, [2018-08-07T03:03:25.486100 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:03:25.503097 #7] INFO -- : Inline processing of topic section_change with 1 messages took 5.94 ms +I, [2018-08-07T03:03:25.503308 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:03:25.504937 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.52 ms +I, [2018-08-07T03:03:25.505126 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:03:25.510318 #7] INFO -- : Inline processing of topic section_change with 1 messages took 2.27 ms +I, [2018-08-07T03:03:25.511136 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:03:26.430719 #7] INFO -- : Inline processing of topic course_change with 1 messages took 2.54 ms +I, [2018-08-07T03:03:26.430803 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:03:26.431523 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.38 ms +I, [2018-08-07T03:03:26.431574 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:03:26.431984 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.23 ms +I, [2018-08-07T03:03:26.432030 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:03:26.435662 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-08-07T03:03:26.435925 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:03:27.972833 #7] INFO -- : Inline processing of topic section_change with 1 messages took 27.32 ms +I, [2018-08-07T03:03:27.974672 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:03:28.132866 #7] INFO -- : Inline processing of topic section_change with 1 messages took 155.81 ms +I, [2018-08-07T03:03:28.132975 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:03:28.143408 #7] INFO -- : Inline processing of topic section_change with 1 messages took 8.27 ms +I, [2018-08-07T03:03:28.144318 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:03:28.155369 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.67 ms +I, [2018-08-07T03:03:28.156096 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:03:28.159813 #7] INFO -- : Inline processing of topic section_change with 1 messages took 2.22 ms +I, [2018-08-07T03:03:28.159890 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:03:28.437576 #7] INFO -- : Committing offsets: course_change/0:23 +I, [2018-08-07T03:03:28.708381 #7] INFO -- : Inline processing of topic course_change with 1 messages took 17.03 ms +I, [2018-08-07T03:03:28.708882 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:03:28.716459 #7] INFO -- : Inline processing of topic course_change with 1 messages took 6.65 ms +I, [2018-08-07T03:03:28.716924 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:03:28.720985 #7] INFO -- : Inline processing of topic course_change with 1 messages took 1.55 ms +I, [2018-08-07T03:03:28.721248 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:03:30.164133 #7] INFO -- : Committing offsets: section_change/0:58 +I, [2018-08-07T03:03:30.361970 #7] INFO -- : Inline processing of topic section_change with 1 messages took 132.82 ms +I, [2018-08-07T03:03:30.362231 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:03:30.374157 #7] INFO -- : Inline processing of topic section_change with 1 messages took 9.37 ms +I, [2018-08-07T03:03:30.389796 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:03:30.390512 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.42 ms +I, [2018-08-07T03:03:30.390648 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:03:30.391379 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.48 ms +I, [2018-08-07T03:03:30.391679 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:03:30.414904 #7] INFO -- : Inline processing of topic section_change with 1 messages took 15.16 ms +I, [2018-08-07T03:03:30.415029 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:03:30.424832 #7] INFO -- : Inline processing of topic section_change with 1 messages took 7.75 ms +I, [2018-08-07T03:03:30.424913 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:03:30.425781 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-08-07T03:03:30.425835 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:03:30.442149 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-08-07T03:03:30.442220 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:03:30.731026 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.58 ms +I, [2018-08-07T03:03:30.731117 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:03:32.443940 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-08-07T03:03:32.444117 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:03:32.444873 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-08-07T03:03:32.444939 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:03:32.445572 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-08-07T03:03:32.445649 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:03:32.456007 #7] INFO -- : Inline processing of topic section_change with 1 messages took 10.07 ms +I, [2018-08-07T03:03:32.456106 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:03:32.456720 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-08-07T03:03:32.456795 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:03:32.465188 #7] INFO -- : Inline processing of topic section_change with 1 messages took 8.15 ms +I, [2018-08-07T03:03:32.465248 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:03:32.465735 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T03:03:32.465766 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:03:32.468538 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-08-07T03:03:32.468656 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:03:32.738096 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.45 ms +I, [2018-08-07T03:03:32.738172 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:03:32.738566 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-08-07T03:03:32.738623 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:03:32.739072 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T03:03:32.739133 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:03:32.739659 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-08-07T03:03:32.739715 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:03:34.470966 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.75 ms +I, [2018-08-07T03:03:34.471055 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:03:34.471663 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-08-07T03:03:34.471736 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:03:34.472370 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-08-07T03:03:34.472443 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:03:34.473005 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-08-07T03:03:34.473084 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:03:34.473726 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-08-07T03:03:34.473791 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:03:34.474960 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T03:03:34.475016 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:03:34.745058 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.41 ms +I, [2018-08-07T03:03:34.745133 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:03:34.745762 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.24 ms +I, [2018-08-07T03:03:34.745818 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:03:34.746097 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T03:03:34.746181 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:03:34.746573 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-08-07T03:03:34.746627 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:03:34.761358 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.25 ms +I, [2018-08-07T03:03:34.761411 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:03:36.476254 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-08-07T03:03:36.476332 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:03:36.476751 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T03:03:36.476796 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:03:36.477568 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-08-07T03:03:36.477622 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:03:36.478006 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T03:03:36.478103 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:03:36.478514 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T03:03:36.478589 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:03:36.479715 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T03:03:36.479816 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:03:36.488129 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-08-07T03:03:36.489215 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:03:36.489857 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T03:03:36.489940 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:03:36.490334 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T03:03:36.490385 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:03:36.490731 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T03:03:36.490817 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:03:36.491164 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T03:03:36.491513 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:03:36.491909 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T03:03:36.491957 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:03:36.492260 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T03:03:36.492298 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:03:36.785153 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.29 ms +I, [2018-08-07T03:03:36.785223 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:03:36.785858 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.38 ms +I, [2018-08-07T03:03:36.785916 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:03:36.786370 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T03:03:36.786464 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:03:36.788573 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.36 ms +I, [2018-08-07T03:03:36.788639 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:03:36.789136 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.29 ms +I, [2018-08-07T03:03:36.789193 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:03:36.789690 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-08-07T03:03:36.789743 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:03:36.790091 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T03:03:36.790139 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:03:36.795487 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-08-07T03:03:36.795546 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:03:36.797028 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.25 ms +I, [2018-08-07T03:03:36.797123 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:03:36.812403 #7] INFO -- : Inline processing of topic course_change with 1 messages took 2.5 ms +I, [2018-08-07T03:03:36.830534 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:03:36.831112 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.31 ms +I, [2018-08-07T03:03:36.831168 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:03:36.831528 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T03:03:36.831579 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:03:36.832038 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.27 ms +I, [2018-08-07T03:03:36.832093 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:03:38.499231 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-08-07T03:03:38.499310 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:03:38.500151 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-08-07T03:03:38.500197 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:03:38.500602 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T03:03:38.500654 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:03:38.500996 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T03:03:38.501050 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:03:38.501328 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T03:03:38.501361 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:03:38.501649 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T03:03:38.501700 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:03:38.502056 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T03:03:38.502104 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:03:38.502555 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T03:03:38.502603 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:03:38.502960 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T03:03:38.503005 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:03:38.503328 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T03:03:38.503375 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:03:38.503699 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T03:03:38.503744 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:03:38.504079 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T03:03:38.504126 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:03:38.504460 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T03:03:38.504514 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:03:38.504868 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T03:03:38.504921 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:03:38.833574 #7] INFO -- : Committing offsets: course_change/0:49 +I, [2018-08-07T03:03:38.853556 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-08-07T03:03:38.853606 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:03:38.854294 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.44 ms +I, [2018-08-07T03:03:38.854356 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:03:38.855871 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T03:03:38.855914 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:03:38.857029 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.29 ms +I, [2018-08-07T03:03:38.857113 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:03:38.857463 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-08-07T03:03:38.857576 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:03:38.858253 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T03:03:38.858321 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:03:38.860680 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.24 ms +I, [2018-08-07T03:03:38.860762 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:03:38.861186 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-08-07T03:03:38.861243 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:03:38.861675 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-08-07T03:03:38.861729 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:03:38.862121 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T03:03:38.862174 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:03:38.862645 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-08-07T03:03:38.862729 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:03:38.863097 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T03:03:38.863148 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:03:38.887912 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.25 ms +I, [2018-08-07T03:03:38.887987 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:03:40.505614 #7] INFO -- : Committing offsets: section_change/0:107 +I, [2018-08-07T03:03:40.516209 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.6 ms +I, [2018-08-07T03:03:40.516279 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:03:40.517522 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T03:03:40.517894 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:03:40.518776 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-08-07T03:03:40.518855 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:03:40.519235 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T03:03:40.519308 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:03:40.519596 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T03:03:40.519633 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:03:40.519961 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T03:03:40.520003 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:03:40.520439 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T03:03:40.520475 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:03:40.520736 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T03:03:40.520771 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:03:40.521068 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T03:03:40.521102 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:03:40.521348 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T03:03:40.521390 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:03:40.521688 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T03:03:40.521719 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:03:40.521937 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T03:03:40.521984 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:03:40.522263 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T03:03:40.522295 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:03:40.888917 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.27 ms +I, [2018-08-07T03:03:40.888979 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:03:40.889681 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-08-07T03:03:40.889728 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:03:40.890090 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T03:03:40.890128 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:03:40.890490 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-08-07T03:03:40.890532 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:03:40.890862 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-08-07T03:03:40.890911 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:03:40.891427 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.3 ms +I, [2018-08-07T03:03:40.891476 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:03:40.892029 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.37 ms +I, [2018-08-07T03:03:40.892082 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:03:40.892442 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T03:03:40.892491 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:03:40.892852 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T03:03:40.892899 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:03:40.893291 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-08-07T03:03:40.893343 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:03:40.893652 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T03:03:40.897864 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:03:40.898574 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.26 ms +I, [2018-08-07T03:03:40.898634 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:03:42.523299 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T03:03:42.524641 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:03:42.525538 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-08-07T03:03:42.525594 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:03:42.525960 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T03:03:42.526002 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:03:42.526337 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T03:03:42.526379 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:03:42.526992 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-08-07T03:03:42.527066 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:03:42.527453 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T03:03:42.527513 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:03:42.527942 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T03:03:42.527990 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:03:42.528318 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T03:03:42.528370 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:03:42.528667 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T03:03:42.528707 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:03:42.529015 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T03:03:42.529055 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:03:42.529402 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T03:03:42.529444 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:03:42.529746 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T03:03:42.529785 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:03:42.530528 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.57 ms +I, [2018-08-07T03:03:42.530587 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:03:42.531262 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T03:03:42.531332 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:03:42.531853 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-08-07T03:03:42.531900 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:03:42.536353 #7] INFO -- : Inline processing of topic section_change with 1 messages took 4.14 ms +I, [2018-08-07T03:03:42.536697 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:03:42.537884 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.88 ms +I, [2018-08-07T03:03:42.543188 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:03:42.544120 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T03:03:42.544199 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:03:42.544665 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T03:03:42.544708 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:03:42.905713 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.49 ms +I, [2018-08-07T03:03:42.905840 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:03:42.906820 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.75 ms +I, [2018-08-07T03:03:42.906879 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:03:42.930379 #7] INFO -- : Inline processing of topic course_change with 1 messages took 20.57 ms +I, [2018-08-07T03:03:42.931580 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:03:42.932089 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-08-07T03:03:42.932178 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:03:42.932532 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T03:03:42.932585 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:03:44.586565 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.41 ms +I, [2018-08-07T03:03:44.586863 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:03:44.587265 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T03:03:44.587328 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:03:44.587603 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T03:03:44.587653 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:03:44.588246 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T03:03:44.588304 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:03:44.589121 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.45 ms +I, [2018-08-07T03:03:44.589203 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:03:45.194749 #7] INFO -- : Inline processing of topic course_change with 1 messages took 219.91 ms +I, [2018-08-07T03:03:45.201163 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:03:45.201941 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.45 ms +I, [2018-08-07T03:03:45.201998 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:03:45.202371 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T03:03:45.202594 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:03:45.204384 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.26 ms +I, [2018-08-07T03:03:45.204444 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:03:46.914016 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T03:03:46.914109 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:03:46.914516 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T03:03:46.914576 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:03:46.914964 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T03:03:46.915014 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:03:46.974067 #7] INFO -- : Inline processing of topic section_change with 1 messages took 57.75 ms +I, [2018-08-07T03:03:46.974166 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:03:46.979065 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T03:03:46.979131 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:03:47.207493 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.37 ms +I, [2018-08-07T03:03:47.207571 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:03:47.207983 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-08-07T03:03:47.208036 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:03:47.208423 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-08-07T03:03:47.208475 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:03:48.994351 #7] INFO -- : Inline processing of topic section_change with 1 messages took 2.23 ms +I, [2018-08-07T03:03:49.000543 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:03:49.001198 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-08-07T03:03:49.001332 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:03:49.002027 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-08-07T03:03:49.002142 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:03:49.002581 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T03:03:49.002629 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:03:49.003178 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T03:03:49.003226 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:03:49.005808 #7] INFO -- : Inline processing of topic section_change with 1 messages took 2.33 ms +I, [2018-08-07T03:03:49.005883 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:03:49.174227 #7] INFO -- : Committing offsets: course_change/0:86 +I, [2018-08-07T03:03:49.191721 #7] INFO -- : Inline processing of topic course_change with 1 messages took 1.08 ms +I, [2018-08-07T03:03:49.191898 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:03:49.193664 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.83 ms +I, [2018-08-07T03:03:49.193723 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:03:49.194754 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.43 ms +I, [2018-08-07T03:03:49.194807 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:03:49.204556 #7] INFO -- : Inline processing of topic course_change with 1 messages took 1.55 ms +I, [2018-08-07T03:03:49.204861 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:03:50.991526 #7] INFO -- : Committing offsets: section_change/0:155 +I, [2018-08-07T03:03:51.215079 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.9 ms +I, [2018-08-07T03:03:51.215196 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:03:51.217410 #7] INFO -- : Inline processing of topic course_change with 1 messages took 1.57 ms +I, [2018-08-07T03:03:51.217526 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:03:51.238456 #7] INFO -- : Inline processing of topic course_change with 1 messages took 20.56 ms +I, [2018-08-07T03:03:51.238530 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:03:51.239591 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.76 ms +I, [2018-08-07T03:03:51.239665 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:03:51.391083 #7] INFO -- : Inline processing of topic section_change with 1 messages took 82.17 ms +I, [2018-08-07T03:03:51.392248 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:03:51.466347 #7] INFO -- : Inline processing of topic section_change with 1 messages took 16.51 ms +I, [2018-08-07T03:03:51.471464 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:03:51.472510 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.51 ms +I, [2018-08-07T03:03:51.472772 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:03:51.500271 #7] INFO -- : Inline processing of topic section_change with 1 messages took 17.09 ms +I, [2018-08-07T03:03:51.500658 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:03:53.300726 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.53 ms +I, [2018-08-07T03:03:53.301570 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:03:53.303575 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.73 ms +I, [2018-08-07T03:03:53.303642 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:03:53.304282 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.48 ms +I, [2018-08-07T03:03:53.304325 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:03:53.304768 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.27 ms +I, [2018-08-07T03:03:53.304804 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:03:53.693894 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.71 ms +I, [2018-08-07T03:03:53.693990 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:03:53.729583 #7] INFO -- : Inline processing of topic section_change with 1 messages took 35.09 ms +I, [2018-08-07T03:03:53.729667 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:03:53.731534 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.32 ms +I, [2018-08-07T03:03:53.731752 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:03:53.732341 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T03:03:53.732384 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:03:53.753484 #7] INFO -- : Inline processing of topic section_change with 1 messages took 20.8 ms +I, [2018-08-07T03:03:53.755315 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:03:53.755841 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T03:03:53.755881 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:03:53.759679 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.93 ms +I, [2018-08-07T03:03:53.759751 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:03:53.762643 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.62 ms +I, [2018-08-07T03:03:53.785979 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:03:53.810780 #7] INFO -- : Inline processing of topic section_change with 1 messages took 13.36 ms +I, [2018-08-07T03:03:53.810924 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:03:53.943336 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T03:03:53.946819 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:03:53.949123 #7] INFO -- : Inline processing of topic section_change with 1 messages took 2.07 ms +I, [2018-08-07T03:03:53.949189 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:03:53.950003 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T03:03:53.950059 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:03:53.953778 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.68 ms +I, [2018-08-07T03:03:53.953835 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:03:53.954239 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T03:03:53.954274 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:03:53.967546 #7] INFO -- : Inline processing of topic section_change with 1 messages took 13.13 ms +I, [2018-08-07T03:03:53.967637 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:03:53.974509 #7] INFO -- : Inline processing of topic section_change with 1 messages took 6.6 ms +I, [2018-08-07T03:03:53.974724 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:03:55.305717 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.34 ms +I, [2018-08-07T03:03:55.306270 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:03:55.306653 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T03:03:55.306687 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:03:55.307410 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T03:03:55.307448 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:03:55.307653 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-08-07T03:03:55.307683 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:03:55.308635 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.84 ms +I, [2018-08-07T03:03:55.308668 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:03:55.308871 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-08-07T03:03:55.308900 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:03:55.309815 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T03:03:55.309853 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:03:55.310066 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-08-07T03:03:55.310096 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:03:55.310846 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.64 ms +I, [2018-08-07T03:03:55.311023 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:03:55.311257 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T03:03:55.311287 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:03:55.312093 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T03:03:55.312127 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:03:55.312363 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-08-07T03:03:55.313431 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:03:55.313781 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T03:03:55.313826 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:03:55.314125 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T03:03:55.314724 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:03:55.314968 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T03:03:55.314999 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:03:55.315530 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.42 ms +I, [2018-08-07T03:03:55.315567 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:03:55.328739 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T03:03:55.328895 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:03:56.859774 #7] INFO -- : Inline processing of topic section_change with 1 messages took 642.8 ms +I, [2018-08-07T03:03:56.873831 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:04:03.169569 #7] INFO -- : Committing offsets: course_change/0:115 +I, [2018-08-07T03:03:56.901602 #7] INFO -- : Inline processing of topic section_change with 1 messages took 2.32 ms +I, [2018-08-07T03:04:03.607429 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:04:03.608009 #7] INFO -- : Committing offsets: section_change/0:177 +I, [2018-08-07T03:04:07.535337 #7] INFO -- : Inline processing of topic course_change with 1 messages took 404.02 ms +I, [2018-08-07T03:04:07.959734 #7] INFO -- : Inline processing of topic section_change with 1 messages took 141.03 ms +I, [2018-08-07T03:04:07.959915 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:04:07.536401 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:04:08.962526 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1001.64 ms +I, [2018-08-07T03:04:08.964205 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:04:10.089728 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1100.22 ms +I, [2018-08-07T03:04:10.090336 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:04:10.094255 #7] INFO -- : Inline processing of topic section_change with 1 messages took 2.4 ms +I, [2018-08-07T03:04:10.094444 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:04:10.097045 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.75 ms +I, [2018-08-07T03:04:10.097279 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:04:10.198319 #7] INFO -- : Inline processing of topic section_change with 1 messages took 99.7 ms +I, [2018-08-07T03:04:10.198489 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:04:10.428407 #7] INFO -- : Inline processing of topic section_change with 1 messages took 163.49 ms +I, [2018-08-07T03:04:10.428615 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:04:10.544805 #7] INFO -- : Inline processing of topic section_change with 1 messages took 113.69 ms +I, [2018-08-07T03:04:10.550986 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:04:10.965347 #7] INFO -- : Inline processing of topic course_change with 1 messages took 1.1 ms +I, [2018-08-07T03:04:10.965467 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:04:15.697447 #7] INFO -- : Committing offsets: course_change/0:117 +I, [2018-08-07T03:04:15.718064 #7] INFO -- : Inline processing of topic section_change with 1 messages took 15.46 ms +I, [2018-08-07T03:04:15.952878 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:04:18.778264 #7] INFO -- : Committing offsets: section_change/0:186 +I, [2018-08-07T03:04:25.560426 #7] INFO -- : Inline processing of topic course_change with 1 messages took 105.46 ms +I, [2018-08-07T03:04:25.616326 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:04:25.623339 #7] INFO -- : Inline processing of topic course_change with 1 messages took 5.08 ms +I, [2018-08-07T03:04:25.623439 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:04:27.625935 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.23 ms +I, [2018-08-07T03:04:27.627939 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:04:27.680993 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.27 ms +I, [2018-08-07T03:04:27.681065 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:04:27.682054 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.77 ms +I, [2018-08-07T03:04:27.682109 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:04:27.682767 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.46 ms +I, [2018-08-07T03:04:27.682857 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:04:27.683721 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.31 ms +I, [2018-08-07T03:04:27.683787 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:04:27.734871 #7] INFO -- : Inline processing of topic section_change with 1 messages took 9.55 ms +I, [2018-08-07T03:04:27.734987 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:04:27.736148 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.88 ms +I, [2018-08-07T03:04:27.736196 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:04:27.736919 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T03:04:27.736967 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:04:27.737397 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T03:04:27.737533 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:04:27.753278 #7] INFO -- : Inline processing of topic section_change with 1 messages took 9.41 ms +I, [2018-08-07T03:04:27.753670 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:04:27.759547 #7] INFO -- : Inline processing of topic section_change with 1 messages took 5.36 ms +I, [2018-08-07T03:04:27.759620 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:04:27.780681 #7] INFO -- : Inline processing of topic section_change with 1 messages took 9.66 ms +I, [2018-08-07T03:04:27.780922 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:04:30.905096 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-08-07T03:04:30.905172 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:04:30.906438 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-08-07T03:04:30.906583 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:04:30.908225 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.38 ms +I, [2018-08-07T03:04:30.908681 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:04:30.939685 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.68 ms +I, [2018-08-07T03:04:30.939773 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:04:30.981115 #7] INFO -- : Inline processing of topic section_change with 1 messages took 3.05 ms +I, [2018-08-07T03:04:30.981208 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:04:31.030083 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.07 ms +I, [2018-08-07T03:04:31.030202 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:04:31.036301 #7] INFO -- : Inline processing of topic section_change with 1 messages took 4.98 ms +I, [2018-08-07T03:04:31.036659 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:04:31.038625 #7] INFO -- : Committing offsets: course_change/0:124 +I, [2018-08-07T03:04:31.383044 #7] INFO -- : Inline processing of topic course_change with 1 messages took 2.12 ms +I, [2018-08-07T03:04:31.383126 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:04:31.412646 #7] INFO -- : Inline processing of topic course_change with 1 messages took 24.61 ms +I, [2018-08-07T03:04:31.412725 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:04:31.416410 #7] INFO -- : Inline processing of topic course_change with 1 messages took 3.19 ms +I, [2018-08-07T03:04:31.416741 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:04:31.418080 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.53 ms +I, [2018-08-07T03:04:31.419657 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:04:31.602006 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.79 ms +I, [2018-08-07T03:04:31.602080 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:04:31.602918 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.43 ms +I, [2018-08-07T03:04:31.603193 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:04:31.603974 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.54 ms +I, [2018-08-07T03:04:31.604082 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:04:33.050995 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.79 ms +I, [2018-08-07T03:04:33.051131 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:04:33.622855 #7] INFO -- : Inline processing of topic course_change with 1 messages took 1.28 ms +I, [2018-08-07T03:04:33.623193 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:04:35.053583 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.81 ms +I, [2018-08-07T03:04:35.053680 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:04:35.054217 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-08-07T03:04:35.054250 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:04:35.054640 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T03:04:35.054689 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:04:35.054959 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T03:04:35.055065 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:04:35.055307 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T03:04:35.057458 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:04:35.057905 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T03:04:35.057941 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:04:35.769355 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.26 ms +I, [2018-08-07T03:04:35.769433 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:04:35.770003 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.25 ms +I, [2018-08-07T03:04:35.770054 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:04:35.771740 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.98 ms +I, [2018-08-07T03:04:35.778036 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:04:35.796803 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.85 ms +I, [2018-08-07T03:04:35.796883 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:04:35.797918 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.65 ms +I, [2018-08-07T03:04:35.798033 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:04:35.815962 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.28 ms +I, [2018-08-07T03:04:35.816381 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:04:35.818738 #7] INFO -- : Inline processing of topic course_change with 1 messages took 2.13 ms +I, [2018-08-07T03:04:35.818805 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:04:35.832736 #7] INFO -- : Inline processing of topic course_change with 1 messages took 1.06 ms +I, [2018-08-07T03:04:35.833138 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:04:37.081624 #7] INFO -- : Committing offsets: section_change/0:207 +I, [2018-08-07T03:04:37.323878 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-08-07T03:04:37.324296 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:04:37.324929 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-08-07T03:04:37.324991 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:04:37.325536 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-08-07T03:04:37.325611 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:04:37.326366 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.4 ms +I, [2018-08-07T03:04:37.326427 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:04:37.834396 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.47 ms +I, [2018-08-07T03:04:37.834466 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:04:37.834827 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T03:04:37.834872 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:04:37.838282 #7] INFO -- : Inline processing of topic course_change with 1 messages took 2.05 ms +I, [2018-08-07T03:04:37.838532 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:04:39.327330 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-08-07T03:04:39.327403 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:04:39.327862 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T03:04:39.327906 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:04:39.866538 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.5 ms +I, [2018-08-07T03:04:39.866723 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:04:39.867294 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T03:04:39.867427 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:04:41.328991 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T03:04:41.329084 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:04:41.329501 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T03:04:41.329570 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:04:41.330075 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-08-07T03:04:41.330150 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:04:41.330920 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.41 ms +I, [2018-08-07T03:04:41.331000 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:04:42.002257 #7] INFO -- : Committing offsets: course_change/0:145 +I, [2018-08-07T03:04:42.164304 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.44 ms +I, [2018-08-07T03:04:42.164425 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:04:42.165736 #7] INFO -- : Inline processing of topic course_change with 1 messages took 1.0 ms +I, [2018-08-07T03:04:42.166086 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:04:42.167666 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.73 ms +I, [2018-08-07T03:04:42.168057 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:04:43.339420 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.69 ms +I, [2018-08-07T03:04:43.339676 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:04:43.340229 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T03:04:43.340328 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:04:43.342065 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.28 ms +I, [2018-08-07T03:04:43.342764 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:04:43.501640 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.18 ms +I, [2018-08-07T03:04:43.501712 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:04:43.596450 #7] INFO -- : Inline processing of topic section_change with 1 messages took 87.82 ms +I, [2018-08-07T03:04:43.596508 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:04:43.596915 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T03:04:43.596950 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:04:43.597268 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T03:04:43.597300 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:04:43.598184 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T03:04:43.598244 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:04:43.603830 #7] INFO -- : Inline processing of topic section_change with 1 messages took 5.29 ms +I, [2018-08-07T03:04:43.609449 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:04:43.612477 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-08-07T03:04:43.612550 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:04:43.614720 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T03:04:43.614833 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:04:43.646323 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-08-07T03:04:43.646387 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:04:44.191938 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.46 ms +I, [2018-08-07T03:04:44.192012 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:04:44.192866 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.57 ms +I, [2018-08-07T03:04:44.193020 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:04:45.652745 #7] INFO -- : Inline processing of topic section_change with 1 messages took 4.48 ms +I, [2018-08-07T03:04:45.652853 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:04:45.653328 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T03:04:45.653377 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:04:45.653760 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T03:04:45.653814 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:04:45.654176 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T03:04:45.654222 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:04:45.654645 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T03:04:45.654693 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:04:45.655121 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T03:04:45.655168 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:04:45.655519 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T03:04:45.655568 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:04:45.656026 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T03:04:45.656072 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:04:45.656415 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T03:04:45.656459 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:04:46.209554 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.36 ms +I, [2018-08-07T03:04:46.209652 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:04:47.681516 #7] INFO -- : Committing offsets: section_change/0:238 +I, [2018-08-07T03:04:47.974878 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-08-07T03:04:47.974932 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:04:47.975298 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T03:04:47.975332 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:04:47.975686 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T03:04:47.975718 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:04:47.976103 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T03:04:47.976137 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:04:47.976400 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T03:04:47.976435 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:04:47.980981 #7] INFO -- : Inline processing of topic section_change with 1 messages took 4.02 ms +I, [2018-08-07T03:04:47.981078 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:04:47.994288 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T03:04:47.994356 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:04:48.210586 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.24 ms +I, [2018-08-07T03:04:48.210647 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:04:48.211012 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-08-07T03:04:48.211061 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:04:48.211406 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T03:04:48.211459 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:04:48.211868 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-08-07T03:04:48.211915 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:04:48.212250 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T03:04:48.212304 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:04:48.214487 #7] INFO -- : Inline processing of topic course_change with 1 messages took 1.99 ms +I, [2018-08-07T03:04:48.214537 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:04:48.214937 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-08-07T03:04:48.214975 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:04:48.215226 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T03:04:48.215256 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:04:49.992520 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.56 ms +I, [2018-08-07T03:04:49.998391 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:04:50.010431 #7] INFO -- : Inline processing of topic section_change with 1 messages took 2.17 ms +I, [2018-08-07T03:04:50.010639 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:04:50.016808 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.7 ms +I, [2018-08-07T03:04:50.016882 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:04:50.018007 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-08-07T03:04:50.018070 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:04:50.018983 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.51 ms +I, [2018-08-07T03:04:50.019095 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:04:50.028191 #7] INFO -- : Inline processing of topic section_change with 1 messages took 5.42 ms +I, [2018-08-07T03:04:50.074012 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:04:50.215387 #7] INFO -- : Inline processing of topic course_change with 1 messages took 3.73 ms +I, [2018-08-07T03:04:50.216088 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:04:50.216573 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.26 ms +I, [2018-08-07T03:04:50.216620 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:04:50.217130 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.28 ms +I, [2018-08-07T03:04:50.217181 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:04:50.219526 #7] INFO -- : Inline processing of topic course_change with 1 messages took 2.03 ms +I, [2018-08-07T03:04:50.219599 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:04:52.236927 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.46 ms +I, [2018-08-07T03:04:52.237041 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:04:52.237794 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.42 ms +I, [2018-08-07T03:04:52.245333 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:04:52.245935 #7] INFO -- : Committing offsets: course_change/0:163 +I, [2018-08-07T03:04:52.311562 #7] INFO -- : Inline processing of topic course_change with 1 messages took 4.33 ms +I, [2018-08-07T03:04:52.321649 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:04:52.322401 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.36 ms +I, [2018-08-07T03:04:52.322476 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:04:54.248056 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-08-07T03:04:54.249256 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:04:54.250147 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.61 ms +I, [2018-08-07T03:04:54.250633 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:04:54.346173 #7] INFO -- : Inline processing of topic course_change with 1 messages took 4.6 ms +I, [2018-08-07T03:04:54.352711 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:04:54.404631 #7] INFO -- : Inline processing of topic course_change with 1 messages took 18.19 ms +I, [2018-08-07T03:04:54.404743 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:04:56.252555 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.45 ms +I, [2018-08-07T03:04:56.252695 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:04:56.422834 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.89 ms +I, [2018-08-07T03:04:56.422956 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:04:58.254388 #7] INFO -- : Committing offsets: section_change/0:256 +I, [2018-08-07T03:04:58.292202 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.52 ms +I, [2018-08-07T03:04:58.292349 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:04:58.293184 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.59 ms +I, [2018-08-07T03:04:58.293246 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:04:58.294937 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.41 ms +I, [2018-08-07T03:04:58.295024 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:04:58.296309 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.95 ms +I, [2018-08-07T03:04:58.299168 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:04:58.300999 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.72 ms +I, [2018-08-07T03:04:58.301118 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:04:58.313683 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.78 ms +I, [2018-08-07T03:04:58.313777 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:04:58.314746 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.57 ms +I, [2018-08-07T03:04:58.314818 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:04:58.315864 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T03:04:58.315913 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:04:58.317143 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T03:04:58.317189 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:04:58.318077 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-08-07T03:04:58.318131 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:04:58.321623 #7] INFO -- : Inline processing of topic section_change with 1 messages took 2.54 ms +I, [2018-08-07T03:04:58.324313 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:04:58.424043 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.46 ms +I, [2018-08-07T03:04:58.424129 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:04:58.424964 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.29 ms +I, [2018-08-07T03:04:58.425026 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:04:58.425863 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.31 ms +I, [2018-08-07T03:04:58.425929 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:04:58.426847 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.7 ms +I, [2018-08-07T03:04:58.426901 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:05:00.394150 #7] INFO -- : Inline processing of topic section_change with 1 messages took 43.35 ms +I, [2018-08-07T03:05:00.394303 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:00.394955 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-08-07T03:05:00.395011 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:00.396480 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.06 ms +I, [2018-08-07T03:05:00.396653 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:00.397184 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T03:05:00.403011 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:00.408995 #7] INFO -- : Inline processing of topic section_change with 1 messages took 4.56 ms +I, [2018-08-07T03:05:00.409083 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:00.428218 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.39 ms +I, [2018-08-07T03:05:00.428271 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:05:00.428883 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-08-07T03:05:00.431403 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:05:00.432281 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.56 ms +I, [2018-08-07T03:05:00.432354 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:05:00.438553 #7] INFO -- : Inline processing of topic course_change with 1 messages took 5.76 ms +I, [2018-08-07T03:05:00.438639 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:05:00.439216 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.26 ms +I, [2018-08-07T03:05:00.439267 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:05:02.410006 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T03:05:02.410076 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:02.410472 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T03:05:02.410516 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:02.410883 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T03:05:02.411882 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:02.414423 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T03:05:02.414572 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:02.415963 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.47 ms +I, [2018-08-07T03:05:02.416034 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:02.416752 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T03:05:02.417052 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:02.421561 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T03:05:02.421620 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:02.421993 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T03:05:02.422033 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:02.422752 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.54 ms +I, [2018-08-07T03:05:02.423171 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:02.427948 #7] INFO -- : Inline processing of topic section_change with 1 messages took 4.26 ms +I, [2018-08-07T03:05:02.427999 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:02.428436 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T03:05:02.428481 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:02.428894 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T03:05:02.428943 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:02.432315 #7] INFO -- : Inline processing of topic section_change with 1 messages took 2.97 ms +I, [2018-08-07T03:05:02.432392 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:02.432847 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T03:05:02.432883 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:02.433150 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T03:05:02.433185 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:02.433592 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T03:05:02.433642 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:02.439963 #7] INFO -- : Committing offsets: course_change/0:177 +I, [2018-08-07T03:05:02.442668 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.43 ms +I, [2018-08-07T03:05:02.442748 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:02.443429 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T03:05:02.443488 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:02.444329 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.46 ms +I, [2018-08-07T03:05:02.444405 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:02.462899 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-08-07T03:05:02.462951 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:05:02.463244 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T03:05:02.463275 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:05:04.463267 #7] INFO -- : Inline processing of topic section_change with 1 messages took 13.67 ms +I, [2018-08-07T03:05:04.464778 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:06.466334 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.47 ms +I, [2018-08-07T03:05:06.466397 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:06.466928 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-08-07T03:05:06.466980 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:06.467687 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-08-07T03:05:06.467736 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:06.468161 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T03:05:06.468202 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:06.468556 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T03:05:06.468600 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:06.478246 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.44 ms +I, [2018-08-07T03:05:06.478301 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:05:08.469025 #7] INFO -- : Committing offsets: section_change/0:297 +I, [2018-08-07T03:05:08.478551 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.48 ms +I, [2018-08-07T03:05:08.478679 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:08.479377 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-08-07T03:05:08.479412 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:08.480389 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.73 ms +I, [2018-08-07T03:05:08.480613 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:08.481262 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.47 ms +I, [2018-08-07T03:05:08.481303 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:08.484444 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-08-07T03:05:08.484864 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:08.485585 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T03:05:08.485627 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:08.486037 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T03:05:08.486100 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:08.487774 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.99 ms +I, [2018-08-07T03:05:08.487865 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:10.482987 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.26 ms +I, [2018-08-07T03:05:10.483036 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:05:10.483297 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T03:05:10.483331 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:05:10.483716 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.27 ms +I, [2018-08-07T03:05:10.483748 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:05:10.484371 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.35 ms +I, [2018-08-07T03:05:10.484418 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:05:10.484745 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T03:05:10.484777 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:05:10.485006 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T03:05:10.485074 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:05:10.485344 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T03:05:10.485375 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:05:10.485595 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T03:05:10.485624 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:05:10.485840 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T03:05:10.485869 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:05:10.488676 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-08-07T03:05:10.488738 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:10.489090 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T03:05:10.492478 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:10.493057 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T03:05:10.493128 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:10.493520 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T03:05:10.493557 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:10.493927 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T03:05:10.493959 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:10.494271 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T03:05:10.494311 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:10.494760 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-08-07T03:05:10.494809 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:10.498025 #7] INFO -- : Inline processing of topic section_change with 1 messages took 2.89 ms +I, [2018-08-07T03:05:10.498076 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:10.504115 #7] INFO -- : Inline processing of topic section_change with 1 messages took 5.75 ms +I, [2018-08-07T03:05:10.504186 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:10.504657 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T03:05:10.504702 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:10.506985 #7] INFO -- : Inline processing of topic section_change with 1 messages took 2.07 ms +I, [2018-08-07T03:05:10.507069 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:10.507627 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T03:05:10.507683 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:12.486344 #7] INFO -- : Committing offsets: course_change/0:189 +I, [2018-08-07T03:05:12.493028 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.25 ms +I, [2018-08-07T03:05:12.493078 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:05:12.493358 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T03:05:12.493401 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:05:12.493758 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T03:05:12.493806 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:05:12.494115 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T03:05:12.494159 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:05:12.494925 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.5 ms +I, [2018-08-07T03:05:12.495294 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:05:12.495767 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-08-07T03:05:12.495820 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:05:12.496181 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T03:05:12.496215 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:05:12.496451 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T03:05:12.496484 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:05:12.496962 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.34 ms +I, [2018-08-07T03:05:12.497009 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:05:12.499849 #7] INFO -- : Inline processing of topic course_change with 1 messages took 2.6 ms +I, [2018-08-07T03:05:12.499939 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:05:12.501016 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.4 ms +I, [2018-08-07T03:05:12.501123 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:05:12.512496 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-08-07T03:05:12.512625 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:12.513577 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T03:05:12.513623 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:12.516809 #7] INFO -- : Inline processing of topic section_change with 1 messages took 3.0 ms +I, [2018-08-07T03:05:12.516881 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:12.517799 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.49 ms +I, [2018-08-07T03:05:12.517861 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:12.518152 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T03:05:12.518183 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:12.518546 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T03:05:12.518605 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:12.519141 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T03:05:12.519206 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:12.526520 #7] INFO -- : Inline processing of topic section_change with 1 messages took 7.08 ms +I, [2018-08-07T03:05:12.526605 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:12.527057 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T03:05:12.527155 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:12.531018 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T03:05:12.531053 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:12.531448 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T03:05:12.531515 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:12.531927 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T03:05:12.531963 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:12.532257 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T03:05:12.532289 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:12.534729 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-08-07T03:05:12.534958 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:12.536052 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.7 ms +I, [2018-08-07T03:05:12.536140 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:12.530556 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.35 ms +I, [2018-08-07T03:05:12.536376 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:05:12.537171 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.3 ms +I, [2018-08-07T03:05:12.537251 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:05:15.040261 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.81 ms +I, [2018-08-07T03:05:15.040940 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:05:15.047598 #7] INFO -- : Inline processing of topic course_change with 1 messages took 4.45 ms +I, [2018-08-07T03:05:15.047782 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:05:15.057430 #7] INFO -- : Inline processing of topic course_change with 1 messages took 2.16 ms +I, [2018-08-07T03:05:15.057621 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:05:15.060355 #7] INFO -- : Inline processing of topic course_change with 1 messages took 1.2 ms +I, [2018-08-07T03:05:15.060574 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:05:15.071068 #7] INFO -- : Inline processing of topic course_change with 1 messages took 2.78 ms +I, [2018-08-07T03:05:15.071162 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:05:15.072172 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-08-07T03:05:15.072274 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:05:15.073069 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.36 ms +I, [2018-08-07T03:05:15.073156 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:05:15.074459 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-08-07T03:05:15.074588 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:15.075300 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-08-07T03:05:15.075362 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:15.091637 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.54 ms +I, [2018-08-07T03:05:15.091770 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:15.093545 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.34 ms +I, [2018-08-07T03:05:15.093617 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:15.096098 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.75 ms +I, [2018-08-07T03:05:15.096331 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:15.099468 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.46 ms +I, [2018-08-07T03:05:15.100665 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:15.105921 #7] INFO -- : Inline processing of topic section_change with 1 messages took 4.45 ms +I, [2018-08-07T03:05:15.106485 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:17.096219 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-08-07T03:05:17.096304 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:05:17.127289 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T03:05:17.127359 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:17.144904 #7] INFO -- : Inline processing of topic section_change with 1 messages took 17.36 ms +I, [2018-08-07T03:05:17.144974 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:17.161710 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T03:05:17.161823 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:17.162327 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T03:05:17.162380 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:19.127326 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-08-07T03:05:19.178563 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:05:19.179853 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.89 ms +I, [2018-08-07T03:05:19.179933 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:05:19.180428 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.25 ms +I, [2018-08-07T03:05:19.180483 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:05:19.181302 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.42 ms +I, [2018-08-07T03:05:19.181371 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:05:19.182057 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.37 ms +I, [2018-08-07T03:05:19.182221 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:05:19.164872 #7] INFO -- : Committing offsets: section_change/0:343 +I, [2018-08-07T03:05:19.266960 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T03:05:19.267034 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:19.267851 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T03:05:19.267905 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:19.268196 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T03:05:19.268239 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:19.268588 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T03:05:19.268633 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:19.268950 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T03:05:19.268993 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:19.269351 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T03:05:19.269397 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:19.270003 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-08-07T03:05:19.270121 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:19.270578 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T03:05:19.270628 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:19.271287 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T03:05:19.284828 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:19.285941 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.54 ms +I, [2018-08-07T03:05:19.286030 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:19.295414 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.95 ms +I, [2018-08-07T03:05:19.295528 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:19.299405 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-08-07T03:05:19.299485 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:19.300246 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.47 ms +I, [2018-08-07T03:05:19.300344 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:19.300723 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T03:05:19.300764 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:19.301090 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T03:05:19.301132 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:19.301555 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T03:05:19.301605 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:19.301951 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T03:05:19.301996 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:19.302395 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T03:05:19.302440 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:19.302748 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T03:05:19.302792 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:19.303259 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T03:05:19.303306 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:19.303662 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T03:05:19.318663 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:19.319295 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T03:05:19.319391 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:19.319805 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T03:05:19.319857 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:19.321118 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T03:05:19.321188 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:19.322984 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T03:05:19.323052 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:19.323504 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T03:05:19.323563 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:19.324329 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.55 ms +I, [2018-08-07T03:05:19.324706 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:19.325188 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T03:05:19.325242 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:19.332757 #7] INFO -- : Inline processing of topic section_change with 1 messages took 7.1 ms +I, [2018-08-07T03:05:19.332874 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:19.335603 #7] INFO -- : Inline processing of topic section_change with 1 messages took 2.26 ms +I, [2018-08-07T03:05:19.335753 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:19.336241 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T03:05:19.336291 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:19.336762 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T03:05:19.350718 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:19.351111 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T03:05:19.351143 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:19.351483 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T03:05:19.351534 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:19.352076 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-08-07T03:05:19.352124 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:19.352503 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T03:05:19.352576 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:19.353245 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.49 ms +I, [2018-08-07T03:05:19.353293 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:21.461351 #7] INFO -- : Inline processing of topic section_change with 1 messages took 3.7 ms +I, [2018-08-07T03:05:21.461440 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:23.149837 #7] INFO -- : Committing offsets: course_change/0:215 +I, [2018-08-07T03:05:23.155964 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.29 ms +I, [2018-08-07T03:05:23.156014 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:05:23.156364 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T03:05:23.156434 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:05:23.156854 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.25 ms +I, [2018-08-07T03:05:23.156899 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:05:23.463405 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.64 ms +I, [2018-08-07T03:05:23.463498 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:23.464575 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.54 ms +I, [2018-08-07T03:05:23.464648 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:23.465492 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.51 ms +I, [2018-08-07T03:05:23.465656 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:23.466964 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.64 ms +I, [2018-08-07T03:05:23.467252 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:23.468192 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.5 ms +I, [2018-08-07T03:05:23.468328 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:23.469260 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.47 ms +I, [2018-08-07T03:05:23.469664 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:23.470477 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.52 ms +I, [2018-08-07T03:05:23.470697 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:25.157807 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.28 ms +I, [2018-08-07T03:05:25.157857 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:05:25.158178 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T03:05:25.158210 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:05:25.158523 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-08-07T03:05:25.158568 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:05:25.158851 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T03:05:25.158881 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:05:25.159131 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T03:05:25.159222 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:05:25.159438 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T03:05:25.159468 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:05:25.159739 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T03:05:25.159815 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:05:25.160075 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T03:05:25.160121 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:05:25.486653 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.72 ms +I, [2018-08-07T03:05:25.486730 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:25.487230 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T03:05:25.487279 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:25.487937 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T03:05:25.488725 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:25.489105 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T03:05:25.489230 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:25.492350 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T03:05:25.492397 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:25.492893 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-08-07T03:05:25.499487 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:25.500063 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-08-07T03:05:25.500229 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:25.500624 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T03:05:25.500658 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:25.500968 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T03:05:25.501013 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:27.181742 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-08-07T03:05:27.181797 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:05:27.182136 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-08-07T03:05:27.182172 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:05:27.183042 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.74 ms +I, [2018-08-07T03:05:27.189268 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:05:27.189793 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.28 ms +I, [2018-08-07T03:05:27.189835 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:05:27.190154 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T03:05:27.190202 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:05:27.216534 #7] INFO -- : Inline processing of topic course_change with 1 messages took 24.59 ms +I, [2018-08-07T03:05:27.216625 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:05:27.231883 #7] INFO -- : Inline processing of topic course_change with 1 messages took 2.66 ms +I, [2018-08-07T03:05:27.231941 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:05:27.502575 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.93 ms +I, [2018-08-07T03:05:27.502630 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:27.504076 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.29 ms +I, [2018-08-07T03:05:27.504123 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:27.504923 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.51 ms +I, [2018-08-07T03:05:27.504961 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:27.505280 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T03:05:27.505314 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:27.505563 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T03:05:27.505628 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:27.505855 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T03:05:27.505885 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:27.506584 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.59 ms +I, [2018-08-07T03:05:27.506620 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:27.506962 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T03:05:27.506995 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:29.232934 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.39 ms +I, [2018-08-07T03:05:29.233011 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:05:29.233784 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.23 ms +I, [2018-08-07T03:05:29.233866 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:05:29.234669 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.32 ms +I, [2018-08-07T03:05:29.234746 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:05:29.235322 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.33 ms +I, [2018-08-07T03:05:29.235382 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:05:29.235820 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-08-07T03:05:29.235868 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:05:29.236195 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T03:05:29.236243 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:05:29.513473 #7] INFO -- : Committing offsets: section_change/0:405 +I, [2018-08-07T03:05:31.697352 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.66 ms +I, [2018-08-07T03:05:31.697465 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:31.697971 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T03:05:31.698028 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:31.701441 #7] INFO -- : Inline processing of topic section_change with 1 messages took 3.07 ms +I, [2018-08-07T03:05:31.701548 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:31.702796 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.93 ms +I, [2018-08-07T03:05:31.702874 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:31.704549 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.43 ms +I, [2018-08-07T03:05:31.704626 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:33.995375 #7] INFO -- : Committing offsets: course_change/0:239 +I, [2018-08-07T03:05:34.134646 #7] INFO -- : Inline processing of topic section_change with 1 messages took 8.24 ms +I, [2018-08-07T03:05:34.167619 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:34.176012 #7] INFO -- : Inline processing of topic section_change with 1 messages took 3.26 ms +I, [2018-08-07T03:05:34.176494 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:34.631572 #7] INFO -- : Inline processing of topic course_change with 1 messages took 1.54 ms +I, [2018-08-07T03:05:34.631699 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:05:34.690997 #7] INFO -- : Inline processing of topic course_change with 1 messages took 10.78 ms +I, [2018-08-07T03:05:34.691094 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:05:36.180196 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-08-07T03:05:36.180272 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:36.692222 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.32 ms +I, [2018-08-07T03:05:36.692305 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:05:36.692868 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.28 ms +I, [2018-08-07T03:05:36.692941 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:05:38.254145 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-08-07T03:05:38.254230 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:38.257171 #7] INFO -- : Inline processing of topic section_change with 1 messages took 2.76 ms +I, [2018-08-07T03:05:38.257330 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:38.258582 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.4 ms +I, [2018-08-07T03:05:38.258645 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:38.700223 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.27 ms +I, [2018-08-07T03:05:38.700293 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:05:38.700756 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.27 ms +I, [2018-08-07T03:05:38.700805 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:05:40.261586 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.44 ms +I, [2018-08-07T03:05:40.262552 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:40.263434 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.53 ms +I, [2018-08-07T03:05:40.263491 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:40.263822 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T03:05:40.263864 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:40.265214 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.8 ms +I, [2018-08-07T03:05:40.265712 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:40.266559 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.67 ms +I, [2018-08-07T03:05:40.266607 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:40.267256 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-08-07T03:05:40.267301 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:40.267963 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-08-07T03:05:40.268014 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:40.268569 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-08-07T03:05:40.268614 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:40.269093 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T03:05:40.269138 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:40.269643 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-08-07T03:05:40.269689 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:40.304279 #7] INFO -- : Inline processing of topic section_change with 1 messages took 34.16 ms +I, [2018-08-07T03:05:40.305144 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:40.307806 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T03:05:40.307862 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:40.308244 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T03:05:40.308302 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:40.312098 #7] INFO -- : Inline processing of topic section_change with 1 messages took 3.04 ms +I, [2018-08-07T03:05:40.312199 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:40.312817 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.43 ms +I, [2018-08-07T03:05:40.312861 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:40.325331 #7] INFO -- : Inline processing of topic section_change with 1 messages took 12.1 ms +I, [2018-08-07T03:05:40.325427 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:40.326000 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T03:05:40.326048 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:40.330379 #7] INFO -- : Inline processing of topic section_change with 1 messages took 4.08 ms +I, [2018-08-07T03:05:40.330487 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:40.330956 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T03:05:40.331004 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:40.702074 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.38 ms +I, [2018-08-07T03:05:40.702165 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:05:40.702657 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.26 ms +I, [2018-08-07T03:05:40.702710 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:05:40.703703 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-08-07T03:05:40.704068 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:05:42.332430 #7] INFO -- : Committing offsets: section_change/0:435 +I, [2018-08-07T03:05:42.439602 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.34 ms +I, [2018-08-07T03:05:42.440883 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:42.442098 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.8 ms +I, [2018-08-07T03:05:42.442154 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:42.452350 #7] INFO -- : Inline processing of topic section_change with 1 messages took 9.72 ms +I, [2018-08-07T03:05:42.452587 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:42.479277 #7] INFO -- : Inline processing of topic section_change with 1 messages took 22.22 ms +I, [2018-08-07T03:05:42.479341 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:42.488099 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.44 ms +I, [2018-08-07T03:05:42.488168 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:42.488817 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T03:05:42.488872 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:42.494923 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-08-07T03:05:42.494995 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:42.495458 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T03:05:42.495512 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:42.508113 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-08-07T03:05:42.508170 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:42.508644 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T03:05:42.508682 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:42.509035 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T03:05:42.509067 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:42.509504 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-08-07T03:05:42.509550 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:42.509986 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T03:05:42.510039 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:42.510484 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T03:05:42.510529 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:42.510868 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T03:05:42.517061 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:42.517895 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.52 ms +I, [2018-08-07T03:05:42.517938 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:42.518546 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-08-07T03:05:42.518605 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:42.520523 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.66 ms +I, [2018-08-07T03:05:42.520596 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:42.521138 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T03:05:42.521319 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:42.545932 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.88 ms +I, [2018-08-07T03:05:42.546121 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:42.571465 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T03:05:42.680382 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:42.681972 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.09 ms +I, [2018-08-07T03:05:42.682207 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:42.757384 #7] INFO -- : Inline processing of topic section_change with 1 messages took 52.88 ms +I, [2018-08-07T03:05:42.757490 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:42.758063 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-08-07T03:05:42.758118 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:43.450809 #7] INFO -- : Inline processing of topic course_change with 1 messages took 1.59 ms +I, [2018-08-07T03:05:43.450888 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:05:43.889362 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1130.99 ms +I, [2018-08-07T03:05:43.889548 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:43.924010 #7] INFO -- : Inline processing of topic section_change with 1 messages took 32.69 ms +I, [2018-08-07T03:05:43.926839 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:43.927406 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T03:05:43.935595 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:43.936325 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-08-07T03:05:43.936386 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:43.942678 #7] INFO -- : Inline processing of topic section_change with 1 messages took 6.05 ms +I, [2018-08-07T03:05:43.942758 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:43.943478 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.42 ms +I, [2018-08-07T03:05:43.943537 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:43.947744 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-08-07T03:05:43.948186 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:43.949348 #7] INFO -- : Inline processing of topic course_change with 1 messages took 497.85 ms +I, [2018-08-07T03:05:43.949458 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:05:45.951535 #7] INFO -- : Committing offsets: course_change/0:250 +I, [2018-08-07T03:05:45.952014 #7] INFO -- : Inline processing of topic section_change with 1 messages took 2.28 ms +I, [2018-08-07T03:05:45.952065 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:45.953183 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.9 ms +I, [2018-08-07T03:05:45.953283 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:45.953582 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T03:05:45.954108 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:45.957688 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.27 ms +I, [2018-08-07T03:05:45.957760 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:05:47.971709 #7] INFO -- : Inline processing of topic course_change with 1 messages took 3.0 ms +I, [2018-08-07T03:05:47.971791 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:05:47.972310 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.24 ms +I, [2018-08-07T03:05:47.972348 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:05:47.975678 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.58 ms +I, [2018-08-07T03:05:47.975754 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:48.036618 #7] INFO -- : Inline processing of topic section_change with 1 messages took 60.59 ms +I, [2018-08-07T03:05:48.036674 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:48.037023 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T03:05:48.037054 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:48.038197 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.01 ms +I, [2018-08-07T03:05:48.038265 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:48.053358 #7] INFO -- : Inline processing of topic section_change with 1 messages took 14.58 ms +I, [2018-08-07T03:05:48.053447 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:48.055302 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.55 ms +I, [2018-08-07T03:05:48.055398 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:48.055754 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T03:05:48.055787 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:48.057343 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-08-07T03:05:48.057579 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:48.058383 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-08-07T03:05:48.058431 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:49.938109 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.27 ms +I, [2018-08-07T03:05:49.938175 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:05:49.938460 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T03:05:49.938492 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:05:50.021716 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-08-07T03:05:50.026541 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:50.026927 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T03:05:50.026960 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:50.027386 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-08-07T03:05:50.027431 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:50.027962 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T03:05:50.027999 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:50.028318 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T03:05:50.028350 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:50.028589 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T03:05:50.028619 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:50.029668 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.78 ms +I, [2018-08-07T03:05:50.029732 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:51.939508 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.24 ms +I, [2018-08-07T03:05:51.939560 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:05:51.940011 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T03:05:51.940049 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:05:51.940474 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.23 ms +I, [2018-08-07T03:05:51.940536 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:05:51.941062 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.32 ms +I, [2018-08-07T03:05:51.941115 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:05:51.942068 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.63 ms +I, [2018-08-07T03:05:51.942258 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:05:51.942592 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T03:05:51.942625 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:05:51.943093 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-08-07T03:05:51.943177 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:05:51.943478 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T03:05:51.943520 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:05:51.954715 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.28 ms +I, [2018-08-07T03:05:51.954914 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:05:52.030643 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-08-07T03:05:52.030727 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:52.031087 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T03:05:52.031134 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:52.031367 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T03:05:52.031398 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:52.031703 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T03:05:52.031742 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:52.032019 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T03:05:52.032050 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:52.032271 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T03:05:52.032301 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:52.032539 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T03:05:52.032575 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:52.032839 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T03:05:52.032868 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:53.955828 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.31 ms +I, [2018-08-07T03:05:53.955900 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:05:53.956373 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T03:05:53.956452 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:05:53.956825 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T03:05:53.956882 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:05:53.957290 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-08-07T03:05:53.957359 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:05:53.957781 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-08-07T03:05:53.957855 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:05:53.959265 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-08-07T03:05:53.959326 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:05:53.959699 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T03:05:53.959747 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:05:54.033557 #7] INFO -- : Committing offsets: section_change/0:493 +I, [2018-08-07T03:05:54.040952 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T03:05:54.040998 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:54.041267 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T03:05:54.041332 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:54.041599 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T03:05:54.041630 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:54.041891 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T03:05:54.041921 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:54.042183 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T03:05:54.042213 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:54.042488 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T03:05:54.044304 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:54.044809 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T03:05:54.044866 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:54.045260 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T03:05:54.045311 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:54.045638 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T03:05:54.045706 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:54.046074 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T03:05:54.046120 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:55.966773 #7] INFO -- : Committing offsets: course_change/0:271 +I, [2018-08-07T03:05:55.990508 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.31 ms +I, [2018-08-07T03:05:55.990578 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:05:55.991186 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-08-07T03:05:55.991238 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:05:55.991636 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-08-07T03:05:55.991684 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:05:55.992040 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T03:05:55.992127 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:05:55.992479 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T03:05:55.992524 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:05:55.992842 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T03:05:55.992888 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:05:55.993402 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T03:05:55.993480 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:05:55.993919 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T03:05:55.993965 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:05:55.994314 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-08-07T03:05:55.994360 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:05:55.994697 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-08-07T03:05:55.994741 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:05:56.046999 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-08-07T03:05:56.047070 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:56.047460 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T03:05:56.047539 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:56.047919 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T03:05:56.047962 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:56.048509 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T03:05:56.048603 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:56.048993 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T03:05:56.049043 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:56.049390 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T03:05:56.049436 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:56.049757 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T03:05:56.049798 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:56.050137 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T03:05:56.050186 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:56.060071 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T03:05:56.060143 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:56.060543 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T03:05:56.060590 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:57.995606 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-08-07T03:05:57.995675 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:05:57.996018 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T03:05:57.996087 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:05:57.996348 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T03:05:57.996401 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:05:57.996668 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T03:05:57.996701 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:05:57.997015 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T03:05:57.997056 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:05:57.998187 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.84 ms +I, [2018-08-07T03:05:57.998275 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:05:57.999107 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.23 ms +I, [2018-08-07T03:05:57.999166 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:05:57.999734 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-08-07T03:05:57.999776 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:05:58.061446 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-08-07T03:05:58.061517 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:58.061938 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T03:05:58.061986 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:58.062851 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.66 ms +I, [2018-08-07T03:05:58.062919 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:58.063377 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T03:05:58.064986 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:58.067022 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.7 ms +I, [2018-08-07T03:05:58.067113 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:58.067692 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T03:05:58.067745 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:58.068166 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T03:05:58.068256 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:58.068639 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T03:05:58.068695 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:05:58.069275 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-08-07T03:05:58.069334 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:06:00.004917 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.79 ms +I, [2018-08-07T03:06:00.005180 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:06:00.005576 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T03:06:00.005668 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:06:00.006148 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-08-07T03:06:00.006183 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:06:00.006449 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T03:06:00.006481 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:06:00.006700 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T03:06:00.006757 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:06:00.006960 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T03:06:00.006989 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:06:00.007417 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T03:06:00.007452 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:06:00.007647 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T03:06:00.007736 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:06:00.070262 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T03:06:00.070344 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:06:00.070709 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T03:06:00.070766 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:06:00.071198 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T03:06:00.071249 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:06:00.071640 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T03:06:00.071695 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:06:00.072078 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T03:06:00.072168 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:06:00.072545 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T03:06:00.072597 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:06:00.073004 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T03:06:00.073055 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:06:00.073410 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T03:06:00.073803 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:06:00.074310 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T03:06:00.074373 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:06:00.074775 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T03:06:00.074821 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:06:00.075142 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T03:06:00.075183 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:06:00.075489 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T03:06:00.075569 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:06:00.075883 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T03:06:00.075923 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:06:00.084701 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-08-07T03:06:00.084769 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:06:00.086656 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.69 ms +I, [2018-08-07T03:06:00.086719 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:06:00.087268 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-08-07T03:06:00.088767 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:06:00.091560 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.5 ms +I, [2018-08-07T03:06:00.091630 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:06:00.093931 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.48 ms +I, [2018-08-07T03:06:00.094023 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:06:00.097267 #7] INFO -- : Inline processing of topic section_change with 1 messages took 2.48 ms +I, [2018-08-07T03:06:00.097325 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:06:00.100094 #7] INFO -- : Inline processing of topic section_change with 1 messages took 2.55 ms +I, [2018-08-07T03:06:00.100141 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:06:00.100940 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.5 ms +I, [2018-08-07T03:06:00.101000 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:06:00.106467 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.5 ms +I, [2018-08-07T03:06:00.106642 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:06:00.107532 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.53 ms +I, [2018-08-07T03:06:00.107587 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:06:00.110881 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.5 ms +I, [2018-08-07T03:06:00.112743 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:06:00.113299 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T03:06:00.113704 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:06:00.115796 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.54 ms +I, [2018-08-07T03:06:00.115878 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:06:00.119245 #7] INFO -- : Inline processing of topic section_change with 1 messages took 2.81 ms +I, [2018-08-07T03:06:00.119324 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:06:00.119813 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T03:06:00.119885 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:06:02.031359 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.23 ms +I, [2018-08-07T03:06:02.031421 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:06:02.031748 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T03:06:02.031791 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:06:02.032095 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T03:06:02.032136 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:06:02.032457 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T03:06:02.032498 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:06:02.032788 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T03:06:02.032858 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:06:02.033618 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.4 ms +I, [2018-08-07T03:06:02.033670 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:06:02.033996 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T03:06:02.034039 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:06:02.034541 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T03:06:02.034587 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:06:02.120737 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T03:06:02.120795 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:06:02.121164 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T03:06:02.121203 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:06:02.121565 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T03:06:02.121623 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:06:02.121959 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T03:06:02.121997 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:06:02.122307 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T03:06:02.122344 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:06:02.122651 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T03:06:02.122687 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:06:02.123048 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T03:06:02.123095 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:06:02.123388 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T03:06:02.123423 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:06:02.123795 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T03:06:02.123860 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:06:02.124206 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T03:06:02.124248 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:06:02.124546 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T03:06:02.124582 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:06:04.040472 #7] INFO -- : Inline processing of topic course_change with 1 messages took 1.12 ms +I, [2018-08-07T03:06:04.040583 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:06:04.041281 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T03:06:04.041321 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:06:04.041605 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T03:06:04.041635 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:06:04.042033 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.28 ms +I, [2018-08-07T03:06:04.048694 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:06:04.130382 #7] INFO -- : Committing offsets: section_change/0:561 +I, [2018-08-07T03:06:04.186730 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T03:06:04.186826 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:06:04.187402 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T03:06:04.187518 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:06:04.188174 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T03:06:04.188232 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:06:04.188590 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T03:06:04.188664 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:06:06.155680 #7] INFO -- : Committing offsets: course_change/0:309 +I, [2018-08-07T03:06:06.236477 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.59 ms +I, [2018-08-07T03:06:06.236547 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:06:06.499496 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.4 ms +I, [2018-08-07T03:06:06.499575 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:06:12.503884 #7] INFO -- : Inline processing of topic section_change with 1 messages took 222.71 ms +I, [2018-08-07T03:06:12.566769 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:06:14.933054 #7] INFO -- : Committing offsets: section_change/0:567 +I, [2018-08-07T03:06:18.352120 #7] INFO -- : Committing offsets: course_change/0:310 +I, [2018-08-07T03:06:19.011294 #7] INFO -- : Inline processing of topic course_change with 1 messages took 110.36 ms +I, [2018-08-07T03:06:19.011841 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:06:24.037732 #7] INFO -- : Inline processing of topic course_change with 1 messages took 49.76 ms +I, [2018-08-07T03:06:24.037977 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:06:24.135566 #7] INFO -- : Inline processing of topic section_change with 1 messages took 172.77 ms +I, [2018-08-07T03:06:24.136831 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:06:24.446618 #7] INFO -- : Inline processing of topic course_change with 1 messages took 21.51 ms +I, [2018-08-07T03:06:24.446733 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:06:24.449617 #7] INFO -- : Inline processing of topic section_change with 1 messages took 275.27 ms +I, [2018-08-07T03:06:24.450533 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:06:29.859080 #7] INFO -- : Committing offsets: course_change/0:313 +I, [2018-08-07T03:06:29.972755 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1108.74 ms +I, [2018-08-07T03:06:29.975950 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:06:30.377447 #7] INFO -- : Committing offsets: section_change/0:570 +I, [2018-08-07T03:06:30.647331 #7] INFO -- : Inline processing of topic course_change with 1 messages took 1.1 ms +I, [2018-08-07T03:06:30.647403 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:06:32.654457 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.48 ms +I, [2018-08-07T03:06:32.654538 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:06:33.052726 #7] INFO -- : Inline processing of topic section_change with 1 messages took 15.49 ms +I, [2018-08-07T03:06:33.052811 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:06:34.659237 #7] INFO -- : Inline processing of topic course_change with 1 messages took 3.7 ms +I, [2018-08-07T03:06:34.659349 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:06:35.054530 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-08-07T03:06:35.054583 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:06:35.100594 #7] INFO -- : Inline processing of topic section_change with 1 messages took 45.65 ms +I, [2018-08-07T03:06:35.100670 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:06:36.825244 #7] INFO -- : Inline processing of topic course_change with 1 messages took 9.5 ms +I, [2018-08-07T03:06:36.825342 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:06:36.895143 #7] INFO -- : Inline processing of topic course_change with 1 messages took 1.34 ms +I, [2018-08-07T03:06:37.031620 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:06:37.117070 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.86 ms +I, [2018-08-07T03:06:37.117162 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:06:39.710082 #7] INFO -- : Inline processing of topic section_change with 1 messages took 5.15 ms +I, [2018-08-07T03:06:39.713916 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:06:41.715642 #7] INFO -- : Committing offsets: section_change/0:575 +I, [2018-08-07T03:06:41.721242 #7] INFO -- : Committing offsets: course_change/0:318 +I, [2018-08-07T03:06:41.869103 #7] INFO -- : Inline processing of topic course_change with 1 messages took 1.08 ms +I, [2018-08-07T03:06:41.869158 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:06:41.870132 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.37 ms +I, [2018-08-07T03:06:41.870237 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:06:41.877648 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-08-07T03:06:41.877952 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:06:41.879087 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-08-07T03:06:41.879151 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:06:41.879734 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-08-07T03:06:41.879794 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:06:41.880470 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.47 ms +I, [2018-08-07T03:06:41.880519 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:06:43.873086 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.76 ms +I, [2018-08-07T03:06:43.873155 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:06:43.873649 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.27 ms +I, [2018-08-07T03:06:43.873696 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:06:43.946475 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-08-07T03:06:43.946546 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:06:43.947251 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-08-07T03:06:43.947679 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:06:43.968763 #7] INFO -- : Inline processing of topic section_change with 1 messages took 19.31 ms +I, [2018-08-07T03:06:43.968867 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:06:44.013635 #7] INFO -- : Inline processing of topic section_change with 1 messages took 44.36 ms +I, [2018-08-07T03:06:44.017737 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:06:44.018749 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.72 ms +I, [2018-08-07T03:06:44.018805 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:06:44.020164 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.79 ms +I, [2018-08-07T03:06:44.020225 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:06:44.021654 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.69 ms +I, [2018-08-07T03:06:44.022183 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:06:44.023210 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.6 ms +I, [2018-08-07T03:06:44.023401 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:06:44.027180 #7] INFO -- : Inline processing of topic section_change with 1 messages took 2.82 ms +I, [2018-08-07T03:06:44.027446 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:06:44.062070 #7] INFO -- : Inline processing of topic section_change with 1 messages took 32.66 ms +I, [2018-08-07T03:06:44.062137 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:06:44.065290 #7] INFO -- : Inline processing of topic section_change with 1 messages took 2.44 ms +I, [2018-08-07T03:06:44.065360 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:06:44.075068 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.48 ms +I, [2018-08-07T03:06:44.075128 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:06:44.075540 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T03:06:44.075657 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:06:44.076237 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T03:06:44.076287 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:06:44.076846 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-08-07T03:06:44.076899 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:06:44.077635 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T03:06:44.077691 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:06:44.079151 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-08-07T03:06:44.079243 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:06:44.083453 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.42 ms +I, [2018-08-07T03:06:44.083648 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:06:44.084548 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.65 ms +I, [2018-08-07T03:06:44.084604 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:06:44.085385 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-08-07T03:06:44.085442 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:06:44.086073 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T03:06:44.086419 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:06:44.086879 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T03:06:44.086923 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:06:46.377027 #7] INFO -- : Inline processing of topic course_change with 1 messages took 1.24 ms +I, [2018-08-07T03:06:46.377182 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:06:46.382580 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.37 ms +I, [2018-08-07T03:06:46.382770 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:06:46.386596 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.57 ms +I, [2018-08-07T03:06:46.386665 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:06:46.391159 #7] INFO -- : Inline processing of topic section_change with 1 messages took 4.2 ms +I, [2018-08-07T03:06:46.391266 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:06:46.392625 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.93 ms +I, [2018-08-07T03:06:46.392897 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:06:46.409488 #7] INFO -- : Inline processing of topic section_change with 1 messages took 2.52 ms +I, [2018-08-07T03:06:46.409776 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:06:46.439697 #7] INFO -- : Inline processing of topic section_change with 1 messages took 27.04 ms +I, [2018-08-07T03:06:46.439795 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:06:46.443027 #7] INFO -- : Inline processing of topic section_change with 1 messages took 2.9 ms +I, [2018-08-07T03:06:46.445687 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:06:46.447868 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.83 ms +I, [2018-08-07T03:06:46.448019 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:06:46.449964 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.53 ms +I, [2018-08-07T03:06:46.450075 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:06:46.461850 #7] INFO -- : Inline processing of topic section_change with 1 messages took 2.93 ms +I, [2018-08-07T03:06:46.462016 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:06:46.500563 #7] INFO -- : Inline processing of topic section_change with 1 messages took 37.09 ms +I, [2018-08-07T03:06:46.500644 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:06:46.501165 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T03:06:46.501233 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:06:46.734374 #7] INFO -- : Inline processing of topic section_change with 1 messages took 232.8 ms +I, [2018-08-07T03:06:46.761417 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:06:48.381149 #7] INFO -- : Inline processing of topic course_change with 1 messages took 2.21 ms +I, [2018-08-07T03:06:48.381274 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:06:48.394257 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.39 ms +I, [2018-08-07T03:06:48.394325 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:06:48.394821 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-08-07T03:06:48.394874 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:06:48.409538 #7] INFO -- : Inline processing of topic course_change with 1 messages took 6.49 ms +I, [2018-08-07T03:06:48.409602 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:06:48.770574 #7] INFO -- : Inline processing of topic section_change with 1 messages took 6.71 ms +I, [2018-08-07T03:06:48.770855 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:06:48.771743 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-08-07T03:06:48.771914 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:06:48.791468 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.73 ms +I, [2018-08-07T03:06:48.791799 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:06:50.369728 #7] INFO -- : Inline processing of topic course_change with 1 messages took 1.14 ms +I, [2018-08-07T03:06:50.369803 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:06:50.751752 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-08-07T03:06:50.751857 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:06:50.753196 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.01 ms +I, [2018-08-07T03:06:50.753271 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:06:50.753764 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T03:06:50.755044 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:06:50.755668 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T03:06:50.756562 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:06:52.370537 #7] INFO -- : Committing offsets: course_change/0:328 +I, [2018-08-07T03:06:52.432313 #7] INFO -- : Inline processing of topic course_change with 1 messages took 22.1 ms +I, [2018-08-07T03:06:52.432393 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:06:52.435821 #7] INFO -- : Inline processing of topic course_change with 1 messages took 3.14 ms +I, [2018-08-07T03:06:52.435884 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:06:52.439018 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.43 ms +I, [2018-08-07T03:06:52.439079 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:06:52.446547 #7] INFO -- : Inline processing of topic course_change with 1 messages took 6.87 ms +I, [2018-08-07T03:06:52.446612 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:06:52.447051 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.25 ms +I, [2018-08-07T03:06:52.447086 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:06:52.757030 #7] INFO -- : Committing offsets: section_change/0:621 +I, [2018-08-07T03:06:52.766288 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T03:06:52.766364 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:06:52.767026 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-08-07T03:06:52.767360 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:06:52.767636 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T03:06:52.767667 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:06:52.768028 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T03:06:52.768058 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:06:54.448170 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.32 ms +I, [2018-08-07T03:06:54.448227 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:06:54.448657 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.29 ms +I, [2018-08-07T03:06:54.448718 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:06:54.449131 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.25 ms +I, [2018-08-07T03:06:54.449173 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:06:54.449507 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T03:06:54.449545 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:06:54.449869 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T03:06:54.449904 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:06:54.450174 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T03:06:54.450208 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:06:54.450781 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.34 ms +I, [2018-08-07T03:06:54.450824 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:06:54.451251 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.3 ms +I, [2018-08-07T03:06:54.451288 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:06:54.451605 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T03:06:54.451682 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:06:54.452010 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T03:06:54.452040 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:06:54.452271 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T03:06:54.452326 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:06:54.769248 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.49 ms +I, [2018-08-07T03:06:54.769331 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:06:54.769803 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T03:06:54.769856 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:06:54.770730 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.6 ms +I, [2018-08-07T03:06:54.770796 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:06:54.771359 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T03:06:54.771522 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:06:54.771867 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T03:06:54.771899 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:06:54.772151 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T03:06:54.772195 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:06:54.772584 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T03:06:54.772616 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:06:54.773134 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T03:06:54.773199 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:06:54.773694 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-08-07T03:06:54.773741 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:06:54.774095 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T03:06:54.774139 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:06:54.774521 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T03:06:54.774638 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:06:56.453713 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.46 ms +I, [2018-08-07T03:06:56.454040 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:06:56.454682 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.27 ms +I, [2018-08-07T03:06:56.454734 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:06:56.455610 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.38 ms +I, [2018-08-07T03:06:56.455661 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:06:56.458990 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.61 ms +I, [2018-08-07T03:06:56.459084 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:06:56.459607 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.28 ms +I, [2018-08-07T03:06:56.465073 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:06:56.466137 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.3 ms +I, [2018-08-07T03:06:56.466218 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:06:56.775816 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-08-07T03:06:56.775900 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:06:56.777208 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.01 ms +I, [2018-08-07T03:06:56.777285 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:06:56.777713 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T03:06:56.777753 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:06:56.778163 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T03:06:56.778214 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:06:56.778494 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T03:06:56.778526 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:06:56.778781 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T03:06:56.778824 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:06:56.779161 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T03:06:56.779193 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:06:56.779411 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T03:06:56.779440 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:06:56.779671 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T03:06:56.779705 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:06:56.779942 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T03:06:56.779973 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:06:56.780193 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T03:06:56.780231 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:06:56.781938 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T03:06:56.782248 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:06:56.782693 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T03:06:56.782754 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:06:56.784136 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T03:06:56.784189 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:06:56.784776 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-08-07T03:06:56.785415 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:06:56.786088 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T03:06:56.786161 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:06:56.786543 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T03:06:56.786594 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:06:56.787113 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T03:06:56.787196 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:06:56.787649 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T03:06:56.787698 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:06:56.788034 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T03:06:56.788082 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:06:56.789193 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.82 ms +I, [2018-08-07T03:06:56.789266 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:06:56.789704 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T03:06:56.789759 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:06:58.467665 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.84 ms +I, [2018-08-07T03:06:58.467800 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:06:58.468431 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T03:06:58.468484 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:06:58.468929 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T03:06:58.468979 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:06:58.470739 #7] INFO -- : Inline processing of topic course_change with 1 messages took 1.32 ms +I, [2018-08-07T03:06:58.471260 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:06:58.473025 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-08-07T03:06:58.473080 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:06:58.790843 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T03:06:58.790895 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:06:58.791295 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T03:06:58.791330 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:06:58.791559 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T03:06:58.791589 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:06:58.791878 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T03:06:58.791932 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:06:58.792159 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T03:06:58.792188 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:06:58.792407 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T03:06:58.792437 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:06:58.792678 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T03:06:58.792743 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:06:58.792930 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-08-07T03:06:58.793010 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:06:58.797542 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T03:06:58.797638 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:06:58.798000 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T03:06:58.798037 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:06:58.798424 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T03:06:58.798481 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:06:58.798964 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T03:06:58.799061 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:06:58.799380 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T03:06:58.799434 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:06:58.799755 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T03:06:58.799860 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:06:58.800190 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T03:06:58.800227 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:06:58.800562 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T03:06:58.800607 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:06:58.801013 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T03:06:58.801081 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:07:00.473956 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.25 ms +I, [2018-08-07T03:07:00.474020 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:07:00.474361 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T03:07:00.474402 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:07:00.474719 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T03:07:00.474760 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:07:00.475469 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T03:07:00.475543 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:07:00.476014 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T03:07:00.476059 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:07:00.476444 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T03:07:00.476515 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:07:00.476883 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-08-07T03:07:00.476928 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:07:00.801894 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T03:07:00.801945 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:07:00.802437 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-08-07T03:07:00.802530 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:07:00.802958 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T03:07:00.803040 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:07:00.803397 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T03:07:00.803443 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:07:00.803752 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T03:07:00.803795 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:07:00.804627 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-08-07T03:07:00.804671 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:07:00.805182 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T03:07:00.805273 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:07:00.805760 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-08-07T03:07:00.805828 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:07:00.806471 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T03:07:00.806505 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:07:00.806754 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T03:07:00.806784 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:07:00.806987 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T03:07:00.807038 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:07:00.807223 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-08-07T03:07:00.807271 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:07:00.807503 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T03:07:00.807532 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:07:00.807751 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T03:07:00.807780 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:07:00.808034 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T03:07:00.808204 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:07:00.809591 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.91 ms +I, [2018-08-07T03:07:00.810264 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:07:00.810823 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-08-07T03:07:00.813891 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:07:02.477180 #7] INFO -- : Committing offsets: course_change/0:362 +I, [2018-08-07T03:07:02.490260 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-08-07T03:07:02.490314 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:07:02.490637 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T03:07:02.490674 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:07:02.491262 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T03:07:02.491302 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:07:02.494963 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T03:07:02.495012 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:07:02.495280 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T03:07:02.495315 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:07:02.495557 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T03:07:02.495619 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:07:02.495847 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T03:07:02.495884 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:07:02.816453 #7] INFO -- : Committing offsets: section_change/0:692 +I, [2018-08-07T03:07:02.888847 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T03:07:02.888918 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:07:02.947682 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-08-07T03:07:02.947766 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:07:02.948304 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-08-07T03:07:02.948366 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:07:02.948847 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T03:07:02.949113 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:07:02.950065 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-08-07T03:07:02.950184 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:07:02.951137 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.43 ms +I, [2018-08-07T03:07:02.951202 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:07:02.952014 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T03:07:02.952243 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:07:02.952692 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T03:07:02.952768 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:07:02.953258 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T03:07:02.953314 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:07:02.953824 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-08-07T03:07:02.953884 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:07:02.954507 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T03:07:02.954571 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:07:02.956606 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.92 ms +I, [2018-08-07T03:07:02.956744 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:07:02.957264 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T03:07:02.957698 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:07:02.958721 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.55 ms +I, [2018-08-07T03:07:02.958798 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:07:02.959876 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.53 ms +I, [2018-08-07T03:07:02.960070 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:07:02.960704 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-08-07T03:07:02.960920 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:07:02.961390 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T03:07:02.961449 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:07:02.962358 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.56 ms +I, [2018-08-07T03:07:02.962427 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:07:02.965540 #7] INFO -- : Inline processing of topic section_change with 1 messages took 2.86 ms +I, [2018-08-07T03:07:02.965614 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:07:02.966190 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T03:07:02.966242 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:07:02.967284 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.85 ms +I, [2018-08-07T03:07:02.967430 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:07:02.968098 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T03:07:02.968240 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:07:02.968733 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T03:07:02.968790 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:07:04.496786 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.26 ms +I, [2018-08-07T03:07:04.496895 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:07:04.497250 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T03:07:04.497292 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:07:04.497610 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-08-07T03:07:04.497646 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:07:04.497931 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T03:07:04.497967 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:07:04.498242 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T03:07:04.498277 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:07:04.498654 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T03:07:04.498691 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:07:04.970494 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.62 ms +I, [2018-08-07T03:07:04.970613 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:07:04.971297 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T03:07:04.971484 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:07:04.971972 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-08-07T03:07:04.972021 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:07:04.975347 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.41 ms +I, [2018-08-07T03:07:04.975418 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:07:04.975843 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T03:07:04.976000 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:07:04.976475 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T03:07:04.976523 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:07:06.499558 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.3 ms +I, [2018-08-07T03:07:06.499616 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:07:06.500565 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.76 ms +I, [2018-08-07T03:07:06.500614 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:07:06.501147 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.33 ms +I, [2018-08-07T03:07:06.501349 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:07:06.502418 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T03:07:06.502466 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:07:06.979194 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.72 ms +I, [2018-08-07T03:07:06.979278 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:07:06.980188 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.66 ms +I, [2018-08-07T03:07:06.980253 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:07:06.980602 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T03:07:06.980689 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:07:06.981859 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.97 ms +I, [2018-08-07T03:07:06.981922 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:07:06.983009 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.84 ms +I, [2018-08-07T03:07:06.983072 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:07:06.983434 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T03:07:06.983478 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:07:06.985140 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T03:07:06.985202 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:07:06.985646 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T03:07:06.986705 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:07:06.987070 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T03:07:06.987109 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:07:08.503244 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.28 ms +I, [2018-08-07T03:07:08.503838 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:07:08.504109 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T03:07:08.504140 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:07:08.504696 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.44 ms +I, [2018-08-07T03:07:08.504730 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:07:08.508495 #7] INFO -- : Inline processing of topic course_change with 1 messages took 3.6 ms +I, [2018-08-07T03:07:08.508542 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:07:08.508958 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T03:07:08.508994 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:07:08.509237 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T03:07:08.509267 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:07:08.509480 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T03:07:08.509516 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:07:08.509710 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-08-07T03:07:08.509772 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:07:08.509977 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T03:07:08.510002 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:07:08.510212 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-08-07T03:07:08.510240 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:07:08.987929 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T03:07:08.987990 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:07:08.988316 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T03:07:08.988365 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:07:08.988696 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T03:07:08.988727 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:07:08.989128 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T03:07:08.989161 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:07:08.989388 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T03:07:08.989434 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:07:08.989777 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T03:07:08.989808 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:07:08.990275 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T03:07:08.990350 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:07:08.992388 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.84 ms +I, [2018-08-07T03:07:08.992453 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:07:08.992850 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T03:07:08.992912 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:07:08.993230 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T03:07:08.993266 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:07:08.993524 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T03:07:08.994738 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:07:08.995105 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T03:07:08.995175 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:07:08.995635 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T03:07:08.995673 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:07:08.996020 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T03:07:08.996175 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:07:08.996516 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T03:07:08.996549 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:07:08.999291 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.69 ms +I, [2018-08-07T03:07:08.999364 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:07:11.063484 #7] INFO -- : Inline processing of topic section_change with 1 messages took 34.25 ms +I, [2018-08-07T03:07:11.065820 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:07:11.093478 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.69 ms +I, [2018-08-07T03:07:11.093601 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:07:11.113541 #7] INFO -- : Inline processing of topic section_change with 1 messages took 16.78 ms +I, [2018-08-07T03:07:11.113657 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:07:11.115552 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.49 ms +I, [2018-08-07T03:07:11.115625 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:07:11.117229 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.12 ms +I, [2018-08-07T03:07:11.117696 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:07:12.511479 #7] INFO -- : Committing offsets: course_change/0:389 +I, [2018-08-07T03:07:13.118435 #7] INFO -- : Committing offsets: section_change/0:751 +I, [2018-08-07T03:07:13.125555 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.52 ms +I, [2018-08-07T03:07:13.125618 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:07:13.126187 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-08-07T03:07:13.126258 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:07:14.543480 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.29 ms +I, [2018-08-07T03:07:14.543574 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:07:14.543952 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T03:07:14.544048 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:07:15.127406 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.5 ms +I, [2018-08-07T03:07:15.127484 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:07:15.128051 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-08-07T03:07:15.128107 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:07:15.128561 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T03:07:15.128629 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:07:15.129076 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T03:07:15.129113 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:07:15.129593 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-08-07T03:07:15.129630 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:07:15.130111 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-08-07T03:07:15.130154 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:07:17.132584 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.9 ms +I, [2018-08-07T03:07:17.132681 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:07:17.133271 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T03:07:17.133323 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:07:19.136230 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-08-07T03:07:19.136301 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:07:19.136805 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-08-07T03:07:19.137189 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:07:19.137712 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T03:07:19.137765 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:07:19.138216 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T03:07:19.138258 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:07:19.138651 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T03:07:19.138695 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:07:21.132619 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.77 ms +I, [2018-08-07T03:07:21.133470 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:07:22.555763 #7] INFO -- : Committing offsets: course_change/0:391 +I, [2018-08-07T03:07:23.339602 #7] INFO -- : Committing offsets: section_change/0:767 +I, [2018-08-07T03:07:27.179162 #7] INFO -- : Inline processing of topic section_change with 1 messages took 4.05 ms +I, [2018-08-07T03:07:27.179281 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:07:28.720661 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.27 ms +I, [2018-08-07T03:07:28.720840 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:07:29.182453 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.95 ms +I, [2018-08-07T03:07:29.182594 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:07:29.184519 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.22 ms +I, [2018-08-07T03:07:29.184574 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:07:29.185725 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.84 ms +I, [2018-08-07T03:07:29.185865 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:07:29.189981 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.02 ms +I, [2018-08-07T03:07:29.190186 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:07:29.191047 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.47 ms +I, [2018-08-07T03:07:29.200013 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:07:29.200903 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.56 ms +I, [2018-08-07T03:07:29.200968 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:07:30.764245 #7] INFO -- : Inline processing of topic course_change with 1 messages took 40.87 ms +I, [2018-08-07T03:07:30.764324 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:07:32.607271 #7] INFO -- : Inline processing of topic section_change with 1 messages took 29.71 ms +I, [2018-08-07T03:07:32.607770 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:07:32.634266 #7] INFO -- : Inline processing of topic section_change with 1 messages took 10.94 ms +I, [2018-08-07T03:07:32.641071 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:07:34.647628 #7] INFO -- : Inline processing of topic section_change with 1 messages took 2.76 ms +I, [2018-08-07T03:07:34.647753 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:07:34.885370 #7] INFO -- : Committing offsets: course_change/0:393 +I, [2018-08-07T03:07:36.651006 #7] INFO -- : Committing offsets: section_change/0:777 +I, [2018-08-07T03:07:36.831157 #7] INFO -- : Inline processing of topic section_change with 1 messages took 75.74 ms +I, [2018-08-07T03:07:36.832830 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:07:38.841426 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.65 ms +I, [2018-08-07T03:07:38.841503 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:07:40.858325 #7] INFO -- : Inline processing of topic section_change with 1 messages took 13.87 ms +I, [2018-08-07T03:07:40.908341 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:07:40.909220 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.52 ms +I, [2018-08-07T03:07:40.909283 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:07:40.910176 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.62 ms +I, [2018-08-07T03:07:40.910246 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:07:43.074279 #7] INFO -- : Inline processing of topic section_change with 1 messages took 3.12 ms +I, [2018-08-07T03:07:43.074387 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:07:43.079787 #7] INFO -- : Inline processing of topic course_change with 1 messages took 1.2 ms +I, [2018-08-07T03:07:43.079874 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:07:45.135246 #7] INFO -- : Committing offsets: course_change/0:394 +I, [2018-08-07T03:07:45.163921 #7] INFO -- : Inline processing of topic section_change with 1 messages took 82.43 ms +I, [2018-08-07T03:07:45.163992 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:07:47.164421 #7] INFO -- : Committing offsets: section_change/0:784 +I, [2018-08-07T03:07:47.170588 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.58 ms +I, [2018-08-07T03:07:47.170635 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:07:47.171382 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.54 ms +I, [2018-08-07T03:07:47.171428 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:07:47.172220 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.47 ms +I, [2018-08-07T03:07:47.172259 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:07:49.173712 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.5 ms +I, [2018-08-07T03:07:49.173778 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:07:49.174689 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.64 ms +I, [2018-08-07T03:07:49.174758 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:07:49.175139 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T03:07:49.175430 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:07:49.175768 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T03:07:49.175799 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:07:49.176363 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T03:07:49.176397 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:07:49.177060 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-08-07T03:07:49.177097 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:07:49.179087 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.44 ms +I, [2018-08-07T03:07:49.179159 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:07:49.179601 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.24 ms +I, [2018-08-07T03:07:49.179640 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:07:49.180043 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-08-07T03:07:49.180077 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:07:49.180483 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.28 ms +I, [2018-08-07T03:07:49.180788 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:07:49.181257 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.24 ms +I, [2018-08-07T03:07:49.181300 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:07:51.143666 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.45 ms +I, [2018-08-07T03:07:51.143719 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:07:51.144116 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T03:07:51.144167 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:07:51.144522 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T03:07:51.144579 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:07:51.145313 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.47 ms +I, [2018-08-07T03:07:51.145358 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:07:51.145860 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T03:07:51.145906 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:07:51.146337 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T03:07:51.146433 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:07:51.147567 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-08-07T03:07:51.147621 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:07:51.147900 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T03:07:51.151478 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:07:51.152110 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.4 ms +I, [2018-08-07T03:07:51.152278 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:07:51.152864 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.33 ms +I, [2018-08-07T03:07:51.153040 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:07:51.153754 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.37 ms +I, [2018-08-07T03:07:51.153824 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:07:51.154426 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.37 ms +I, [2018-08-07T03:07:51.154522 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:07:51.155091 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.28 ms +I, [2018-08-07T03:07:51.155205 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:07:53.213968 #7] INFO -- : Inline processing of topic course_change with 1 messages took 13.85 ms +I, [2018-08-07T03:07:53.214581 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:07:53.252770 #7] INFO -- : Inline processing of topic section_change with 1 messages took 35.92 ms +I, [2018-08-07T03:07:53.254423 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:07:53.294167 #7] INFO -- : Inline processing of topic section_change with 1 messages took 37.02 ms +I, [2018-08-07T03:07:53.294256 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:07:53.301399 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.2 ms +I, [2018-08-07T03:07:53.301571 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:07:55.221212 #7] INFO -- : Committing offsets: course_change/0:407 +I, [2018-08-07T03:07:55.619959 #7] INFO -- : Inline processing of topic section_change with 1 messages took 26.67 ms +I, [2018-08-07T03:07:55.620555 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:07:57.478562 #7] INFO -- : Inline processing of topic course_change with 1 messages took 2.17 ms +I, [2018-08-07T03:07:57.478752 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:07:57.637133 #7] INFO -- : Committing offsets: section_change/0:803 +I, [2018-08-07T03:08:00.445662 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.66 ms +I, [2018-08-07T03:08:00.445828 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:08:01.487643 #7] INFO -- : Inline processing of topic course_change with 1 messages took 1.08 ms +I, [2018-08-07T03:08:01.487746 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:08:01.489099 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.66 ms +I, [2018-08-07T03:08:01.489189 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:08:02.447086 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.45 ms +I, [2018-08-07T03:08:02.447143 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:08:02.447982 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.6 ms +I, [2018-08-07T03:08:02.448083 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:08:03.491561 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.9 ms +I, [2018-08-07T03:08:03.491697 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:08:03.492258 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.35 ms +I, [2018-08-07T03:08:03.492308 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:08:03.492763 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-08-07T03:08:03.492819 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:08:03.493638 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T03:08:03.493702 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:08:04.449827 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.93 ms +I, [2018-08-07T03:08:04.449913 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:08:04.450603 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.47 ms +I, [2018-08-07T03:08:04.450649 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:08:04.451518 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-08-07T03:08:04.451727 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:08:04.452262 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T03:08:04.452320 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:08:04.454419 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.75 ms +I, [2018-08-07T03:08:04.454495 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:08:04.458113 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.4 ms +I, [2018-08-07T03:08:04.458459 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:08:05.495709 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.6 ms +I, [2018-08-07T03:08:05.495788 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:08:05.496752 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.54 ms +I, [2018-08-07T03:08:05.496856 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:08:05.497814 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.39 ms +I, [2018-08-07T03:08:05.497875 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:08:05.498819 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.43 ms +I, [2018-08-07T03:08:05.499095 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:08:05.499581 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.23 ms +I, [2018-08-07T03:08:05.499682 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:08:05.500271 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.33 ms +I, [2018-08-07T03:08:05.500329 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:08:06.459539 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.48 ms +I, [2018-08-07T03:08:06.459605 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:08:06.460772 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.81 ms +I, [2018-08-07T03:08:06.460841 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:08:06.462201 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.91 ms +I, [2018-08-07T03:08:06.462337 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:08:06.463742 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.08 ms +I, [2018-08-07T03:08:06.465632 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:08:06.482189 #7] INFO -- : Inline processing of topic section_change with 1 messages took 16.03 ms +I, [2018-08-07T03:08:06.482415 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:08:06.485466 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.49 ms +I, [2018-08-07T03:08:06.485953 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:08:07.500780 #7] INFO -- : Committing offsets: course_change/0:420 +I, [2018-08-07T03:08:07.510320 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.34 ms +I, [2018-08-07T03:08:07.510437 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:08:07.510846 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.23 ms +I, [2018-08-07T03:08:07.510891 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:08:07.511268 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-08-07T03:08:07.511311 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:08:07.511643 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-08-07T03:08:07.511741 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:08:08.515060 #7] INFO -- : Committing offsets: section_change/0:818 +I, [2018-08-07T03:08:08.558509 #7] INFO -- : Inline processing of topic section_change with 1 messages took 13.53 ms +I, [2018-08-07T03:08:08.558634 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:08:08.559189 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T03:08:08.559238 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:08:08.569564 #7] INFO -- : Inline processing of topic section_change with 1 messages took 10.09 ms +I, [2018-08-07T03:08:08.569654 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:08:08.573066 #7] INFO -- : Inline processing of topic section_change with 1 messages took 2.63 ms +I, [2018-08-07T03:08:08.575581 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:08:09.567258 #7] INFO -- : Inline processing of topic course_change with 1 messages took 41.19 ms +I, [2018-08-07T03:08:09.567370 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:08:09.567793 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-08-07T03:08:09.567853 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:08:09.568429 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.23 ms +I, [2018-08-07T03:08:09.568520 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:08:10.576903 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.43 ms +I, [2018-08-07T03:08:10.576977 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:08:10.577499 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T03:08:10.577553 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:08:10.578851 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.11 ms +I, [2018-08-07T03:08:10.578923 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:08:11.569639 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.32 ms +I, [2018-08-07T03:08:11.569689 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:08:11.569916 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T03:08:11.569945 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:08:11.570292 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T03:08:11.570326 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:08:11.570544 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T03:08:11.570689 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:08:11.570892 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-08-07T03:08:11.570951 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:08:11.571221 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-08-07T03:08:11.571279 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:08:11.571490 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T03:08:11.571519 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:08:12.583840 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-08-07T03:08:12.583907 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:08:12.584327 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T03:08:12.584544 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:08:12.585466 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T03:08:12.585517 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:08:12.585936 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T03:08:12.585986 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:08:12.586533 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-08-07T03:08:12.586653 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:08:12.587120 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T03:08:12.587182 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:08:12.587890 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.4 ms +I, [2018-08-07T03:08:12.587942 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:08:13.573318 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.41 ms +I, [2018-08-07T03:08:13.573408 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:08:13.574267 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.46 ms +I, [2018-08-07T03:08:13.574394 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:08:13.576304 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.27 ms +I, [2018-08-07T03:08:13.576356 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:08:13.576931 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.29 ms +I, [2018-08-07T03:08:13.576977 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:08:13.577458 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.25 ms +I, [2018-08-07T03:08:13.577505 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:08:14.590097 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.48 ms +I, [2018-08-07T03:08:14.593853 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:08:14.594464 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-08-07T03:08:14.594519 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:08:14.595066 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-08-07T03:08:14.595125 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:08:14.595542 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T03:08:14.595617 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:08:14.596635 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.46 ms +I, [2018-08-07T03:08:14.596708 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:08:14.597660 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.76 ms +I, [2018-08-07T03:08:14.597779 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:08:14.598273 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T03:08:14.598364 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:08:14.598927 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-08-07T03:08:14.599021 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:08:14.599467 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T03:08:14.599521 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:08:14.600116 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-08-07T03:08:14.600161 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:08:14.600546 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T03:08:14.600606 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:08:14.601011 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T03:08:14.601233 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:08:14.602262 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.75 ms +I, [2018-08-07T03:08:14.602325 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:08:14.612059 #7] INFO -- : Inline processing of topic section_change with 1 messages took 9.29 ms +I, [2018-08-07T03:08:14.612327 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:08:14.627379 #7] INFO -- : Inline processing of topic section_change with 1 messages took 14.77 ms +I, [2018-08-07T03:08:14.627461 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:08:14.630008 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.76 ms +I, [2018-08-07T03:08:14.630093 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:08:14.630562 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T03:08:14.630612 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:08:14.637950 #7] INFO -- : Inline processing of topic section_change with 1 messages took 7.11 ms +I, [2018-08-07T03:08:14.638034 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:08:14.647760 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.63 ms +I, [2018-08-07T03:08:14.647957 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:08:14.648298 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T03:08:14.648332 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:08:14.651808 #7] INFO -- : Inline processing of topic section_change with 1 messages took 3.05 ms +I, [2018-08-07T03:08:14.651899 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:08:14.652568 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-08-07T03:08:14.658243 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:08:14.658594 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T03:08:14.658630 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:08:14.661057 #7] INFO -- : Inline processing of topic section_change with 1 messages took 2.29 ms +I, [2018-08-07T03:08:14.661112 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:08:14.662661 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T03:08:14.662762 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:08:14.663068 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T03:08:14.663102 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:08:14.663880 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T03:08:14.663922 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:08:14.664202 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T03:08:14.664235 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:08:14.668393 #7] INFO -- : Inline processing of topic section_change with 1 messages took 4.02 ms +I, [2018-08-07T03:08:14.668452 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:08:14.669241 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T03:08:14.669414 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:08:14.673014 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.4 ms +I, [2018-08-07T03:08:14.673383 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:08:14.674228 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.58 ms +I, [2018-08-07T03:08:14.674294 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:08:14.676166 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T03:08:14.676234 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:08:14.678930 #7] INFO -- : Inline processing of topic section_change with 1 messages took 2.39 ms +I, [2018-08-07T03:08:14.678991 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:08:14.679326 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T03:08:14.679620 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:08:14.682308 #7] INFO -- : Inline processing of topic section_change with 1 messages took 2.33 ms +I, [2018-08-07T03:08:14.682515 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:08:14.683213 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-08-07T03:08:14.683274 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:08:14.686384 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T03:08:14.686448 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:08:14.687603 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T03:08:14.687671 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:08:14.689188 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.27 ms +I, [2018-08-07T03:08:14.689273 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:08:14.690136 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T03:08:14.690207 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:08:14.700350 #7] INFO -- : Inline processing of topic section_change with 1 messages took 9.52 ms +I, [2018-08-07T03:08:14.700490 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:08:14.706127 #7] INFO -- : Inline processing of topic section_change with 1 messages took 3.19 ms +I, [2018-08-07T03:08:14.706216 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:08:14.706927 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.4 ms +I, [2018-08-07T03:08:14.707134 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:08:14.710886 #7] INFO -- : Inline processing of topic section_change with 1 messages took 3.46 ms +I, [2018-08-07T03:08:14.711054 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:08:14.711423 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T03:08:14.711460 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:08:14.713596 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T03:08:14.713644 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:08:15.578487 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.33 ms +I, [2018-08-07T03:08:15.578675 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:08:15.579134 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-08-07T03:08:15.579181 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:08:15.579655 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T03:08:15.579877 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:08:16.714926 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.59 ms +I, [2018-08-07T03:08:16.715050 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:08:16.715463 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T03:08:16.715511 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:08:16.715835 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T03:08:16.715903 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:08:16.716161 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T03:08:16.716191 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:08:16.716483 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T03:08:16.716526 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:08:16.716775 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T03:08:16.716813 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:08:16.717084 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T03:08:16.717115 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:08:16.717821 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.54 ms +I, [2018-08-07T03:08:16.717875 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:08:16.718601 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.54 ms +I, [2018-08-07T03:08:16.718682 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:08:16.719159 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T03:08:16.719211 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:08:16.719585 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T03:08:16.719635 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:08:16.720035 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T03:08:16.720086 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:08:16.721161 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.51 ms +I, [2018-08-07T03:08:16.721227 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:08:16.721653 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T03:08:16.721707 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:08:16.722138 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T03:08:16.722188 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:08:16.722534 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T03:08:16.722604 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:08:16.723570 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.77 ms +I, [2018-08-07T03:08:16.723639 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:08:16.724306 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.47 ms +I, [2018-08-07T03:08:16.724368 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:08:16.724776 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T03:08:16.724826 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:08:16.725214 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T03:08:16.725262 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:08:16.725605 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T03:08:16.725669 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:08:16.725972 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T03:08:16.726010 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:08:16.726444 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T03:08:16.732484 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:08:16.732986 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T03:08:16.733840 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:08:16.734329 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T03:08:16.734383 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:08:16.734739 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T03:08:16.734796 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:08:16.735327 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-08-07T03:08:16.735379 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:08:16.735740 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T03:08:16.735792 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:08:16.736710 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.67 ms +I, [2018-08-07T03:08:16.736789 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:08:16.737382 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-08-07T03:08:16.737461 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:08:16.737869 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T03:08:16.737924 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:08:16.738290 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T03:08:16.738354 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:08:16.738699 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T03:08:16.738748 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:08:16.739337 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T03:08:16.739402 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:08:16.739974 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-08-07T03:08:16.740038 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:08:16.740680 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T03:08:16.740761 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:08:16.741114 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T03:08:16.741169 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:08:16.741559 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T03:08:16.741635 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:08:16.742025 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T03:08:16.742082 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:08:16.742931 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T03:08:16.742995 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:08:16.743818 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-08-07T03:08:16.743881 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:08:17.580294 #7] INFO -- : Committing offsets: course_change/0:442 +I, [2018-08-07T03:08:17.586958 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.44 ms +I, [2018-08-07T03:08:17.587025 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:08:17.587446 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T03:08:17.587495 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:08:17.587887 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-08-07T03:08:17.587939 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:08:17.588302 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T03:08:17.588353 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:08:17.588735 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-08-07T03:08:17.588786 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:08:18.744143 #7] INFO -- : Committing offsets: section_change/0:920 +I, [2018-08-07T03:08:18.747873 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T03:08:18.747919 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:08:18.748206 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T03:08:18.748236 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:08:18.748479 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T03:08:18.748546 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:08:18.748768 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T03:08:18.748802 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:08:18.749045 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T03:08:18.749092 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:08:18.749322 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T03:08:18.749352 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:08:18.749591 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T03:08:18.750294 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:08:18.750913 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-08-07T03:08:18.751005 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:08:18.752282 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T03:08:18.752382 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:08:21.552851 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.96 ms +I, [2018-08-07T03:08:21.555618 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:08:21.558661 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.88 ms +I, [2018-08-07T03:08:21.558718 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:08:21.560332 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.13 ms +I, [2018-08-07T03:08:21.560518 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:08:21.285965 #7] INFO -- : Inline processing of topic course_change with 1 messages took 52.31 ms +I, [2018-08-07T03:08:21.599971 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:08:21.643723 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.55 ms +I, [2018-08-07T03:08:21.644524 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:08:21.646433 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.76 ms +I, [2018-08-07T03:08:21.646925 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:08:21.657876 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.47 ms +I, [2018-08-07T03:08:21.657975 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:08:21.658738 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.37 ms +I, [2018-08-07T03:08:21.658790 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:08:21.659327 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.33 ms +I, [2018-08-07T03:08:21.659398 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:08:21.661656 #7] INFO -- : Inline processing of topic course_change with 1 messages took 1.52 ms +I, [2018-08-07T03:08:21.661724 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:08:23.700190 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.63 ms +I, [2018-08-07T03:08:23.701424 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:08:23.794311 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.28 ms +I, [2018-08-07T03:08:23.794654 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:08:25.703127 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.56 ms +I, [2018-08-07T03:08:25.703207 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:08:25.703748 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T03:08:25.703803 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:08:25.798729 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.32 ms +I, [2018-08-07T03:08:25.798785 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:08:25.799107 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-08-07T03:08:25.799190 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:08:27.706483 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.07 ms +I, [2018-08-07T03:08:27.706711 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:08:27.708171 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.95 ms +I, [2018-08-07T03:08:27.708328 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:08:27.799596 #7] INFO -- : Committing offsets: course_change/0:457 +I, [2018-08-07T03:08:27.844881 #7] INFO -- : Inline processing of topic course_change with 1 messages took 2.17 ms +I, [2018-08-07T03:08:27.844998 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:08:31.361003 #7] INFO -- : Committing offsets: section_change/0:937 +I, [2018-08-07T03:08:32.180539 #7] INFO -- : Inline processing of topic section_change with 1 messages took 23.08 ms +I, [2018-08-07T03:08:32.180703 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:08:34.005678 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.28 ms +I, [2018-08-07T03:08:34.005731 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:08:34.006261 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-08-07T03:08:34.006297 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:08:34.006711 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-08-07T03:08:34.006735 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:08:34.007267 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.23 ms +I, [2018-08-07T03:08:34.007300 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:08:34.181716 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.44 ms +I, [2018-08-07T03:08:34.181767 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:08:34.182348 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-08-07T03:08:34.182418 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:08:34.182773 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T03:08:34.182804 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:08:34.183144 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T03:08:34.183257 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:08:34.183770 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T03:08:34.183814 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:08:36.009046 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.65 ms +I, [2018-08-07T03:08:36.009146 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:08:36.187913 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.48 ms +I, [2018-08-07T03:08:36.187993 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:08:36.188709 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.44 ms +I, [2018-08-07T03:08:36.188935 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:08:38.026212 #7] INFO -- : Committing offsets: course_change/0:463 +I, [2018-08-07T03:08:38.395376 #7] INFO -- : Inline processing of topic section_change with 1 messages took 114.9 ms +I, [2018-08-07T03:08:38.396238 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:08:38.409529 #7] INFO -- : Inline processing of topic course_change with 1 messages took 1.71 ms +I, [2018-08-07T03:08:38.409659 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:08:40.397590 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.65 ms +I, [2018-08-07T03:08:40.397670 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:08:42.398012 #7] INFO -- : Committing offsets: section_change/0:947 +I, [2018-08-07T03:08:42.414257 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.39 ms +I, [2018-08-07T03:08:42.414463 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:08:42.419100 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.04 ms +I, [2018-08-07T03:08:42.419209 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:08:42.420638 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.88 ms +I, [2018-08-07T03:08:42.421089 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:08:44.415641 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.35 ms +I, [2018-08-07T03:08:44.415703 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:08:44.418059 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.28 ms +I, [2018-08-07T03:08:44.418101 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:08:44.425676 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.43 ms +I, [2018-08-07T03:08:44.425822 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:08:44.426382 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-08-07T03:08:44.426435 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:08:44.427746 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.89 ms +I, [2018-08-07T03:08:44.427873 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:08:46.418957 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.29 ms +I, [2018-08-07T03:08:46.419028 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:08:46.419433 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.23 ms +I, [2018-08-07T03:08:46.419479 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:08:46.419823 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T03:08:46.419893 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:08:46.428877 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.49 ms +I, [2018-08-07T03:08:46.429019 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:08:46.429295 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T03:08:46.429336 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:08:46.429625 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T03:08:46.429657 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:08:46.430095 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T03:08:46.430141 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:08:46.430611 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-08-07T03:08:46.430676 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:08:48.420302 #7] INFO -- : Committing offsets: course_change/0:470 +I, [2018-08-07T03:08:48.442766 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.84 ms +I, [2018-08-07T03:08:48.442945 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:08:48.443995 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.54 ms +I, [2018-08-07T03:08:48.444308 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:08:48.445763 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.63 ms +I, [2018-08-07T03:08:48.454949 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:08:48.455549 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T03:08:48.455661 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:08:48.456093 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T03:08:48.456149 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:08:48.456572 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T03:08:48.456718 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:08:48.459332 #7] INFO -- : Inline processing of topic section_change with 1 messages took 2.01 ms +I, [2018-08-07T03:08:48.459408 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:08:48.460375 #7] INFO -- : Inline processing of topic course_change with 1 messages took 1.55 ms +I, [2018-08-07T03:08:48.460457 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:08:48.460929 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T03:08:48.460980 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:08:48.461338 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T03:08:48.461388 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:08:48.461808 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-08-07T03:08:48.461861 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:08:48.462932 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.79 ms +I, [2018-08-07T03:08:48.462999 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:08:50.424915 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-08-07T03:08:50.424984 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:08:50.434177 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.33 ms +I, [2018-08-07T03:08:50.434285 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:08:50.434873 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-08-07T03:08:50.434938 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:08:50.435375 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T03:08:50.435435 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:08:50.436946 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.45 ms +I, [2018-08-07T03:08:50.437018 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:08:50.438557 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.73 ms +I, [2018-08-07T03:08:50.438630 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:08:50.439159 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.25 ms +I, [2018-08-07T03:08:50.439231 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:08:52.435750 #7] INFO -- : Committing offsets: section_change/0:968 +I, [2018-08-07T03:08:52.440341 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-08-07T03:08:52.440391 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:08:52.440703 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T03:08:52.440772 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:08:52.441329 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.36 ms +I, [2018-08-07T03:08:52.441371 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:08:52.441648 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T03:08:52.441682 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:08:52.444279 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T03:08:52.444325 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:08:52.446377 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T03:08:52.446418 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:08:52.446734 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T03:08:52.446812 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:08:54.442599 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.29 ms +I, [2018-08-07T03:08:54.442659 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:08:54.442996 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T03:08:54.443032 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:08:54.443379 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T03:08:54.443426 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:08:54.443906 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.24 ms +I, [2018-08-07T03:08:54.443948 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:08:54.444243 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T03:08:54.444352 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:08:54.447895 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T03:08:54.447948 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:08:54.448286 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T03:08:54.448333 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:08:54.448621 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T03:08:54.448657 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:08:54.448926 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T03:08:54.448970 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:08:54.449280 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T03:08:54.449312 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:08:54.449567 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T03:08:54.449647 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:08:56.445268 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-08-07T03:08:56.445459 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:08:56.446076 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T03:08:56.446114 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:08:56.446344 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T03:08:56.446374 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:08:56.446758 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T03:08:56.446805 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:08:56.447120 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T03:08:56.447169 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:08:56.447439 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T03:08:56.447470 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:08:56.450386 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T03:08:56.450449 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:08:56.450682 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T03:08:56.450738 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:08:56.450976 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T03:08:56.451076 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:08:56.451294 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T03:08:56.451323 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:08:56.451571 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T03:08:56.451600 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:08:56.451931 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T03:08:56.451972 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:08:56.452552 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-08-07T03:08:56.452659 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:08:56.453081 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T03:08:56.453119 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:08:58.447967 #7] INFO -- : Committing offsets: course_change/0:493 +I, [2018-08-07T03:08:58.469787 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.27 ms +I, [2018-08-07T03:08:58.469859 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:08:58.470790 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.72 ms +I, [2018-08-07T03:08:58.471561 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:08:58.473977 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.45 ms +I, [2018-08-07T03:08:58.474075 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:08:58.489927 #7] INFO -- : Inline processing of topic course_change with 1 messages took 1.46 ms +I, [2018-08-07T03:08:58.489996 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:08:58.491168 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.67 ms +I, [2018-08-07T03:08:58.491218 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:08:58.491837 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.32 ms +I, [2018-08-07T03:08:58.491902 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:09:02.476326 #7] INFO -- : Committing offsets: section_change/0:988 +I, [2018-08-07T03:09:02.494346 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.63 ms +I, [2018-08-07T03:09:02.494463 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:09:02.495078 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.3 ms +I, [2018-08-07T03:09:02.495148 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:09:02.495639 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.25 ms +I, [2018-08-07T03:09:02.495678 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:09:02.514452 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.63 ms +I, [2018-08-07T03:09:02.514531 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:09:02.515302 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.4 ms +I, [2018-08-07T03:09:02.515352 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:09:02.516049 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T03:09:02.516150 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:09:04.519766 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.35 ms +I, [2018-08-07T03:09:04.526824 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:09:04.704099 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.42 ms +I, [2018-08-07T03:09:04.704176 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:09:04.704690 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T03:09:04.704742 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:09:04.705165 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T03:09:04.705214 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:09:04.705654 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T03:09:04.705863 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:09:04.709607 #7] INFO -- : Inline processing of topic section_change with 1 messages took 3.53 ms +I, [2018-08-07T03:09:04.709683 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:09:04.711816 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.84 ms +I, [2018-08-07T03:09:04.712385 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:09:04.724672 #7] INFO -- : Inline processing of topic course_change with 1 messages took 191.55 ms +I, [2018-08-07T03:09:04.725865 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:09:04.731664 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.76 ms +I, [2018-08-07T03:09:04.733325 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:09:04.801442 #7] INFO -- : Inline processing of topic course_change with 1 messages took 59.31 ms +I, [2018-08-07T03:09:04.801565 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:09:04.802228 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.42 ms +I, [2018-08-07T03:09:04.802286 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:09:04.803560 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.93 ms +I, [2018-08-07T03:09:04.803645 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:09:06.713527 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-08-07T03:09:06.713582 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:09:06.713963 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T03:09:06.713994 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:09:06.714257 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T03:09:06.714286 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:09:06.714520 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-08-07T03:09:06.714549 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:09:06.714805 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T03:09:06.714910 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:09:06.804764 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.24 ms +I, [2018-08-07T03:09:06.804815 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:09:06.805184 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-08-07T03:09:06.805230 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:09:06.805480 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T03:09:06.805522 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:09:06.805949 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.25 ms +I, [2018-08-07T03:09:06.805997 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:09:06.806338 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T03:09:06.806383 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:09:08.716818 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.47 ms +I, [2018-08-07T03:09:08.716885 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:09:08.717342 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T03:09:08.717490 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:09:08.718097 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-08-07T03:09:08.718245 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:09:08.719196 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.43 ms +I, [2018-08-07T03:09:08.719251 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:09:08.720954 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.46 ms +I, [2018-08-07T03:09:08.721194 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:09:08.723001 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-08-07T03:09:08.723073 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:09:08.725162 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.46 ms +I, [2018-08-07T03:09:08.726840 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:09:08.727227 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T03:09:08.727299 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:09:08.727528 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T03:09:08.727602 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:09:08.807096 #7] INFO -- : Committing offsets: course_change/0:510 +I, [2018-08-07T03:09:08.819959 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-08-07T03:09:08.820008 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:09:08.820255 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T03:09:08.820285 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:09:08.822729 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-08-07T03:09:08.822772 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:09:08.823014 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T03:09:08.823045 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:09:08.823567 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.37 ms +I, [2018-08-07T03:09:08.823692 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:09:08.824132 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-08-07T03:09:08.824180 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:09:08.824518 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T03:09:08.824567 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:09:08.824892 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T03:09:08.824938 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:09:08.825314 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T03:09:08.825361 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:09:10.752499 #7] INFO -- : Inline processing of topic section_change with 1 messages took 6.01 ms +I, [2018-08-07T03:09:10.805100 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:09:10.805897 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.45 ms +I, [2018-08-07T03:09:10.805946 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:09:10.816124 #7] INFO -- : Inline processing of topic section_change with 1 messages took 9.62 ms +I, [2018-08-07T03:09:10.816223 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:09:10.817648 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.53 ms +I, [2018-08-07T03:09:10.817724 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:09:10.818567 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.41 ms +I, [2018-08-07T03:09:10.818624 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:09:10.819058 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T03:09:10.819106 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:09:10.820333 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.6 ms +I, [2018-08-07T03:09:10.820445 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:09:10.825497 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.89 ms +I, [2018-08-07T03:09:10.825847 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:09:10.833807 #7] INFO -- : Inline processing of topic section_change with 1 messages took 7.25 ms +I, [2018-08-07T03:09:10.834016 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:09:10.835611 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.93 ms +I, [2018-08-07T03:09:10.836107 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:09:10.836951 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.59 ms +I, [2018-08-07T03:09:10.837004 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:09:10.837521 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-08-07T03:09:10.837575 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:09:10.838043 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T03:09:10.838101 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:09:10.838573 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T03:09:10.838678 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:09:10.839421 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.55 ms +I, [2018-08-07T03:09:10.839481 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:09:10.840428 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.53 ms +I, [2018-08-07T03:09:10.840490 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:09:10.841358 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.67 ms +I, [2018-08-07T03:09:10.841458 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:09:10.841919 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T03:09:10.842080 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:09:10.842510 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T03:09:10.842561 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:09:10.842979 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T03:09:10.843029 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:09:10.843413 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T03:09:10.843463 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:09:10.845708 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T03:09:10.845757 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:09:10.846592 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T03:09:10.846641 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:09:12.846300 #7] INFO -- : Inline processing of topic course_change with 1 messages took 1.19 ms +I, [2018-08-07T03:09:12.846361 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:09:12.846623 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T03:09:12.846654 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:09:12.847588 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.81 ms +I, [2018-08-07T03:09:12.847657 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:09:12.850065 #7] INFO -- : Committing offsets: section_change/0:1034 +I, [2018-08-07T03:09:12.870845 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.65 ms +I, [2018-08-07T03:09:12.870899 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:09:12.871160 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T03:09:12.871191 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:09:12.873032 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T03:09:12.873076 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:09:12.874831 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T03:09:12.874872 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:09:12.876936 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T03:09:12.876976 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:09:12.877182 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T03:09:12.877212 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:09:12.885367 #7] INFO -- : Inline processing of topic section_change with 1 messages took 5.07 ms +I, [2018-08-07T03:09:12.885428 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:09:12.889354 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T03:09:12.889494 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:09:12.895018 #7] INFO -- : Inline processing of topic section_change with 1 messages took 5.28 ms +I, [2018-08-07T03:09:12.895109 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:09:12.897655 #7] INFO -- : Inline processing of topic section_change with 1 messages took 2.26 ms +I, [2018-08-07T03:09:12.897727 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:09:12.898219 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T03:09:12.898273 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:09:12.899950 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T03:09:12.900016 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:09:12.902255 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-08-07T03:09:12.902348 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:09:12.903489 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T03:09:12.903551 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:09:12.906001 #7] INFO -- : Inline processing of topic section_change with 1 messages took 2.11 ms +I, [2018-08-07T03:09:12.906164 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:09:12.907062 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T03:09:12.907124 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:09:12.913281 #7] INFO -- : Inline processing of topic section_change with 1 messages took 2.11 ms +I, [2018-08-07T03:09:12.915402 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:09:12.921789 #7] INFO -- : Inline processing of topic section_change with 1 messages took 5.32 ms +I, [2018-08-07T03:09:12.921879 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:09:12.922295 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T03:09:12.922330 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:09:12.925730 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T03:09:12.925788 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:09:12.928764 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.3 ms +I, [2018-08-07T03:09:12.928816 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:09:12.929175 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T03:09:12.929233 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:09:12.930928 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T03:09:12.930969 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:09:12.947349 #7] INFO -- : Inline processing of topic section_change with 1 messages took 16.19 ms +I, [2018-08-07T03:09:12.947442 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:09:12.948483 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.45 ms +I, [2018-08-07T03:09:12.948553 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:09:12.962136 #7] INFO -- : Inline processing of topic section_change with 1 messages took 13.34 ms +I, [2018-08-07T03:09:12.962186 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:09:12.962648 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T03:09:12.962683 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:09:12.962895 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T03:09:12.962934 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:09:15.034835 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-08-07T03:09:15.034906 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:09:15.035365 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T03:09:15.035414 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:09:15.036059 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T03:09:15.036116 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:09:15.045765 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-08-07T03:09:15.047099 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:09:15.047725 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-08-07T03:09:15.047780 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:09:15.048213 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T03:09:15.048614 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:09:15.072046 #7] INFO -- : Inline processing of topic section_change with 1 messages took 17.32 ms +I, [2018-08-07T03:09:15.072121 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:09:15.080553 #7] INFO -- : Inline processing of topic section_change with 1 messages took 8.12 ms +I, [2018-08-07T03:09:15.084245 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:09:15.085153 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-08-07T03:09:15.085214 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:09:15.089355 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.41 ms +I, [2018-08-07T03:09:15.089448 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:09:15.092192 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.25 ms +I, [2018-08-07T03:09:15.093318 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:09:15.093811 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T03:09:15.121716 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:09:15.125362 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.49 ms +I, [2018-08-07T03:09:15.125536 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:09:15.127974 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.49 ms +I, [2018-08-07T03:09:15.128090 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:09:15.128566 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T03:09:15.128620 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:09:15.129012 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T03:09:15.129067 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:09:15.131770 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.98 ms +I, [2018-08-07T03:09:15.131954 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:09:15.132510 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T03:09:15.132567 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:09:15.133076 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T03:09:15.133124 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:09:15.134472 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.12 ms +I, [2018-08-07T03:09:15.134545 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:09:15.135086 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T03:09:15.135139 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:09:15.135910 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.52 ms +I, [2018-08-07T03:09:15.135953 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:09:15.136394 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T03:09:15.136437 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:09:15.144717 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T03:09:15.144789 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:09:15.178576 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T03:09:15.204263 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:09:15.208052 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-08-07T03:09:15.208114 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:09:15.209256 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.63 ms +I, [2018-08-07T03:09:15.209331 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:09:15.210536 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.43 ms +I, [2018-08-07T03:09:15.210677 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:09:15.222551 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.49 ms +I, [2018-08-07T03:09:15.222704 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:09:15.224109 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.03 ms +I, [2018-08-07T03:09:15.241033 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:09:15.241568 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T03:09:15.241619 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:09:15.242022 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T03:09:15.242075 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:09:15.242566 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-08-07T03:09:15.242789 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:09:15.243536 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.5 ms +I, [2018-08-07T03:09:15.243711 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:09:15.244555 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T03:09:15.244612 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:09:15.245039 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T03:09:15.245076 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:09:15.245450 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T03:09:15.245531 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:09:17.026125 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.27 ms +I, [2018-08-07T03:09:17.026197 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:09:17.026482 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T03:09:17.026514 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:09:17.246585 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-08-07T03:09:17.246637 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:09:17.246983 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T03:09:17.247026 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:09:17.247306 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T03:09:17.247338 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:09:17.247652 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T03:09:17.247776 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:09:17.249279 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.62 ms +I, [2018-08-07T03:09:17.249346 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:09:17.249782 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T03:09:17.249844 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:09:17.250546 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T03:09:17.250591 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:09:17.250923 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T03:09:17.250959 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:09:17.251364 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T03:09:17.251408 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:09:17.252878 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-08-07T03:09:17.252942 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:09:17.253463 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-08-07T03:09:17.253501 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:09:17.253759 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T03:09:17.253790 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:09:17.254210 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T03:09:17.254269 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:09:17.254608 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T03:09:17.254640 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:09:17.254999 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T03:09:17.255064 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:09:19.026743 #7] INFO -- : Committing offsets: course_change/0:524 +I, [2018-08-07T03:09:19.032645 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.25 ms +I, [2018-08-07T03:09:19.032692 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:09:19.256185 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-08-07T03:09:19.256260 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:09:19.256744 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T03:09:19.256797 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:09:19.257165 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T03:09:19.257207 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:09:19.257548 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T03:09:19.257597 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:09:19.257974 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T03:09:19.258049 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:09:19.258341 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T03:09:19.258371 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:09:19.258642 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T03:09:19.258676 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:09:19.258921 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T03:09:19.258952 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:09:21.000192 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.28 ms +I, [2018-08-07T03:09:21.000380 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:09:21.240039 #7] INFO -- : Inline processing of topic section_change with 1 messages took 3.44 ms +I, [2018-08-07T03:09:21.240960 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:09:21.248272 #7] INFO -- : Inline processing of topic section_change with 1 messages took 3.02 ms +I, [2018-08-07T03:09:21.248348 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:09:21.253198 #7] INFO -- : Inline processing of topic section_change with 1 messages took 3.14 ms +I, [2018-08-07T03:09:21.253493 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:09:23.254248 #7] INFO -- : Committing offsets: section_change/0:1125 +I, [2018-08-07T03:09:23.276174 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.43 ms +I, [2018-08-07T03:09:23.276268 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:09:23.282690 #7] INFO -- : Inline processing of topic section_change with 1 messages took 5.85 ms +I, [2018-08-07T03:09:23.282849 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:09:23.283837 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.46 ms +I, [2018-08-07T03:09:23.283913 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:09:23.285181 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.93 ms +I, [2018-08-07T03:09:23.285230 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:09:25.302521 #7] INFO -- : Inline processing of topic section_change with 1 messages took 13.85 ms +I, [2018-08-07T03:09:25.303616 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:09:25.392601 #7] INFO -- : Inline processing of topic section_change with 1 messages took 73.42 ms +I, [2018-08-07T03:09:25.392679 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:09:25.393274 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-08-07T03:09:25.393328 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:09:25.393940 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-08-07T03:09:25.393997 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:09:27.395841 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.99 ms +I, [2018-08-07T03:09:27.396053 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:09:27.396655 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-08-07T03:09:27.396694 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:09:27.397025 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T03:09:27.397056 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:09:29.006600 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.28 ms +I, [2018-08-07T03:09:29.006702 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:09:29.007142 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.25 ms +I, [2018-08-07T03:09:29.007295 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:09:29.398437 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.84 ms +I, [2018-08-07T03:09:29.398487 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:09:29.399736 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T03:09:29.399794 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:09:29.401786 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-08-07T03:09:29.401837 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:09:29.403647 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-08-07T03:09:29.407105 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:09:29.407864 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.48 ms +I, [2018-08-07T03:09:29.408153 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:09:29.409068 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-08-07T03:09:29.409130 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:09:29.409572 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T03:09:29.409678 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:09:29.409991 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T03:09:29.410023 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:09:29.411503 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.32 ms +I, [2018-08-07T03:09:29.411599 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:09:31.007918 #7] INFO -- : Committing offsets: course_change/0:528 +I, [2018-08-07T03:09:31.412847 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-08-07T03:09:31.412918 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:09:31.413331 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T03:09:31.413395 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:09:31.413636 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T03:09:31.413666 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:09:31.414035 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T03:09:31.414068 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:09:33.015072 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.32 ms +I, [2018-08-07T03:09:33.015125 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:09:33.015387 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T03:09:33.015418 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:09:33.015688 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T03:09:33.015779 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:09:33.416448 #7] INFO -- : Committing offsets: section_change/0:1149 +I, [2018-08-07T03:09:33.421760 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.45 ms +I, [2018-08-07T03:09:33.421814 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:09:33.422169 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T03:09:33.422206 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:09:33.422523 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T03:09:33.422568 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:09:33.422926 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T03:09:33.422963 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:09:33.423258 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T03:09:33.423291 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:09:35.424247 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-08-07T03:09:35.424373 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:09:35.424895 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T03:09:35.424943 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:09:35.425488 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-08-07T03:09:35.425525 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:09:35.425925 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T03:09:35.425958 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:09:35.426361 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T03:09:35.426405 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:09:37.427447 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-08-07T03:09:37.427498 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:09:37.427827 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T03:09:37.427879 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:09:37.428198 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T03:09:37.428230 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:09:37.428567 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T03:09:37.428630 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:09:37.428910 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T03:09:37.428940 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:09:37.429358 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-08-07T03:09:37.429501 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:09:39.017793 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T03:09:39.017842 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:09:39.018060 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T03:09:39.018089 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:09:39.018310 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T03:09:39.018339 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:09:39.430353 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T03:09:39.430445 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:09:39.430739 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T03:09:39.430771 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:09:39.431168 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T03:09:39.431222 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:09:39.431612 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T03:09:39.431697 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:09:39.432893 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T03:09:39.432934 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:09:39.433558 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.47 ms +I, [2018-08-07T03:09:39.433607 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:09:39.434275 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.4 ms +I, [2018-08-07T03:09:39.434405 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:09:41.018731 #7] INFO -- : Committing offsets: course_change/0:534 +I, [2018-08-07T03:09:41.023934 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T03:09:41.024037 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:09:41.435499 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-08-07T03:09:41.435570 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:09:41.435953 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T03:09:41.435988 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:09:41.436745 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T03:09:41.436803 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:09:41.437157 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T03:09:41.437190 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:09:41.437459 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T03:09:41.437625 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:09:41.437946 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T03:09:41.437977 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:09:43.024899 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-08-07T03:09:43.024952 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:09:43.025219 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T03:09:43.025253 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:09:43.025502 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T03:09:43.025538 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:09:43.438382 #7] INFO -- : Committing offsets: section_change/0:1178 +I, [2018-08-07T03:09:43.443282 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-08-07T03:09:43.443337 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:09:43.443715 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T03:09:43.443762 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:09:43.444124 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T03:09:43.444156 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:09:43.444494 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T03:09:43.444543 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:09:43.444905 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T03:09:43.444946 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:09:45.026152 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-08-07T03:09:45.026202 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:09:45.449287 #7] INFO -- : Inline processing of topic section_change with 1 messages took 2.57 ms +I, [2018-08-07T03:09:45.449415 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:09:45.450363 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.49 ms +I, [2018-08-07T03:09:45.450476 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:09:45.457288 #7] INFO -- : Inline processing of topic section_change with 1 messages took 5.49 ms +I, [2018-08-07T03:09:45.458508 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:09:45.463746 #7] INFO -- : Inline processing of topic section_change with 1 messages took 3.74 ms +I, [2018-08-07T03:09:45.463882 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:09:47.026894 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T03:09:47.026944 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:09:47.464529 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T03:09:47.464600 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:09:47.464900 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T03:09:47.464930 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:09:47.465215 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T03:09:47.465245 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:09:47.465575 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T03:09:47.465622 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:09:47.466081 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T03:09:47.466131 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:09:47.466580 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T03:09:47.466633 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:09:47.467106 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T03:09:47.467165 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:09:49.094891 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.94 ms +I, [2018-08-07T03:09:49.094989 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:09:49.095489 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.3 ms +I, [2018-08-07T03:09:49.095579 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:09:49.096328 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.3 ms +I, [2018-08-07T03:09:49.096381 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:09:49.434507 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.85 ms +I, [2018-08-07T03:09:49.440781 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:09:49.443313 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.74 ms +I, [2018-08-07T03:09:49.444848 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:09:49.446685 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.97 ms +I, [2018-08-07T03:09:49.446752 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:09:49.448194 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.62 ms +I, [2018-08-07T03:09:49.448368 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:09:51.059733 #7] INFO -- : Committing offsets: course_change/0:543 +I, [2018-08-07T03:09:51.065681 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.24 ms +I, [2018-08-07T03:09:51.065732 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:09:51.066097 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-08-07T03:09:51.066134 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:09:51.066522 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T03:09:51.066572 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:09:51.066892 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T03:09:51.066939 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:09:51.450957 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.45 ms +I, [2018-08-07T03:09:51.451049 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:09:51.453323 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.45 ms +I, [2018-08-07T03:09:51.453700 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:09:51.454272 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-08-07T03:09:51.454338 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:09:51.454829 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T03:09:51.454885 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:09:51.456232 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.09 ms +I, [2018-08-07T03:09:51.456311 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:09:51.457912 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.67 ms +I, [2018-08-07T03:09:51.457977 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:09:51.459177 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.93 ms +I, [2018-08-07T03:09:51.459226 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:09:51.459964 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T03:09:51.460009 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:09:51.460402 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T03:09:51.460440 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:09:53.067855 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.24 ms +I, [2018-08-07T03:09:53.068029 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:09:53.460901 #7] INFO -- : Committing offsets: section_change/0:1207 +I, [2018-08-07T03:09:53.477722 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T03:09:53.477797 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:09:53.478177 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T03:09:53.478219 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:09:53.478495 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T03:09:53.478525 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:09:53.479054 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-08-07T03:09:53.479109 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:09:53.481549 #7] INFO -- : Inline processing of topic section_change with 1 messages took 2.22 ms +I, [2018-08-07T03:09:53.481646 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:09:55.080422 #7] INFO -- : Inline processing of topic course_change with 1 messages took 1.8 ms +I, [2018-08-07T03:09:55.088170 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:09:55.089272 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.53 ms +I, [2018-08-07T03:09:55.089354 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:09:55.482765 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-08-07T03:09:55.482822 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:09:55.483308 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-08-07T03:09:55.483360 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:09:55.483925 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-08-07T03:09:55.483958 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:09:57.243414 #7] INFO -- : Inline processing of topic course_change with 1 messages took 115.63 ms +I, [2018-08-07T03:09:57.243509 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:09:57.244416 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-08-07T03:09:57.244534 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:09:57.247255 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.43 ms +I, [2018-08-07T03:09:57.247389 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:09:57.299078 #7] INFO -- : Inline processing of topic course_change with 1 messages took 51.04 ms +I, [2018-08-07T03:09:57.371831 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:09:57.532317 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.51 ms +I, [2018-08-07T03:09:57.532499 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:09:57.533832 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.06 ms +I, [2018-08-07T03:09:57.534422 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:09:57.620831 #7] INFO -- : Inline processing of topic section_change with 1 messages took 5.68 ms +I, [2018-08-07T03:09:57.628531 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:09:58.261069 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.47 ms +I, [2018-08-07T03:09:58.261236 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:09:58.261805 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-08-07T03:09:58.261857 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:13:31.138667 #7] INFO -- : New topics added to target list: section_change +I, [2018-08-07T03:13:31.141061 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T03:13:31.142942 #7] INFO -- : New topics added to target list: course_change +I, [2018-08-07T03:13:31.142989 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T03:13:31.145731 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T03:13:31.146715 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T03:13:31.165486 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T03:13:31.165671 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T03:13:36.148081 #7] 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.14:9094 +I, [2018-08-07T03:13:36.149738 #7] INFO -- : New topics added to target list: course_change +I, [2018-08-07T03:13:36.149814 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T03:13:36.154013 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T03:13:36.156290 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T03:13:36.166014 #7] 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.14:9094 +I, [2018-08-07T03:13:36.169787 #7] INFO -- : New topics added to target list: section_change +I, [2018-08-07T03:13:36.169907 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T03:13:36.171182 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T03:13:36.171372 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T03:13:44.299005 #7] 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.14:9094 +E, [2018-08-07T03:13:45.235907 #7] 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.14:9094 +I, [2018-08-07T03:13:46.249908 #7] INFO -- : New topics added to target list: course_change +I, [2018-08-07T03:13:46.250712 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T03:13:46.329608 #7] INFO -- : New topics added to target list: section_change +I, [2018-08-07T03:13:46.329695 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T03:13:46.356311 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T03:13:46.356778 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T03:13:46.364950 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T03:13:46.365349 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T03:13:51.359753 #7] 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.14:9094 +I, [2018-08-07T03:13:51.362734 #7] INFO -- : New topics added to target list: course_change +I, [2018-08-07T03:13:51.362853 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T03:13:51.729074 #7] 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.14:9094 +I, [2018-08-07T03:13:52.964088 #7] INFO -- : New topics added to target list: section_change +I, [2018-08-07T03:13:52.972056 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T03:13:54.749119 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T03:13:54.750526 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T03:13:55.025106 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T03:13:55.025276 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T03:13:59.832327 #7] 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.14:9094 +I, [2018-08-07T03:14:03.340445 #7] INFO -- : New topics added to target list: course_change +I, [2018-08-07T03:14:03.341080 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T03:14:03.460473 #7] 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.14:9094 +E, [2018-08-07T03:14:05.670923 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T03:14:05.672165 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +I, [2018-08-07T03:14:05.966886 #7] INFO -- : New topics added to target list: section_change +I, [2018-08-07T03:14:05.967222 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T03:14:06.101736 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T03:14:06.102444 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T03:14:14.451391 #7] 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.14:9094 +E, [2018-08-07T03:14:14.550410 #7] 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.14:9094 +I, [2018-08-07T03:14:14.990672 #7] INFO -- : New topics added to target list: course_change +I, [2018-08-07T03:14:14.991055 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T03:14:15.091563 #7] INFO -- : New topics added to target list: section_change +I, [2018-08-07T03:14:15.091649 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T03:14:15.160934 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T03:14:15.161365 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T03:14:15.218893 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T03:14:15.219058 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T03:14:20.895638 #7] 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.14:9094 +E, [2018-08-07T03:14:21.211341 #7] 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.14:9094 +I, [2018-08-07T03:14:21.859855 #7] INFO -- : New topics added to target list: section_change +I, [2018-08-07T03:14:21.860326 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T03:14:21.943349 #7] INFO -- : New topics added to target list: course_change +I, [2018-08-07T03:14:22.023346 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T03:14:22.071491 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T03:14:22.102694 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T03:14:22.103967 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T03:14:22.104083 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T03:14:27.133001 #7] 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.14:9094 +E, [2018-08-07T03:14:27.140396 #7] 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.14:9094 +I, [2018-08-07T03:14:27.157751 #7] INFO -- : New topics added to target list: section_change +I, [2018-08-07T03:14:27.157828 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T03:14:27.163018 #7] INFO -- : New topics added to target list: course_change +I, [2018-08-07T03:14:27.163141 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T03:14:27.303760 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T03:14:27.313394 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T03:14:27.314908 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T03:14:27.315034 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T03:14:32.314148 #7] 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.14:9094 +I, [2018-08-07T03:14:32.320024 #7] INFO -- : New topics added to target list: section_change +I, [2018-08-07T03:14:32.320110 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T03:14:32.322416 #7] 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.14:9094 +I, [2018-08-07T03:14:32.325209 #7] INFO -- : New topics added to target list: course_change +I, [2018-08-07T03:14:32.336914 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T03:14:32.342596 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T03:14:32.343865 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T03:14:32.381383 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T03:14:32.381552 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T03:14:37.345135 #7] 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.14:9094 +I, [2018-08-07T03:14:37.361932 #7] INFO -- : New topics added to target list: section_change +I, [2018-08-07T03:14:37.362026 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T03:14:37.392890 #7] 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.14:9094 +I, [2018-08-07T03:14:37.395657 #7] INFO -- : New topics added to target list: course_change +I, [2018-08-07T03:14:37.395715 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T03:14:50.630993 #7] ERROR -- : No brokers in cluster +E, [2018-08-07T03:14:50.675028 #7] ERROR -- : No brokers in cluster +E, [2018-08-07T03:14:55.593215 #7] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: + +I, [2018-08-07T03:14:55.726775 #7] INFO -- : New topics added to target list: course_change +I, [2018-08-07T03:14:55.729947 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T03:14:55.759601 #7] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: + +I, [2018-08-07T03:14:55.795414 #7] INFO -- : New topics added to target list: section_change +I, [2018-08-07T03:14:55.795602 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T03:14:56.231223 #7] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-07T03:14:56.252347 #7] INFO -- : Joining group `notifications_notifications` +I, [2018-08-07T03:14:56.258513 #7] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-07T03:14:56.258908 #7] INFO -- : Joining group `notifications_course_change` +I, [2018-08-07T03:14:56.299537 #7] INFO -- : Will fetch at most 1048576 bytes at a time per partition from section_change +I, [2018-08-07T03:14:56.299790 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T03:14:56.300610 #7] INFO -- : Will fetch at most 1048576 bytes at a time per partition from course_change +I, [2018-08-07T03:14:56.300738 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T03:14:56.345371 #7] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-07T03:14:56.345559 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T03:14:56.389150 #7] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-07T03:14:56.389260 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T03:14:57.345999 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T03:14:57.389471 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T03:14:58.347413 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T03:14:58.389754 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T03:14:59.347844 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T03:14:59.390304 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T03:15:00.348162 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T03:15:00.390819 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T03:15:01.355480 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T03:15:01.398893 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T03:15:02.360178 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T03:15:02.401878 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T03:15:03.363887 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T03:15:03.402450 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T03:15:04.364353 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T03:15:04.403285 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T03:15:04.573838 #7] INFO -- : Joined group `notifications_course_change` with member id `notifications-bf272ce4-8883-471f-93dc-6e6190ba9f19` +I, [2018-08-07T03:15:04.573930 #7] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-07T03:15:04.616134 #7] INFO -- : Joined group `notifications_notifications` with member id `notifications-4c9e44e0-11c5-4e84-84fd-8a46f3b18136` +I, [2018-08-07T03:15:04.616207 #7] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-07T03:15:05.364818 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T03:15:05.403657 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T03:15:05.619986 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T03:15:05.620734 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T03:15:05.626424 #7] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-07T03:15:05.633465 #7] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-07T03:15:05.743634 #7] INFO -- : Partitions assigned for `section_change`: 0 +I, [2018-08-07T03:15:05.759636 #7] INFO -- : Partitions assigned for `course_change`: 0 +I, [2018-08-07T03:15:06.365629 #7] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-07T03:15:06.365774 #7] INFO -- : New topics added to target list: section_change +I, [2018-08-07T03:15:06.365831 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T03:15:06.371799 #7] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-07T03:15:06.403919 #7] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-07T03:15:06.404023 #7] INFO -- : New topics added to target list: course_change +I, [2018-08-07T03:15:06.404218 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T03:15:06.408653 #7] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +E, [2018-08-07T03:15:12.129647 #7] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- ArgumentError: channel is required for pub/sub methods. +/usr/src/app/app/controllers/eventstream.rb:17:in `publish' +/usr/src/app/app/controllers/eventstream.rb:17:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-07T03:15:12.131076 #7] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-07T03:15:12.133195 #7] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- ArgumentError: channel is required for pub/sub methods. +/usr/src/app/app/controllers/eventstream.rb:17:in `publish' +/usr/src/app/app/controllers/eventstream.rb:17:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-07T03:15:12.209667 #7] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-07T03:15:12.321236 #7] ERROR -- : Client fetch loop error: channel is required for pub/sub methods. +E, [2018-08-07T03:15:12.391713 #7] ERROR -- : Client fetch loop error: channel is required for pub/sub methods. +I, [2018-08-07T03:15:12.392062 #7] INFO -- : Joining group `notifications_course_change` +I, [2018-08-07T03:15:12.503618 #7] INFO -- : Joining group `notifications_notifications` +E, [2018-08-07T03:15:12.528317 #7] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-07T03:15:12.529549 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-07T03:15:12.547967 #7] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-07T03:15:12.604974 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T03:15:13.528648 #7] INFO -- : Joining group `notifications_course_change` +I, [2018-08-07T03:15:13.529989 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T03:15:13.548237 #7] INFO -- : Joining group `notifications_notifications` +I, [2018-08-07T03:15:13.605322 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T03:15:13.607774 #7] INFO -- : Joined group `notifications_notifications` with member id `notifications-da90e572-b1dc-42e5-8788-cd015ca5aa6d` +I, [2018-08-07T03:15:13.607858 #7] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-07T03:15:13.611015 #7] INFO -- : Joined group `notifications_course_change` with member id `notifications-c3e1fd9f-ff7f-4439-8742-4c1382404b48` +I, [2018-08-07T03:15:13.611060 #7] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-07T03:15:13.620797 #7] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-07T03:15:13.620918 #7] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-07T03:15:13.650571 #7] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-07T03:15:13.650643 #7] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-07T03:15:14.541810 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T03:15:14.675396 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T03:15:15.542262 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T03:15:15.675753 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T03:15:16.542716 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T03:15:16.690863 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T03:15:17.543349 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T03:15:17.691275 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T03:15:18.550795 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T03:15:18.691960 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T03:15:19.551349 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T03:15:19.703550 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T03:15:20.551838 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T03:15:20.704459 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T03:15:21.536376 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T03:15:21.688151 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T03:15:22.536963 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T03:15:22.688615 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T03:15:23.537264 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T03:15:23.658259 #7] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-07T03:15:23.678081 #7] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-07T03:15:23.692970 #7] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-07T03:15:24.542579 #7] INFO -- : Seeking course_change/0 to offset 0 +E, [2018-08-07T03:15:25.697344 #7] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- ArgumentError: channel is required for pub/sub methods. +/usr/src/app/app/controllers/eventstream.rb:17:in `publish' +/usr/src/app/app/controllers/eventstream.rb:17:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-07T03:15:25.697419 #7] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-07T03:15:25.697926 #7] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- ArgumentError: channel is required for pub/sub methods. +/usr/src/app/app/controllers/eventstream.rb:17:in `publish' +/usr/src/app/app/controllers/eventstream.rb:17:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-07T03:15:25.704307 #7] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-07T03:15:25.733720 #7] ERROR -- : Client fetch loop error: channel is required for pub/sub methods. +I, [2018-08-07T03:15:25.734068 #7] INFO -- : Joining group `notifications_notifications` +I, [2018-08-07T03:15:25.735898 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-07T03:15:25.737768 #7] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-08-07T03:15:25.738716 #7] ERROR -- : Client fetch loop error: channel is required for pub/sub methods. +I, [2018-08-07T03:15:25.740246 #7] INFO -- : Joining group `notifications_course_change` +E, [2018-08-07T03:15:25.742708 #7] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-07T03:15:25.891598 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T03:15:26.738789 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T03:15:26.739331 #7] INFO -- : Joining group `notifications_notifications` +I, [2018-08-07T03:15:26.745415 #7] INFO -- : Joining group `notifications_course_change` +I, [2018-08-07T03:15:26.853156 #7] INFO -- : Joined group `notifications_course_change` with member id `notifications-3e42f2d0-99bd-437c-a549-c355bc57511a` +I, [2018-08-07T03:15:26.853228 #7] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-07T03:15:26.900733 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T03:15:26.947533 #7] INFO -- : Joined group `notifications_notifications` with member id `notifications-6a4db451-402a-4a25-968b-a7b606d268fb` +I, [2018-08-07T03:15:26.947603 #7] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-07T03:15:26.951010 #7] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-07T03:15:26.963311 #7] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-07T03:15:26.972907 #7] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-07T03:15:26.973017 #7] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-07T03:15:27.739893 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T03:15:27.901145 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T03:15:28.743248 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T03:15:28.901839 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T03:15:29.868722 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T03:15:29.913658 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T03:15:30.870228 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T03:15:30.971269 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T03:15:31.873367 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T03:15:31.971669 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T03:15:32.886459 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T03:15:32.972501 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T03:15:33.887447 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T03:15:33.973729 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T03:15:36.359898 #7] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-07T03:15:36.419831 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T03:15:36.425833 #7] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-07T03:15:36.436168 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T03:15:37.420914 #7] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-07T03:15:37.436722 #7] INFO -- : Seeking section_change/0 to offset 0 +E, [2018-08-07T03:15:42.257652 #7] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- ArgumentError: channel is required for pub/sub methods. +/usr/src/app/app/controllers/eventstream.rb:17:in `publish' +/usr/src/app/app/controllers/eventstream.rb:17:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-07T03:15:42.257817 #7] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-07T03:15:42.259601 #7] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- ArgumentError: channel is required for pub/sub methods. +/usr/src/app/app/controllers/eventstream.rb:17:in `publish' +/usr/src/app/app/controllers/eventstream.rb:17:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-07T03:15:42.394898 #7] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-07T03:15:43.263442 #7] ERROR -- : Client fetch loop error: channel is required for pub/sub methods. +I, [2018-08-07T03:15:43.350480 #7] INFO -- : Joining group `notifications_course_change` +E, [2018-08-07T03:15:43.406985 #7] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-07T03:15:43.435661 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-07T03:15:44.034753 #7] ERROR -- : Client fetch loop error: channel is required for pub/sub methods. +I, [2018-08-07T03:15:44.036891 #7] INFO -- : Joining group `notifications_notifications` +E, [2018-08-07T03:15:44.046504 #7] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-07T03:15:45.384591 #7] INFO -- : Joining group `notifications_course_change` +I, [2018-08-07T03:15:45.385246 #7] INFO -- : Joining group `notifications_notifications` +I, [2018-08-07T03:15:45.182432 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T03:15:45.399197 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T03:15:45.724552 #7] INFO -- : Joined group `notifications_notifications` with member id `notifications-de2dc08e-949e-4b78-be73-00fef932c763` +I, [2018-08-07T03:15:45.724633 #7] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-07T03:15:45.740684 #7] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-07T03:15:45.741545 #7] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-07T03:15:46.244527 #7] INFO -- : Joined group `notifications_course_change` with member id `notifications-21e8eac5-f463-47ff-9f81-81887238d447` +I, [2018-08-07T03:15:46.256421 #7] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-07T03:15:46.398199 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T03:15:46.408131 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T03:15:46.655055 #7] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-07T03:15:46.655455 #7] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-07T03:15:47.927073 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T03:15:47.870725 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T03:15:49.017212 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T03:15:49.017439 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T03:15:50.017732 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T03:15:50.017981 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T03:15:51.093309 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T03:15:51.093478 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T03:15:52.036696 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T03:15:52.037013 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T03:15:53.038105 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T03:15:53.038299 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T03:15:54.038587 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T03:15:54.038773 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T03:15:55.039013 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T03:15:55.039146 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T03:15:55.089907 #7] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-07T03:15:55.965875 #7] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-07T03:15:56.052970 #7] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-07T03:15:56.054156 #7] INFO -- : Seeking course_change/0 to offset 0 +E, [2018-08-07T03:15:57.102872 #7] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- ArgumentError: channel is required for pub/sub methods. +/usr/src/app/app/controllers/eventstream.rb:17:in `publish' +/usr/src/app/app/controllers/eventstream.rb:17:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-07T03:15:57.103023 #7] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-07T03:15:57.244464 #7] ERROR -- : Client fetch loop error: channel is required for pub/sub methods. +I, [2018-08-07T03:15:57.244829 #7] INFO -- : Joining group `notifications_course_change` +E, [2018-08-07T03:15:57.258871 #7] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-07T03:15:57.918005 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-07T03:15:58.008134 #7] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- ArgumentError: channel is required for pub/sub methods. +/usr/src/app/app/controllers/eventstream.rb:17:in `publish' +/usr/src/app/app/controllers/eventstream.rb:17:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-07T03:15:58.008979 #7] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-07T03:15:58.081407 #7] ERROR -- : Client fetch loop error: channel is required for pub/sub methods. +I, [2018-08-07T03:15:58.084065 #7] INFO -- : Joining group `notifications_notifications` +E, [2018-08-07T03:15:58.094993 #7] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-07T03:15:58.259563 #7] INFO -- : Joining group `notifications_course_change` +I, [2018-08-07T03:15:58.306567 #7] INFO -- : Joined group `notifications_course_change` with member id `notifications-dddc458b-69f4-4de9-ba94-a7d00757a8e9` +I, [2018-08-07T03:15:58.306654 #7] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-07T03:15:58.507844 #7] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-07T03:15:58.508036 #7] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-07T03:15:58.603135 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T03:15:58.937464 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T03:15:59.107186 #7] INFO -- : Joining group `notifications_notifications` +I, [2018-08-07T03:15:59.515921 #7] INFO -- : Joined group `notifications_notifications` with member id `notifications-8f758b08-b82f-4964-804b-dd18b441660b` +I, [2018-08-07T03:15:59.516025 #7] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-07T03:15:59.546740 #7] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-07T03:15:59.546878 #7] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-07T03:15:59.611427 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T03:15:59.957385 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T03:16:00.619163 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T03:16:01.106199 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T03:16:03.632239 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T03:16:03.637887 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T03:16:04.724772 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T03:16:04.725291 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T03:16:05.727383 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T03:16:05.727666 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T03:16:06.727846 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T03:16:06.728965 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T03:16:07.680803 #7] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-07T03:16:07.728407 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T03:16:07.730484 #7] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-07T03:16:08.163610 #7] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-07T03:16:08.732948 #7] INFO -- : Seeking section_change/0 to offset 0 +E, [2018-08-07T03:16:09.692474 #7] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- ArgumentError: channel is required for pub/sub methods. +/usr/src/app/app/controllers/eventstream.rb:17:in `publish' +/usr/src/app/app/controllers/eventstream.rb:17:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-07T03:16:09.695961 #7] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-07T03:16:09.730232 #7] ERROR -- : Client fetch loop error: channel is required for pub/sub methods. +I, [2018-08-07T03:16:09.730589 #7] INFO -- : Joining group `notifications_course_change` +E, [2018-08-07T03:16:09.748600 #7] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-07T03:16:09.833209 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-07T03:16:10.188733 #7] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- ArgumentError: channel is required for pub/sub methods. +/usr/src/app/app/controllers/eventstream.rb:17:in `publish' +/usr/src/app/app/controllers/eventstream.rb:17:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-07T03:16:10.188824 #7] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-07T03:16:10.268958 #7] ERROR -- : Client fetch loop error: channel is required for pub/sub methods. +I, [2018-08-07T03:16:10.273854 #7] INFO -- : Joining group `notifications_notifications` +E, [2018-08-07T03:16:10.293434 #7] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-07T03:16:10.648097 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T03:16:10.754292 #7] INFO -- : Joining group `notifications_course_change` +I, [2018-08-07T03:16:10.848491 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T03:16:10.849519 #7] INFO -- : Joined group `notifications_course_change` with member id `notifications-8822a022-bd7c-4c34-ac1c-db1c5706a0b0` +I, [2018-08-07T03:16:10.849572 #7] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-07T03:16:10.943771 #7] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-07T03:16:10.943897 #7] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-07T03:16:11.293738 #7] INFO -- : Joining group `notifications_notifications` +I, [2018-08-07T03:16:11.308946 #7] INFO -- : Joined group `notifications_notifications` with member id `notifications-4e5e2916-3379-4284-bb52-64a02ca9f357` +I, [2018-08-07T03:16:11.308998 #7] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-07T03:16:11.330016 #7] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-07T03:16:11.330154 #7] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-07T03:16:11.648705 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T03:16:11.855241 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T03:16:12.649471 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T03:16:12.859652 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T03:16:13.650512 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T03:16:13.860165 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T03:16:14.652272 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T03:16:14.860500 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T03:16:15.652649 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T03:16:15.862658 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T03:16:16.748176 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T03:16:16.863384 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T03:16:17.750319 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T03:16:17.864368 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T03:16:18.751140 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T03:16:18.865175 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T03:16:19.751606 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T03:16:19.865576 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T03:16:20.755307 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T03:16:20.988082 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T03:16:21.155868 #7] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-07T03:16:21.359692 #7] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-07T03:16:21.728121 #7] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-07T03:16:21.973814 #7] INFO -- : Seeking course_change/0 to offset 0 +E, [2018-08-07T03:16:23.251216 #7] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- ArgumentError: channel is required for pub/sub methods. +/usr/src/app/app/controllers/eventstream.rb:17:in `publish' +/usr/src/app/app/controllers/eventstream.rb:17:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-07T03:16:23.258213 #7] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-07T03:16:23.270723 #7] ERROR -- : Client fetch loop error: channel is required for pub/sub methods. +I, [2018-08-07T03:16:23.271000 #7] INFO -- : Joining group `notifications_course_change` +E, [2018-08-07T03:16:23.274390 #7] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-08-07T03:16:23.378162 #7] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- ArgumentError: channel is required for pub/sub methods. +/usr/src/app/app/controllers/eventstream.rb:17:in `publish' +/usr/src/app/app/controllers/eventstream.rb:17:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-07T03:16:23.378229 #7] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-07T03:16:23.383115 #7] ERROR -- : Client fetch loop error: channel is required for pub/sub methods. +I, [2018-08-07T03:16:23.383388 #7] INFO -- : Joining group `notifications_notifications` +E, [2018-08-07T03:16:23.384800 #7] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-07T03:16:23.389026 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T03:16:24.031333 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T03:16:24.274748 #7] INFO -- : Joining group `notifications_course_change` +I, [2018-08-07T03:16:24.285310 #7] INFO -- : Joined group `notifications_course_change` with member id `notifications-a18acbbd-5822-48db-9a39-cbeea409643c` +I, [2018-08-07T03:16:24.285408 #7] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-07T03:16:24.287581 #7] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-07T03:16:24.287644 #7] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-07T03:16:24.385119 #7] INFO -- : Joining group `notifications_notifications` +I, [2018-08-07T03:16:24.389529 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T03:16:24.392898 #7] INFO -- : Joined group `notifications_notifications` with member id `notifications-3d70a805-c256-4272-9daf-2452f46faa63` +I, [2018-08-07T03:16:24.392940 #7] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-07T03:16:24.395495 #7] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-07T03:16:24.395602 #7] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-07T03:16:25.093237 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T03:16:25.390617 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T03:16:26.100218 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T03:16:26.395366 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T03:16:27.100616 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T03:16:27.395805 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T03:16:28.101007 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T03:16:28.396448 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T03:16:29.101386 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T03:16:29.396939 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T03:16:30.101797 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T03:16:30.397486 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T03:16:31.102111 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T03:16:31.414093 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T03:16:32.104836 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T03:16:32.414388 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T03:16:33.105462 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T03:16:33.414836 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T03:16:34.120207 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T03:16:34.480279 #7] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-07T03:16:34.481025 #7] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-07T03:16:34.482983 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T03:16:35.130902 #7] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-07T03:16:35.497123 #7] INFO -- : Seeking section_change/0 to offset 0 +E, [2018-08-07T03:16:36.696326 #7] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- ArgumentError: channel is required for pub/sub methods. +/usr/src/app/app/controllers/eventstream.rb:17:in `publish' +/usr/src/app/app/controllers/eventstream.rb:17:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-07T03:41:05.629316 #7] INFO -- : New topics added to target list: course_change +I, [2018-08-07T03:41:05.630105 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T03:41:05.647965 #7] INFO -- : New topics added to target list: section_change +I, [2018-08-07T03:41:05.648046 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T03:41:05.758565 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T03:41:05.759183 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T03:41:05.759517 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T03:41:05.759951 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T03:41:10.760659 #7] 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.14:9094 +I, [2018-08-07T03:41:10.764577 #7] INFO -- : New topics added to target list: section_change +I, [2018-08-07T03:41:10.765256 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T03:41:10.760309 #7] 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.14:9094 +I, [2018-08-07T03:41:10.804670 #7] INFO -- : New topics added to target list: course_change +I, [2018-08-07T03:41:10.805254 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T03:41:10.823318 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T03:41:10.825467 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T03:41:10.828182 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T03:41:10.828345 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T03:41:15.826293 #7] 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.14:9094 +I, [2018-08-07T03:41:15.828980 #7] INFO -- : New topics added to target list: course_change +E, [2018-08-07T03:41:15.829205 #7] 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.14:9094 +I, [2018-08-07T03:41:15.830541 #7] INFO -- : New topics added to target list: section_change +I, [2018-08-07T03:41:15.830620 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T03:41:15.832875 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T03:41:15.834575 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T03:41:15.834965 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T03:41:15.839250 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T03:41:15.842261 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T03:41:20.883041 #7] 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.14:9094 +E, [2018-08-07T03:41:21.064859 #7] 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.14:9094 +I, [2018-08-07T03:41:21.362082 #7] INFO -- : New topics added to target list: section_change +I, [2018-08-07T03:41:21.362389 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T03:41:21.818030 #7] INFO -- : New topics added to target list: course_change +I, [2018-08-07T03:41:21.818163 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T03:41:22.579836 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T03:41:22.580223 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T03:41:22.614027 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T03:41:22.614188 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T03:41:27.619965 #7] 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.14:9094 +I, [2018-08-07T03:41:27.652063 #7] INFO -- : New topics added to target list: course_change +I, [2018-08-07T03:41:27.652678 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T03:41:27.662565 #7] 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.14:9094 +E, [2018-08-07T03:41:27.722944 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T03:41:27.723132 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +I, [2018-08-07T03:41:27.724891 #7] INFO -- : New topics added to target list: section_change +I, [2018-08-07T03:41:27.724997 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T03:41:27.736484 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T03:41:27.736806 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T03:41:32.732874 #7] 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.14:9094 +E, [2018-08-07T03:41:32.745568 #7] 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.14:9094 +I, [2018-08-07T03:41:32.899825 #7] INFO -- : New topics added to target list: section_change +I, [2018-08-07T03:41:32.900128 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T03:41:32.915097 #7] INFO -- : New topics added to target list: course_change +I, [2018-08-07T03:41:32.915187 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T03:41:32.917062 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T03:41:32.918703 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T03:41:32.923868 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T03:41:32.931908 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T03:41:38.028821 #7] 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.14:9094 +I, [2018-08-07T03:41:39.071866 #7] INFO -- : New topics added to target list: section_change +I, [2018-08-07T03:41:39.071990 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T03:41:39.125621 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T03:41:39.133115 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T03:41:39.119469 #7] 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.14:9094 +I, [2018-08-07T03:41:39.160617 #7] INFO -- : New topics added to target list: course_change +I, [2018-08-07T03:41:39.160884 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T03:41:39.172173 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T03:41:39.173694 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T03:41:44.151240 #7] 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.14:9094 +I, [2018-08-07T03:41:44.158154 #7] INFO -- : New topics added to target list: section_change +I, [2018-08-07T03:41:44.191823 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T03:41:44.199854 #7] 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.14:9094 +I, [2018-08-07T03:41:44.222214 #7] INFO -- : New topics added to target list: course_change +I, [2018-08-07T03:41:44.230710 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T03:41:44.236965 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T03:41:44.237123 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T03:41:44.237453 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T03:41:44.237509 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T03:41:49.241253 #7] 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.14:9094 +I, [2018-08-07T03:41:49.302148 #7] INFO -- : New topics added to target list: course_change +I, [2018-08-07T03:41:49.302732 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T03:41:49.241765 #7] 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.14:9094 +I, [2018-08-07T03:41:49.323662 #7] INFO -- : New topics added to target list: section_change +I, [2018-08-07T03:41:49.323825 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T03:41:49.330236 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T03:41:49.330866 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T03:41:49.331261 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T03:41:49.331713 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T03:41:54.351236 #7] 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.14:9094 +I, [2018-08-07T03:41:54.382922 #7] INFO -- : New topics added to target list: section_change +I, [2018-08-07T03:41:54.383037 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T03:41:54.383543 #7] 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.14:9094 +I, [2018-08-07T03:41:54.386522 #7] INFO -- : New topics added to target list: course_change +I, [2018-08-07T03:41:54.386568 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T03:41:56.253354 #7] ERROR -- : No brokers in cluster +E, [2018-08-07T03:41:56.261219 #7] ERROR -- : No brokers in cluster +E, [2018-08-07T03:42:01.276166 #7] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: + +I, [2018-08-07T03:42:01.307114 #7] INFO -- : New topics added to target list: course_change +I, [2018-08-07T03:42:01.310782 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T03:42:01.311147 #7] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: + +I, [2018-08-07T03:42:01.362950 #7] INFO -- : New topics added to target list: section_change +I, [2018-08-07T03:42:01.363047 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T03:42:01.381064 #7] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-07T03:42:01.387972 #7] INFO -- : Joining group `notifications_notifications` +I, [2018-08-07T03:42:01.406711 #7] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-07T03:42:01.406944 #7] INFO -- : Joining group `notifications_course_change` +I, [2018-08-07T03:42:01.465911 #7] INFO -- : Will fetch at most 1048576 bytes at a time per partition from course_change +I, [2018-08-07T03:42:01.466790 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T03:42:01.473898 #7] INFO -- : Will fetch at most 1048576 bytes at a time per partition from section_change +I, [2018-08-07T03:42:01.474051 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T03:42:01.474255 #7] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-07T03:42:01.477058 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T03:42:01.480851 #7] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-07T03:42:01.480975 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T03:42:02.477556 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T03:42:02.481461 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T03:42:03.480191 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T03:42:03.481982 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T03:42:04.481186 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T03:42:04.482334 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T03:42:05.481680 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T03:42:05.483032 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T03:42:06.444623 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T03:42:06.445380 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T03:42:07.448530 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T03:42:07.449054 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T03:42:08.449588 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T03:42:08.449794 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T03:42:09.449947 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T03:42:09.450396 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T03:42:09.933080 #7] INFO -- : Joined group `notifications_course_change` with member id `notifications-283b6cbc-3c7c-4890-b9ea-df87ab5ec535` +I, [2018-08-07T03:42:09.933193 #7] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-07T03:42:09.983318 #7] INFO -- : Joined group `notifications_notifications` with member id `notifications-d3e376c5-cfb9-4729-99cb-bc9a35606ac2` +I, [2018-08-07T03:42:09.983396 #7] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-07T03:42:10.429511 #7] INFO -- : Partitions assigned for `section_change`: 0 +I, [2018-08-07T03:42:10.451773 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T03:42:10.453946 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T03:42:10.456444 #7] INFO -- : Partitions assigned for `course_change`: 0 +I, [2018-08-07T03:42:11.475840 #7] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-07T03:42:11.476153 #7] INFO -- : New topics added to target list: course_change +I, [2018-08-07T03:42:11.476238 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T03:42:11.477919 #7] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-07T03:42:11.478036 #7] INFO -- : New topics added to target list: section_change +I, [2018-08-07T03:42:11.478150 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T03:42:11.631250 #7] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-07T03:42:11.639652 #7] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-07T03:42:24.060571 #7] INFO -- : Inline processing of topic section_change with 1 messages took 580.59 ms +I, [2018-08-07T03:42:24.063895 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:42:24.064241 #7] INFO -- : Committing offsets with recommit: section_change/0:1 +I, [2018-08-07T03:42:24.092170 #7] INFO -- : Inline processing of topic course_change with 1 messages took 547.34 ms +I, [2018-08-07T03:42:24.092253 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:42:24.092314 #7] INFO -- : Committing offsets with recommit: course_change/0:1 +I, [2018-08-07T03:42:24.203999 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T03:42:24.204313 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:42:24.204994 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-08-07T03:42:24.205056 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:42:24.205679 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T03:42:24.205733 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:42:24.206538 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T03:42:24.206602 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:42:24.207462 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.54 ms +I, [2018-08-07T03:42:24.207514 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:42:24.232900 #7] INFO -- : Inline processing of topic section_change with 1 messages took 25.11 ms +I, [2018-08-07T03:42:24.233015 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:42:24.235809 #7] INFO -- : Inline processing of topic section_change with 1 messages took 2.49 ms +I, [2018-08-07T03:42:24.235878 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:42:24.236486 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T03:42:24.236703 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:42:24.237182 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T03:42:24.237232 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:42:24.237804 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T03:42:24.237954 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:42:24.238393 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T03:42:24.238450 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:42:24.238817 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T03:42:24.238849 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:42:24.239133 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-08-07T03:42:24.239197 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:42:24.269294 #7] INFO -- : Inline processing of topic section_change with 1 messages took 29.97 ms +I, [2018-08-07T03:42:24.269407 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:42:24.269859 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T03:42:24.269894 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:42:24.270335 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T03:42:24.270373 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:42:24.272301 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.49 ms +I, [2018-08-07T03:42:24.272370 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:42:24.272936 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.34 ms +I, [2018-08-07T03:42:24.272983 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:42:26.271559 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.77 ms +I, [2018-08-07T03:42:26.271616 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:42:26.271902 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T03:42:26.273971 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:42:26.275110 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.71 ms +I, [2018-08-07T03:42:26.275158 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:42:26.280145 #7] INFO -- : Inline processing of topic section_change with 1 messages took 4.8 ms +I, [2018-08-07T03:42:26.280202 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:42:26.280494 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T03:42:26.292081 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:42:26.292827 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T03:42:26.292872 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:42:26.294509 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T03:42:26.294556 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:42:26.295334 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.62 ms +I, [2018-08-07T03:42:26.295392 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:42:26.295656 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T03:42:26.295691 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:42:26.296393 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.56 ms +I, [2018-08-07T03:42:26.296432 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:42:26.296662 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T03:42:26.311007 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:42:26.311477 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T03:42:26.311529 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:42:26.312986 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T03:42:26.313050 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:42:26.314248 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T03:42:26.314694 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:42:26.315151 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T03:42:26.315210 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:42:26.283315 #7] INFO -- : Inline processing of topic course_change with 1 messages took 1.47 ms +I, [2018-08-07T03:42:26.327482 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:42:26.327850 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T03:42:26.327885 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:42:26.328725 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.71 ms +I, [2018-08-07T03:42:26.328768 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:42:26.329010 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T03:42:26.329042 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:42:26.330015 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T03:42:26.330063 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:42:26.330761 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T03:42:26.330809 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:42:26.316330 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.88 ms +I, [2018-08-07T03:42:26.331742 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:42:26.339965 #7] INFO -- : Inline processing of topic section_change with 1 messages took 7.47 ms +I, [2018-08-07T03:42:26.340021 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:42:28.338967 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.94 ms +I, [2018-08-07T03:42:28.339064 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:42:28.339571 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.25 ms +I, [2018-08-07T03:42:28.339625 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:42:28.340027 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-08-07T03:42:28.340079 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:42:28.354001 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T03:42:28.354075 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:42:28.354519 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T03:42:28.354568 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:42:28.354925 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T03:42:28.354974 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:42:28.356102 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-08-07T03:42:28.356217 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:42:28.356645 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T03:42:28.356764 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:42:28.357239 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T03:42:28.357292 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:42:28.357795 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T03:42:28.357841 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:42:28.358229 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T03:42:28.358276 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:42:28.358734 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T03:42:28.358791 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:42:28.359482 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-08-07T03:42:28.359720 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:42:28.376386 #7] INFO -- : Inline processing of topic section_change with 1 messages took 8.0 ms +I, [2018-08-07T03:42:28.376455 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:42:30.341521 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.59 ms +I, [2018-08-07T03:42:30.341767 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:42:30.342238 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.25 ms +I, [2018-08-07T03:42:30.342289 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:42:30.342637 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-08-07T03:42:30.342715 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:42:30.342995 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T03:42:30.343097 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:42:30.343516 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T03:42:30.343557 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:42:30.343879 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T03:42:30.343925 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:42:30.344301 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T03:42:30.344382 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:42:30.345424 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T03:42:30.345472 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:42:30.377277 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T03:42:30.377355 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:42:30.377709 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T03:42:30.377757 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:42:30.378632 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T03:42:30.378708 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:42:30.379008 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T03:42:30.379056 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:42:30.379351 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T03:42:30.379390 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:42:30.379684 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T03:42:30.379722 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:42:30.380057 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T03:42:30.380160 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:42:30.380456 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T03:42:30.380511 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:42:30.380896 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T03:42:30.380984 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:42:32.349323 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.34 ms +I, [2018-08-07T03:42:32.349403 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:42:32.349916 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.25 ms +I, [2018-08-07T03:42:32.350002 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:42:32.351204 #7] INFO -- : Inline processing of topic course_change with 1 messages took 1.01 ms +I, [2018-08-07T03:42:32.351280 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:42:32.360940 #7] INFO -- : Inline processing of topic course_change with 1 messages took 7.69 ms +I, [2018-08-07T03:42:32.361004 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:42:32.361472 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-08-07T03:42:32.361520 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:42:32.361821 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T03:42:32.361872 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:42:32.397924 #7] INFO -- : Inline processing of topic course_change with 1 messages took 35.82 ms +I, [2018-08-07T03:42:32.398016 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:42:32.398382 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T03:42:32.398414 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:42:32.434031 #7] INFO -- : Inline processing of topic course_change with 1 messages took 11.32 ms +I, [2018-08-07T03:42:32.434087 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:42:32.435571 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T03:42:32.435627 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:42:32.435923 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T03:42:32.435955 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:42:32.436191 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T03:42:32.436247 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:42:32.436471 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T03:42:32.443681 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:42:32.459641 #7] INFO -- : Inline processing of topic section_change with 1 messages took 15.5 ms +I, [2018-08-07T03:42:32.459696 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:42:32.460032 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T03:42:32.460065 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:42:32.460304 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T03:42:32.460344 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:42:32.460673 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T03:42:32.460738 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:42:32.528096 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T03:42:32.528388 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:42:32.534323 #7] INFO -- : Inline processing of topic section_change with 1 messages took 4.25 ms +I, [2018-08-07T03:42:32.536468 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:42:32.552126 #7] INFO -- : Inline processing of topic section_change with 1 messages took 6.97 ms +I, [2018-08-07T03:42:32.552257 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:42:32.552612 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T03:42:32.552644 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:42:32.552883 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T03:42:32.552913 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:42:32.553194 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T03:42:32.553238 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:42:32.553580 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T03:42:32.553615 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:42:32.553828 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T03:42:32.553858 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:42:32.554091 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T03:42:32.554120 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:42:34.434606 #7] INFO -- : Committing offsets: course_change/0:29 +I, [2018-08-07T03:42:34.464549 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.33 ms +I, [2018-08-07T03:42:34.464620 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:42:34.464950 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T03:42:34.465007 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:42:34.465327 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T03:42:34.465369 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:42:34.470027 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.24 ms +I, [2018-08-07T03:42:34.470135 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:42:34.470526 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-08-07T03:42:34.470588 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:42:34.470975 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-08-07T03:42:34.471027 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:42:34.471351 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T03:42:34.471395 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:42:34.471754 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T03:42:34.471798 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:42:34.472522 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.49 ms +I, [2018-08-07T03:42:34.472617 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:42:34.474039 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-08-07T03:42:34.474099 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:42:34.474475 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T03:42:34.474523 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:42:34.554406 #7] INFO -- : Committing offsets: section_change/0:71 +I, [2018-08-07T03:42:34.571695 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T03:42:34.571759 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:42:34.572778 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.75 ms +I, [2018-08-07T03:42:34.572856 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:42:34.573222 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T03:42:34.573270 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:42:34.573585 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T03:42:34.573636 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:42:34.573988 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T03:42:34.574034 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:42:34.574353 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T03:42:34.574782 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:42:34.575317 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T03:42:34.575362 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:42:34.575901 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-08-07T03:42:34.575947 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:42:34.576371 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T03:42:34.576417 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:42:34.577155 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.57 ms +I, [2018-08-07T03:42:34.577204 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:42:34.577570 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T03:42:34.577619 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:42:34.579938 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T03:42:34.580000 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:42:34.580421 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T03:42:34.580471 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:42:34.582861 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T03:42:34.582935 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:42:34.583349 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T03:42:34.583400 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:42:46.855083 #7] INFO -- : Committing offsets: section_change/0:86 +I, [2018-08-07T03:42:47.211152 #7] INFO -- : Committing offsets: course_change/0:40 +I, [2018-08-07T03:42:56.555893 #7] INFO -- : Inline processing of topic course_change with 1 messages took 4.84 ms +I, [2018-08-07T03:42:56.580896 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:42:56.581839 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.35 ms +I, [2018-08-07T03:42:56.581884 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:42:56.582957 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.23 ms +I, [2018-08-07T03:42:56.583031 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:42:56.590785 #7] INFO -- : Inline processing of topic course_change with 1 messages took 5.74 ms +I, [2018-08-07T03:42:56.591109 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:42:56.635902 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.45 ms +I, [2018-08-07T03:42:56.635968 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:42:56.636894 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T03:42:56.636942 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:42:56.638870 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T03:42:56.638942 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:42:56.660254 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-08-07T03:42:56.660324 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:42:56.660746 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T03:42:56.660801 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:42:58.698530 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.99 ms +I, [2018-08-07T03:42:58.698610 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:00.703611 #7] INFO -- : Inline processing of topic course_change with 1 messages took 15.56 ms +I, [2018-08-07T03:43:00.771828 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:43:00.773598 #7] INFO -- : Inline processing of topic course_change with 1 messages took 1.35 ms +I, [2018-08-07T03:43:00.774030 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:43:03.432606 #7] INFO -- : Inline processing of topic section_change with 1 messages took 101.76 ms +I, [2018-08-07T03:43:03.457868 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:06.457690 #7] INFO -- : Inline processing of topic section_change with 1 messages took 925.48 ms +I, [2018-08-07T03:43:06.465512 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:06.465670 #7] INFO -- : Committing offsets: section_change/0:94 +I, [2018-08-07T03:43:06.495700 #7] INFO -- : Inline processing of topic course_change with 1 messages took 835.42 ms +I, [2018-08-07T03:43:06.496625 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:43:06.516719 #7] INFO -- : Committing offsets: course_change/0:47 +I, [2018-08-07T03:43:06.940407 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.44 ms +I, [2018-08-07T03:43:06.940476 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:43:08.641250 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.05 ms +I, [2018-08-07T03:43:08.641325 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:08.641859 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T03:43:08.641940 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:08.643075 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.88 ms +I, [2018-08-07T03:43:08.643118 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:08.919948 #7] INFO -- : Inline processing of topic course_change with 1 messages took 1.18 ms +I, [2018-08-07T03:43:08.920061 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:43:09.188470 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.24 ms +I, [2018-08-07T03:43:09.188536 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:43:10.694574 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.76 ms +I, [2018-08-07T03:43:10.694748 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:11.193008 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.3 ms +I, [2018-08-07T03:43:11.193089 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:43:11.193566 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-08-07T03:43:11.193626 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:43:11.205153 #7] INFO -- : Inline processing of topic course_change with 1 messages took 11.27 ms +I, [2018-08-07T03:43:11.205231 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:43:12.697193 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T03:43:12.697248 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:12.697595 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T03:43:12.698136 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:12.698438 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T03:43:12.698476 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:12.698704 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T03:43:12.698743 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:12.699593 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T03:43:12.699627 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:13.255332 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.24 ms +I, [2018-08-07T03:43:13.255408 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:43:13.255775 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T03:43:13.255823 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:43:13.278846 #7] INFO -- : Inline processing of topic course_change with 1 messages took 21.48 ms +I, [2018-08-07T03:43:13.278940 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:43:13.282045 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.3 ms +I, [2018-08-07T03:43:13.282123 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:43:15.076546 #7] INFO -- : Inline processing of topic section_change with 1 messages took 50.7 ms +I, [2018-08-07T03:43:15.076670 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:15.078400 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.39 ms +I, [2018-08-07T03:43:15.078470 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:15.078860 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T03:43:15.078909 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:15.292239 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.78 ms +I, [2018-08-07T03:43:15.292312 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:43:15.292833 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T03:43:15.292885 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:43:15.293392 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.32 ms +I, [2018-08-07T03:43:15.293442 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:43:17.080033 #7] INFO -- : Committing offsets: section_change/0:106 +I, [2018-08-07T03:43:17.242573 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.14 ms +I, [2018-08-07T03:43:17.242648 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:17.323469 #7] INFO -- : Committing offsets: course_change/0:60 +I, [2018-08-07T03:43:17.330669 #7] INFO -- : Inline processing of topic section_change with 1 messages took 16.94 ms +I, [2018-08-07T03:43:17.330785 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:17.337637 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.1 ms +I, [2018-08-07T03:43:17.338978 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:17.369013 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.94 ms +I, [2018-08-07T03:43:17.369443 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:43:17.371393 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.78 ms +I, [2018-08-07T03:43:17.371498 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:43:17.372835 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.88 ms +I, [2018-08-07T03:43:17.372905 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:43:19.343224 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-08-07T03:43:19.343277 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:19.343553 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T03:43:19.439656 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:19.440273 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-08-07T03:43:19.440327 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:19.440684 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T03:43:19.440728 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:19.374823 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.27 ms +I, [2018-08-07T03:43:19.444862 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:43:19.445358 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-08-07T03:43:19.445403 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:43:19.447614 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.53 ms +I, [2018-08-07T03:43:19.447676 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:43:19.448646 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.38 ms +I, [2018-08-07T03:43:19.448694 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:43:19.463040 #7] INFO -- : Inline processing of topic course_change with 1 messages took 13.85 ms +I, [2018-08-07T03:43:19.463118 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:43:19.468994 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.23 ms +I, [2018-08-07T03:43:19.469117 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:43:19.469476 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T03:43:19.469522 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:43:19.469849 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T03:43:19.469896 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:43:19.470218 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T03:43:19.470261 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:43:19.470528 #7] INFO -- : Inline processing of topic section_change with 1 messages took 29.6 ms +I, [2018-08-07T03:43:19.470579 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:19.470973 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T03:43:19.471016 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:19.473199 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.99 ms +I, [2018-08-07T03:43:19.473266 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:19.473641 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T03:43:19.473822 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:19.474122 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T03:43:19.474166 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:19.474511 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T03:43:19.474554 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:19.474985 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T03:43:19.475028 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:21.484314 #7] INFO -- : Inline processing of topic course_change with 1 messages took 3.54 ms +I, [2018-08-07T03:43:21.484440 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:43:21.486644 #7] INFO -- : Inline processing of topic course_change with 1 messages took 1.01 ms +I, [2018-08-07T03:43:21.486825 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:43:21.596168 #7] INFO -- : Inline processing of topic section_change with 1 messages took 44.83 ms +I, [2018-08-07T03:43:21.596260 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:21.597219 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.55 ms +I, [2018-08-07T03:43:21.597280 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:21.658847 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T03:43:21.659272 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:21.659606 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T03:43:21.659637 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:21.666500 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.53 ms +I, [2018-08-07T03:43:21.666656 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:21.674799 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.41 ms +I, [2018-08-07T03:43:21.674938 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:21.675567 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-08-07T03:43:21.675870 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:21.689296 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T03:43:21.689349 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:21.689935 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.44 ms +I, [2018-08-07T03:43:21.689971 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:21.695888 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T03:43:21.696084 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:21.716225 #7] INFO -- : Inline processing of topic section_change with 1 messages took 19.89 ms +I, [2018-08-07T03:43:21.716300 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:21.738946 #7] INFO -- : Inline processing of topic course_change with 1 messages took 251.72 ms +I, [2018-08-07T03:43:21.739002 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:43:21.739604 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.28 ms +I, [2018-08-07T03:43:21.739661 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:43:21.740497 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.34 ms +I, [2018-08-07T03:43:21.740533 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:43:21.740725 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T03:43:21.740753 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:43:21.743868 #7] INFO -- : Inline processing of topic section_change with 1 messages took 19.19 ms +I, [2018-08-07T03:43:21.743936 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:21.750117 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.52 ms +I, [2018-08-07T03:43:21.750168 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:21.750751 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.43 ms +I, [2018-08-07T03:43:21.750790 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:21.751012 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T03:43:21.751042 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:21.757813 #7] INFO -- : Inline processing of topic section_change with 1 messages took 6.35 ms +I, [2018-08-07T03:43:21.757864 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:23.741362 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T03:43:23.741412 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:43:23.741849 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T03:43:23.741894 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:43:23.742374 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.34 ms +I, [2018-08-07T03:43:23.742501 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:43:23.742786 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T03:43:23.743042 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:43:23.743261 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-08-07T03:43:23.743296 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:43:23.743995 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.57 ms +I, [2018-08-07T03:43:23.744036 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:43:23.744565 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.39 ms +I, [2018-08-07T03:43:23.744604 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:43:23.744841 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T03:43:23.744870 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:43:23.758437 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T03:43:23.758484 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:23.758965 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-08-07T03:43:23.759002 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:23.759501 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-08-07T03:43:23.759533 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:23.759791 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T03:43:23.760101 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:23.760330 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T03:43:23.760359 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:23.760850 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-08-07T03:43:23.760872 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:23.761303 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-08-07T03:43:23.761336 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:23.761596 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T03:43:23.761627 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:23.762129 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T03:43:23.762163 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:23.762939 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.66 ms +I, [2018-08-07T03:43:23.762972 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:23.763351 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T03:43:23.763384 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:23.763591 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-08-07T03:43:23.763619 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:23.764076 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-08-07T03:43:23.764100 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:25.745702 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.29 ms +I, [2018-08-07T03:43:25.745830 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:43:25.746103 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T03:43:25.746273 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:43:25.746575 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-08-07T03:43:25.746867 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:43:25.747566 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.25 ms +I, [2018-08-07T03:43:25.747606 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:43:25.748200 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.42 ms +I, [2018-08-07T03:43:25.748243 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:43:25.748854 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.24 ms +I, [2018-08-07T03:43:25.748912 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:43:25.749295 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T03:43:25.749444 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:43:25.750238 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.58 ms +I, [2018-08-07T03:43:25.750311 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:43:25.751258 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.65 ms +I, [2018-08-07T03:43:25.751321 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:43:25.751791 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.24 ms +I, [2018-08-07T03:43:25.751848 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:43:25.764908 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-08-07T03:43:25.765013 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:25.765329 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T03:43:25.784276 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:25.784822 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T03:43:25.784860 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:25.785098 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T03:43:25.785129 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:25.785397 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T03:43:25.785470 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:25.785756 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T03:43:25.785786 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:25.786147 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T03:43:25.786177 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:25.786486 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T03:43:25.786516 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:25.786881 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T03:43:25.786910 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:25.787222 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T03:43:25.787252 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:25.788631 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.87 ms +I, [2018-08-07T03:43:25.788687 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:25.789632 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T03:43:25.789689 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:27.752152 #7] INFO -- : Committing offsets: course_change/0:96 +I, [2018-08-07T03:43:27.777035 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.77 ms +I, [2018-08-07T03:43:27.777110 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:43:27.778158 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.58 ms +I, [2018-08-07T03:43:27.778226 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:43:27.779001 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.23 ms +I, [2018-08-07T03:43:27.779175 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:43:27.779594 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-08-07T03:43:27.779643 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:43:27.780057 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-08-07T03:43:27.780098 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:43:27.780467 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T03:43:27.780513 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:43:27.780997 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.32 ms +I, [2018-08-07T03:43:27.781043 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:43:27.790039 #7] INFO -- : Committing offsets: section_change/0:161 +I, [2018-08-07T03:43:27.804860 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T03:43:27.804932 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:27.805596 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.41 ms +I, [2018-08-07T03:43:27.805827 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:27.806273 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T03:43:27.806324 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:27.806619 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T03:43:27.806693 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:27.809077 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T03:43:27.809156 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:27.809576 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T03:43:27.809627 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:27.810026 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T03:43:27.810078 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:27.810423 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T03:43:27.810473 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:27.810821 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T03:43:27.810917 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:27.811262 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T03:43:27.811312 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:27.811687 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T03:43:27.811761 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:27.812369 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-08-07T03:43:27.812420 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:27.812887 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T03:43:27.812945 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:27.813435 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T03:43:27.813495 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:27.813883 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T03:43:27.813939 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:27.814502 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.4 ms +I, [2018-08-07T03:43:27.814556 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:27.814897 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T03:43:27.814960 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:27.846623 #7] INFO -- : Inline processing of topic section_change with 1 messages took 31.3 ms +I, [2018-08-07T03:43:27.846681 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:27.848384 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T03:43:27.848425 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:29.782109 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.31 ms +I, [2018-08-07T03:43:29.782187 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:43:29.782941 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.27 ms +I, [2018-08-07T03:43:29.783019 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:43:29.783557 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.26 ms +I, [2018-08-07T03:43:29.783615 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:43:29.783954 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T03:43:29.784038 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:43:29.784360 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T03:43:29.784411 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:43:29.784818 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.23 ms +I, [2018-08-07T03:43:29.784863 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:43:29.785382 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.34 ms +I, [2018-08-07T03:43:29.785434 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:43:29.785787 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T03:43:29.785834 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:43:29.786182 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T03:43:29.786233 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:43:29.786718 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.32 ms +I, [2018-08-07T03:43:29.786766 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:43:29.787096 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T03:43:29.787141 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:43:29.789975 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.42 ms +I, [2018-08-07T03:43:29.790023 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:43:29.790350 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T03:43:29.790381 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:43:29.855240 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T03:43:29.855292 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:29.855561 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T03:43:29.855624 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:29.855897 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T03:43:29.855927 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:29.857234 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.86 ms +I, [2018-08-07T03:43:29.857528 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:31.791133 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.25 ms +I, [2018-08-07T03:43:31.791203 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:43:31.791622 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-08-07T03:43:31.791682 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:43:31.791975 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T03:43:31.792006 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:43:31.792246 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T03:43:31.792275 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:43:31.792483 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T03:43:31.792512 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:43:31.792695 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T03:43:31.792723 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:43:31.793009 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T03:43:31.793045 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:43:31.793328 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T03:43:31.793361 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:43:31.793566 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T03:43:31.793687 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:43:31.794105 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T03:43:31.794187 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:43:31.794527 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T03:43:31.794561 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:43:31.794812 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T03:43:31.794842 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:43:31.795037 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-08-07T03:43:31.795071 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:43:31.858465 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T03:43:31.858555 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:31.858852 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T03:43:31.858883 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:31.859174 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T03:43:31.859211 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:31.859464 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T03:43:31.859494 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:31.859764 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T03:43:31.859815 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:31.860177 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T03:43:31.864020 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:31.864619 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T03:43:31.864678 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:31.865115 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T03:43:31.865160 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:31.865427 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T03:43:31.865457 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:31.865682 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T03:43:31.865710 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:31.866075 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T03:43:31.866105 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:31.866385 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T03:43:31.866424 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:31.866671 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T03:43:31.866729 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:31.866918 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-08-07T03:43:31.866946 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:33.797268 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.36 ms +I, [2018-08-07T03:43:33.797416 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:43:33.800215 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-08-07T03:43:33.800354 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:43:33.958925 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T03:43:33.959084 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:33.959483 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T03:43:33.959530 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:33.959887 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T03:43:33.959937 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:33.960983 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T03:43:33.961042 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:33.961511 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T03:43:33.961567 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:33.962320 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.44 ms +I, [2018-08-07T03:43:33.962414 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:33.843980 #7] INFO -- : Inline processing of topic course_change with 1 messages took 25.9 ms +I, [2018-08-07T03:43:33.980657 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:43:33.981118 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T03:43:33.981243 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:43:33.993077 #7] INFO -- : Inline processing of topic course_change with 1 messages took 11.63 ms +I, [2018-08-07T03:43:33.993153 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:43:33.994216 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.26 ms +I, [2018-08-07T03:43:33.994257 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:43:35.965720 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.26 ms +I, [2018-08-07T03:43:35.966250 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:35.992399 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-08-07T03:43:35.992473 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:35.993077 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T03:43:35.993130 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:35.997382 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.36 ms +I, [2018-08-07T03:43:35.997476 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:43:35.998071 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T03:43:35.998164 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:43:35.999007 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-08-07T03:43:35.999083 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:43:35.999817 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-08-07T03:43:36.000281 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:43:36.001556 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.5 ms +I, [2018-08-07T03:43:36.008427 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:43:36.022121 #7] INFO -- : Inline processing of topic course_change with 1 messages took 4.5 ms +I, [2018-08-07T03:43:36.022221 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:43:36.050248 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.27 ms +I, [2018-08-07T03:43:36.050371 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:43:36.050713 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T03:43:36.050746 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:43:36.051022 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T03:43:36.051053 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:43:36.057993 #7] INFO -- : Inline processing of topic section_change with 1 messages took 64.64 ms +I, [2018-08-07T03:43:36.058097 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:36.058473 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T03:43:36.058504 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:36.058867 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T03:43:36.058904 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:36.059149 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T03:43:36.059179 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:36.062510 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T03:43:36.062554 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:36.062802 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T03:43:36.062832 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:36.063193 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T03:43:36.063224 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:38.007216 #7] INFO -- : Committing offsets: course_change/0:144 +I, [2018-08-07T03:43:38.017984 #7] INFO -- : Inline processing of topic course_change with 1 messages took 1.01 ms +I, [2018-08-07T03:43:38.018040 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:43:38.018412 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T03:43:38.018483 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:43:38.020948 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.48 ms +I, [2018-08-07T03:43:38.021330 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:43:38.022309 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.4 ms +I, [2018-08-07T03:43:38.022380 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:43:38.026656 #7] INFO -- : Inline processing of topic course_change with 1 messages took 3.97 ms +I, [2018-08-07T03:43:38.026710 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:43:38.027134 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T03:43:38.027169 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:43:38.027346 #7] INFO -- : Committing offsets: section_change/0:214 +I, [2018-08-07T03:43:38.036994 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.51 ms +I, [2018-08-07T03:43:38.037095 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:38.037494 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T03:43:38.037585 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:38.038140 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T03:43:38.038204 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:38.038652 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T03:43:38.038823 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:38.039227 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T03:43:38.039278 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:38.043668 #7] INFO -- : Inline processing of topic section_change with 1 messages took 4.09 ms +I, [2018-08-07T03:43:38.043758 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:38.044434 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.4 ms +I, [2018-08-07T03:43:38.044485 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:38.045053 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T03:43:38.045107 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:38.045465 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T03:43:38.045507 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:38.046299 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.48 ms +I, [2018-08-07T03:43:38.046689 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:38.047267 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-08-07T03:43:38.047391 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:38.047875 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-08-07T03:43:38.047927 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:38.048293 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T03:43:38.048399 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:38.048754 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T03:43:38.048896 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:38.049445 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-08-07T03:43:38.049496 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:38.049887 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T03:43:38.049935 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:38.050342 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T03:43:38.050393 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:38.050738 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T03:43:38.050785 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:38.051134 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T03:43:38.051181 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:40.028150 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.4 ms +I, [2018-08-07T03:43:40.028221 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:43:40.028501 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T03:43:40.028533 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:43:40.028787 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T03:43:40.028817 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:43:40.029069 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T03:43:40.029099 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:43:40.056768 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T03:43:40.056820 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:40.057283 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T03:43:40.057351 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:40.057655 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T03:43:40.057686 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:40.068412 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-08-07T03:43:40.073246 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:40.073737 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-08-07T03:43:40.074089 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:40.074406 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T03:43:40.074439 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:40.074725 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T03:43:40.074755 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:40.075000 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T03:43:40.075051 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:40.075405 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T03:43:40.075435 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:40.075915 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T03:43:40.075958 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:42.032143 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-08-07T03:43:42.034349 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:43:42.035845 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.27 ms +I, [2018-08-07T03:43:42.035903 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:43:42.036154 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T03:43:42.038618 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:43:42.041794 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-08-07T03:43:42.042225 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:43:42.042723 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.33 ms +I, [2018-08-07T03:43:42.042779 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:43:42.043172 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-08-07T03:43:42.043227 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:43:42.048719 #7] INFO -- : Inline processing of topic course_change with 1 messages took 4.89 ms +I, [2018-08-07T03:43:42.048806 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:43:42.052374 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.24 ms +I, [2018-08-07T03:43:42.052439 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:43:42.054411 #7] INFO -- : Inline processing of topic course_change with 1 messages took 1.72 ms +I, [2018-08-07T03:43:42.057258 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:43:42.059463 #7] INFO -- : Inline processing of topic course_change with 1 messages took 1.93 ms +I, [2018-08-07T03:43:42.059916 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:43:42.060779 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T03:43:42.060839 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:43:42.061295 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.28 ms +I, [2018-08-07T03:43:42.061335 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:43:42.068378 #7] INFO -- : Inline processing of topic course_change with 1 messages took 2.31 ms +I, [2018-08-07T03:43:42.068459 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:43:42.073937 #7] INFO -- : Inline processing of topic course_change with 1 messages took 5.29 ms +I, [2018-08-07T03:43:42.074001 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:43:42.074435 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T03:43:42.074479 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:43:42.083078 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-08-07T03:43:42.083124 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:42.083548 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T03:43:42.083581 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:42.083778 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T03:43:42.083807 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:42.084159 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-08-07T03:43:42.084188 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:42.084480 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T03:43:42.084507 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:42.084910 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T03:43:42.084945 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:42.085259 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T03:43:42.085294 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:42.085614 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T03:43:42.085643 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:42.085922 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T03:43:42.093170 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:42.095944 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T03:43:42.096029 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:42.096427 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T03:43:42.096476 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:42.100614 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T03:43:42.100707 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:42.101303 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-08-07T03:43:42.101367 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:42.101928 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-08-07T03:43:42.101976 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:42.102363 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T03:43:42.102544 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:44.075973 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.31 ms +I, [2018-08-07T03:43:44.076293 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:43:44.076677 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-08-07T03:43:44.076708 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:43:44.108537 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.42 ms +I, [2018-08-07T03:43:44.108601 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:44.108915 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T03:43:44.109065 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:44.109724 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.44 ms +I, [2018-08-07T03:43:44.109780 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:44.110216 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T03:43:44.110277 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:44.110705 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T03:43:44.110757 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:44.111068 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T03:43:44.111112 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:44.111526 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T03:43:44.111557 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:44.111947 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T03:43:44.111982 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:46.077635 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.23 ms +I, [2018-08-07T03:43:46.077899 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:43:46.078155 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T03:43:46.078186 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:43:46.078540 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.24 ms +I, [2018-08-07T03:43:46.078581 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:43:46.078914 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T03:43:46.078944 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:43:46.079213 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T03:43:46.079246 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:43:46.079553 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-08-07T03:43:46.079581 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:43:46.079824 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T03:43:46.079855 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:43:46.080137 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T03:43:46.080166 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:43:46.112752 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T03:43:46.112821 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:46.113650 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.53 ms +I, [2018-08-07T03:43:46.113763 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:46.114211 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T03:43:46.114250 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:46.114581 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T03:43:46.114621 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:46.114962 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T03:43:46.115014 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:46.115578 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T03:43:46.115618 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:46.118606 #7] INFO -- : Inline processing of topic section_change with 1 messages took 2.8 ms +I, [2018-08-07T03:43:46.118808 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:46.119288 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T03:43:46.119338 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:46.119789 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T03:43:46.119827 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:46.120069 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T03:43:46.120099 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:46.120374 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T03:43:46.120404 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:46.120805 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T03:43:46.120872 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:46.121254 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T03:43:46.121300 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:46.121686 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T03:43:46.121735 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:46.122087 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T03:43:46.122134 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:46.122529 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T03:43:46.122579 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:46.127073 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T03:43:46.127124 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:46.127442 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T03:43:46.127483 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:46.127754 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T03:43:46.133026 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:46.133729 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T03:43:46.133874 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:46.134272 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T03:43:46.134306 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:46.134548 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T03:43:46.134591 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:48.080980 #7] INFO -- : Committing offsets: course_change/0:179 +I, [2018-08-07T03:43:48.090594 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.28 ms +I, [2018-08-07T03:43:48.091203 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:43:48.135163 #7] INFO -- : Committing offsets: section_change/0:288 +I, [2018-08-07T03:43:48.137523 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T03:43:48.137709 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:48.138150 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T03:43:48.138200 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:48.138656 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T03:43:48.138734 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:48.139110 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T03:43:48.139156 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:48.140573 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.03 ms +I, [2018-08-07T03:43:48.140663 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:48.141142 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T03:43:48.141215 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:48.141751 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T03:43:48.141792 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:48.143540 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T03:43:48.143720 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:48.144153 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T03:43:48.144220 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:50.146403 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-08-07T03:43:50.146474 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:50.146990 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T03:43:50.147049 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:50.147501 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T03:43:50.147551 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:50.148255 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T03:43:50.148333 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:50.149125 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T03:43:50.149305 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:50.149784 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T03:43:50.149831 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:50.153196 #7] INFO -- : Inline processing of topic section_change with 1 messages took 3.09 ms +I, [2018-08-07T03:43:50.153268 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:50.153884 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-08-07T03:43:50.153943 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:52.094322 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.23 ms +I, [2018-08-07T03:43:52.094391 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:43:52.094701 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T03:43:52.094748 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:43:52.095004 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T03:43:52.095034 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:43:52.095497 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T03:43:52.095532 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:43:52.095733 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-08-07T03:43:52.095762 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:43:52.096083 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T03:43:52.096114 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:43:52.096324 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T03:43:52.096353 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:43:52.096608 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T03:43:52.096656 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:43:52.096952 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T03:43:52.096997 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:43:52.097248 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-08-07T03:43:52.097278 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:43:52.154842 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-08-07T03:43:52.154910 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:52.155323 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T03:43:52.155372 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:52.155764 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T03:43:52.155824 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:52.156239 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T03:43:52.156293 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:52.157336 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T03:43:52.157394 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:52.157807 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T03:43:52.157858 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:52.158231 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T03:43:52.158282 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:52.158656 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T03:43:52.158705 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:52.159074 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T03:43:52.159121 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:52.159446 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T03:43:52.159494 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:52.159848 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T03:43:52.159898 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:52.160381 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T03:43:52.160443 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:52.161040 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-08-07T03:43:52.161100 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:54.100791 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.34 ms +I, [2018-08-07T03:43:54.100864 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:43:54.101262 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-08-07T03:43:54.101311 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:43:54.101624 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T03:43:54.101708 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:43:54.102005 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T03:43:54.102075 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:43:54.105191 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.25 ms +I, [2018-08-07T03:43:54.105257 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:43:54.105657 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T03:43:54.105707 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:43:54.106062 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T03:43:54.106114 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:43:54.106474 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T03:43:54.107570 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:43:54.108010 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-08-07T03:43:54.108454 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:43:54.108901 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T03:43:54.108950 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:43:54.110111 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T03:43:54.110167 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:43:54.110613 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-08-07T03:43:54.110665 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:43:54.162203 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.53 ms +I, [2018-08-07T03:43:54.162311 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:54.162863 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-08-07T03:43:54.162919 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:54.163360 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T03:43:54.163400 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:54.163716 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T03:43:54.163760 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:54.164191 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T03:43:54.164232 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:54.164731 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-08-07T03:43:54.164889 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:54.165209 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T03:43:54.165242 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:54.165565 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T03:43:54.165609 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:54.166068 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T03:43:54.166111 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:54.166479 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T03:43:54.166535 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:54.166858 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T03:43:54.166911 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:54.167518 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-08-07T03:43:54.167576 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:54.167941 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T03:43:54.167976 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:54.168308 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T03:43:54.168343 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:54.168575 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T03:43:54.168616 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:56.111947 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.53 ms +I, [2018-08-07T03:43:56.113371 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:43:56.113997 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-08-07T03:43:56.114069 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:43:56.114390 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T03:43:56.114426 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:43:56.114727 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T03:43:56.114765 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:43:56.115062 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T03:43:56.115103 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:43:56.115422 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T03:43:56.115464 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:43:56.115754 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T03:43:56.115817 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:43:56.116130 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T03:43:56.116342 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:43:56.116946 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T03:43:56.116987 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:43:56.117315 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T03:43:56.117359 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:43:56.117677 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T03:43:56.117727 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:43:56.118042 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T03:43:56.118087 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:43:56.118430 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T03:43:56.118482 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:43:56.169625 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-08-07T03:43:56.169756 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:56.170123 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T03:43:56.170167 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:56.170491 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T03:43:56.170533 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:56.170825 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T03:43:56.170866 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:56.171170 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T03:43:56.171251 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:56.171528 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T03:43:56.171605 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:56.171941 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T03:43:56.171983 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:56.172288 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T03:43:56.172330 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:56.172643 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T03:43:56.172685 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:56.173177 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-08-07T03:43:56.173222 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:56.173688 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-08-07T03:43:56.173735 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:56.174146 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T03:43:56.174185 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:56.175750 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.41 ms +I, [2018-08-07T03:43:56.175829 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:56.176541 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T03:43:56.176607 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:56.176986 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T03:43:56.177020 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:56.177331 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T03:43:56.177376 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:56.177709 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T03:43:56.177754 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:56.178094 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T03:43:56.178139 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:56.178445 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T03:43:56.178476 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:56.178792 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T03:43:56.178837 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:56.179136 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T03:43:56.179178 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:56.179492 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T03:43:56.179555 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:56.179867 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T03:43:56.179913 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:56.180369 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T03:43:56.180414 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:56.182416 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T03:43:56.182764 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:56.187286 #7] INFO -- : Inline processing of topic section_change with 1 messages took 2.69 ms +I, [2018-08-07T03:43:56.187367 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:56.189533 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T03:43:56.189593 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:56.194250 #7] INFO -- : Inline processing of topic section_change with 1 messages took 3.73 ms +I, [2018-08-07T03:43:56.194324 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:56.200491 #7] INFO -- : Inline processing of topic section_change with 1 messages took 5.29 ms +I, [2018-08-07T03:43:56.200572 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:56.201368 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T03:43:56.201422 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:56.204718 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.68 ms +I, [2018-08-07T03:43:56.204824 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:56.205559 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.48 ms +I, [2018-08-07T03:43:56.205612 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:56.205986 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T03:43:56.206127 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:56.206639 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T03:43:56.206756 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:56.207223 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T03:43:56.207330 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:56.207781 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T03:43:56.207828 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:56.210208 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.51 ms +I, [2018-08-07T03:43:56.210280 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:56.211179 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T03:43:56.211243 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:56.211804 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T03:43:56.212102 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:56.212722 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T03:43:56.212782 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:56.213200 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T03:43:56.213247 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:56.220359 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T03:43:56.220714 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:56.224067 #7] INFO -- : Inline processing of topic section_change with 1 messages took 2.71 ms +I, [2018-08-07T03:43:56.224142 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:56.226170 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.55 ms +I, [2018-08-07T03:43:56.227968 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:56.232681 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T03:43:56.232867 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:56.233313 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T03:43:56.233363 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:56.233775 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T03:43:56.233830 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:58.118900 #7] INFO -- : Committing offsets: course_change/0:215 +I, [2018-08-07T03:43:58.123021 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T03:43:58.123173 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:43:58.123460 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T03:43:58.123504 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:43:58.123823 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T03:43:58.123872 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:43:58.124189 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T03:43:58.124222 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:43:58.124414 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T03:43:58.124441 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:43:58.124650 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T03:43:58.124679 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:43:58.125091 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T03:43:58.125128 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:43:58.125355 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-08-07T03:43:58.125385 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:43:58.125583 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-08-07T03:43:58.126161 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:43:58.126552 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T03:43:58.126599 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:43:58.234236 #7] INFO -- : Committing offsets: section_change/0:380 +I, [2018-08-07T03:43:58.236457 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T03:43:58.236504 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:58.236761 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T03:43:58.236799 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:58.237028 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T03:43:58.238045 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:58.238401 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T03:43:58.238434 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:58.238656 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T03:43:58.238684 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:58.238878 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T03:43:58.238906 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:58.239142 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T03:43:58.239177 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:58.239546 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T03:43:58.239607 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:58.239866 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T03:43:58.239900 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:58.240108 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T03:43:58.240136 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:58.240334 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T03:43:58.240400 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:58.240591 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T03:43:58.240619 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:58.243278 #7] INFO -- : Inline processing of topic section_change with 1 messages took 2.49 ms +I, [2018-08-07T03:43:58.243350 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:58.243687 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T03:43:58.243720 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:58.243982 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T03:43:58.244013 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:43:58.244275 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T03:43:58.244369 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:00.127305 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-08-07T03:44:00.127354 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:44:00.127608 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T03:44:00.127636 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:44:00.127836 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-08-07T03:44:00.127892 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:44:00.128162 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T03:44:00.128197 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:44:00.128439 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T03:44:00.128469 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:44:00.128681 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T03:44:00.128710 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:44:00.128892 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T03:44:00.128920 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:44:00.129124 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T03:44:00.129154 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:44:00.129361 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T03:44:00.129389 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:44:00.129640 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T03:44:00.129671 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:44:00.129885 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-08-07T03:44:00.129915 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:44:00.130148 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T03:44:00.130178 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:44:00.130386 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T03:44:00.130415 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:44:00.132244 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-08-07T03:44:00.132295 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:44:00.132671 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T03:44:00.134876 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:44:00.135390 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-08-07T03:44:00.135449 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:44:00.249708 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T03:44:00.249758 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:00.250032 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T03:44:00.250061 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:00.250477 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T03:44:00.250561 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:00.250844 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T03:44:00.250904 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:00.251176 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T03:44:00.251244 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:00.251442 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T03:44:00.251471 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:00.251761 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T03:44:00.251792 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:00.252450 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T03:44:00.252486 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:00.252740 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T03:44:00.252769 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:00.252968 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T03:44:00.252997 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:00.253218 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-08-07T03:44:00.253507 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:00.253757 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T03:44:00.253786 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:00.254017 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T03:44:00.254045 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:00.254463 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T03:44:00.254522 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:00.254856 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T03:44:00.254890 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:00.255242 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T03:44:00.255273 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:00.255699 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T03:44:00.255736 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:02.136516 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.28 ms +I, [2018-08-07T03:44:02.136584 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:44:02.137048 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T03:44:02.137133 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:44:02.137377 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T03:44:02.137408 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:44:02.137776 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T03:44:02.137839 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:44:02.138196 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-08-07T03:44:02.138248 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:44:02.138572 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T03:44:02.138620 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:44:02.138945 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T03:44:02.138983 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:44:02.139207 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T03:44:02.139237 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:44:02.139587 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T03:44:02.139636 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:44:02.256389 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T03:44:02.256438 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:02.256744 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T03:44:02.257052 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:02.257363 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T03:44:02.257393 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:02.257786 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T03:44:02.257822 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:02.258163 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T03:44:02.258872 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:02.259282 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T03:44:02.259330 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:02.259664 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T03:44:02.259732 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:02.260108 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T03:44:02.260142 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:02.260380 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T03:44:02.260409 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:02.260648 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T03:44:02.260677 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:02.261097 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T03:44:02.261161 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:02.261534 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T03:44:02.261585 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:02.261917 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T03:44:02.261990 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:02.262340 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T03:44:02.262389 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:02.262735 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T03:44:02.262786 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:02.263179 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T03:44:02.263242 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:02.263611 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T03:44:02.263662 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:02.264001 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T03:44:02.271579 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:02.272011 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T03:44:02.272063 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:02.272361 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T03:44:02.272395 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:02.272773 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T03:44:02.272838 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:02.273244 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T03:44:02.273293 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:02.273543 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T03:44:02.273574 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:02.273903 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T03:44:02.273970 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:02.274337 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T03:44:02.274382 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:02.274616 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T03:44:02.274658 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:02.274883 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T03:44:02.274917 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:02.283684 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T03:44:02.283726 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:02.284030 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T03:44:02.284063 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:02.284302 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T03:44:02.284360 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:02.284656 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T03:44:02.284706 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:02.285023 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T03:44:02.285077 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:02.285561 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T03:44:02.285605 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:02.285868 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T03:44:02.285944 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:02.286243 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T03:44:02.286275 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:02.286509 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T03:44:02.286538 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:02.286763 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T03:44:02.286800 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:02.287029 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T03:44:02.287070 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:02.287296 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T03:44:02.287330 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:02.287575 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T03:44:02.287611 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:02.288610 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.87 ms +I, [2018-08-07T03:44:02.288645 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:02.288846 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T03:44:02.288875 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:02.289103 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-08-07T03:44:02.289133 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:02.289359 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T03:44:02.289388 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:02.290119 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.57 ms +I, [2018-08-07T03:44:02.290292 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:02.290618 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T03:44:02.290661 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:02.290985 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T03:44:02.291025 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:02.291334 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T03:44:02.291376 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:02.291656 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T03:44:02.291701 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:02.292030 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T03:44:02.292069 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:02.292483 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T03:44:02.292537 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:02.292935 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T03:44:02.292987 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:02.298429 #7] INFO -- : Inline processing of topic section_change with 1 messages took 5.22 ms +I, [2018-08-07T03:44:02.298494 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:02.298838 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T03:44:02.298870 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:04.141227 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.3 ms +I, [2018-08-07T03:44:04.141336 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:44:04.141967 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.43 ms +I, [2018-08-07T03:44:04.142020 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:44:04.142425 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-08-07T03:44:04.142473 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:44:04.304870 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T03:44:04.304919 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:04.305174 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T03:44:04.305204 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:04.305433 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T03:44:04.305461 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:04.305702 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T03:44:04.305730 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:04.305921 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T03:44:04.305950 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:04.306180 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T03:44:04.306344 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:04.306612 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T03:44:04.306635 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:04.306844 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T03:44:04.306872 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:04.307081 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T03:44:04.307108 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:04.307540 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-08-07T03:44:04.307578 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:04.307835 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T03:44:04.307864 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:04.308063 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T03:44:04.308091 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:04.308318 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T03:44:04.308346 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:06.143400 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.23 ms +I, [2018-08-07T03:44:06.143453 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:44:06.143824 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T03:44:06.143867 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:44:06.144192 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T03:44:06.144242 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:44:06.144584 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-08-07T03:44:06.144625 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:44:06.144899 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T03:44:06.144946 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:44:06.145302 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T03:44:06.145348 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:44:06.309391 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T03:44:06.309441 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:06.309694 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T03:44:06.309724 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:06.309926 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T03:44:06.309982 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:06.310181 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T03:44:06.310209 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:06.310435 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T03:44:06.310464 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:06.310769 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T03:44:06.310800 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:06.311039 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T03:44:06.311067 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:06.311273 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T03:44:06.311302 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:06.311528 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T03:44:06.314998 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:08.109446 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.48 ms +I, [2018-08-07T03:44:08.109522 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:44:08.110031 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T03:44:08.110114 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:44:08.110357 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T03:44:08.110388 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:44:08.110619 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T03:44:08.110649 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:44:08.110962 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T03:44:08.110993 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:44:08.111178 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T03:44:08.115009 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:44:08.279999 #7] INFO -- : Committing offsets: section_change/0:489 +I, [2018-08-07T03:44:08.281977 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T03:44:08.282018 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:08.282256 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T03:44:08.282286 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:08.282704 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T03:44:08.282734 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:08.282961 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T03:44:08.282989 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:08.283199 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T03:44:08.283227 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:08.283422 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T03:44:08.283801 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:08.284225 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T03:44:08.284270 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:08.284719 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T03:44:08.284771 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:10.115921 #7] INFO -- : Committing offsets: course_change/0:265 +I, [2018-08-07T03:44:10.145859 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-08-07T03:44:10.145908 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:44:10.146149 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T03:44:10.146179 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:44:10.146468 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T03:44:10.146499 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:44:10.146704 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T03:44:10.146733 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:44:10.146943 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-08-07T03:44:10.146985 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:44:10.147191 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T03:44:10.147219 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:44:10.147433 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-08-07T03:44:10.147462 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:44:10.147675 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-08-07T03:44:10.147704 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:44:10.147917 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T03:44:10.147945 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:44:10.148144 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T03:44:10.148184 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:44:10.287513 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.4 ms +I, [2018-08-07T03:44:10.287623 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:10.288552 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T03:44:10.288608 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:10.289050 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T03:44:10.289089 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:10.289414 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T03:44:10.289454 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:10.289729 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T03:44:10.289803 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:10.290282 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T03:44:10.290340 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:10.290982 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-08-07T03:44:10.291029 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:10.291368 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T03:44:10.291412 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:10.291794 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T03:44:10.291859 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:12.149056 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-08-07T03:44:12.149137 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:44:12.149480 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-08-07T03:44:12.149521 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:44:12.149926 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T03:44:12.149963 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:44:12.150345 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T03:44:12.150487 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:44:12.150769 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T03:44:12.150829 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:44:12.151151 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T03:44:12.151510 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:44:12.151876 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T03:44:12.151936 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:44:12.152236 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T03:44:12.152269 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:44:12.152481 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T03:44:12.154298 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:44:12.154995 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.33 ms +I, [2018-08-07T03:44:12.155067 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:44:12.155562 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T03:44:12.155665 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:44:12.292771 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-08-07T03:44:12.292822 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:12.293153 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T03:44:12.293267 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:12.293639 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T03:44:12.293674 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:12.293965 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T03:44:12.294015 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:12.294225 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T03:44:12.294275 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:12.294499 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T03:44:12.294528 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:12.294797 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T03:44:12.294827 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:12.295091 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T03:44:12.295119 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:12.295397 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T03:44:12.295441 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:12.295696 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T03:44:12.295729 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:12.295963 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T03:44:12.295991 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:12.296373 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T03:44:12.296407 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:12.296675 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T03:44:12.296705 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:14.156575 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-08-07T03:44:14.156626 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:44:14.156870 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T03:44:14.156905 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:44:14.157149 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T03:44:14.157179 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:44:14.157363 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T03:44:14.157391 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:44:14.157710 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T03:44:14.157745 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:44:14.157984 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T03:44:14.158014 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:44:14.158473 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.35 ms +I, [2018-08-07T03:44:14.158541 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:44:14.158833 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T03:44:14.158870 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:44:14.160191 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.98 ms +I, [2018-08-07T03:44:14.160352 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:44:14.160639 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T03:44:14.160669 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:44:14.160887 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T03:44:14.160916 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:44:14.161133 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T03:44:14.161165 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:44:14.161349 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T03:44:14.161493 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:44:14.297463 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T03:44:14.297535 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:14.297901 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T03:44:14.297936 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:14.298294 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T03:44:14.298330 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:14.298540 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T03:44:14.298569 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:14.298798 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T03:44:14.298827 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:14.299058 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T03:44:14.299085 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:14.299274 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-08-07T03:44:14.299340 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:14.299522 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-08-07T03:44:14.299550 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:14.300991 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T03:44:14.301051 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:14.301388 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T03:44:14.301419 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:14.301615 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-08-07T03:44:14.301644 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:14.301873 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-08-07T03:44:14.301902 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:14.302135 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T03:44:14.302165 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:14.302384 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T03:44:14.302412 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:14.302591 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-08-07T03:44:14.302619 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:14.302855 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-08-07T03:44:14.302886 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:14.303104 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T03:44:14.303133 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:14.303350 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-08-07T03:44:14.303379 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:14.303557 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-08-07T03:44:14.303584 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:14.303801 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T03:44:14.303829 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:14.304040 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T03:44:14.304068 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:14.304290 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T03:44:14.304345 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:14.304531 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-08-07T03:44:14.304559 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:14.304794 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T03:44:14.304824 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:14.306813 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T03:44:14.306984 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:14.307472 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T03:44:14.307510 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:14.307772 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T03:44:14.307852 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:14.308129 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T03:44:14.308162 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:14.308588 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T03:44:14.308625 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:14.308843 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T03:44:14.308904 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:14.309838 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T03:44:14.309924 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:14.310315 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T03:44:14.310347 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:14.310704 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T03:44:14.310750 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:14.311072 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T03:44:14.311114 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:14.311458 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T03:44:14.311487 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:16.162467 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-08-07T03:44:16.162549 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:44:16.162878 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T03:44:16.162915 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:44:16.163121 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-08-07T03:44:16.163150 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:44:16.163403 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T03:44:16.163446 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:44:16.163695 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T03:44:16.163725 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:44:16.163978 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T03:44:16.164011 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:44:16.164223 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T03:44:16.164252 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:44:16.164518 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T03:44:16.164547 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:44:16.164753 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T03:44:16.164782 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:44:16.164962 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T03:44:16.169400 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:44:16.169912 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-08-07T03:44:16.169971 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:44:16.312408 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T03:44:16.312457 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:16.312729 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T03:44:16.312769 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:16.313028 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T03:44:16.313058 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:16.313325 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T03:44:16.313354 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:16.313597 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T03:44:16.313630 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:16.313815 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-08-07T03:44:16.313842 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:16.314068 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T03:44:16.314096 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:16.314326 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T03:44:16.314355 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:16.314607 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T03:44:16.314636 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:16.314876 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T03:44:16.314904 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:16.315126 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T03:44:16.315157 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:16.315367 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T03:44:16.315396 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:16.315634 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T03:44:16.315662 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:18.170733 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T03:44:18.170787 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:44:18.171037 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T03:44:18.171184 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:44:18.171589 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T03:44:18.171634 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:44:18.171948 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T03:44:18.171982 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:44:18.172352 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T03:44:18.172385 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:44:18.172595 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T03:44:18.172691 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:44:18.173258 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-08-07T03:44:18.173307 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:44:18.173603 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T03:44:18.173635 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:44:18.173856 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T03:44:18.173885 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:44:18.174087 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T03:44:18.174116 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:44:18.174312 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T03:44:18.174355 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:44:18.174547 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-08-07T03:44:18.174575 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:44:18.174888 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T03:44:18.174922 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:44:18.315973 #7] INFO -- : Committing offsets: section_change/0:567 +I, [2018-08-07T03:44:18.318324 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T03:44:18.318368 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:18.318601 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T03:44:18.318632 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:18.318859 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T03:44:18.318888 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:18.319118 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T03:44:18.319147 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:18.319372 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T03:44:18.319401 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:18.319626 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T03:44:18.319697 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:18.320064 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T03:44:18.320128 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:18.320396 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T03:44:18.320426 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:18.320676 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T03:44:18.323894 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:18.324379 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T03:44:18.324426 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:18.324714 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T03:44:18.324773 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:18.325053 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T03:44:18.325093 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:18.325372 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T03:44:18.325492 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:18.327479 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.72 ms +I, [2018-08-07T03:44:18.327553 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:18.328102 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T03:44:18.328142 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:18.328379 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T03:44:18.328413 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:18.328712 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T03:44:18.328748 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:18.329398 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.52 ms +I, [2018-08-07T03:44:18.329440 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:18.329824 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T03:44:18.330065 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:18.330661 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T03:44:18.330700 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:18.330977 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T03:44:18.331012 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:18.331438 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T03:44:18.331487 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:18.331727 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T03:44:18.331782 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:18.332158 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T03:44:18.332250 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:18.332653 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T03:44:18.332681 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:18.332929 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T03:44:18.332963 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:18.333359 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T03:44:18.333403 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:18.333907 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T03:44:18.333956 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:18.334442 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T03:44:18.334495 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:18.335326 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-08-07T03:44:18.335372 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:18.335839 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T03:44:18.335972 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:18.336507 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T03:44:18.336558 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:18.337032 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T03:44:18.337087 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:18.337796 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T03:44:18.337844 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:18.338594 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T03:44:18.338652 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:18.339149 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T03:44:18.339200 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:18.339633 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T03:44:18.339681 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:18.340010 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T03:44:18.340043 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:18.340593 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-08-07T03:44:18.340629 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:18.341128 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T03:44:18.341181 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:18.341614 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T03:44:18.341657 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:18.342092 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T03:44:18.342137 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:18.342537 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T03:44:18.342571 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:18.342789 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T03:44:18.343303 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:18.343888 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-08-07T03:44:18.343928 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:18.347964 #7] INFO -- : Inline processing of topic section_change with 1 messages took 2.79 ms +I, [2018-08-07T03:44:18.348064 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:18.348692 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T03:44:18.348751 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:18.349870 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.92 ms +I, [2018-08-07T03:44:18.349956 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:20.175189 #7] INFO -- : Committing offsets: course_change/0:323 +I, [2018-08-07T03:44:20.179156 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.3 ms +I, [2018-08-07T03:44:20.179275 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:44:20.179743 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-08-07T03:44:20.179827 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:44:20.180055 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-08-07T03:44:20.180082 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:44:20.180312 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T03:44:20.180333 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:44:20.180497 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T03:44:20.180551 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:44:20.180979 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.32 ms +I, [2018-08-07T03:44:20.181031 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:44:20.181406 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-08-07T03:44:20.181457 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:44:20.181832 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T03:44:20.181868 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:44:20.182072 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-08-07T03:44:20.182101 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:44:20.182311 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T03:44:20.182340 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:44:20.182542 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T03:44:20.182569 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:44:20.182750 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T03:44:20.182805 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:44:20.183095 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T03:44:20.183129 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:44:20.352935 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T03:44:20.352983 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:20.353210 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T03:44:20.353263 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:20.353484 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T03:44:20.353536 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:20.353752 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T03:44:20.353781 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:20.354000 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T03:44:20.354028 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:20.354247 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T03:44:20.354275 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:20.354510 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T03:44:20.354538 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:20.354762 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T03:44:20.354790 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:20.355084 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T03:44:20.355175 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:20.355443 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T03:44:20.355473 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:20.355703 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T03:44:20.355732 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:20.355957 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T03:44:20.355985 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:20.356212 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T03:44:20.356240 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:20.356423 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-08-07T03:44:20.356501 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:22.183737 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.23 ms +I, [2018-08-07T03:44:22.183786 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:44:22.184026 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T03:44:22.184057 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:44:22.184320 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-08-07T03:44:22.184350 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:44:22.184574 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T03:44:22.184603 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:44:22.184869 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T03:44:22.184900 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:44:22.188355 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-08-07T03:44:22.188400 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:44:22.190540 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-08-07T03:44:22.190604 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:44:22.190955 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T03:44:22.191002 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:44:22.191344 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-08-07T03:44:22.191395 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:44:22.191753 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T03:44:22.191787 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:44:22.192019 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T03:44:22.192049 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:44:22.192269 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T03:44:22.192298 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:44:22.192519 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T03:44:22.192548 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:44:22.192746 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T03:44:22.192775 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:44:22.193014 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T03:44:22.193046 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:44:22.357233 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T03:44:22.357298 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:22.357790 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-08-07T03:44:22.357840 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:22.358308 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T03:44:22.358358 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:22.358903 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-08-07T03:44:22.358941 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:22.359477 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T03:44:22.359517 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:22.359794 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T03:44:22.359825 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:22.360087 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T03:44:22.360123 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:22.360370 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T03:44:22.360400 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:22.360633 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T03:44:22.360662 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:22.360928 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T03:44:22.360973 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:22.361216 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T03:44:22.361246 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:22.361462 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-08-07T03:44:22.361519 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:22.361745 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T03:44:22.361775 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:22.361980 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T03:44:22.362009 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:22.362212 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T03:44:22.362239 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:22.363286 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.92 ms +I, [2018-08-07T03:44:22.363330 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:22.363772 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T03:44:22.363887 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:22.364271 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T03:44:22.364316 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:22.364676 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T03:44:22.364721 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:22.365136 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T03:44:22.365177 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:22.365546 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T03:44:22.367769 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:22.368774 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.68 ms +I, [2018-08-07T03:44:22.368835 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:22.369228 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T03:44:22.369275 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:22.370721 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T03:44:22.370861 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:22.371246 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T03:44:22.371296 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:22.372595 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.99 ms +I, [2018-08-07T03:44:22.372655 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:22.373034 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T03:44:22.373080 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:22.373393 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T03:44:22.376008 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:22.376433 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T03:44:22.376489 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:22.376713 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T03:44:22.376743 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:22.377021 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T03:44:22.377053 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:22.377272 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T03:44:22.377301 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:22.377921 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T03:44:22.378020 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:22.378441 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T03:44:22.378479 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:22.378705 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T03:44:22.378734 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:22.378951 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T03:44:22.378981 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:22.379609 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T03:44:22.379700 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:22.380152 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T03:44:22.380192 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:22.380437 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T03:44:22.380468 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:22.380758 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T03:44:22.380791 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:24.194213 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.39 ms +I, [2018-08-07T03:44:24.194267 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:44:24.194648 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-08-07T03:44:24.194697 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:44:24.194972 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T03:44:24.195065 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:44:24.195323 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T03:44:24.195371 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:44:24.195706 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T03:44:24.195753 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:44:24.196095 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-08-07T03:44:24.197212 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:44:24.197516 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T03:44:24.197549 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:44:24.197792 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-08-07T03:44:24.197821 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:44:24.198081 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T03:44:24.198111 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:44:24.382340 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.49 ms +I, [2018-08-07T03:44:24.382415 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:24.382857 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T03:44:24.382909 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:24.386945 #7] INFO -- : Inline processing of topic section_change with 1 messages took 3.74 ms +I, [2018-08-07T03:44:24.387137 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:24.387566 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T03:44:24.387600 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:24.387952 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T03:44:24.387996 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:24.388395 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T03:44:24.388445 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:24.388830 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T03:44:24.388881 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:24.389264 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T03:44:24.389307 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:24.389603 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T03:44:24.389734 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:24.390059 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T03:44:24.390117 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:24.390492 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T03:44:24.390536 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:24.390859 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T03:44:24.391451 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:24.392249 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.52 ms +I, [2018-08-07T03:44:24.392300 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:24.393256 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T03:44:24.393309 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:24.394076 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.55 ms +I, [2018-08-07T03:44:24.394117 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:24.396946 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.5 ms +I, [2018-08-07T03:44:24.397013 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:24.397323 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T03:44:24.397397 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:24.397812 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T03:44:24.397859 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:24.398306 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T03:44:24.398935 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:24.399585 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T03:44:24.399652 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:24.400094 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T03:44:24.400340 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:24.401170 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.53 ms +I, [2018-08-07T03:44:24.401235 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:26.198936 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T03:44:26.199020 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:44:26.199323 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T03:44:26.199354 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:44:26.199675 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T03:44:26.199725 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:44:26.199961 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T03:44:26.199990 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:44:26.200263 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T03:44:26.200314 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:44:26.200578 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-08-07T03:44:26.200635 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:44:26.200938 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T03:44:26.200971 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:44:26.201161 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T03:44:26.201447 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:44:26.201666 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-08-07T03:44:26.201695 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:44:26.402266 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T03:44:26.402371 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:26.402776 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T03:44:26.402828 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:26.403369 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T03:44:26.403413 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:26.403684 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T03:44:26.403724 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:26.404019 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T03:44:26.404050 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:26.404428 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T03:44:26.404736 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:26.405056 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T03:44:26.405089 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:26.405512 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-08-07T03:44:26.405547 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:26.405809 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T03:44:26.405854 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:26.406053 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T03:44:26.406117 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:26.406401 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T03:44:26.406438 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:26.406871 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-08-07T03:44:26.406925 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:26.407261 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T03:44:26.407302 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:26.407616 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T03:44:26.407663 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:26.407961 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T03:44:26.408001 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:26.408450 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-08-07T03:44:26.408554 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:26.409311 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.42 ms +I, [2018-08-07T03:44:26.409396 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:26.410054 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-08-07T03:44:26.410140 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:26.410755 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T03:44:26.410807 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:26.411189 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T03:44:26.411236 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:26.411537 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T03:44:26.413303 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:26.417185 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.88 ms +I, [2018-08-07T03:44:26.417302 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:26.417634 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T03:44:26.417666 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:26.419511 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.52 ms +I, [2018-08-07T03:44:26.419592 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:28.202471 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-08-07T03:44:28.202522 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:44:28.202880 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T03:44:28.202918 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:44:28.203377 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-08-07T03:44:28.203418 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:44:28.203686 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T03:44:28.203733 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:44:28.203989 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T03:44:28.204022 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:44:28.204257 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T03:44:28.204300 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:44:28.204527 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T03:44:28.204556 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:44:28.204794 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T03:44:28.204833 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:44:28.420908 #7] INFO -- : Committing offsets: section_change/0:715 +I, [2018-08-07T03:44:28.426353 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.79 ms +I, [2018-08-07T03:44:28.426420 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:28.426836 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T03:44:28.426896 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:28.438392 #7] INFO -- : Inline processing of topic section_change with 1 messages took 11.2 ms +I, [2018-08-07T03:44:28.438465 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:28.439099 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T03:44:28.439177 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:28.439667 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-08-07T03:44:28.439718 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:28.443984 #7] INFO -- : Inline processing of topic section_change with 1 messages took 3.82 ms +I, [2018-08-07T03:44:28.444060 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:28.444559 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T03:44:28.444606 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:28.444904 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T03:44:28.444934 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:28.446758 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T03:44:28.446835 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:28.447302 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T03:44:28.447358 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:28.447821 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T03:44:28.448499 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:30.205216 #7] INFO -- : Committing offsets: course_change/0:377 +I, [2018-08-07T03:44:30.216121 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.31 ms +I, [2018-08-07T03:44:30.216249 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:44:30.216576 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T03:44:30.216614 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:44:30.216901 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T03:44:30.216961 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:44:30.217714 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.62 ms +I, [2018-08-07T03:44:30.217756 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:44:30.218032 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T03:44:30.218067 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:44:30.218333 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T03:44:30.218366 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:44:30.218640 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-08-07T03:44:30.218676 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:44:30.218926 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-08-07T03:44:30.218961 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:44:30.219999 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.89 ms +I, [2018-08-07T03:44:30.220081 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:44:30.220448 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T03:44:30.220495 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:44:30.220795 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T03:44:30.220837 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:44:30.221927 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.89 ms +I, [2018-08-07T03:44:30.222008 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:44:30.452895 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T03:44:30.452944 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:30.453201 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T03:44:30.453685 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:30.454203 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-08-07T03:44:30.454243 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:30.454532 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T03:44:30.454563 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:30.455568 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.84 ms +I, [2018-08-07T03:44:30.455612 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:30.455913 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T03:44:30.455941 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:30.456190 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T03:44:30.456279 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:30.456562 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T03:44:30.458383 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:30.458728 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T03:44:30.458760 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:30.459014 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T03:44:30.459050 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:30.459315 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T03:44:30.459344 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:30.460094 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.62 ms +I, [2018-08-07T03:44:30.460155 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:30.460664 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T03:44:30.460721 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:30.461120 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T03:44:30.461179 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:30.461546 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T03:44:30.461602 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:30.464815 #7] INFO -- : Inline processing of topic section_change with 1 messages took 3.01 ms +I, [2018-08-07T03:44:30.464859 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:30.465529 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.49 ms +I, [2018-08-07T03:44:30.465567 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:30.465972 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T03:44:30.466070 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:30.466385 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T03:44:30.466458 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:30.466695 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T03:44:30.466806 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:32.544760 #7] INFO -- : Inline processing of topic section_change with 1 messages took 69.23 ms +I, [2018-08-07T03:44:32.544925 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:32.545849 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.62 ms +I, [2018-08-07T03:44:32.545905 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:32.547159 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.06 ms +I, [2018-08-07T03:44:32.547311 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:32.549879 #7] INFO -- : Inline processing of topic section_change with 1 messages took 2.03 ms +I, [2018-08-07T03:44:32.549975 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:32.551962 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.38 ms +I, [2018-08-07T03:44:32.552044 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:32.553936 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.18 ms +I, [2018-08-07T03:44:32.554005 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:36.352283 #7] INFO -- : Inline processing of topic course_change with 1 messages took 1.75 ms +I, [2018-08-07T03:44:36.352905 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:44:37.620952 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.54 ms +I, [2018-08-07T03:44:37.623432 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:37.625022 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T03:44:37.625123 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:37.626436 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.84 ms +I, [2018-08-07T03:44:37.626500 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:38.332422 #7] INFO -- : Inline processing of topic course_change with 1 messages took 1.3 ms +I, [2018-08-07T03:44:38.332665 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:44:39.627033 #7] INFO -- : Committing offsets: section_change/0:755 +I, [2018-08-07T03:44:39.634150 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-08-07T03:44:39.634198 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:39.635066 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.74 ms +I, [2018-08-07T03:44:39.635105 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:39.636133 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.9 ms +I, [2018-08-07T03:44:39.636172 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:39.637645 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.31 ms +I, [2018-08-07T03:44:39.637716 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:39.639644 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.7 ms +I, [2018-08-07T03:44:39.639714 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:40.333024 #7] INFO -- : Committing offsets: course_change/0:391 +I, [2018-08-07T03:44:42.285565 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.69 ms +I, [2018-08-07T03:44:42.285642 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:42.296035 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.48 ms +I, [2018-08-07T03:44:42.296258 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:42.299584 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.54 ms +I, [2018-08-07T03:44:42.299649 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:44.300833 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.58 ms +I, [2018-08-07T03:44:44.300885 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:44.301413 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-08-07T03:44:44.301454 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:44.302160 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.56 ms +I, [2018-08-07T03:44:44.302254 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:44.303032 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.55 ms +I, [2018-08-07T03:44:44.303075 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:46.304238 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.65 ms +I, [2018-08-07T03:44:46.304296 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:46.304903 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-08-07T03:44:46.304951 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:46.305405 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-08-07T03:44:46.305446 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:46.305924 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-08-07T03:44:46.305973 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:46.342895 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.79 ms +I, [2018-08-07T03:44:46.342947 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:44:48.306744 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-08-07T03:44:48.308427 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:48.308851 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T03:44:48.308896 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:48.311825 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T03:44:48.311880 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:48.312759 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T03:44:48.312799 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:48.317610 #7] INFO -- : Inline processing of topic section_change with 1 messages took 4.6 ms +I, [2018-08-07T03:44:48.317663 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:48.321809 #7] INFO -- : Inline processing of topic section_change with 1 messages took 3.95 ms +I, [2018-08-07T03:44:48.322202 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:48.332133 #7] INFO -- : Inline processing of topic section_change with 1 messages took 8.19 ms +I, [2018-08-07T03:44:48.332185 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:48.345353 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-08-07T03:44:48.345407 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:44:50.334878 #7] INFO -- : Committing offsets: section_change/0:778 +I, [2018-08-07T03:44:50.339044 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.55 ms +I, [2018-08-07T03:44:50.339107 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:50.345107 #7] INFO -- : Inline processing of topic section_change with 1 messages took 5.02 ms +I, [2018-08-07T03:44:50.345168 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:50.352530 #7] INFO -- : Inline processing of topic section_change with 1 messages took 7.14 ms +I, [2018-08-07T03:44:50.352593 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:50.355207 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.76 ms +I, [2018-08-07T03:44:50.355275 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:50.358176 #7] INFO -- : Committing offsets: course_change/0:393 +I, [2018-08-07T03:44:52.359038 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.55 ms +I, [2018-08-07T03:44:52.359143 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:52.362214 #7] INFO -- : Inline processing of topic section_change with 1 messages took 2.83 ms +I, [2018-08-07T03:44:52.362293 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:52.368584 #7] INFO -- : Inline processing of topic section_change with 1 messages took 4.67 ms +I, [2018-08-07T03:44:52.368668 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:52.371031 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.46 ms +I, [2018-08-07T03:44:52.371251 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:52.375640 #7] INFO -- : Inline processing of topic section_change with 1 messages took 3.88 ms +I, [2018-08-07T03:44:52.375722 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:52.382602 #7] INFO -- : Inline processing of topic section_change with 1 messages took 4.13 ms +I, [2018-08-07T03:44:52.382681 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:52.388019 #7] INFO -- : Inline processing of topic course_change with 1 messages took 3.65 ms +I, [2018-08-07T03:44:52.388085 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:44:52.390188 #7] INFO -- : Inline processing of topic course_change with 1 messages took 1.55 ms +I, [2018-08-07T03:44:52.390734 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:44:54.384555 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-08-07T03:44:54.384649 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:54.384967 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T03:44:54.384998 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:54.385333 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T03:44:54.385407 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:54.385753 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T03:44:54.385782 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:54.386397 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-08-07T03:44:54.388837 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:54.389654 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.53 ms +I, [2018-08-07T03:44:54.389711 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:54.392679 #7] INFO -- : Inline processing of topic section_change with 1 messages took 2.72 ms +I, [2018-08-07T03:44:54.392843 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:54.394193 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.97 ms +I, [2018-08-07T03:44:54.394240 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:54.394895 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-08-07T03:44:54.394936 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:54.395524 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-08-07T03:44:54.395597 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:54.397162 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.39 ms +I, [2018-08-07T03:44:54.397286 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:54.398371 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.27 ms +I, [2018-08-07T03:44:54.399152 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:44:54.400592 #7] INFO -- : Inline processing of topic course_change with 1 messages took 1.14 ms +I, [2018-08-07T03:44:54.400761 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:44:54.401488 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.52 ms +I, [2018-08-07T03:44:54.401534 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:44:54.402200 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.25 ms +I, [2018-08-07T03:44:54.402240 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:44:54.417033 #7] INFO -- : Inline processing of topic course_change with 1 messages took 7.23 ms +I, [2018-08-07T03:44:54.417359 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:44:54.421836 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.57 ms +I, [2018-08-07T03:44:54.421969 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:44:54.426765 #7] INFO -- : Inline processing of topic course_change with 1 messages took 2.2 ms +I, [2018-08-07T03:44:54.426833 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:44:54.428671 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.5 ms +I, [2018-08-07T03:44:54.428809 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:44:54.430724 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.49 ms +I, [2018-08-07T03:44:54.431691 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:44:54.436912 #7] INFO -- : Inline processing of topic course_change with 1 messages took 4.7 ms +I, [2018-08-07T03:44:54.437963 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:44:54.444059 #7] INFO -- : Inline processing of topic course_change with 1 messages took 4.51 ms +I, [2018-08-07T03:44:54.445553 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:44:56.398193 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.43 ms +I, [2018-08-07T03:44:56.398242 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:56.398775 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T03:44:56.398807 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:56.399226 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T03:44:56.399262 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:56.400353 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T03:44:56.400454 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:56.400823 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T03:44:56.400867 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:56.401247 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T03:44:56.401287 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:56.401604 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T03:44:56.401638 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:56.401918 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T03:44:56.401951 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:56.402474 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.4 ms +I, [2018-08-07T03:44:56.402514 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:56.403223 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-08-07T03:44:56.403268 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:56.403983 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T03:44:56.404038 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:56.404598 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T03:44:56.404634 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:56.404917 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T03:44:56.404946 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:56.405233 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T03:44:56.405267 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:56.446690 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.3 ms +I, [2018-08-07T03:44:56.446743 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:44:56.447158 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.23 ms +I, [2018-08-07T03:44:56.447203 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:44:56.447592 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T03:44:56.447721 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:44:56.448040 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T03:44:56.448071 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:44:56.448344 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T03:44:56.448374 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:44:56.449978 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T03:44:56.450035 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:44:56.450402 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T03:44:56.450446 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:44:56.450793 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-08-07T03:44:56.450840 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:44:56.451183 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T03:44:56.451215 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:44:56.451402 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T03:44:56.451430 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:44:56.451659 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T03:44:56.451687 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:44:58.406334 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-08-07T03:44:58.406396 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:58.407099 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.44 ms +I, [2018-08-07T03:44:58.407157 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:58.407671 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-08-07T03:44:58.407705 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:58.407979 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T03:44:58.408009 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:58.408225 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T03:44:58.408297 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:58.408503 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T03:44:58.408531 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:58.408787 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T03:44:58.408816 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:58.410263 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-08-07T03:44:58.410307 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:58.410588 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T03:44:58.410618 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:58.410867 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T03:44:58.410897 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:44:58.452556 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.23 ms +I, [2018-08-07T03:44:58.452613 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:44:58.453002 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T03:44:58.453059 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:44:58.453416 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T03:44:58.453451 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:44:58.453714 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T03:44:58.453745 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:44:58.455683 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-08-07T03:44:58.455742 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:44:58.456025 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T03:44:58.456073 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:44:58.456365 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T03:44:58.456396 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:44:58.456728 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T03:44:58.456823 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:44:58.461057 #7] INFO -- : Inline processing of topic course_change with 1 messages took 3.34 ms +I, [2018-08-07T03:44:58.461171 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:44:58.461606 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-08-07T03:44:58.461748 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:45:00.411150 #7] INFO -- : Committing offsets: section_change/0:823 +I, [2018-08-07T03:45:00.416399 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T03:45:00.416446 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:45:00.416773 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T03:45:00.416814 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:45:00.417226 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T03:45:00.417305 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:45:00.417613 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T03:45:00.417645 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:45:00.417860 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T03:45:00.417889 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:45:00.418180 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T03:45:00.418292 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:45:00.418519 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T03:45:00.418548 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:45:00.418772 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T03:45:00.418800 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:45:00.419030 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T03:45:00.419059 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:45:00.419300 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T03:45:00.419328 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:45:00.462435 #7] INFO -- : Committing offsets: course_change/0:427 +I, [2018-08-07T03:45:00.466100 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.39 ms +I, [2018-08-07T03:45:00.466147 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:45:00.466434 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T03:45:00.466469 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:45:00.466658 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T03:45:00.466687 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:45:00.466970 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T03:45:00.466999 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:45:00.467275 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T03:45:00.467302 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:45:00.467532 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T03:45:00.467598 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:45:00.467827 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T03:45:00.467856 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:45:00.468054 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-08-07T03:45:00.468141 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:45:00.468331 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-08-07T03:45:00.468360 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:45:00.468615 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-08-07T03:45:00.468645 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:45:02.566857 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.89 ms +I, [2018-08-07T03:45:02.567007 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:45:02.568316 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.94 ms +I, [2018-08-07T03:45:02.568605 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:45:02.614114 #7] INFO -- : Inline processing of topic section_change with 1 messages took 10.11 ms +I, [2018-08-07T03:45:02.614191 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:45:02.614933 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T03:45:02.615095 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:45:02.616320 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T03:45:02.616399 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:45:02.655654 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.93 ms +I, [2018-08-07T03:45:02.655735 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:45:02.657933 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.83 ms +I, [2018-08-07T03:45:02.696431 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:45:02.697791 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.04 ms +I, [2018-08-07T03:45:02.697859 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:45:02.698467 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-08-07T03:45:02.698522 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:45:02.699007 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-08-07T03:45:02.699053 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:45:02.699382 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T03:45:02.699429 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:45:02.699896 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T03:45:02.699942 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:45:02.700319 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T03:45:02.700364 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:45:02.700863 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T03:45:02.700906 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:45:02.701315 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T03:45:02.701359 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:45:02.701728 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T03:45:02.701838 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:45:02.702368 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T03:45:02.702432 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:45:02.703044 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T03:45:02.704170 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:45:02.704677 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T03:45:02.704724 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:45:02.707157 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.91 ms +I, [2018-08-07T03:45:02.707217 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:45:02.707861 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T03:45:02.707914 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:45:02.708419 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-08-07T03:45:02.708472 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:45:04.730541 #7] INFO -- : Inline processing of topic course_change with 1 messages took 7.19 ms +I, [2018-08-07T03:45:04.731157 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:45:05.440503 #7] INFO -- : Inline processing of topic section_change with 1 messages took 707.32 ms +I, [2018-08-07T03:45:05.440837 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:45:05.450450 #7] INFO -- : Inline processing of topic section_change with 1 messages took 7.21 ms +I, [2018-08-07T03:45:05.451163 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:45:05.452617 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.78 ms +I, [2018-08-07T03:45:05.452824 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:45:05.461535 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.12 ms +I, [2018-08-07T03:45:05.461615 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:45:05.465358 #7] INFO -- : Inline processing of topic section_change with 1 messages took 2.49 ms +I, [2018-08-07T03:45:05.465765 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:45:05.481768 #7] INFO -- : Inline processing of topic section_change with 1 messages took 5.48 ms +I, [2018-08-07T03:45:05.482266 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:45:05.502100 #7] INFO -- : Inline processing of topic section_change with 1 messages took 15.53 ms +I, [2018-08-07T03:45:05.502217 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:45:05.506212 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.72 ms +I, [2018-08-07T03:45:05.506302 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:45:05.508363 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.41 ms +I, [2018-08-07T03:45:05.524589 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:45:05.528652 #7] INFO -- : Inline processing of topic section_change with 1 messages took 2.26 ms +I, [2018-08-07T03:45:05.539479 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:45:05.540324 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-08-07T03:45:05.540568 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:45:05.541660 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.83 ms +I, [2018-08-07T03:45:05.542142 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:45:05.563969 #7] INFO -- : Inline processing of topic section_change with 1 messages took 21.29 ms +I, [2018-08-07T03:45:05.564055 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:45:05.564827 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-08-07T03:45:05.565558 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:45:05.566636 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-08-07T03:45:05.566693 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:45:07.546308 #7] INFO -- : Inline processing of topic section_change with 1 messages took 31.93 ms +I, [2018-08-07T03:45:07.550864 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:45:07.560343 #7] INFO -- : Inline processing of topic section_change with 1 messages took 8.99 ms +I, [2018-08-07T03:45:07.560448 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:45:07.563594 #7] INFO -- : Inline processing of topic section_change with 1 messages took 2.81 ms +I, [2018-08-07T03:45:07.563673 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:45:07.577652 #7] INFO -- : Inline processing of topic section_change with 1 messages took 13.66 ms +I, [2018-08-07T03:45:07.577748 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:45:07.604303 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T03:45:07.604371 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:45:07.605154 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.53 ms +I, [2018-08-07T03:45:07.605202 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:45:07.605849 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T03:45:07.605901 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:45:07.606876 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.76 ms +I, [2018-08-07T03:45:07.606939 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:45:07.629047 #7] INFO -- : Inline processing of topic section_change with 1 messages took 6.25 ms +I, [2018-08-07T03:45:07.629116 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:45:07.630089 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.75 ms +I, [2018-08-07T03:45:07.630136 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:45:07.630466 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T03:45:07.630713 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:45:07.631057 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T03:45:07.631100 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:45:07.631698 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.42 ms +I, [2018-08-07T03:45:07.631760 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:45:07.632465 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.52 ms +I, [2018-08-07T03:45:07.632511 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:45:07.633147 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.43 ms +I, [2018-08-07T03:45:07.633198 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:45:07.634629 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.63 ms +I, [2018-08-07T03:45:07.634683 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:45:07.645888 #7] INFO -- : Inline processing of topic section_change with 1 messages took 10.59 ms +I, [2018-08-07T03:45:07.645975 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:45:08.679850 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-08-07T03:45:08.679915 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:45:08.680352 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.23 ms +I, [2018-08-07T03:45:08.680389 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:45:09.650778 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-08-07T03:45:09.650849 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:45:09.651139 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T03:45:09.651177 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:45:09.651949 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T03:45:09.652002 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:45:09.652854 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.68 ms +I, [2018-08-07T03:45:09.652907 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:45:09.653303 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T03:45:09.653344 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:45:09.653635 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T03:45:09.655816 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:45:09.657189 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.05 ms +I, [2018-08-07T03:45:09.657248 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:45:09.658139 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T03:45:09.658278 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:45:09.690644 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-08-07T03:45:09.690741 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:45:09.691155 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T03:45:09.691212 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:45:09.691683 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T03:45:09.691741 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:45:09.692210 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T03:45:09.692254 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:45:09.692815 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T03:45:09.693398 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:45:09.694196 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T03:45:09.694280 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:45:09.694932 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-08-07T03:45:09.694977 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:45:09.695923 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.68 ms +I, [2018-08-07T03:45:09.695981 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:45:09.696590 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-08-07T03:45:09.696632 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:45:09.712569 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T03:45:09.712640 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:45:09.713304 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T03:45:09.713362 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:45:09.714131 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.46 ms +I, [2018-08-07T03:45:09.714183 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:45:09.721195 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.52 ms +I, [2018-08-07T03:45:09.722833 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:45:09.723404 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T03:45:09.723454 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:45:09.726356 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-08-07T03:45:09.726430 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:45:09.728156 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.73 ms +I, [2018-08-07T03:45:09.730432 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:45:09.730896 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T03:45:09.730948 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:45:09.731300 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T03:45:09.731344 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:45:09.733947 #7] INFO -- : Inline processing of topic section_change with 1 messages took 2.25 ms +I, [2018-08-07T03:45:09.734032 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:45:09.734841 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T03:45:09.734957 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:45:09.735315 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T03:45:09.735366 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:45:09.735740 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T03:45:09.735902 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:45:09.740367 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.08 ms +I, [2018-08-07T03:45:09.740668 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:45:09.741236 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-08-07T03:45:09.741285 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:45:10.680774 #7] INFO -- : Committing offsets: course_change/0:442 +I, [2018-08-07T03:45:10.694707 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-08-07T03:45:10.694778 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:45:10.695163 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T03:45:10.695207 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:45:11.741618 #7] INFO -- : Committing offsets: section_change/0:917 +I, [2018-08-07T03:45:11.745705 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T03:45:11.745758 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:45:11.746228 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T03:45:11.746284 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:45:11.746780 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-08-07T03:45:11.746814 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:45:11.747209 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T03:45:11.747239 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:45:11.747663 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T03:45:11.747693 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:45:11.748185 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-08-07T03:45:11.748217 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:45:11.748399 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T03:45:11.748429 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:45:11.753442 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.7 ms +I, [2018-08-07T03:45:11.753523 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:45:12.696236 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.39 ms +I, [2018-08-07T03:45:12.696305 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:45:12.696721 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T03:45:12.696896 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:45:12.697299 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-08-07T03:45:12.697366 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:45:12.697917 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-08-07T03:45:12.697962 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:45:12.698783 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.53 ms +I, [2018-08-07T03:45:12.698950 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:45:12.699497 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.29 ms +I, [2018-08-07T03:45:12.699574 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:45:13.764723 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T03:45:13.764835 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:45:13.765130 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T03:45:13.765189 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:45:13.765564 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T03:45:13.765644 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:45:13.765869 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T03:45:13.765925 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:45:13.766188 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T03:45:13.766218 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:45:14.728302 #7] INFO -- : Inline processing of topic course_change with 1 messages took 7.94 ms +I, [2018-08-07T03:45:14.728721 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:45:14.729223 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.27 ms +I, [2018-08-07T03:45:14.729258 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:45:15.770378 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.83 ms +I, [2018-08-07T03:45:15.770466 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:45:16.761431 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.53 ms +I, [2018-08-07T03:45:16.761512 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:45:18.778392 #7] INFO -- : Inline processing of topic course_change with 1 messages took 8.55 ms +I, [2018-08-07T03:45:18.778486 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:45:19.803449 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.14 ms +I, [2018-08-07T03:45:19.803552 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:45:19.804468 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.65 ms +I, [2018-08-07T03:45:19.804530 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:45:20.804280 #7] INFO -- : Committing offsets: course_change/0:454 +I, [2018-08-07T03:45:20.870752 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.59 ms +I, [2018-08-07T03:45:20.870838 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:45:20.908678 #7] INFO -- : Inline processing of topic course_change with 1 messages took 28.67 ms +I, [2018-08-07T03:45:20.949789 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:45:21.805084 #7] INFO -- : Committing offsets: section_change/0:933 +I, [2018-08-07T03:45:21.817013 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.58 ms +I, [2018-08-07T03:45:21.817057 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:45:21.817778 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-08-07T03:45:21.817813 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:45:22.951111 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.54 ms +I, [2018-08-07T03:45:22.951238 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:45:22.972538 #7] INFO -- : Inline processing of topic course_change with 1 messages took 20.64 ms +I, [2018-08-07T03:45:22.975080 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:45:24.034774 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.6 ms +I, [2018-08-07T03:45:24.034917 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:45:24.060648 #7] INFO -- : Inline processing of topic section_change with 1 messages took 25.42 ms +I, [2018-08-07T03:45:24.060732 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:45:24.156058 #7] INFO -- : Inline processing of topic section_change with 1 messages took 75.31 ms +I, [2018-08-07T03:45:24.156291 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:45:24.995478 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.24 ms +I, [2018-08-07T03:45:24.998275 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:45:25.001209 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.9 ms +I, [2018-08-07T03:45:25.001282 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:45:26.193249 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-08-07T03:45:26.193596 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:45:26.194348 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.5 ms +I, [2018-08-07T03:45:26.194403 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:45:26.194983 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-08-07T03:45:26.195035 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:45:26.195517 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-08-07T03:45:26.195564 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:45:26.195877 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T03:45:26.195932 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:45:26.196455 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T03:45:26.196507 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:45:27.004446 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.27 ms +I, [2018-08-07T03:45:27.004527 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:45:27.005115 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.4 ms +I, [2018-08-07T03:45:27.005275 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:45:27.006045 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.38 ms +I, [2018-08-07T03:45:27.006103 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:45:28.218885 #7] INFO -- : Inline processing of topic section_change with 1 messages took 7.91 ms +I, [2018-08-07T03:45:28.218971 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:45:28.219644 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.43 ms +I, [2018-08-07T03:45:28.219760 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:45:28.221144 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.12 ms +I, [2018-08-07T03:45:28.221456 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:45:29.008711 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.42 ms +I, [2018-08-07T03:45:29.008788 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:45:30.237919 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-08-07T03:45:30.265943 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:45:30.267042 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.57 ms +I, [2018-08-07T03:45:30.267102 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:45:31.009266 #7] INFO -- : Committing offsets: course_change/0:464 +I, [2018-08-07T03:45:31.020377 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.26 ms +I, [2018-08-07T03:45:31.020444 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:45:32.267789 #7] INFO -- : Committing offsets: section_change/0:949 +I, [2018-08-07T03:45:32.276906 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.83 ms +I, [2018-08-07T03:45:32.277011 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:45:33.024665 #7] INFO -- : Inline processing of topic course_change with 1 messages took 3.19 ms +I, [2018-08-07T03:45:33.024734 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:45:33.026343 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T03:45:33.026463 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:45:34.283426 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-08-07T03:45:34.283520 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:45:34.283989 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T03:45:34.285639 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:45:34.286120 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T03:45:34.286338 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:45:34.288810 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.58 ms +I, [2018-08-07T03:45:34.290489 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:45:34.293490 #7] INFO -- : Inline processing of topic section_change with 1 messages took 2.46 ms +I, [2018-08-07T03:45:34.293556 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:45:34.296979 #7] INFO -- : Inline processing of topic section_change with 1 messages took 3.18 ms +I, [2018-08-07T03:45:34.297073 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:45:35.027312 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T03:45:35.027363 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:45:35.028495 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T03:45:35.028532 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:45:35.029379 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.26 ms +I, [2018-08-07T03:45:35.029434 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:45:36.298826 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-08-07T03:45:36.298884 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:45:36.299209 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T03:45:36.299242 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:45:36.300517 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T03:45:36.300573 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:45:36.301112 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-08-07T03:45:36.301163 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:45:36.301523 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T03:45:36.301558 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:45:36.303880 #7] INFO -- : Inline processing of topic section_change with 1 messages took 2.16 ms +I, [2018-08-07T03:45:36.303934 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:45:36.304438 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T03:45:36.304481 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:45:37.040020 #7] INFO -- : Inline processing of topic course_change with 1 messages took 2.35 ms +I, [2018-08-07T03:45:37.040131 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:45:37.040705 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.26 ms +I, [2018-08-07T03:45:37.040757 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:45:37.042064 #7] INFO -- : Inline processing of topic course_change with 1 messages took 1.1 ms +I, [2018-08-07T03:45:37.042298 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:45:37.042768 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.24 ms +I, [2018-08-07T03:45:37.042812 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:45:37.043081 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T03:45:37.043169 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:45:37.043440 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T03:45:37.043483 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:45:37.044043 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.35 ms +I, [2018-08-07T03:45:37.044590 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:45:38.275672 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.49 ms +I, [2018-08-07T03:45:38.275727 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:45:38.276070 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T03:45:38.276102 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:45:38.277440 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.15 ms +I, [2018-08-07T03:45:38.277563 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:45:38.278661 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.67 ms +I, [2018-08-07T03:45:38.278721 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:45:38.279840 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.87 ms +I, [2018-08-07T03:45:38.279966 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:45:38.280554 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.42 ms +I, [2018-08-07T03:45:38.280670 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:45:39.019433 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.26 ms +I, [2018-08-07T03:45:39.019488 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:45:39.019820 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-08-07T03:45:39.019853 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:45:39.020208 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T03:45:39.020241 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:45:39.020473 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T03:45:39.020503 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:45:40.281678 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-08-07T03:45:40.281728 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:45:40.282186 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-08-07T03:45:40.282218 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:45:40.282565 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T03:45:40.282595 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:45:40.282947 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T03:45:40.282980 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:45:40.283243 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T03:45:40.283272 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:45:40.283706 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-08-07T03:45:40.285623 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:45:41.047803 #7] INFO -- : Committing offsets: course_change/0:481 +I, [2018-08-07T03:45:41.120029 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.35 ms +I, [2018-08-07T03:45:41.120098 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:45:41.120460 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T03:45:41.120520 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:45:41.122644 #7] INFO -- : Inline processing of topic course_change with 1 messages took 1.96 ms +I, [2018-08-07T03:45:41.122721 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:45:41.123260 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.32 ms +I, [2018-08-07T03:45:41.123386 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:45:41.127076 #7] INFO -- : Inline processing of topic course_change with 1 messages took 3.27 ms +I, [2018-08-07T03:45:41.127140 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:45:41.129204 #7] INFO -- : Inline processing of topic course_change with 1 messages took 1.42 ms +I, [2018-08-07T03:45:41.129280 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:45:42.357719 #7] INFO -- : Committing offsets: section_change/0:975 +I, [2018-08-07T03:45:42.437989 #7] INFO -- : Inline processing of topic section_change with 1 messages took 3.63 ms +I, [2018-08-07T03:45:42.438090 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:45:42.439147 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-08-07T03:45:42.439277 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:45:42.439724 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T03:45:42.439780 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:45:42.440296 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-08-07T03:45:42.440358 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:45:43.131774 #7] INFO -- : Inline processing of topic course_change with 1 messages took 1.36 ms +I, [2018-08-07T03:45:43.131829 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:45:43.132952 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.81 ms +I, [2018-08-07T03:45:43.132991 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:45:43.133253 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T03:45:43.133283 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:45:44.451710 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-08-07T03:45:44.451897 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:45:44.480507 #7] INFO -- : Inline processing of topic section_change with 1 messages took 2.64 ms +I, [2018-08-07T03:45:44.480578 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:45:44.480893 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T03:45:44.481028 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:45:44.481250 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T03:45:44.481280 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:45:44.481581 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T03:45:44.481610 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:45:44.481891 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T03:45:44.481920 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:45:44.482246 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T03:45:44.484540 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:45:45.159273 #7] INFO -- : Inline processing of topic course_change with 1 messages took 1.54 ms +I, [2018-08-07T03:45:45.159486 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:45:45.160345 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.49 ms +I, [2018-08-07T03:45:45.160395 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:45:45.160661 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T03:45:45.160694 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:45:45.161253 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T03:45:45.161505 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:45:45.163650 #7] INFO -- : Inline processing of topic course_change with 1 messages took 1.42 ms +I, [2018-08-07T03:45:45.163697 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:45:46.641748 #7] INFO -- : Inline processing of topic section_change with 1 messages took 2.03 ms +I, [2018-08-07T03:45:46.646621 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:45:46.647393 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.42 ms +I, [2018-08-07T03:45:46.647465 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:45:46.648000 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-08-07T03:45:46.648039 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:45:47.300370 #7] INFO -- : Inline processing of topic course_change with 1 messages took 1.69 ms +I, [2018-08-07T03:45:47.300618 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:45:47.301467 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.24 ms +I, [2018-08-07T03:45:47.324946 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:45:48.656764 #7] INFO -- : Inline processing of topic section_change with 1 messages took 3.0 ms +I, [2018-08-07T03:45:48.656839 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:45:48.662383 #7] INFO -- : Inline processing of topic section_change with 1 messages took 5.29 ms +I, [2018-08-07T03:45:48.662443 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:45:49.328924 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.32 ms +I, [2018-08-07T03:45:49.329105 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:45:49.329601 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.3 ms +I, [2018-08-07T03:45:49.329639 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:45:49.329935 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T03:45:49.330167 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:45:49.330490 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-08-07T03:45:49.330531 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:45:50.664669 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.51 ms +I, [2018-08-07T03:45:50.664738 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:45:50.665304 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T03:45:50.665362 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:45:50.666736 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.77 ms +I, [2018-08-07T03:45:50.666890 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:45:50.670322 #7] INFO -- : Inline processing of topic section_change with 1 messages took 3.09 ms +I, [2018-08-07T03:45:50.670402 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:45:50.676263 #7] INFO -- : Inline processing of topic section_change with 1 messages took 3.64 ms +I, [2018-08-07T03:45:50.676407 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:45:52.086997 #7] INFO -- : Committing offsets: course_change/0:501 +I, [2018-08-07T03:45:52.127986 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.26 ms +I, [2018-08-07T03:45:52.128092 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:45:52.128557 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.26 ms +I, [2018-08-07T03:45:52.128604 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:45:52.129092 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.31 ms +I, [2018-08-07T03:45:52.129136 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:45:52.129419 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T03:45:52.129462 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:45:52.129825 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T03:45:52.129871 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:45:52.676978 #7] INFO -- : Committing offsets: section_change/0:996 +I, [2018-08-07T03:45:52.684857 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T03:45:52.684920 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:45:52.685306 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T03:45:52.685343 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:45:52.685610 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T03:45:52.685641 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:45:54.130647 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-08-07T03:45:54.130704 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:45:54.131114 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T03:45:54.131166 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:45:54.131615 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.3 ms +I, [2018-08-07T03:45:54.131660 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:45:54.131963 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T03:45:54.132005 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:45:54.696178 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-08-07T03:45:54.696231 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:45:54.696496 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T03:45:54.696532 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:45:54.696863 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T03:45:54.699370 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:45:54.699819 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T03:45:54.699854 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:45:57.904150 #7] INFO -- : Inline processing of topic course_change with 1 messages took 6.52 ms +I, [2018-08-07T03:45:57.904264 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:45:57.904891 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.36 ms +I, [2018-08-07T03:45:57.904946 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:45:58.275076 #7] INFO -- : Inline processing of topic section_change with 1 messages took 167.49 ms +I, [2018-08-07T03:45:58.285557 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:46:03.677535 #7] INFO -- : Committing offsets: course_change/0:512 +I, [2018-08-07T03:46:03.699393 #7] INFO -- : Committing offsets: section_change/0:1004 +I, [2018-08-07T03:46:07.600632 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.91 ms +I, [2018-08-07T03:46:07.601243 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:46:07.601821 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T03:46:07.601860 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:46:07.602916 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.64 ms +I, [2018-08-07T03:46:07.602955 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:46:07.648015 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.08 ms +I, [2018-08-07T03:46:07.648080 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:46:07.649197 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.93 ms +I, [2018-08-07T03:46:07.649240 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:46:07.649972 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.59 ms +I, [2018-08-07T03:46:07.650004 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:46:09.605767 #7] INFO -- : Inline processing of topic course_change with 1 messages took 1.28 ms +I, [2018-08-07T03:46:09.606017 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:46:09.606421 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-08-07T03:46:09.606454 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:46:09.606847 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-08-07T03:46:09.606877 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:46:09.607296 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T03:46:09.607551 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:46:09.654215 #7] INFO -- : Inline processing of topic section_change with 1 messages took 2.43 ms +I, [2018-08-07T03:46:09.654303 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:46:09.654847 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T03:46:09.654886 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:46:09.659395 #7] INFO -- : Inline processing of topic section_change with 1 messages took 4.17 ms +I, [2018-08-07T03:46:09.661701 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:46:09.670630 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.39 ms +I, [2018-08-07T03:46:09.670733 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:46:09.690585 #7] INFO -- : Inline processing of topic section_change with 1 messages took 19.55 ms +I, [2018-08-07T03:46:09.690669 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:46:09.755815 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.7 ms +I, [2018-08-07T03:46:09.755878 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:46:09.766453 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.82 ms +I, [2018-08-07T03:46:09.766600 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:46:09.950576 #7] INFO -- : Inline processing of topic section_change with 1 messages took 183.44 ms +I, [2018-08-07T03:46:09.951895 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:46:10.155775 #7] INFO -- : Inline processing of topic section_change with 1 messages took 202.4 ms +I, [2018-08-07T03:46:10.155873 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:46:10.157431 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.09 ms +I, [2018-08-07T03:46:10.157496 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:46:10.180040 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.45 ms +I, [2018-08-07T03:46:10.180125 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:46:10.181280 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.44 ms +I, [2018-08-07T03:46:10.181344 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:46:10.183164 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.79 ms +I, [2018-08-07T03:46:10.183292 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:46:10.188518 #7] INFO -- : Inline processing of topic section_change with 1 messages took 4.31 ms +I, [2018-08-07T03:46:10.188629 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:46:10.198329 #7] INFO -- : Inline processing of topic section_change with 1 messages took 8.69 ms +I, [2018-08-07T03:46:10.198448 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:46:10.209496 #7] INFO -- : Inline processing of topic section_change with 1 messages took 10.67 ms +I, [2018-08-07T03:46:10.210505 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:46:10.211473 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.4 ms +I, [2018-08-07T03:46:10.211534 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:46:10.212929 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.55 ms +I, [2018-08-07T03:46:10.213372 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:46:10.220045 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.53 ms +I, [2018-08-07T03:46:10.220105 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:46:10.221510 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.99 ms +I, [2018-08-07T03:46:10.227602 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:46:10.252713 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.97 ms +I, [2018-08-07T03:46:10.252786 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:46:10.256109 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.41 ms +I, [2018-08-07T03:46:10.256182 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:46:10.256667 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T03:46:10.256704 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:46:10.257648 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.54 ms +I, [2018-08-07T03:46:10.257765 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:46:10.269923 #7] INFO -- : Inline processing of topic section_change with 1 messages took 11.24 ms +I, [2018-08-07T03:46:10.270009 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:46:10.378076 #7] INFO -- : Inline processing of topic section_change with 1 messages took 106.91 ms +I, [2018-08-07T03:46:10.378226 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:46:10.390144 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.81 ms +I, [2018-08-07T03:46:10.390360 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:46:10.495199 #7] INFO -- : Inline processing of topic section_change with 1 messages took 103.6 ms +I, [2018-08-07T03:46:10.495273 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:46:10.500520 #7] INFO -- : Inline processing of topic section_change with 1 messages took 4.96 ms +I, [2018-08-07T03:46:10.500597 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:46:10.501916 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.94 ms +I, [2018-08-07T03:46:10.501989 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:46:10.511007 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T03:46:10.511116 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:46:10.511961 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T03:46:10.512016 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:46:10.512786 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.57 ms +I, [2018-08-07T03:46:10.513544 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:46:10.527679 #7] INFO -- : Inline processing of topic section_change with 1 messages took 11.86 ms +I, [2018-08-07T03:46:10.527941 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:46:10.529187 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.92 ms +I, [2018-08-07T03:46:10.529539 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:46:10.530251 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T03:46:10.530305 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:46:10.533670 #7] INFO -- : Inline processing of topic section_change with 1 messages took 2.94 ms +I, [2018-08-07T03:46:10.533738 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:46:10.534787 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T03:46:10.534864 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:46:10.535212 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T03:46:10.535258 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:46:10.539785 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-08-07T03:46:10.539856 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:46:10.548399 #7] INFO -- : Inline processing of topic section_change with 1 messages took 7.39 ms +I, [2018-08-07T03:46:10.548484 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:46:10.549400 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T03:46:10.549479 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:46:10.549954 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T03:46:10.550004 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:46:10.551408 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.13 ms +I, [2018-08-07T03:46:10.551467 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:46:10.553030 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.24 ms +I, [2018-08-07T03:46:10.553106 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:46:11.608412 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.34 ms +I, [2018-08-07T03:46:11.608461 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:46:11.608904 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-08-07T03:46:11.609012 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:46:11.609394 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T03:46:11.609425 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:46:12.566924 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T03:46:12.567051 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:46:12.567644 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.41 ms +I, [2018-08-07T03:46:12.567705 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:46:12.572986 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.0 ms +I, [2018-08-07T03:46:12.573139 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:46:12.573604 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T03:46:12.573843 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:46:12.574289 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T03:46:12.574338 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:46:12.574884 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-08-07T03:46:12.574930 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:46:12.576058 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T03:46:12.576151 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:46:12.576730 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T03:46:12.593282 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:46:12.687640 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-08-07T03:46:12.687716 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:46:12.790937 #7] INFO -- : Inline processing of topic section_change with 1 messages took 101.81 ms +I, [2018-08-07T03:46:12.849415 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:46:12.852168 #7] INFO -- : Inline processing of topic section_change with 1 messages took 2.38 ms +I, [2018-08-07T03:46:12.852234 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:46:12.854055 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.65 ms +I, [2018-08-07T03:46:12.854115 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:46:12.854990 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.53 ms +I, [2018-08-07T03:46:12.855179 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:46:12.855495 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T03:46:12.855799 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:46:12.856084 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T03:46:12.856123 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:46:12.856901 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.61 ms +I, [2018-08-07T03:46:12.856957 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:46:12.857802 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.51 ms +I, [2018-08-07T03:46:12.857854 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:46:12.858172 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T03:46:12.860587 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:46:12.888644 #7] INFO -- : Inline processing of topic section_change with 1 messages took 27.46 ms +I, [2018-08-07T03:46:12.888943 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:46:12.889782 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-08-07T03:46:12.890096 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:46:12.890534 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T03:46:12.890590 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:46:12.906184 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-08-07T03:46:12.906264 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:46:12.913441 #7] INFO -- : Inline processing of topic section_change with 1 messages took 6.67 ms +I, [2018-08-07T03:46:12.913525 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:46:12.915107 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.3 ms +I, [2018-08-07T03:46:12.915187 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:46:12.947298 #7] INFO -- : Inline processing of topic section_change with 1 messages took 31.8 ms +I, [2018-08-07T03:46:12.947397 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:46:12.947991 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T03:46:12.948044 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:46:12.948449 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T03:46:12.948498 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:46:12.949433 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.69 ms +I, [2018-08-07T03:46:12.949489 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:46:12.954941 #7] INFO -- : Inline processing of topic section_change with 1 messages took 5.25 ms +I, [2018-08-07T03:46:12.955002 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:46:12.955560 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T03:46:12.955618 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:46:14.956378 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T03:46:14.956428 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:46:14.956701 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T03:46:14.956731 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:46:14.956920 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-08-07T03:46:14.957097 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:46:14.957492 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T03:46:14.957522 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:46:14.957969 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T03:46:14.958005 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:46:14.958668 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-08-07T03:46:14.958907 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:46:14.959281 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T03:46:14.959314 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:46:14.959569 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-08-07T03:46:14.959598 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:46:14.959835 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T03:46:14.959863 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:46:14.960085 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T03:46:14.960114 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:46:14.960294 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-08-07T03:46:14.960322 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:46:14.960536 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-08-07T03:46:14.960565 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:46:14.960828 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T03:46:14.960856 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:46:14.961170 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T03:46:14.961211 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:46:14.961417 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T03:46:14.961446 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:46:14.961685 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T03:46:14.961720 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:46:14.962934 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-08-07T03:46:14.963001 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:46:14.963454 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T03:46:14.963973 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:46:14.964641 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-08-07T03:46:14.964736 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:46:14.965141 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T03:46:14.965191 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:46:14.965497 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T03:46:14.965604 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:46:14.965899 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T03:46:14.965947 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:46:14.966274 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T03:46:14.969630 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:46:14.970506 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.63 ms +I, [2018-08-07T03:46:14.970586 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:46:14.971204 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-08-07T03:46:14.971250 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:46:14.971683 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T03:46:14.971797 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:46:14.972062 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T03:46:14.972092 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:46:14.972351 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T03:46:14.972381 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:46:15.610572 #7] INFO -- : Committing offsets: course_change/0:522 +I, [2018-08-07T03:46:15.641732 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.26 ms +I, [2018-08-07T03:46:15.641789 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:46:15.642133 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-08-07T03:46:15.642185 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:46:17.026226 #7] INFO -- : Committing offsets: section_change/0:1110 +I, [2018-08-07T03:46:18.145782 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.81 ms +I, [2018-08-07T03:46:18.145887 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:46:18.162259 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.46 ms +I, [2018-08-07T03:46:18.162327 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:46:18.164205 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.8 ms +I, [2018-08-07T03:46:18.164899 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:46:18.165587 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-08-07T03:46:18.165640 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:46:18.166183 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-08-07T03:46:18.166236 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:46:18.168109 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.66 ms +I, [2018-08-07T03:46:18.168222 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:46:21.334880 #7] INFO -- : Inline processing of topic section_change with 1 messages took 13.74 ms +I, [2018-08-07T03:46:21.335225 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:46:23.343797 #7] INFO -- : Inline processing of topic section_change with 1 messages took 4.2 ms +I, [2018-08-07T03:46:23.343986 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:46:23.344505 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-08-07T03:46:23.344765 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:46:23.347647 #7] INFO -- : Inline processing of topic section_change with 1 messages took 2.66 ms +I, [2018-08-07T03:46:23.347716 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:46:25.400259 #7] INFO -- : Inline processing of topic section_change with 1 messages took 19.56 ms +I, [2018-08-07T03:46:25.426378 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:46:25.429919 #7] INFO -- : Inline processing of topic section_change with 1 messages took 2.46 ms +I, [2018-08-07T03:46:25.430294 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:46:25.432003 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.27 ms +I, [2018-08-07T03:46:25.432136 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:46:25.435206 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.84 ms +I, [2018-08-07T03:46:25.435260 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:46:27.322363 #7] INFO -- : Committing offsets: course_change/0:525 +I, [2018-08-07T03:46:27.333459 #7] INFO -- : Inline processing of topic course_change with 1 messages took 1.26 ms +I, [2018-08-07T03:46:27.333718 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:46:27.441690 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.48 ms +I, [2018-08-07T03:46:27.441868 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:46:27.462324 #7] INFO -- : Inline processing of topic section_change with 1 messages took 19.56 ms +I, [2018-08-07T03:46:27.462407 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:46:27.463180 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.41 ms +I, [2018-08-07T03:46:27.463320 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:46:27.465239 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.22 ms +I, [2018-08-07T03:46:27.465318 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:46:27.467648 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.95 ms +I, [2018-08-07T03:46:27.467715 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:46:29.468120 #7] INFO -- : Committing offsets: section_change/0:1128 +I, [2018-08-07T03:46:29.474884 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.84 ms +I, [2018-08-07T03:46:29.474960 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:46:29.526835 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-08-07T03:46:29.526952 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:46:29.527339 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T03:46:29.527375 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:46:29.527865 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T03:46:29.527903 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:46:31.335447 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-08-07T03:46:31.335539 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:46:31.529970 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.2 ms +I, [2018-08-07T03:46:31.530040 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:46:31.530725 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-08-07T03:46:31.530802 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:46:31.531446 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-08-07T03:46:31.531511 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:46:31.532421 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.74 ms +I, [2018-08-07T03:46:31.532535 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:46:31.533176 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-08-07T03:46:31.533220 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:46:31.533526 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T03:46:31.533562 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:46:33.534829 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-08-07T03:46:33.534899 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:46:33.535525 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-08-07T03:46:33.535630 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:46:33.540532 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-08-07T03:46:33.540593 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:46:33.541049 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T03:46:33.541107 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:46:33.541593 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T03:46:33.541648 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:46:35.339281 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.39 ms +I, [2018-08-07T03:46:35.339332 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:46:35.543124 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-08-07T03:46:35.543172 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:46:35.543579 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-08-07T03:46:35.543610 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:46:35.543988 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T03:46:35.544019 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:46:35.544417 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-08-07T03:46:35.544447 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:46:37.339590 #7] INFO -- : Committing offsets: course_change/0:528 +I, [2018-08-07T03:46:37.345184 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-08-07T03:46:37.345237 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:46:37.345471 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T03:46:37.345505 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:46:37.347554 #7] INFO -- : Inline processing of topic course_change with 1 messages took 1.91 ms +I, [2018-08-07T03:46:37.347613 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:46:37.510657 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.47 ms +I, [2018-08-07T03:46:37.510748 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:46:37.511208 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-08-07T03:46:37.511248 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:46:37.511870 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.42 ms +I, [2018-08-07T03:46:37.511917 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:46:37.512440 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-08-07T03:46:37.512483 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:46:37.512860 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T03:46:37.512897 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:46:37.513307 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T03:46:37.513402 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:46:39.513703 #7] INFO -- : Committing offsets: section_change/0:1153 +I, [2018-08-07T03:46:39.519317 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-08-07T03:46:39.519367 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:46:39.519723 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T03:46:39.520130 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:46:39.520867 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.57 ms +I, [2018-08-07T03:46:39.520912 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:46:39.521289 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T03:46:39.521323 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:46:41.522145 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T03:46:41.522200 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:46:41.522653 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T03:46:41.522687 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:46:41.522992 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T03:46:41.527766 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:46:41.528192 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T03:46:41.528229 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:46:41.528562 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T03:46:41.528598 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:46:41.528894 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T03:46:41.528928 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:46:41.529235 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T03:46:41.529269 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:46:41.529543 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T03:46:41.529576 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:46:43.320206 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.26 ms +I, [2018-08-07T03:46:43.320387 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:46:43.320905 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T03:46:43.320957 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:46:43.321243 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T03:46:43.321325 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:46:43.530304 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T03:46:43.530389 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:46:43.530771 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T03:46:43.530803 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:46:43.531047 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T03:46:43.531078 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:46:43.531482 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T03:46:43.531514 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:46:43.532205 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.57 ms +I, [2018-08-07T03:46:43.532243 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:46:43.532753 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T03:46:43.532787 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:46:43.536344 #7] INFO -- : Inline processing of topic section_change with 1 messages took 3.23 ms +I, [2018-08-07T03:46:43.536435 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:46:45.322044 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T03:46:45.322093 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:46:45.538011 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-08-07T03:46:45.538084 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:46:45.538570 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T03:46:45.538629 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:46:45.539126 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T03:46:45.539182 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:46:45.539636 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T03:46:45.539695 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:46:45.540107 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T03:46:45.540145 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:46:45.540431 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T03:46:45.540478 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:46:45.540872 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T03:46:45.540924 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:46:47.322897 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-08-07T03:46:47.322946 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:46:47.323178 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T03:46:47.323212 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:46:47.323422 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T03:46:47.323461 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:46:47.541890 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-08-07T03:46:47.541962 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:46:47.542351 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T03:46:47.542389 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:46:47.542727 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T03:46:47.542772 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:46:47.543098 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T03:46:47.543143 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:46:47.543452 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T03:46:47.543604 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:46:49.323992 #7] INFO -- : Committing offsets: course_change/0:538 +I, [2018-08-07T03:46:49.326618 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-08-07T03:46:49.326661 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:46:49.326987 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-08-07T03:46:49.327017 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:46:49.544035 #7] INFO -- : Committing offsets: section_change/0:1184 +I, [2018-08-07T03:46:49.549865 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-08-07T03:46:49.549914 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:46:49.550256 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T03:46:49.550289 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:46:49.552711 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-08-07T03:46:49.552813 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:46:49.561480 #7] INFO -- : Inline processing of topic section_change with 1 messages took 3.45 ms +I, [2018-08-07T03:46:49.562011 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:46:49.562748 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T03:46:49.562822 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:46:49.563076 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T03:46:49.563108 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:46:51.564156 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.45 ms +I, [2018-08-07T03:46:51.564349 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:46:51.564772 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T03:46:51.564876 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:46:51.565200 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T03:46:51.565231 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:46:51.565566 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T03:46:51.565598 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:46:51.565828 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T03:46:51.565947 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:46:51.566533 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.42 ms +I, [2018-08-07T03:46:51.566569 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:46:51.566838 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T03:46:51.566910 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:46:53.331496 #7] INFO -- : Inline processing of topic course_change with 1 messages took 2.27 ms +I, [2018-08-07T03:46:53.331855 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:46:53.332705 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.29 ms +I, [2018-08-07T03:46:53.332762 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:46:53.333154 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-08-07T03:46:53.333204 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:46:53.333741 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-08-07T03:46:53.334147 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:46:53.334946 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.55 ms +I, [2018-08-07T03:46:53.335099 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:46:53.335822 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.26 ms +I, [2018-08-07T03:46:53.335976 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:46:53.337019 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.23 ms +I, [2018-08-07T03:46:53.337090 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:46:53.567609 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T03:46:53.567658 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:46:53.567910 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T03:46:53.567940 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:46:53.568180 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T03:46:53.568212 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:46:53.568438 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T03:46:53.568545 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:46:53.569041 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T03:46:53.569126 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:46:53.569433 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T03:46:53.569479 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:46:53.569888 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T03:46:53.569922 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:46:53.570157 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T03:46:53.570186 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:46:53.570449 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T03:46:53.570478 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:46:53.570761 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T03:46:53.570790 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:46:55.338161 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.26 ms +I, [2018-08-07T03:46:55.338211 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:46:55.338419 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-08-07T03:46:55.338508 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:46:55.338729 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-08-07T03:46:55.338759 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:46:55.571561 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T03:46:55.571611 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:46:55.573424 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T03:46:55.573460 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:46:55.573723 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T03:46:55.573753 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:46:55.574018 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T03:46:55.574047 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:46:55.574412 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T03:46:55.574444 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:46:55.574735 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T03:46:55.576974 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:46:55.577650 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.42 ms +I, [2018-08-07T03:46:55.577706 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:46:57.339461 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T03:46:57.339515 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:46:57.339795 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T03:46:57.339830 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:46:57.340143 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T03:46:57.340175 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:46:57.340370 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T03:46:57.340471 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:46:57.340658 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T03:46:57.340686 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:46:57.340924 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T03:46:57.340953 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:46:57.578876 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.44 ms +I, [2018-08-07T03:46:57.579014 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:46:57.579667 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T03:46:57.579754 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:46:57.580316 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-08-07T03:46:57.580398 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:46:57.580787 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T03:46:57.580825 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:46:57.581108 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T03:46:57.581142 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:46:57.581471 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T03:46:57.581511 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:46:57.581771 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T03:46:57.581806 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:46:57.582095 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T03:46:57.582196 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:46:59.342229 #7] INFO -- : Committing offsets: course_change/0:556 +I, [2018-08-07T03:46:59.345814 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.25 ms +I, [2018-08-07T03:46:59.345872 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:46:59.582648 #7] INFO -- : Committing offsets: section_change/0:1222 +I, [2018-08-07T03:46:59.586115 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T03:46:59.586159 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:46:59.586621 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-08-07T03:46:59.586660 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:46:59.587003 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T03:46:59.587051 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:46:59.587391 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T03:46:59.587429 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:46:59.587736 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T03:46:59.587766 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:47:01.346653 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.3 ms +I, [2018-08-07T03:47:01.346706 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:47:01.347099 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T03:47:01.347233 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:47:01.347564 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T03:47:01.347597 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:47:01.349470 #7] INFO -- : Inline processing of topic course_change with 1 messages took 1.6 ms +I, [2018-08-07T03:47:01.349627 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:47:01.349934 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T03:47:01.349966 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:47:01.350252 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T03:47:01.350285 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:47:01.588486 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T03:47:01.588536 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:47:01.588937 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T03:47:01.588990 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:47:01.589210 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T03:47:01.589240 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:47:01.589504 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T03:47:01.589531 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:47:01.589789 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T03:47:01.589819 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:47:03.351502 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.25 ms +I, [2018-08-07T03:47:03.351593 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:47:03.352177 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-08-07T03:47:03.352421 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:47:03.353886 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.36 ms +I, [2018-08-07T03:47:03.353944 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:47:03.365274 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.35 ms +I, [2018-08-07T03:47:03.367495 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:47:03.368126 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.24 ms +I, [2018-08-07T03:47:03.368184 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:47:03.368548 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-08-07T03:47:03.368618 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:47:03.369084 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.25 ms +I, [2018-08-07T03:47:03.369163 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:47:03.370875 #7] INFO -- : Inline processing of topic course_change with 1 messages took 1.54 ms +I, [2018-08-07T03:47:03.370944 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:47:03.371281 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T03:47:03.371317 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:47:03.590955 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-08-07T03:47:03.591120 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:47:03.591423 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T03:47:03.591458 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:47:03.591749 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T03:47:03.591783 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:47:03.592287 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-08-07T03:47:03.592326 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:47:03.592841 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-08-07T03:47:03.592882 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:47:03.593119 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T03:47:03.593153 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:47:03.593481 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T03:47:03.593526 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:47:03.593935 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T03:47:03.593973 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:47:03.594288 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T03:47:03.594426 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:47:03.594653 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T03:47:03.594686 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:47:03.594951 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T03:47:03.594982 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:47:03.595679 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.52 ms +I, [2018-08-07T03:47:03.595784 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:47:03.596475 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-08-07T03:47:03.596562 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:47:03.597118 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-08-07T03:47:03.597161 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:47:03.604017 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.61 ms +I, [2018-08-07T03:47:03.604087 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:47:03.605257 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.4 ms +I, [2018-08-07T03:47:03.605358 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:47:05.372568 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.29 ms +I, [2018-08-07T03:47:05.372677 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:47:05.373093 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-08-07T03:47:05.373143 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:47:05.373530 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-08-07T03:47:05.373582 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:47:05.373922 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T03:47:05.373976 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:47:05.374385 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T03:47:05.374603 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:47:05.606346 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-08-07T03:47:05.606395 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:47:05.606789 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T03:47:05.606822 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:47:05.607178 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T03:47:05.607216 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:47:05.607550 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T03:47:05.607617 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:47:05.607933 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T03:47:05.607963 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:47:05.608337 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T03:47:05.608371 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:47:05.608738 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T03:47:05.608815 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:47:05.609041 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T03:47:05.609072 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:47:07.377877 #7] INFO -- : Inline processing of topic course_change with 1 messages took 1.63 ms +I, [2018-08-07T03:47:07.378028 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:47:07.382188 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.8 ms +I, [2018-08-07T03:47:07.382296 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:47:07.393775 #7] INFO -- : Inline processing of topic course_change with 1 messages took 4.02 ms +I, [2018-08-07T03:47:07.394359 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:47:07.395269 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.24 ms +I, [2018-08-07T03:47:07.395319 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:47:07.395694 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-08-07T03:47:07.395736 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:47:07.399067 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-08-07T03:47:07.399125 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:47:07.403880 #7] INFO -- : Inline processing of topic course_change with 1 messages took 1.64 ms +I, [2018-08-07T03:47:07.403964 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:47:07.404397 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-08-07T03:47:07.404443 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:47:07.408343 #7] INFO -- : Inline processing of topic course_change with 1 messages took 3.72 ms +I, [2018-08-07T03:47:07.408406 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:47:07.415413 #7] INFO -- : Inline processing of topic course_change with 1 messages took 6.66 ms +I, [2018-08-07T03:47:07.415490 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:47:07.416005 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-08-07T03:47:07.416061 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:47:07.586381 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-08-07T03:47:07.586547 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:47:07.586907 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T03:47:07.586942 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:47:07.587378 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T03:47:07.587415 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:47:07.587631 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T03:47:07.587660 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:47:07.587972 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T03:47:07.588018 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:47:07.592677 #7] INFO -- : Inline processing of topic section_change with 1 messages took 4.43 ms +I, [2018-08-07T03:47:07.592746 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:47:07.597712 #7] INFO -- : Inline processing of topic section_change with 1 messages took 4.36 ms +I, [2018-08-07T03:47:07.597772 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:47:07.598626 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.44 ms +I, [2018-08-07T03:47:07.598687 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:47:07.599166 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T03:47:07.599215 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:47:07.599675 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-08-07T03:47:07.599722 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:47:07.600079 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T03:47:07.600126 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:47:07.600976 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.66 ms +I, [2018-08-07T03:47:07.601041 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:47:07.602677 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T03:47:07.602738 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:47:07.603445 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.44 ms +I, [2018-08-07T03:47:07.603498 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:47:07.603896 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T03:47:07.604041 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:47:07.604765 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T03:47:07.604959 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:47:07.605698 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.41 ms +I, [2018-08-07T03:47:07.605748 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:47:07.606160 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T03:47:07.606205 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:47:07.606478 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T03:47:07.606521 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:47:07.607001 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T03:47:07.607045 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:47:07.608643 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.3 ms +I, [2018-08-07T03:47:07.608711 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:47:07.609474 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T03:47:07.613251 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:47:07.613942 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T03:47:07.614002 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:47:07.614589 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T03:47:07.614648 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:47:07.615161 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T03:47:07.615604 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:47:07.616049 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T03:47:07.616091 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:47:07.616653 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T03:47:07.616699 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:47:07.619190 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.71 ms +I, [2018-08-07T03:47:07.621279 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:47:09.392374 #7] INFO -- : Committing offsets: course_change/0:588 +I, [2018-08-07T03:47:09.399127 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.29 ms +I, [2018-08-07T03:47:09.399197 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:47:09.399576 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-08-07T03:47:09.399626 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:47:09.400016 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-08-07T03:47:09.400072 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:47:09.621622 #7] INFO -- : Committing offsets: section_change/0:1284 +I, [2018-08-07T03:47:09.642416 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-08-07T03:47:09.642514 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:47:09.643034 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T03:47:09.643121 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:47:09.643491 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T03:47:09.643528 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:47:09.643819 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T03:47:09.643855 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:47:09.645634 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.5 ms +I, [2018-08-07T03:47:09.645748 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:47:09.646329 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-08-07T03:47:09.646402 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:47:11.401485 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.58 ms +I, [2018-08-07T03:47:11.401565 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:47:11.401971 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-08-07T03:47:11.402020 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:47:11.402388 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T03:47:11.402435 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:47:11.402761 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T03:47:11.402803 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:47:11.647984 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.4 ms +I, [2018-08-07T03:47:11.648057 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:47:11.648486 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T03:47:11.648540 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:47:11.649343 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.5 ms +I, [2018-08-07T03:47:11.649402 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:47:11.649874 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T03:47:11.649922 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:47:13.403583 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.24 ms +I, [2018-08-07T03:47:13.403708 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:47:13.404204 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-08-07T03:47:13.404281 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:47:13.404660 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T03:47:13.404695 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:47:13.651080 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T03:47:13.651167 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:47:13.651500 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T03:47:13.651551 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:47:13.651863 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T03:47:13.651924 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:47:13.652638 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T03:47:13.652702 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:47:13.653159 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T03:47:13.653201 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:47:13.653508 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T03:47:13.653539 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:47:15.405484 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.3 ms +I, [2018-08-07T03:47:15.405556 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:47:15.407513 #7] INFO -- : Inline processing of topic course_change with 1 messages took 1.71 ms +I, [2018-08-07T03:47:15.407607 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:47:15.408101 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.25 ms +I, [2018-08-07T03:47:15.408150 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:47:15.408413 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-08-07T03:47:15.408481 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:47:15.408782 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T03:47:15.408829 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:47:15.409175 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-08-07T03:47:15.409222 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:47:15.659832 #7] INFO -- : Inline processing of topic section_change with 1 messages took 4.82 ms +I, [2018-08-07T03:47:15.659908 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:47:15.660925 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.75 ms +I, [2018-08-07T03:47:15.660983 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:47:15.661401 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T03:47:15.661437 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:47:15.661770 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T03:47:15.666265 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:47:15.667635 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T03:47:15.667678 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:47:15.667981 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T03:47:15.668164 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:47:17.435443 #7] INFO -- : Inline processing of topic course_change with 1 messages took 4.48 ms +I, [2018-08-07T03:47:17.435677 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:47:17.437150 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-08-07T03:47:17.437524 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:47:17.440476 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.92 ms +I, [2018-08-07T03:47:17.440577 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:47:17.669023 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T03:47:17.669096 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:47:17.669387 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T03:47:17.669417 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:47:17.669697 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T03:47:17.669728 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:47:19.441212 #7] INFO -- : Committing offsets: course_change/0:607 +I, [2018-08-07T03:47:19.669961 #7] INFO -- : Committing offsets: section_change/0:1309 +I, [2018-08-07T03:47:19.677186 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T03:47:19.677237 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:47:19.677571 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T03:47:19.677606 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:47:19.678275 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.5 ms +I, [2018-08-07T03:47:19.678323 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:47:21.448277 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-08-07T03:47:21.448337 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:47:21.448790 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T03:47:21.448829 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:47:21.678993 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T03:47:21.679043 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:47:21.679454 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T03:47:21.679488 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:47:21.679765 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T03:47:21.679795 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:47:21.680019 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T03:47:21.680049 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:47:21.680276 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-08-07T03:47:21.680304 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:47:21.680601 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T03:47:21.680631 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:47:21.680855 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-08-07T03:47:21.680885 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:47:21.681067 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-08-07T03:47:21.681095 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:47:21.681475 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T03:47:21.682164 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:47:21.682414 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T03:47:21.682445 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:47:21.682697 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T03:47:21.682727 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:47:23.450698 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.54 ms +I, [2018-08-07T03:47:23.450778 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:47:23.451358 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.29 ms +I, [2018-08-07T03:47:23.451417 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:47:23.451836 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-08-07T03:47:23.451890 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:47:23.452873 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.63 ms +I, [2018-08-07T03:47:23.452970 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:47:23.453560 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.35 ms +I, [2018-08-07T03:47:23.453622 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:47:23.454025 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T03:47:23.454067 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:47:23.683540 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T03:47:23.683589 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:47:23.683788 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-08-07T03:47:23.683849 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:47:23.687117 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-08-07T03:47:23.687179 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:47:23.687600 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T03:47:23.687649 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:47:23.688047 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T03:47:23.688097 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:47:23.688906 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T03:47:23.688943 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:47:25.455473 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.23 ms +I, [2018-08-07T03:47:25.455529 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:47:25.455803 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T03:47:25.455838 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:47:25.456056 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T03:47:25.456089 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:47:25.456367 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-08-07T03:47:25.456400 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:47:25.689808 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-08-07T03:47:25.689922 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:47:25.690566 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-08-07T03:47:25.690606 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:47:25.690963 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T03:47:25.691071 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:47:25.691428 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T03:47:25.691507 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:47:25.691977 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T03:47:25.692010 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:47:25.692324 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T03:47:25.692360 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:47:25.692635 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T03:47:25.692664 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:47:27.457043 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T03:47:27.457161 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:47:27.457430 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T03:47:27.457461 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:47:27.457682 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-08-07T03:47:27.457712 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:47:27.458010 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T03:47:27.458052 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:47:27.458259 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T03:47:27.458288 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:47:27.458497 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T03:47:27.458527 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:47:27.693923 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.4 ms +I, [2018-08-07T03:47:27.693990 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:47:27.694437 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T03:47:27.694518 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:47:27.694889 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T03:47:27.694933 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:47:27.695264 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T03:47:27.695325 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:47:27.695663 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T03:47:27.695718 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:47:27.697363 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-08-07T03:47:27.697469 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:47:29.458806 #7] INFO -- : Committing offsets: course_change/0:625 +I, [2018-08-07T03:47:29.466347 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-08-07T03:47:29.466409 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:47:29.466753 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T03:47:29.466788 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:47:29.467135 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T03:47:29.467166 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:47:29.467833 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T03:47:29.467863 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:47:29.468078 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T03:47:29.468106 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:47:29.468857 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.35 ms +I, [2018-08-07T03:47:29.468908 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:47:29.697861 #7] INFO -- : Committing offsets: section_change/0:1342 +I, [2018-08-07T03:47:29.701026 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T03:47:29.701070 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:47:29.701365 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T03:47:29.701396 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:47:29.701650 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T03:47:29.701679 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:47:29.701910 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T03:47:29.701938 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:47:29.702183 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T03:47:29.702219 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:47:29.702460 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T03:47:29.702511 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:47:29.703677 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T03:47:29.703729 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:47:29.703956 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T03:47:29.703987 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:47:29.704311 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T03:47:29.704346 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:47:29.704574 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T03:47:29.704603 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:47:31.469595 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-08-07T03:47:31.469651 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:47:31.470004 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T03:47:31.470041 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:47:31.470375 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-08-07T03:47:31.470446 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:47:31.470635 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T03:47:31.470819 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:47:31.471300 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.36 ms +I, [2018-08-07T03:47:31.471339 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:47:31.471661 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-08-07T03:47:31.471696 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:47:31.471980 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T03:47:31.472012 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:47:31.705161 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T03:47:31.705245 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:47:31.705457 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T03:47:31.705487 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:47:31.705708 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T03:47:31.705738 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:47:31.706036 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T03:47:31.706066 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:47:31.706255 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-08-07T03:47:31.706284 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:47:31.706539 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-08-07T03:47:31.706567 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:47:31.706809 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T03:47:31.706838 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:47:31.707080 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T03:47:31.707109 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:47:31.707291 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-08-07T03:47:31.707319 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:47:31.707552 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-08-07T03:47:31.707581 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:47:31.707821 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T03:47:31.707892 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:47:31.710745 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T03:47:31.710793 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:47:31.711024 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T03:47:31.711059 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:47:31.711300 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T03:47:31.711334 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:47:31.711566 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T03:47:31.711599 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:47:31.711805 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T03:47:31.711836 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:47:31.712072 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T03:47:31.712104 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:47:31.712352 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T03:47:31.712386 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:47:31.712600 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T03:47:31.712698 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:47:31.712982 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T03:47:31.713031 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:47:31.713371 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T03:47:31.713416 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:47:31.714373 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T03:47:31.714425 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:47:31.714705 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T03:47:31.714767 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:47:31.715180 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T03:47:31.715221 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:47:31.715544 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T03:47:31.715579 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:47:31.715841 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T03:47:31.716499 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:47:33.472610 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T03:47:33.472660 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:47:33.472906 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-08-07T03:47:33.472934 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:47:33.473157 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T03:47:33.473187 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:47:33.473427 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T03:47:33.473458 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:47:33.473641 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T03:47:33.473669 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:47:33.473972 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-08-07T03:47:33.474001 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:47:33.474209 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T03:47:33.474237 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:47:33.474416 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T03:47:33.474445 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:47:33.719156 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T03:47:33.719204 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:47:33.719496 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T03:47:33.719527 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:47:33.719785 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T03:47:33.719814 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:47:33.720071 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T03:47:33.720100 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:47:33.720361 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T03:47:33.720390 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:47:33.720708 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T03:47:33.720739 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:47:33.721004 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T03:47:33.721032 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:47:35.475541 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.4 ms +I, [2018-08-07T03:47:35.475677 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:47:35.476295 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.29 ms +I, [2018-08-07T03:47:35.476335 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:47:35.476938 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-08-07T03:47:35.476979 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:47:35.477484 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.34 ms +I, [2018-08-07T03:47:35.477535 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:47:35.478342 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-08-07T03:47:35.478396 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:47:35.478836 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-08-07T03:47:35.478889 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:47:35.479265 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-08-07T03:47:35.479309 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:47:35.721811 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T03:47:35.721869 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:47:35.722179 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T03:47:35.722211 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:47:35.722475 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T03:47:35.722505 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:47:35.722804 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T03:47:35.722836 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:47:35.723055 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T03:47:35.723117 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:47:35.723330 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T03:47:35.723391 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:47:35.723644 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T03:47:35.723715 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:47:35.723927 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T03:47:35.723988 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:47:37.431101 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.23 ms +I, [2018-08-07T03:47:37.431150 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:47:37.431382 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-08-07T03:47:37.431413 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:47:37.431746 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T03:47:37.431802 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:47:37.432013 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T03:47:37.432042 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:47:37.675842 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-08-07T03:47:37.675913 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:47:37.676209 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T03:47:37.676240 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:47:37.677808 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T03:47:37.677849 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:47:37.678139 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T03:47:37.678189 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:47:37.678527 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T03:47:37.678560 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:47:37.678838 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T03:47:37.678868 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:47:37.679187 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T03:47:37.679224 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:47:39.432809 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-08-07T03:47:39.432859 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:47:39.433103 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T03:47:39.433134 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:47:39.433348 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T03:47:39.433382 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:47:39.433618 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T03:47:39.433647 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:47:39.433857 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T03:47:39.433887 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:47:39.434375 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T03:47:39.434492 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:47:39.434797 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T03:47:39.434902 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:47:39.681419 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-08-07T03:47:39.682375 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:47:39.682851 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T03:47:39.682889 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:47:39.683161 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T03:47:39.683224 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:47:39.683538 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T03:47:39.683570 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:47:39.683840 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T03:47:39.683874 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:47:39.684133 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T03:47:39.684166 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:47:41.435430 #7] INFO -- : Committing offsets: course_change/0:664 +I, [2018-08-07T03:47:41.439653 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-08-07T03:47:41.439698 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:47:41.440018 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T03:47:41.440054 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:47:41.440304 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T03:47:41.440334 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:47:41.440600 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T03:47:41.440631 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:47:41.440896 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T03:47:41.440925 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:47:41.441188 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T03:47:41.441221 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:47:41.684574 #7] INFO -- : Committing offsets: section_change/0:1406 +I, [2018-08-07T03:47:41.697433 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.6 ms +I, [2018-08-07T03:47:41.697563 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:47:41.720316 #7] INFO -- : Inline processing of topic section_change with 1 messages took 22.06 ms +I, [2018-08-07T03:47:41.724333 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:47:41.725512 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.6 ms +I, [2018-08-07T03:47:41.725574 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:47:41.726137 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T03:47:41.726225 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:47:41.726757 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T03:47:41.726827 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:47:41.727203 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T03:47:41.727276 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:47:41.727544 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T03:47:41.727577 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:47:41.727887 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T03:47:41.727932 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:47:41.728320 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T03:47:41.728362 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:47:41.729022 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T03:47:41.729125 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:47:41.729352 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T03:47:41.729382 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:47:43.441998 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.29 ms +I, [2018-08-07T03:47:43.443435 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:47:43.443942 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-08-07T03:47:43.443998 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:47:43.444316 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T03:47:43.444363 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:47:43.445193 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.25 ms +I, [2018-08-07T03:47:43.445252 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:47:43.445595 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T03:47:43.445786 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:47:43.730550 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.42 ms +I, [2018-08-07T03:47:43.730687 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:47:43.731198 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T03:47:43.731400 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:47:43.731898 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T03:47:43.731937 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:47:43.732355 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T03:47:43.732392 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:47:43.732991 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-08-07T03:47:43.733118 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:47:43.733501 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T03:47:43.733536 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:47:45.446739 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-08-07T03:47:45.446789 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:47:45.447106 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T03:47:45.447170 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:47:45.447531 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T03:47:45.447563 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:47:45.447787 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T03:47:45.447816 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:47:45.734642 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T03:47:45.734719 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:47:45.735572 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.44 ms +I, [2018-08-07T03:47:45.735676 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:47:45.736414 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.5 ms +I, [2018-08-07T03:47:45.736483 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:47:45.736921 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T03:47:45.736996 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:47:45.737480 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-08-07T03:47:45.737533 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:47:47.738228 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T03:47:47.738276 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:47:47.738572 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T03:47:47.738639 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:47:47.738907 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T03:47:47.738936 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:47:47.739195 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T03:47:47.739223 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:47:49.740089 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.42 ms +I, [2018-08-07T03:47:49.740155 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:47:49.740560 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T03:47:49.740593 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:47:51.449252 #7] INFO -- : Committing offsets: course_change/0:679 +I, [2018-08-07T03:47:51.454374 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.31 ms +I, [2018-08-07T03:47:51.454441 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:47:51.741003 #7] INFO -- : Committing offsets: section_change/0:1434 +I, [2018-08-07T03:47:51.745762 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-08-07T03:47:51.745813 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:47:51.746160 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T03:47:51.746196 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:47:51.746516 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T03:47:51.746547 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:47:51.746859 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T03:47:51.746892 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:47:53.455529 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.47 ms +I, [2018-08-07T03:47:53.455586 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:47:53.747810 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-08-07T03:47:53.747950 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:47:53.748437 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T03:47:53.748519 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:47:53.749013 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-08-07T03:47:53.749050 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:47:53.751788 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T03:47:53.751831 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:47:53.753239 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T03:47:53.753280 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:47:53.753728 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-08-07T03:47:53.753781 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:47:55.456344 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-08-07T03:47:55.456394 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:47:55.755631 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.45 ms +I, [2018-08-07T03:47:55.755702 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:47:55.756461 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.46 ms +I, [2018-08-07T03:47:55.756581 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:47:55.758244 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.11 ms +I, [2018-08-07T03:47:55.758291 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:47:57.759568 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-08-07T03:47:57.759634 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:47:57.760087 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T03:47:57.760145 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:47:57.760532 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T03:47:57.760576 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:47:57.760963 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T03:47:57.761009 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:47:59.457602 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T03:47:59.457713 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:47:59.761862 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T03:47:59.761965 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:47:59.762291 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T03:47:59.762323 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:47:59.762684 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T03:47:59.762715 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:48:01.458401 #7] INFO -- : Committing offsets: course_change/0:683 +I, [2018-08-07T03:48:01.467621 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.23 ms +I, [2018-08-07T03:48:01.467674 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:48:01.467995 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T03:48:01.468027 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:48:01.468303 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T03:48:01.468333 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:48:01.468575 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T03:48:01.468605 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:48:01.763086 #7] INFO -- : Committing offsets: section_change/0:1454 +I, [2018-08-07T03:48:01.773203 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T03:48:01.773255 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:48:01.773641 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T03:48:01.773677 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:48:01.774003 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T03:48:01.774038 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:48:01.774349 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T03:48:01.774397 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:48:01.774883 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-08-07T03:48:01.774937 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:48:03.469509 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.29 ms +I, [2018-08-07T03:48:03.469582 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:48:03.469897 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T03:48:03.469937 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:48:03.470232 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T03:48:03.470268 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:48:03.471710 #7] INFO -- : Inline processing of topic course_change with 1 messages took 1.23 ms +I, [2018-08-07T03:48:03.471762 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:48:03.776339 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-08-07T03:48:03.776406 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:48:03.776832 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T03:48:03.776867 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:48:03.777362 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T03:48:03.777406 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:48:03.777753 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T03:48:03.777794 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:48:03.778145 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T03:48:03.778204 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:48:05.472539 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.28 ms +I, [2018-08-07T03:48:05.472589 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:48:05.472935 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-08-07T03:48:05.472967 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:48:05.779068 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T03:48:05.779122 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:48:05.779449 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T03:48:05.780504 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:48:05.780917 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T03:48:05.780952 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:48:05.781426 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T03:48:05.781540 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:48:05.782040 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-08-07T03:48:05.782098 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:48:07.437591 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-08-07T03:48:07.437640 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:48:07.438094 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-08-07T03:48:07.438132 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:48:07.438420 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T03:48:07.438451 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:48:07.438680 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-08-07T03:48:07.438769 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:48:07.747089 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T03:48:07.747141 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:48:07.747476 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T03:48:07.747507 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:48:07.747791 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T03:48:07.747821 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:48:07.748075 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T03:48:07.748105 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:48:07.748411 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T03:48:07.748443 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:48:09.439575 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.33 ms +I, [2018-08-07T03:48:09.439627 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:48:09.440028 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.27 ms +I, [2018-08-07T03:48:09.440063 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:48:09.440285 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T03:48:09.440315 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:48:09.749994 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.95 ms +I, [2018-08-07T03:48:09.750221 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:48:09.750999 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.48 ms +I, [2018-08-07T03:48:09.751048 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:48:09.751501 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T03:48:09.751547 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:48:09.751923 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T03:48:09.751969 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:48:11.441202 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.35 ms +I, [2018-08-07T03:48:11.441254 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:48:11.441465 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-08-07T03:48:11.441598 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:48:11.441826 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-08-07T03:48:11.441856 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:48:11.752890 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.41 ms +I, [2018-08-07T03:48:11.752980 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:48:11.753471 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-08-07T03:48:11.753564 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:48:11.756309 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-08-07T03:48:11.756351 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:48:13.442276 #7] INFO -- : Committing offsets: course_change/0:703 +I, [2018-08-07T03:48:13.447980 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T03:48:13.448026 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:48:13.448314 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T03:48:13.448346 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:48:13.448605 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T03:48:13.448637 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:48:13.448826 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T03:48:13.448855 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:48:13.756832 #7] INFO -- : Committing offsets: section_change/0:1481 +I, [2018-08-07T03:48:13.761274 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T03:48:13.761319 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:48:13.761681 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T03:48:13.761713 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:48:13.762065 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T03:48:13.762097 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:48:13.762395 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T03:48:13.762427 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:48:13.762813 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T03:48:13.762850 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:48:16.512673 #7] INFO -- : Inline processing of topic section_change with 1 messages took 9.99 ms +I, [2018-08-07T03:48:16.535679 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:48:16.536696 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T03:48:16.538666 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:48:16.542522 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.63 ms +I, [2018-08-07T03:48:16.542597 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:48:17.452573 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.31 ms +I, [2018-08-07T03:48:17.452714 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:48:18.591582 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.86 ms +I, [2018-08-07T03:48:18.591794 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:48:18.592666 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.53 ms +I, [2018-08-07T03:48:18.592740 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:48:18.593753 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.73 ms +I, [2018-08-07T03:48:18.593856 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:48:19.456466 #7] INFO -- : Inline processing of topic course_change with 1 messages took 1.29 ms +I, [2018-08-07T03:48:19.456533 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:48:19.457277 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.41 ms +I, [2018-08-07T03:48:19.457322 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:48:19.457764 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.27 ms +I, [2018-08-07T03:48:19.458089 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:48:20.594636 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T03:48:20.594742 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:48:20.595661 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.6 ms +I, [2018-08-07T03:48:20.595906 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:48:20.596796 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.7 ms +I, [2018-08-07T03:48:20.596834 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:48:21.459517 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.95 ms +I, [2018-08-07T03:48:21.459589 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:48:21.461221 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.45 ms +I, [2018-08-07T03:48:21.461296 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:48:21.461805 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.24 ms +I, [2018-08-07T03:48:21.461880 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:48:21.462481 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.37 ms +I, [2018-08-07T03:48:21.462558 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:48:22.603069 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.71 ms +I, [2018-08-07T03:48:22.604510 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:48:22.608501 #7] INFO -- : Inline processing of topic section_change with 1 messages took 2.0 ms +I, [2018-08-07T03:48:22.608578 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:48:22.610250 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.54 ms +I, [2018-08-07T03:48:22.610560 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:48:22.620273 #7] INFO -- : Inline processing of topic section_change with 1 messages took 8.86 ms +I, [2018-08-07T03:48:22.620362 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:48:23.473777 #7] INFO -- : Committing offsets: course_change/0:715 +I, [2018-08-07T03:48:23.519854 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.48 ms +I, [2018-08-07T03:48:23.519914 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:48:23.520725 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T03:48:23.521147 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:48:23.522004 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.67 ms +I, [2018-08-07T03:48:23.522057 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:48:24.621499 #7] INFO -- : Committing offsets: section_change/0:1499 +I, [2018-08-07T03:48:24.633138 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.51 ms +I, [2018-08-07T03:48:24.633285 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:48:24.634338 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.9 ms +I, [2018-08-07T03:48:24.634475 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:48:24.636824 #7] INFO -- : Inline processing of topic section_change with 1 messages took 2.07 ms +I, [2018-08-07T03:48:24.637031 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:48:25.523801 #7] INFO -- : Inline processing of topic course_change with 1 messages took 1.14 ms +I, [2018-08-07T03:48:25.523859 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:48:25.524375 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.31 ms +I, [2018-08-07T03:48:25.524410 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:48:25.525490 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.36 ms +I, [2018-08-07T03:48:25.525537 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:48:25.532135 #7] INFO -- : Inline processing of topic course_change with 1 messages took 1.64 ms +I, [2018-08-07T03:48:25.532248 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:48:26.665824 #7] INFO -- : Inline processing of topic section_change with 1 messages took 13.11 ms +I, [2018-08-07T03:48:26.673656 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:48:26.679360 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T03:48:26.679427 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:48:26.681052 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.28 ms +I, [2018-08-07T03:48:26.681113 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:48:26.682071 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.59 ms +I, [2018-08-07T03:48:26.700350 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:48:27.534441 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.23 ms +I, [2018-08-07T03:48:27.534642 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:48:28.703855 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.59 ms +I, [2018-08-07T03:48:28.703966 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:48:29.536259 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.56 ms +I, [2018-08-07T03:48:29.537235 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:48:29.538219 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T03:48:29.538276 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:48:29.538877 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.41 ms +I, [2018-08-07T03:48:29.555174 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:48:30.705309 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T03:48:30.705371 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:48:30.706129 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T03:48:30.706179 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:48:30.706923 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.5 ms +I, [2018-08-07T03:48:30.707019 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:48:31.559744 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.52 ms +I, [2018-08-07T03:48:31.559817 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:48:31.560489 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.42 ms +I, [2018-08-07T03:48:31.560555 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:48:32.708384 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.45 ms +I, [2018-08-07T03:48:32.708437 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:48:32.708892 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-08-07T03:48:32.708929 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:48:32.709397 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-08-07T03:48:32.709436 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:48:32.709941 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T03:48:32.709976 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:48:32.710277 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T03:48:32.710342 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:48:32.710833 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T03:48:32.710916 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:48:32.711218 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T03:48:32.711301 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:48:32.712002 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T03:48:32.712091 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:48:32.712491 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T03:48:32.712525 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:48:32.712843 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T03:48:32.712874 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:48:32.713086 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T03:48:32.713117 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:48:32.713394 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T03:48:32.713425 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:48:32.713693 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T03:48:32.713727 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:48:32.713993 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T03:48:32.714026 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:48:33.561089 #7] INFO -- : Committing offsets: course_change/0:728 +I, [2018-08-07T03:48:33.566098 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.25 ms +I, [2018-08-07T03:48:33.566146 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:48:33.566442 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T03:48:33.566490 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:48:33.566900 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.24 ms +I, [2018-08-07T03:48:33.566995 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:48:33.567287 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T03:48:33.567322 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:48:36.873185 #7] INFO -- : Committing offsets: section_change/0:1524 +I, [2018-08-07T03:48:36.967426 #7] INFO -- : Inline processing of topic course_change with 1 messages took 12.29 ms +I, [2018-08-07T03:48:36.967657 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:48:36.973332 #7] INFO -- : Inline processing of topic course_change with 1 messages took 5.19 ms +I, [2018-08-07T03:48:36.973516 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:48:36.994135 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.9 ms +I, [2018-08-07T03:48:36.994220 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:48:37.006653 #7] INFO -- : Inline processing of topic section_change with 1 messages took 6.03 ms +I, [2018-08-07T03:48:37.007019 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:48:37.011087 #7] INFO -- : Inline processing of topic section_change with 1 messages took 3.51 ms +I, [2018-08-07T03:48:37.011632 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:48:37.017518 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.41 ms +I, [2018-08-07T03:48:37.017589 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:48:37.018399 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.48 ms +I, [2018-08-07T03:48:37.018465 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:48:37.020718 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T03:48:37.020891 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:48:37.021728 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.48 ms +I, [2018-08-07T03:48:37.021970 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:48:37.030912 #7] INFO -- : Inline processing of topic section_change with 1 messages took 7.75 ms +I, [2018-08-07T03:48:37.031010 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:48:37.050957 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-08-07T03:48:37.051021 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:48:37.064844 #7] INFO -- : Inline processing of topic section_change with 1 messages took 9.31 ms +I, [2018-08-07T03:48:37.064919 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:48:37.082088 #7] INFO -- : Inline processing of topic section_change with 1 messages took 11.1 ms +I, [2018-08-07T03:48:37.082237 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:48:37.083688 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.15 ms +I, [2018-08-07T03:48:37.083873 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:48:37.084839 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.41 ms +I, [2018-08-07T03:48:37.084898 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:48:37.088435 #7] INFO -- : Inline processing of topic section_change with 1 messages took 2.27 ms +I, [2018-08-07T03:48:37.098763 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:48:37.102383 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.53 ms +I, [2018-08-07T03:48:37.130523 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:48:37.147409 #7] INFO -- : Inline processing of topic section_change with 1 messages took 15.74 ms +I, [2018-08-07T03:48:37.147665 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:48:37.149060 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.48 ms +I, [2018-08-07T03:48:37.153066 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:48:37.161287 #7] INFO -- : Inline processing of topic section_change with 1 messages took 6.38 ms +I, [2018-08-07T03:48:37.161401 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:48:37.166115 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.48 ms +I, [2018-08-07T03:48:37.166330 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:48:37.166847 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-08-07T03:48:37.166996 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:48:37.168485 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.83 ms +I, [2018-08-07T03:48:37.168649 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:48:37.181315 #7] INFO -- : Inline processing of topic section_change with 1 messages took 11.69 ms +I, [2018-08-07T03:48:37.181442 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:48:37.182091 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-08-07T03:48:37.182741 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:48:37.183587 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.42 ms +I, [2018-08-07T03:48:37.183646 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:48:37.187413 #7] INFO -- : Inline processing of topic section_change with 1 messages took 2.88 ms +I, [2018-08-07T03:48:37.187550 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:48:37.189771 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.49 ms +I, [2018-08-07T03:48:37.190574 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:48:37.191603 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-08-07T03:48:37.191660 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:48:37.192267 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-08-07T03:48:37.192309 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:48:37.201843 #7] INFO -- : Inline processing of topic section_change with 1 messages took 3.07 ms +I, [2018-08-07T03:48:37.201933 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:48:37.205364 #7] INFO -- : Inline processing of topic section_change with 1 messages took 2.84 ms +I, [2018-08-07T03:48:37.205583 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:48:37.206186 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-08-07T03:48:37.206236 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:48:37.207122 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-08-07T03:48:37.207182 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:48:37.207980 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-08-07T03:48:37.208040 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:48:37.208655 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-08-07T03:48:37.208707 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:48:37.209849 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.7 ms +I, [2018-08-07T03:48:37.209954 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:48:37.211573 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.43 ms +I, [2018-08-07T03:48:37.211635 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:48:37.214486 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-08-07T03:48:37.214555 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:48:37.219610 #7] INFO -- : Inline processing of topic section_change with 1 messages took 3.42 ms +I, [2018-08-07T03:48:37.219697 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:48:37.231901 #7] INFO -- : Inline processing of topic section_change with 1 messages took 6.31 ms +I, [2018-08-07T03:48:37.231983 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:48:37.234733 #7] INFO -- : Inline processing of topic section_change with 1 messages took 2.48 ms +I, [2018-08-07T03:48:37.234796 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:48:37.240431 #7] INFO -- : Inline processing of topic section_change with 1 messages took 5.39 ms +I, [2018-08-07T03:48:37.240744 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:48:37.243430 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.95 ms +I, [2018-08-07T03:48:37.243583 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:48:37.244577 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-08-07T03:48:37.244685 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:48:37.248338 #7] INFO -- : Inline processing of topic section_change with 1 messages took 3.04 ms +I, [2018-08-07T03:48:37.248846 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:48:37.250441 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T03:48:37.283693 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:48:37.290969 #7] INFO -- : Inline processing of topic section_change with 1 messages took 3.75 ms +I, [2018-08-07T03:48:37.291951 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:48:37.294534 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T03:48:37.294616 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:48:37.296060 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-08-07T03:48:37.296115 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:48:37.296666 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-08-07T03:48:37.296711 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:48:39.264435 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.97 ms +I, [2018-08-07T03:48:39.270032 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:48:39.271232 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.61 ms +I, [2018-08-07T03:48:39.271363 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:48:39.272151 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.45 ms +I, [2018-08-07T03:48:39.272220 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:48:39.273794 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.15 ms +I, [2018-08-07T03:48:39.273917 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:48:39.275017 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.63 ms +I, [2018-08-07T03:48:39.275095 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:48:39.276091 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.68 ms +I, [2018-08-07T03:48:39.276149 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:48:39.276670 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T03:48:39.276756 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:48:39.277424 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.44 ms +I, [2018-08-07T03:48:39.277474 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:48:39.312930 #7] INFO -- : Inline processing of topic section_change with 1 messages took 7.63 ms +I, [2018-08-07T03:48:39.313091 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:48:39.317787 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-08-07T03:48:39.317946 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:48:41.150582 #7] INFO -- : Inline processing of topic course_change with 1 messages took 7.21 ms +I, [2018-08-07T03:48:41.150652 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:48:41.151304 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.42 ms +I, [2018-08-07T03:48:41.151350 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:48:41.320123 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.06 ms +I, [2018-08-07T03:48:41.320191 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:48:41.321109 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.72 ms +I, [2018-08-07T03:48:41.321157 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:48:41.321466 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T03:48:41.322016 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:48:41.322381 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T03:48:41.322538 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:48:41.323210 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.47 ms +I, [2018-08-07T03:48:41.323260 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:48:41.323769 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-08-07T03:48:41.323815 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:48:41.324106 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T03:48:41.324152 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:48:41.325863 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T03:48:41.325939 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:48:41.326398 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T03:48:41.326464 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:48:41.327016 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-08-07T03:48:41.327064 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:48:41.327344 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T03:48:41.327390 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:48:41.328089 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T03:48:41.328347 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:48:43.333334 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T03:48:43.333398 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:48:43.379837 #7] INFO -- : Inline processing of topic section_change with 1 messages took 44.57 ms +I, [2018-08-07T03:48:43.379912 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:48:43.381105 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T03:48:43.381315 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:48:43.381775 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T03:48:43.381818 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:48:43.393389 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T03:48:43.393649 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:48:43.393992 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T03:48:43.394038 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:48:43.395007 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.7 ms +I, [2018-08-07T03:48:43.395065 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:48:43.408510 #7] INFO -- : Inline processing of topic section_change with 1 messages took 12.84 ms +I, [2018-08-07T03:48:43.408582 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:48:43.417542 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T03:48:43.417609 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:48:43.418398 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.59 ms +I, [2018-08-07T03:48:43.418453 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:48:43.419123 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T03:48:43.419180 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:48:43.419612 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T03:48:43.419663 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:48:43.420128 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T03:48:43.420177 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:48:43.427122 #7] INFO -- : Inline processing of topic section_change with 1 messages took 6.75 ms +I, [2018-08-07T03:48:43.427182 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:48:43.427703 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T03:48:43.428122 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:48:43.429612 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.29 ms +I, [2018-08-07T03:48:43.429677 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:48:43.430253 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-08-07T03:48:43.430312 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:48:43.431124 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T03:48:43.431179 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:48:43.440711 #7] INFO -- : Inline processing of topic section_change with 1 messages took 9.32 ms +I, [2018-08-07T03:48:43.440786 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:48:43.441398 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T03:48:43.441656 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:48:43.442717 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.81 ms +I, [2018-08-07T03:48:43.445727 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:48:43.446713 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.54 ms +I, [2018-08-07T03:48:43.446769 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:48:43.447186 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T03:48:43.447449 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:48:43.448046 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T03:48:43.448088 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:48:43.448669 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-08-07T03:48:43.448719 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:48:43.449255 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T03:48:43.449310 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:48:43.449613 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T03:48:43.449655 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:48:43.450109 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T03:48:43.450154 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:48:45.257825 #7] INFO -- : Committing offsets: course_change/0:736 +I, [2018-08-07T03:48:45.266583 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.44 ms +I, [2018-08-07T03:48:45.266649 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:48:45.466328 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.56 ms +I, [2018-08-07T03:48:45.466396 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:48:45.466722 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T03:48:45.466766 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:48:45.467385 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T03:48:45.467436 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:48:45.467990 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-08-07T03:48:45.468041 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:48:45.468803 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-08-07T03:48:45.468908 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:48:45.478862 #7] INFO -- : Inline processing of topic section_change with 1 messages took 2.05 ms +I, [2018-08-07T03:48:45.479040 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:48:47.482294 #7] INFO -- : Committing offsets: section_change/0:1629 +I, [2018-08-07T03:48:47.491397 #7] INFO -- : Inline processing of topic section_change with 1 messages took 2.06 ms +I, [2018-08-07T03:48:47.491654 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:48:49.269527 #7] INFO -- : Inline processing of topic course_change with 1 messages took 1.12 ms +I, [2018-08-07T03:48:49.269586 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:48:49.494857 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.48 ms +I, [2018-08-07T03:48:49.494957 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:48:51.497683 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.55 ms +I, [2018-08-07T03:48:51.497757 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:48:51.498974 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.8 ms +I, [2018-08-07T03:48:51.499239 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:48:53.500077 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-08-07T03:48:53.500160 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:48:53.501643 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.32 ms +I, [2018-08-07T03:48:53.501715 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:48:55.270767 #7] INFO -- : Committing offsets: course_change/0:738 +I, [2018-08-07T03:48:55.502731 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.48 ms +I, [2018-08-07T03:48:55.502781 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:52:32.993925 #7] INFO -- : New topics added to target list: course_change +I, [2018-08-07T03:52:32.995434 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T03:52:32.996751 #7] INFO -- : New topics added to target list: section_change +I, [2018-08-07T03:52:32.996816 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T03:52:33.027403 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-07T03:52:33.028257 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-07T03:52:33.028835 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-07T03:52:33.028953 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-07T03:52:38.029464 #7] 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.13:9094 +E, [2018-08-07T03:52:38.035845 #7] 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.13:9094 +I, [2018-08-07T03:52:38.038586 #7] INFO -- : New topics added to target list: course_change +I, [2018-08-07T03:52:38.038653 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T03:52:38.040697 #7] INFO -- : New topics added to target list: section_change +I, [2018-08-07T03:52:38.040765 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T03:52:38.050216 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-07T03:52:38.050387 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-07T03:52:38.071347 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-07T03:52:38.071548 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-07T03:52:43.015481 #7] 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.13:9094 +E, [2018-08-07T03:52:43.138482 #7] 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.13:9094 +I, [2018-08-07T03:52:43.251549 #7] INFO -- : New topics added to target list: course_change +I, [2018-08-07T03:52:43.391820 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T03:52:43.454341 #7] INFO -- : New topics added to target list: section_change +I, [2018-08-07T03:52:43.454430 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T03:52:43.467895 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-07T03:52:43.474120 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-07T03:52:43.479736 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-07T03:52:43.479911 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-07T03:52:48.489014 #7] 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.13:9094 +E, [2018-08-07T03:52:48.604458 #7] 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.13:9094 +I, [2018-08-07T03:52:48.964962 #7] INFO -- : New topics added to target list: course_change +I, [2018-08-07T03:52:48.965124 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T03:52:49.026871 #7] INFO -- : New topics added to target list: section_change +I, [2018-08-07T03:52:49.026975 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T03:52:49.032105 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-07T03:52:49.054749 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-07T03:52:49.073760 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-07T03:52:49.073898 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-07T03:52:54.071357 #7] 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.13:9094 +E, [2018-08-07T03:52:54.095677 #7] 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.13:9094 +I, [2018-08-07T03:52:54.359561 #7] INFO -- : New topics added to target list: section_change +I, [2018-08-07T03:52:54.359710 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T03:52:54.362537 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-07T03:52:54.363489 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +I, [2018-08-07T03:52:54.395210 #7] INFO -- : New topics added to target list: course_change +I, [2018-08-07T03:52:54.395282 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T03:52:54.396471 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-07T03:52:54.396565 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-07T03:52:59.947613 #7] 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.13:9094 +E, [2018-08-07T03:53:01.406654 #7] 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.13:9094 +I, [2018-08-07T03:53:01.941156 #7] INFO -- : New topics added to target list: section_change +I, [2018-08-07T03:53:02.204204 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T03:53:02.298048 #7] INFO -- : New topics added to target list: course_change +I, [2018-08-07T03:53:02.298246 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T03:53:19.214158 #7] ERROR -- : No brokers in cluster +E, [2018-08-07T03:53:19.223908 #7] ERROR -- : No brokers in cluster +E, [2018-08-07T03:53:24.257131 #7] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: + +E, [2018-08-07T03:53:24.420481 #7] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: + +I, [2018-08-07T03:53:24.689711 #7] INFO -- : New topics added to target list: section_change +I, [2018-08-07T03:53:24.690127 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T03:53:25.943585 #7] INFO -- : New topics added to target list: course_change +I, [2018-08-07T03:53:25.944618 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T03:53:28.005722 #7] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-07T03:53:28.020981 #7] INFO -- : Will fetch at most 1048576 bytes at a time per partition from section_change +I, [2018-08-07T03:53:28.714270 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T03:53:28.716999 #7] INFO -- : Joining group `notifications_notifications` +I, [2018-08-07T03:53:28.718247 #7] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-07T03:53:28.726592 #7] INFO -- : Joining group `notifications_course_change` +I, [2018-08-07T03:53:28.931601 #7] INFO -- : Will fetch at most 1048576 bytes at a time per partition from course_change +I, [2018-08-07T03:53:28.947709 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T03:53:29.201209 #7] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-07T03:53:29.201612 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T03:53:29.243098 #7] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-07T03:53:29.243277 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T03:53:30.225110 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T03:53:30.249133 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T03:53:31.248564 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T03:53:31.249768 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T03:53:32.279243 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T03:53:32.279877 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T03:53:33.279561 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T03:53:33.280184 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T03:53:34.280549 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T03:53:34.281176 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T03:53:35.281707 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T03:53:35.282332 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T03:53:36.283039 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T03:53:36.283241 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T03:53:37.284508 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T03:53:37.283470 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T03:53:38.293526 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T03:53:38.294200 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T03:53:39.294200 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T03:53:39.294596 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T03:53:40.318287 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T03:53:40.319482 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T03:53:41.096667 #7] INFO -- : Joined group `notifications_notifications` with member id `notifications-c2332e8c-efe0-4b92-a4ed-ae2141e696e4` +I, [2018-08-07T03:53:41.096781 #7] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-07T03:53:41.198719 #7] INFO -- : Joined group `notifications_course_change` with member id `notifications-361b40ff-a6b0-49e0-81a8-9c4b11737406` +I, [2018-08-07T03:53:41.199008 #7] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-07T03:53:41.318670 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T03:53:41.319840 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T03:53:42.198419 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T03:53:42.200036 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T03:53:42.233329 #7] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-07T03:53:42.254125 #7] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-07T03:53:42.319059 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T03:53:42.320911 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T03:53:42.614655 #7] INFO -- : Partitions assigned for `section_change`: 0 +I, [2018-08-07T03:53:42.718231 #7] INFO -- : Partitions assigned for `course_change`: 0 +I, [2018-08-07T03:53:43.325470 #7] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-07T03:53:43.328866 #7] INFO -- : New topics added to target list: course_change +I, [2018-08-07T03:53:43.381232 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T03:53:43.381406 #7] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-07T03:53:43.381498 #7] INFO -- : New topics added to target list: section_change +I, [2018-08-07T03:53:43.381538 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T03:53:43.402987 #7] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-07T03:53:43.406868 #7] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-07T03:53:56.535046 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1785.33 ms +I, [2018-08-07T03:53:56.542766 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:53:56.608225 #7] INFO -- : Committing offsets with recommit: section_change/0:1 +I, [2018-08-07T03:53:56.632733 #7] INFO -- : Inline processing of topic course_change with 1 messages took 7329.66 ms +I, [2018-08-07T03:53:56.632874 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:53:56.633019 #7] INFO -- : Committing offsets with recommit: course_change/0:1 +I, [2018-08-07T03:53:57.222101 #7] INFO -- : Inline processing of topic course_change with 1 messages took 31.57 ms +I, [2018-08-07T03:53:57.222180 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:53:57.244475 #7] INFO -- : Inline processing of topic course_change with 1 messages took 15.55 ms +I, [2018-08-07T03:53:57.248158 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:53:57.277165 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.76 ms +I, [2018-08-07T03:53:57.278294 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:53:57.295805 #7] INFO -- : Inline processing of topic section_change with 1 messages took 12.53 ms +I, [2018-08-07T03:53:57.305246 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:53:57.422732 #7] INFO -- : Inline processing of topic section_change with 1 messages took 3.82 ms +I, [2018-08-07T03:53:57.422872 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:53:57.443140 #7] INFO -- : Inline processing of topic section_change with 1 messages took 5.99 ms +I, [2018-08-07T03:53:57.464949 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:53:57.466944 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.21 ms +I, [2018-08-07T03:53:57.472182 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:53:57.544734 #7] INFO -- : Inline processing of topic section_change with 1 messages took 68.93 ms +I, [2018-08-07T03:53:57.571934 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:53:57.578203 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.67 ms +I, [2018-08-07T03:53:57.578304 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:53:57.587985 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.67 ms +I, [2018-08-07T03:53:57.588056 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:53:57.638000 #7] INFO -- : Inline processing of topic section_change with 1 messages took 8.19 ms +I, [2018-08-07T03:53:57.640308 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:53:57.649943 #7] INFO -- : Inline processing of topic section_change with 1 messages took 4.9 ms +I, [2018-08-07T03:53:57.654488 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:53:58.076396 #7] INFO -- : Inline processing of topic section_change with 1 messages took 341.03 ms +I, [2018-08-07T03:53:58.076499 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:53:58.077380 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.64 ms +I, [2018-08-07T03:53:58.077441 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:53:58.221158 #7] INFO -- : Inline processing of topic section_change with 1 messages took 35.73 ms +I, [2018-08-07T03:53:58.221249 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:53:58.222801 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.22 ms +I, [2018-08-07T03:53:58.222894 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:54:00.231137 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.6 ms +I, [2018-08-07T03:54:00.231215 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:54:00.232174 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.71 ms +I, [2018-08-07T03:54:00.232224 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:54:00.232886 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T03:54:00.232932 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:54:00.234479 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.77 ms +I, [2018-08-07T03:54:00.234535 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:54:00.235203 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.5 ms +I, [2018-08-07T03:54:00.235243 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:54:01.304522 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.81 ms +I, [2018-08-07T03:54:01.304592 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:54:02.236037 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T03:54:02.236091 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:54:02.236540 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T03:54:02.236574 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:54:02.237110 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T03:54:02.237145 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:54:02.237790 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.51 ms +I, [2018-08-07T03:54:02.237827 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:54:02.238430 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.46 ms +I, [2018-08-07T03:54:02.238464 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:54:02.239067 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.47 ms +I, [2018-08-07T03:54:02.239098 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:54:02.239728 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.51 ms +I, [2018-08-07T03:54:02.240229 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:54:02.241228 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-08-07T03:54:02.241533 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:54:02.257931 #7] INFO -- : Inline processing of topic section_change with 1 messages took 15.64 ms +I, [2018-08-07T03:54:02.258015 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:54:02.258683 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.47 ms +I, [2018-08-07T03:54:02.258722 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:54:02.262661 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.64 ms +I, [2018-08-07T03:54:02.262717 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:54:02.269191 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.97 ms +I, [2018-08-07T03:54:02.269277 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:54:02.269943 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.42 ms +I, [2018-08-07T03:54:02.269995 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:54:02.270608 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.4 ms +I, [2018-08-07T03:54:02.270661 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:54:02.274943 #7] INFO -- : Inline processing of topic section_change with 1 messages took 4.0 ms +I, [2018-08-07T03:54:02.275019 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:54:02.276666 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.46 ms +I, [2018-08-07T03:54:02.276711 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:54:02.287386 #7] INFO -- : Inline processing of topic section_change with 1 messages took 8.47 ms +I, [2018-08-07T03:54:02.287437 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:54:02.290390 #7] INFO -- : Inline processing of topic section_change with 1 messages took 2.75 ms +I, [2018-08-07T03:54:02.290442 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:54:02.292943 #7] INFO -- : Inline processing of topic section_change with 1 messages took 2.26 ms +I, [2018-08-07T03:54:02.293018 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:54:02.294922 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.37 ms +I, [2018-08-07T03:54:02.294990 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:54:05.584585 #7] INFO -- : Inline processing of topic course_change with 1 messages took 54.98 ms +I, [2018-08-07T03:54:05.585444 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:54:05.640003 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.97 ms +I, [2018-08-07T03:54:05.640158 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:54:05.884975 #7] INFO -- : Inline processing of topic section_change with 1 messages took 243.9 ms +I, [2018-08-07T03:54:05.885678 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:54:05.892911 #7] INFO -- : Inline processing of topic section_change with 1 messages took 6.59 ms +I, [2018-08-07T03:54:07.095497 #7] INFO -- : Inline processing of topic course_change with 1 messages took 1508.68 ms +I, [2018-08-07T03:54:07.095758 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:54:07.096137 #7] INFO -- : Committing offsets: course_change/0:6 +I, [2018-08-07T03:54:05.893120 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:54:07.432540 #7] INFO -- : Committing offsets: section_change/0:43 +I, [2018-08-07T03:54:07.679326 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.58 ms +I, [2018-08-07T03:54:07.679440 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:54:07.897710 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.98 ms +I, [2018-08-07T03:54:07.897812 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:54:08.036196 #7] INFO -- : Inline processing of topic course_change with 1 messages took 138.03 ms +I, [2018-08-07T03:54:08.036299 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:54:08.036834 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.23 ms +I, [2018-08-07T03:54:08.079654 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:54:08.098456 #7] INFO -- : Inline processing of topic course_change with 1 messages took 18.38 ms +I, [2018-08-07T03:54:08.098617 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:54:08.099666 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.32 ms +I, [2018-08-07T03:54:08.099758 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:54:08.100333 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.29 ms +I, [2018-08-07T03:54:08.100392 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:54:08.106455 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.31 ms +I, [2018-08-07T03:54:08.106563 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:54:08.107802 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.42 ms +I, [2018-08-07T03:54:08.107969 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:54:08.122484 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-08-07T03:54:08.122569 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:54:08.123168 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T03:54:08.207461 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:54:08.208279 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-08-07T03:54:08.208368 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:54:10.072240 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.27 ms +I, [2018-08-07T03:54:10.072504 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:54:10.083821 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T03:54:10.083874 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:54:10.090561 #7] INFO -- : Inline processing of topic course_change with 1 messages took 6.46 ms +I, [2018-08-07T03:54:10.090623 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:54:10.090999 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T03:54:10.091039 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:54:10.091698 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.53 ms +I, [2018-08-07T03:54:10.091741 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:54:10.092028 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T03:54:10.092063 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:54:10.093463 #7] INFO -- : Inline processing of topic course_change with 1 messages took 1.25 ms +I, [2018-08-07T03:54:10.093528 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:54:10.093832 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T03:54:10.093866 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:54:10.173739 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T03:54:10.173816 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:54:10.179708 #7] INFO -- : Inline processing of topic section_change with 1 messages took 5.58 ms +I, [2018-08-07T03:54:10.180027 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:54:10.180877 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.56 ms +I, [2018-08-07T03:54:10.180942 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:54:10.191934 #7] INFO -- : Inline processing of topic section_change with 1 messages took 10.73 ms +I, [2018-08-07T03:54:10.191992 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:54:10.192459 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T03:54:10.192526 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:54:10.195390 #7] INFO -- : Inline processing of topic section_change with 1 messages took 2.68 ms +I, [2018-08-07T03:54:10.195442 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:54:10.195857 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T03:54:10.202568 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:54:10.203217 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T03:54:10.203277 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:54:10.222052 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T03:54:10.222914 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:54:12.098815 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.88 ms +I, [2018-08-07T03:54:12.098913 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:54:12.099702 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.43 ms +I, [2018-08-07T03:54:12.099765 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:54:12.100161 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T03:54:12.100208 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:54:12.104094 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T03:54:12.104400 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:54:12.104808 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T03:54:12.104858 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:54:12.235286 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.51 ms +I, [2018-08-07T03:54:12.235361 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:54:12.235778 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T03:54:12.237276 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:54:12.258137 #7] INFO -- : Inline processing of topic section_change with 1 messages took 20.12 ms +I, [2018-08-07T03:54:12.258219 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:54:12.258669 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T03:54:12.258715 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:54:12.260480 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.57 ms +I, [2018-08-07T03:54:12.260539 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:54:12.261078 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T03:54:12.261143 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:54:12.261702 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T03:54:12.261748 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:54:12.262224 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T03:54:12.262275 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:54:12.270296 #7] INFO -- : Inline processing of topic section_change with 1 messages took 6.93 ms +I, [2018-08-07T03:54:12.270374 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:54:14.106448 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.75 ms +I, [2018-08-07T03:54:14.106571 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:54:14.271891 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.5 ms +I, [2018-08-07T03:54:14.271963 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:54:14.272683 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.41 ms +I, [2018-08-07T03:54:14.272754 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:54:14.276371 #7] INFO -- : Inline processing of topic section_change with 1 messages took 3.14 ms +I, [2018-08-07T03:54:14.276610 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:54:14.277057 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T03:54:14.277461 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:54:14.277998 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-08-07T03:54:14.278056 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:54:14.278641 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-08-07T03:54:14.278694 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:54:16.416260 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.3 ms +I, [2018-08-07T03:54:16.416416 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:54:16.417019 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.37 ms +I, [2018-08-07T03:54:16.417179 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:54:16.419949 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.82 ms +I, [2018-08-07T03:54:16.420206 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:54:16.422072 #7] INFO -- : Inline processing of topic course_change with 1 messages took 1.14 ms +I, [2018-08-07T03:54:16.422258 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:54:16.425712 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.65 ms +I, [2018-08-07T03:54:16.425988 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:54:16.467663 #7] INFO -- : Inline processing of topic course_change with 1 messages took 5.04 ms +I, [2018-08-07T03:54:16.467764 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:54:16.477685 #7] INFO -- : Inline processing of topic course_change with 1 messages took 3.91 ms +I, [2018-08-07T03:54:16.506394 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:54:16.506953 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.24 ms +I, [2018-08-07T03:54:16.507063 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:54:16.507458 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-08-07T03:54:16.507501 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:54:16.507879 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-08-07T03:54:16.507923 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:54:16.508393 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.3 ms +I, [2018-08-07T03:54:16.508577 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:54:16.509000 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-08-07T03:54:16.509048 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:54:16.509497 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-08-07T03:54:16.509549 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:54:16.510780 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T03:54:16.510958 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:54:16.511366 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T03:54:16.511407 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:54:16.522831 #7] INFO -- : Inline processing of topic section_change with 1 messages took 2.39 ms +I, [2018-08-07T03:54:16.551751 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:54:16.553162 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.05 ms +I, [2018-08-07T03:54:16.553207 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:54:16.555218 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.77 ms +I, [2018-08-07T03:54:16.555287 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:54:16.556620 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.48 ms +I, [2018-08-07T03:54:16.556674 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:54:16.560426 #7] INFO -- : Inline processing of topic section_change with 1 messages took 3.2 ms +I, [2018-08-07T03:54:16.560574 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:54:17.037425 #7] INFO -- : Inline processing of topic section_change with 1 messages took 214.4 ms +I, [2018-08-07T03:54:17.037536 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:54:17.385089 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.39 ms +I, [2018-08-07T03:54:17.385192 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:54:17.394097 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T03:54:17.394164 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:54:17.397914 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T03:54:17.398013 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:54:17.722827 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.82 ms +I, [2018-08-07T03:54:17.722920 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:54:17.724567 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.96 ms +I, [2018-08-07T03:54:17.809538 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:54:17.810439 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-08-07T03:54:17.810499 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:54:17.811207 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-08-07T03:54:17.811332 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:54:17.812036 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-08-07T03:54:17.812102 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:54:17.813342 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T03:54:17.813404 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:54:18.519202 #7] INFO -- : Committing offsets: course_change/0:41 +I, [2018-08-07T03:54:18.578796 #7] INFO -- : Inline processing of topic course_change with 1 messages took 3.27 ms +I, [2018-08-07T03:54:18.578909 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:54:19.818618 #7] INFO -- : Committing offsets: section_change/0:88 +I, [2018-08-07T03:54:20.219375 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.18 ms +I, [2018-08-07T03:54:20.219541 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:54:20.221571 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.56 ms +I, [2018-08-07T03:54:20.358572 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:54:20.359044 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T03:54:20.359139 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:54:20.360302 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.97 ms +I, [2018-08-07T03:54:20.360377 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:54:20.580845 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.39 ms +I, [2018-08-07T03:54:20.580918 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:54:20.581450 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.32 ms +I, [2018-08-07T03:54:20.581497 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:54:20.582948 #7] INFO -- : Inline processing of topic course_change with 1 messages took 1.15 ms +I, [2018-08-07T03:54:20.583116 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:54:20.587304 #7] INFO -- : Inline processing of topic course_change with 1 messages took 3.86 ms +I, [2018-08-07T03:54:20.587446 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:54:22.369009 #7] INFO -- : Inline processing of topic section_change with 1 messages took 5.14 ms +I, [2018-08-07T03:54:22.369247 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:54:22.385011 #7] INFO -- : Inline processing of topic section_change with 1 messages took 15.21 ms +I, [2018-08-07T03:54:22.385142 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:54:22.414050 #7] INFO -- : Inline processing of topic section_change with 1 messages took 28.15 ms +I, [2018-08-07T03:54:22.414159 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:54:22.414682 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T03:54:22.414732 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:54:22.465534 #7] INFO -- : Inline processing of topic section_change with 1 messages took 31.98 ms +I, [2018-08-07T03:54:22.465613 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:54:22.467173 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-08-07T03:54:22.467242 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:54:22.474266 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.5 ms +I, [2018-08-07T03:54:22.474351 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:54:22.474885 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T03:54:22.474922 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:54:22.599062 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.35 ms +I, [2018-08-07T03:54:22.599214 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:54:22.599572 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T03:54:22.599706 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:54:22.600070 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T03:54:22.600119 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:54:22.600444 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T03:54:22.600718 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:54:22.601080 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T03:54:22.601173 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:54:22.601495 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T03:54:22.601662 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:54:22.601966 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T03:54:22.602013 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:54:22.602360 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T03:54:22.602543 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:54:24.604451 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.5 ms +I, [2018-08-07T03:54:24.604676 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:54:24.606017 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.99 ms +I, [2018-08-07T03:54:24.606088 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:54:24.613209 #7] INFO -- : Inline processing of topic section_change with 1 messages took 117.18 ms +I, [2018-08-07T03:54:24.613294 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:54:24.618297 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.65 ms +I, [2018-08-07T03:54:24.627520 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:54:26.611221 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.48 ms +I, [2018-08-07T03:54:26.611354 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:54:26.611772 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.25 ms +I, [2018-08-07T03:54:26.611808 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:54:26.612165 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-08-07T03:54:26.612268 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:54:26.613006 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T03:54:26.613094 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:54:26.614622 #7] INFO -- : Inline processing of topic course_change with 1 messages took 1.07 ms +I, [2018-08-07T03:54:26.614730 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:54:26.617717 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T03:54:26.617766 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:54:26.639435 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-08-07T03:54:26.639599 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:54:26.640135 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-08-07T03:54:26.640195 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:54:26.640562 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T03:54:26.640606 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:54:26.641009 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T03:54:26.641050 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:54:26.641416 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T03:54:26.641466 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:54:26.642010 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-08-07T03:54:26.642053 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:54:26.642760 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.56 ms +I, [2018-08-07T03:54:26.642811 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:54:30.440338 #7] INFO -- : Committing offsets: course_change/0:62 +I, [2018-08-07T03:54:30.477503 #7] INFO -- : Committing offsets: section_change/0:109 +I, [2018-08-07T03:54:31.723947 #7] INFO -- : Inline processing of topic section_change with 1 messages took 25.87 ms +I, [2018-08-07T03:54:31.726780 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:54:31.729518 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.86 ms +I, [2018-08-07T03:54:31.729596 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:54:31.814411 #7] INFO -- : Inline processing of topic course_change with 1 messages took 51.26 ms +I, [2018-08-07T03:54:31.815138 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:54:31.831679 #7] INFO -- : Inline processing of topic course_change with 1 messages took 14.28 ms +I, [2018-08-07T03:54:31.831788 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:54:31.872012 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.44 ms +I, [2018-08-07T03:54:31.872213 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:54:33.730819 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-08-07T03:54:33.730880 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:54:33.734355 #7] INFO -- : Inline processing of topic section_change with 1 messages took 3.05 ms +I, [2018-08-07T03:54:33.734408 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:54:33.734895 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-08-07T03:54:33.734942 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:54:33.735436 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-08-07T03:54:33.735488 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:54:33.736000 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-08-07T03:54:33.736036 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:54:33.736448 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T03:54:33.736482 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:54:33.744127 #7] INFO -- : Inline processing of topic section_change with 1 messages took 7.46 ms +I, [2018-08-07T03:54:33.744200 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:54:33.744898 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.45 ms +I, [2018-08-07T03:54:33.744969 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:54:33.745548 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T03:54:33.745602 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:54:33.873905 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T03:54:33.874121 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:54:33.874352 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T03:54:33.874384 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:54:33.874828 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T03:54:33.874860 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:54:33.875326 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.35 ms +I, [2018-08-07T03:54:33.875359 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:54:33.875760 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.28 ms +I, [2018-08-07T03:54:33.875791 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:54:33.876363 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.43 ms +I, [2018-08-07T03:54:33.876430 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:54:33.876962 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T03:54:33.877080 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:54:35.746683 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.41 ms +I, [2018-08-07T03:54:35.746904 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:54:35.748549 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.56 ms +I, [2018-08-07T03:54:35.748620 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:54:35.749418 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.49 ms +I, [2018-08-07T03:54:35.749480 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:54:35.750282 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.48 ms +I, [2018-08-07T03:54:35.750361 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:54:35.751273 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.56 ms +I, [2018-08-07T03:54:35.751462 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:54:35.752533 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.78 ms +I, [2018-08-07T03:54:35.752740 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:54:35.753626 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.49 ms +I, [2018-08-07T03:54:35.753776 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:54:35.754465 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.43 ms +I, [2018-08-07T03:54:35.754688 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:54:35.755911 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.52 ms +I, [2018-08-07T03:54:35.764573 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:54:35.765469 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.57 ms +I, [2018-08-07T03:54:35.765515 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:54:35.766314 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-08-07T03:54:35.766352 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:54:35.772189 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.61 ms +I, [2018-08-07T03:54:35.772341 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:54:35.773059 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-08-07T03:54:35.773140 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:54:35.773854 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-08-07T03:54:35.773999 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:54:35.774875 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.48 ms +I, [2018-08-07T03:54:35.775013 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:54:35.797120 #7] INFO -- : Inline processing of topic section_change with 1 messages took 21.84 ms +I, [2018-08-07T03:54:35.797205 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:54:35.797989 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.46 ms +I, [2018-08-07T03:54:35.798048 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:54:35.902227 #7] INFO -- : Inline processing of topic course_change with 1 messages took 19.24 ms +I, [2018-08-07T03:54:35.902366 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:54:35.904266 #7] INFO -- : Inline processing of topic course_change with 1 messages took 1.45 ms +I, [2018-08-07T03:54:35.904333 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:54:35.905508 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.4 ms +I, [2018-08-07T03:54:35.905990 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:54:35.907176 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.85 ms +I, [2018-08-07T03:54:35.907236 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:54:35.907717 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.26 ms +I, [2018-08-07T03:54:35.907765 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:54:35.908454 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.34 ms +I, [2018-08-07T03:54:35.908502 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:54:37.799578 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-08-07T03:54:37.799633 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:54:37.799993 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T03:54:37.800035 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:54:37.800429 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T03:54:37.800673 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:54:37.801027 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T03:54:37.801067 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:54:37.909609 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.26 ms +I, [2018-08-07T03:54:37.909685 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:54:37.910180 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T03:54:37.910295 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:54:39.802438 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.66 ms +I, [2018-08-07T03:54:39.802561 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:54:39.805411 #7] INFO -- : Inline processing of topic section_change with 1 messages took 2.58 ms +I, [2018-08-07T03:54:39.805506 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:54:39.806024 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T03:54:39.806176 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:54:39.807541 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.83 ms +I, [2018-08-07T03:54:39.807611 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:54:39.811936 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.41 ms +I, [2018-08-07T03:54:39.812002 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:54:39.812463 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T03:54:39.812517 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:54:39.813027 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-08-07T03:54:39.813083 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:54:39.823028 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T03:54:39.823084 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:54:39.823463 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T03:54:39.833505 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:54:39.833881 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T03:54:39.833914 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:54:39.834180 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T03:54:39.834210 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:54:39.834460 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T03:54:39.834501 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:54:39.834750 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T03:54:39.834780 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:54:39.834999 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T03:54:39.835141 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:54:39.835477 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T03:54:39.835521 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:54:39.911965 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.51 ms +I, [2018-08-07T03:54:39.912140 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:54:39.912553 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-08-07T03:54:39.912613 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:54:39.913565 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.56 ms +I, [2018-08-07T03:54:39.913640 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:54:39.914628 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.77 ms +I, [2018-08-07T03:54:39.914686 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:54:39.915142 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.25 ms +I, [2018-08-07T03:54:39.915193 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:54:39.920147 #7] INFO -- : Inline processing of topic course_change with 1 messages took 4.56 ms +I, [2018-08-07T03:54:39.920215 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:54:39.921254 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.43 ms +I, [2018-08-07T03:54:39.921311 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:54:39.921677 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-08-07T03:54:39.921832 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:54:39.922195 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T03:54:39.922249 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:54:39.930317 #7] INFO -- : Inline processing of topic course_change with 1 messages took 7.76 ms +I, [2018-08-07T03:54:39.930378 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:54:39.930769 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-08-07T03:54:39.930802 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:54:43.229007 #7] INFO -- : Committing offsets: section_change/0:156 +I, [2018-08-07T03:54:43.513765 #7] INFO -- : Committing offsets: course_change/0:91 +I, [2018-08-07T03:54:46.720408 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.38 ms +I, [2018-08-07T03:54:46.720686 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:54:46.769279 #7] INFO -- : Inline processing of topic section_change with 1 messages took 46.0 ms +I, [2018-08-07T03:54:46.769390 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:54:46.772197 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.58 ms +I, [2018-08-07T03:54:46.815783 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:54:46.816533 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-08-07T03:54:46.816887 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:54:46.973917 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.45 ms +I, [2018-08-07T03:54:46.974046 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:54:46.983640 #7] INFO -- : Inline processing of topic section_change with 1 messages took 9.28 ms +I, [2018-08-07T03:54:46.983780 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:54:46.986885 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.48 ms +I, [2018-08-07T03:54:46.988216 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:54:47.006520 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-08-07T03:54:47.006597 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:54:47.007497 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-08-07T03:54:47.007562 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:54:47.008591 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T03:54:47.008684 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:54:47.009318 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.41 ms +I, [2018-08-07T03:54:47.009382 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:54:47.010278 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.61 ms +I, [2018-08-07T03:54:47.010348 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:54:47.011031 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-08-07T03:54:47.011152 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:54:47.011757 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-08-07T03:54:47.011957 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:54:47.034955 #7] INFO -- : Inline processing of topic section_change with 1 messages took 22.72 ms +I, [2018-08-07T03:54:47.035092 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:54:47.035904 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.53 ms +I, [2018-08-07T03:54:47.035964 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:54:47.037895 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.18 ms +I, [2018-08-07T03:54:47.038028 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:54:47.042236 #7] INFO -- : Inline processing of topic section_change with 1 messages took 3.42 ms +I, [2018-08-07T03:54:47.042361 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:54:47.114113 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.46 ms +I, [2018-08-07T03:54:47.114227 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:54:47.114807 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T03:54:47.114856 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:54:47.056174 #7] INFO -- : Inline processing of topic course_change with 1 messages took 80.77 ms +I, [2018-08-07T03:54:47.116822 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:54:47.117648 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.52 ms +I, [2018-08-07T03:54:47.117775 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:54:47.118244 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-08-07T03:54:47.118425 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:54:47.118890 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.29 ms +I, [2018-08-07T03:54:47.118932 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:54:47.120888 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.78 ms +I, [2018-08-07T03:54:47.120954 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:54:47.121464 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-08-07T03:54:47.121531 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:54:47.276523 #7] INFO -- : Inline processing of topic course_change with 1 messages took 154.21 ms +I, [2018-08-07T03:54:47.278290 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:54:49.115969 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.54 ms +I, [2018-08-07T03:54:49.116038 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:54:49.116638 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.4 ms +I, [2018-08-07T03:54:49.116698 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:54:49.117134 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T03:54:49.117168 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:54:49.117479 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T03:54:49.117511 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:54:49.280567 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.46 ms +I, [2018-08-07T03:54:49.280645 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:54:49.281213 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.32 ms +I, [2018-08-07T03:54:49.281271 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:54:49.282218 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.68 ms +I, [2018-08-07T03:54:49.282298 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:54:49.283385 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.84 ms +I, [2018-08-07T03:54:49.283449 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:54:49.283998 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.31 ms +I, [2018-08-07T03:54:49.284052 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:54:49.284569 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.31 ms +I, [2018-08-07T03:54:49.284620 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:54:49.285126 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.29 ms +I, [2018-08-07T03:54:49.285202 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:54:49.295127 #7] INFO -- : Inline processing of topic course_change with 1 messages took 8.16 ms +I, [2018-08-07T03:54:49.295195 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:54:49.295734 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.29 ms +I, [2018-08-07T03:54:49.295771 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:54:49.296096 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-08-07T03:54:49.296144 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:54:49.296489 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-08-07T03:54:49.296522 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:54:49.296911 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-08-07T03:54:49.296945 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:54:49.297345 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T03:54:49.297382 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:54:49.297636 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T03:54:49.297673 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:54:49.298080 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.28 ms +I, [2018-08-07T03:54:49.298119 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:54:51.184293 #7] INFO -- : Inline processing of topic section_change with 1 messages took 9.56 ms +I, [2018-08-07T03:54:51.184365 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:54:51.185123 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T03:54:51.185172 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:54:51.283365 #7] INFO -- : Inline processing of topic section_change with 1 messages took 92.37 ms +I, [2018-08-07T03:54:51.283678 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:54:51.296148 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.53 ms +I, [2018-08-07T03:54:51.296222 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:54:51.296934 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-08-07T03:54:51.296994 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T03:54:51.339544 #7] INFO -- : Inline processing of topic course_change with 1 messages took 40.93 ms +I, [2018-08-07T03:54:51.339615 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:54:51.340209 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.31 ms +I, [2018-08-07T03:54:51.340259 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:54:51.341193 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.47 ms +I, [2018-08-07T03:54:51.341258 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T03:54:51.474269 #7] INFO -- : Inline processing of topic course_change with 1 messages took 15.24 ms +I, [2018-08-07T13:07:52.723129 #7] INFO -- : New topics added to target list: section_change +I, [2018-08-07T13:07:52.738047 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T13:07:52.739952 #7] INFO -- : New topics added to target list: course_change +I, [2018-08-07T13:07:52.740020 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T13:07:52.746552 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T13:07:52.749540 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T13:07:52.752798 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T13:07:52.752889 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T13:07:57.911092 #7] 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.14:9094 +I, [2018-08-07T13:07:57.952771 #7] INFO -- : New topics added to target list: course_change +I, [2018-08-07T13:07:57.952917 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T13:07:57.777793 #7] 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.14:9094 +I, [2018-08-07T13:07:58.005912 #7] INFO -- : New topics added to target list: section_change +I, [2018-08-07T13:07:58.006764 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T13:07:58.022321 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T13:07:58.022501 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T13:07:58.022965 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T13:07:58.023872 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T13:08:03.023286 #7] 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.14:9094 +I, [2018-08-07T13:08:03.026132 #7] INFO -- : New topics added to target list: course_change +I, [2018-08-07T13:08:03.026240 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T13:08:03.031254 #7] 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.14:9094 +I, [2018-08-07T13:08:03.032833 #7] INFO -- : New topics added to target list: section_change +I, [2018-08-07T13:08:03.032903 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T13:08:03.039060 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T13:08:03.039164 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T13:08:03.048525 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T13:08:03.048660 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T13:08:08.043861 #7] 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.14:9094 +E, [2018-08-07T13:08:08.072684 #7] 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.14:9094 +I, [2018-08-07T13:08:08.075794 #7] INFO -- : New topics added to target list: course_change +I, [2018-08-07T13:08:08.075891 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T13:08:08.085559 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T13:08:08.085686 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +I, [2018-08-07T13:08:08.095563 #7] INFO -- : New topics added to target list: section_change +I, [2018-08-07T13:08:08.095621 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T13:08:08.121778 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T13:08:08.121931 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T13:08:13.087473 #7] 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.14:9094 +I, [2018-08-07T13:08:13.108325 #7] INFO -- : New topics added to target list: course_change +I, [2018-08-07T13:08:13.108490 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T13:08:13.111811 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T13:08:13.112230 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T13:08:13.124398 #7] 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.14:9094 +I, [2018-08-07T13:08:13.130560 #7] INFO -- : New topics added to target list: section_change +I, [2018-08-07T13:08:13.130650 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T13:08:13.139398 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T13:08:13.139571 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T13:08:18.171961 #7] 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.14:9094 +E, [2018-08-07T13:08:19.309674 #7] 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.14:9094 +I, [2018-08-07T13:08:20.426997 #7] INFO -- : New topics added to target list: course_change +I, [2018-08-07T13:08:20.428534 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T13:08:20.546712 #7] INFO -- : New topics added to target list: section_change +I, [2018-08-07T13:08:20.547093 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T13:08:20.568258 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T13:08:20.569208 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T13:08:20.585058 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T13:08:20.585212 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T13:08:25.603142 #7] 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.14:9094 +I, [2018-08-07T13:08:25.608328 #7] INFO -- : New topics added to target list: section_change +I, [2018-08-07T13:08:25.608749 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T13:08:25.573512 #7] 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.14:9094 +I, [2018-08-07T13:08:25.641075 #7] INFO -- : New topics added to target list: course_change +I, [2018-08-07T13:08:25.689681 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T13:08:28.510020 #7] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-07T13:08:28.512367 #7] INFO -- : Joining group `notifications_course_change` +I, [2018-08-07T13:08:28.540097 #7] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-07T13:08:28.540984 #7] INFO -- : Joining group `notifications_notifications` +I, [2018-08-07T13:08:28.586921 #7] INFO -- : Will fetch at most 1048576 bytes at a time per partition from section_change +I, [2018-08-07T13:08:28.587660 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T13:08:28.589277 #7] INFO -- : Will fetch at most 1048576 bytes at a time per partition from course_change +I, [2018-08-07T13:08:28.589559 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T13:08:28.875287 #7] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-07T13:08:28.875627 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:08:28.896885 #7] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-07T13:08:28.898706 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:08:29.888547 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:08:29.899888 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:08:30.888957 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:08:30.900130 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:08:31.891667 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:08:31.900656 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:08:32.892135 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:08:32.901095 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:08:33.897052 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:08:33.901672 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:08:35.465223 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:08:35.465344 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:08:36.466075 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:08:36.466331 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:08:37.466457 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:08:37.466611 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-07T13:08:37.871191 #7] ERROR -- : Failed to find coordinator for group `notifications_course_change`; retrying... +E, [2018-08-07T13:08:37.884838 #7] ERROR -- : Failed to find coordinator for group `notifications_notifications`; retrying... +I, [2018-08-07T13:08:38.467460 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:08:38.467567 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:08:38.878502 #7] INFO -- : Joining group `notifications_course_change` +I, [2018-08-07T13:08:38.886129 #7] INFO -- : Joining group `notifications_notifications` +I, [2018-08-07T13:08:39.187099 #7] INFO -- : Joined group `notifications_course_change` with member id `notifications-e79ab596-6eb8-4cc3-8949-b2d94cc351bb` +I, [2018-08-07T13:08:39.187806 #7] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-07T13:08:39.202129 #7] INFO -- : Joined group `notifications_notifications` with member id `notifications-1c8c0cbc-7f24-4216-adf5-911d98414c4e` +I, [2018-08-07T13:08:39.202190 #7] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-07T13:08:39.505671 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:08:39.505982 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:08:40.196473 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T13:08:40.204333 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T13:08:40.225043 #7] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-07T13:08:40.232250 #7] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-07T13:08:40.475008 #7] INFO -- : Partitions assigned for `course_change`: 0 +I, [2018-08-07T13:08:40.503257 #7] INFO -- : Partitions assigned for `section_change`: 0 +I, [2018-08-07T13:08:40.506313 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:08:40.506458 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:08:41.506645 #7] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-07T13:08:41.507168 #7] INFO -- : New topics added to target list: section_change +I, [2018-08-07T13:08:41.507226 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T13:08:41.509146 #7] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-07T13:08:41.509606 #7] INFO -- : New topics added to target list: course_change +I, [2018-08-07T13:08:41.509742 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T13:08:41.522884 #7] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-07T13:08:41.529170 #7] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +E, [2018-08-07T13:08:49.060820 #7] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- ArgumentError: wrong number of arguments (given 2, expected 1) +/usr/src/app/app/controllers/eventstream.rb:17:in `publish' +/usr/src/app/app/controllers/eventstream.rb:17:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-07T13:08:49.082939 #7] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-07T13:08:49.085339 #7] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- ArgumentError: wrong number of arguments (given 2, expected 1) +/usr/src/app/app/controllers/eventstream.rb:17:in `publish' +/usr/src/app/app/controllers/eventstream.rb:17:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-07T13:08:49.085395 #7] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-07T13:08:49.642272 #7] ERROR -- : Client fetch loop error: wrong number of arguments (given 2, expected 1) +I, [2018-08-07T13:08:49.645273 #7] INFO -- : Joining group `notifications_notifications` +E, [2018-08-07T13:08:49.728620 #7] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-07T13:08:49.745791 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-07T13:08:49.852332 #7] ERROR -- : Client fetch loop error: wrong number of arguments (given 2, expected 1) +I, [2018-08-07T13:08:49.853354 #7] INFO -- : Joining group `notifications_course_change` +I, [2018-08-07T13:08:49.919125 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-07T13:08:49.931666 #7] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-07T13:08:50.728941 #7] INFO -- : Joining group `notifications_notifications` +I, [2018-08-07T13:08:50.782701 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:08:50.820723 #7] INFO -- : Joined group `notifications_notifications` with member id `notifications-fc4eaf9f-ee87-403d-bc6c-401ae735cfc3` +I, [2018-08-07T13:08:50.820790 #7] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-07T13:08:50.842509 #7] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-07T13:08:50.843437 #7] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-07T13:08:50.924919 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:08:50.933449 #7] INFO -- : Joining group `notifications_course_change` +I, [2018-08-07T13:08:50.984584 #7] INFO -- : Joined group `notifications_course_change` with member id `notifications-df66b2f2-f3c7-457b-ab12-4628447452e2` +I, [2018-08-07T13:08:50.984654 #7] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-07T13:08:51.025109 #7] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-07T13:08:51.025197 #7] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-07T13:08:51.783062 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:08:51.940317 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:08:53.077864 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:08:53.085399 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:08:54.087309 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:08:54.088961 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:08:55.372195 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:08:55.377912 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:08:56.375107 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:08:56.378377 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:08:57.376984 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:08:57.379044 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:08:58.387613 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:08:58.388882 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:08:59.388009 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:08:59.390149 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:09:00.389596 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:09:00.390501 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:09:01.563263 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:09:01.566423 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:09:01.635624 #7] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-07T13:09:01.691825 #7] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-07T13:09:02.563650 #7] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-07T13:09:02.566780 #7] INFO -- : Seeking course_change/0 to offset 0 +E, [2018-08-07T13:09:03.752836 #7] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- ArgumentError: wrong number of arguments (given 2, expected 1) +/usr/src/app/app/controllers/eventstream.rb:17:in `publish' +/usr/src/app/app/controllers/eventstream.rb:17:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-07T13:09:03.771431 #7] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-07T13:09:03.771094 #7] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- ArgumentError: wrong number of arguments (given 2, expected 1) +/usr/src/app/app/controllers/eventstream.rb:17:in `publish' +/usr/src/app/app/controllers/eventstream.rb:17:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-07T13:09:03.789851 #7] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-07T13:09:03.850456 #7] ERROR -- : Client fetch loop error: wrong number of arguments (given 2, expected 1) +I, [2018-08-07T13:09:03.851005 #7] INFO -- : Joining group `notifications_notifications` +E, [2018-08-07T13:09:03.864298 #7] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-08-07T13:09:03.872461 #7] ERROR -- : Client fetch loop error: wrong number of arguments (given 2, expected 1) +I, [2018-08-07T13:09:03.873490 #7] INFO -- : Joining group `notifications_course_change` +E, [2018-08-07T13:09:03.899512 #7] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-07T13:09:03.970900 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:09:04.270063 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:09:04.876008 #7] INFO -- : Joining group `notifications_notifications` +I, [2018-08-07T13:09:04.891580 #7] INFO -- : Joined group `notifications_notifications` with member id `notifications-c98d2039-dc35-4671-a792-13c5888d3fc7` +I, [2018-08-07T13:09:04.891670 #7] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-07T13:09:04.899734 #7] INFO -- : Joining group `notifications_course_change` +I, [2018-08-07T13:09:04.925168 #7] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-07T13:09:04.925357 #7] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-07T13:09:04.971311 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:09:05.014061 #7] INFO -- : Joined group `notifications_course_change` with member id `notifications-116ac377-f92e-4dc7-8917-e4a4c0f2576f` +I, [2018-08-07T13:09:05.014445 #7] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-07T13:09:05.043939 #7] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-07T13:09:05.044049 #7] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-07T13:09:05.270886 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:09:05.972524 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:09:06.271239 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:09:06.975006 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:09:07.271832 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:09:07.976170 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:09:08.273224 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:09:08.978035 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:09:09.273641 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:09:09.978428 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:09:10.274137 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:09:10.980048 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:09:11.279279 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:09:11.980715 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:09:12.279834 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:09:12.981106 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:09:13.280122 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:09:13.981599 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:09:14.281112 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:09:14.941328 #7] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-07T13:09:14.991618 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:09:15.245901 #7] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-07T13:09:15.283122 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:09:16.074044 #7] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-07T13:09:16.310246 #7] INFO -- : Seeking course_change/0 to offset 0 +E, [2018-08-07T13:09:17.225394 #7] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- ArgumentError: wrong number of arguments (given 2, expected 1) +/usr/src/app/app/controllers/eventstream.rb:17:in `publish' +/usr/src/app/app/controllers/eventstream.rb:17:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-07T13:09:17.330987 #7] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-07T13:09:17.343182 #7] ERROR -- : Client fetch loop error: wrong number of arguments (given 2, expected 1) +I, [2018-08-07T13:09:17.354801 #7] INFO -- : Joining group `notifications_notifications` +E, [2018-08-07T13:09:17.358511 #7] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-08-07T13:09:17.395116 #7] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- ArgumentError: wrong number of arguments (given 2, expected 1) +/usr/src/app/app/controllers/eventstream.rb:17:in `publish' +/usr/src/app/app/controllers/eventstream.rb:17:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-07T13:09:17.395261 #7] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-07T13:09:17.430907 #7] ERROR -- : Client fetch loop error: wrong number of arguments (given 2, expected 1) +I, [2018-08-07T13:09:17.431223 #7] INFO -- : Joining group `notifications_course_change` +I, [2018-08-07T13:09:17.469694 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-07T13:09:17.470744 #7] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-07T13:09:18.299259 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:09:18.314530 #7] INFO -- : Joining group `notifications_notifications` +I, [2018-08-07T13:09:18.336589 #7] INFO -- : Joined group `notifications_notifications` with member id `notifications-240e641b-f26e-4120-a1db-6d45a08f6bfb` +I, [2018-08-07T13:09:18.336663 #7] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-07T13:09:18.368796 #7] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-07T13:09:18.368898 #7] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-07T13:09:18.428024 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:09:18.429857 #7] INFO -- : Joining group `notifications_course_change` +I, [2018-08-07T13:09:18.439754 #7] INFO -- : Joined group `notifications_course_change` with member id `notifications-5bcb6690-c401-4d92-aa75-53324db956a7` +I, [2018-08-07T13:09:18.439834 #7] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-07T13:09:18.453911 #7] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-07T13:09:18.453980 #7] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-07T13:09:19.557563 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:09:19.557895 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:09:20.591226 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:09:20.591612 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:09:21.591923 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:09:21.592155 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:09:22.595995 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:09:22.596371 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:09:23.596377 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:09:23.607385 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:09:24.601280 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:09:24.607815 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:09:25.602041 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:09:25.608114 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:09:26.790295 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:09:26.790751 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:09:27.607791 #7] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-07T13:09:27.790812 #7] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-07T13:09:27.794791 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:09:28.421672 #7] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-07T13:09:28.796159 #7] INFO -- : Seeking section_change/0 to offset 0 +E, [2018-08-07T13:09:29.616491 #7] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- ArgumentError: wrong number of arguments (given 2, expected 1) +/usr/src/app/app/controllers/eventstream.rb:17:in `publish' +/usr/src/app/app/controllers/eventstream.rb:17:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-07T13:09:29.620338 #7] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-07T13:09:29.631994 #7] ERROR -- : Client fetch loop error: wrong number of arguments (given 2, expected 1) +I, [2018-08-07T13:09:29.632413 #7] INFO -- : Joining group `notifications_course_change` +E, [2018-08-07T13:09:29.635458 #7] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-07T13:09:29.809137 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-07T13:09:30.424580 #7] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- ArgumentError: wrong number of arguments (given 2, expected 1) +/usr/src/app/app/controllers/eventstream.rb:17:in `publish' +/usr/src/app/app/controllers/eventstream.rb:17:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-07T13:09:30.424667 #7] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-07T13:09:30.430566 #7] ERROR -- : Client fetch loop error: wrong number of arguments (given 2, expected 1) +I, [2018-08-07T13:09:30.430908 #7] INFO -- : Joining group `notifications_notifications` +E, [2018-08-07T13:09:30.432029 #7] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-07T13:09:30.459985 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:09:30.635961 #7] INFO -- : Joining group `notifications_course_change` +I, [2018-08-07T13:09:30.648053 #7] INFO -- : Joined group `notifications_course_change` with member id `notifications-76487a6b-501e-4740-918a-45cea6f1800d` +I, [2018-08-07T13:09:30.648102 #7] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-07T13:09:30.656517 #7] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-07T13:09:30.656860 #7] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-07T13:09:30.810107 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:09:31.432821 #7] INFO -- : Joining group `notifications_notifications` +I, [2018-08-07T13:09:31.914198 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:09:32.009612 #7] INFO -- : Joined group `notifications_notifications` with member id `notifications-5080b1db-0859-4efc-9d9d-069355740ad2` +I, [2018-08-07T13:09:32.009742 #7] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-07T13:09:32.018239 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:09:32.076346 #7] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-07T13:09:32.124839 #7] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-07T13:09:32.917061 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:09:33.020217 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:09:36.692889 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:09:37.743112 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:09:39.611456 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:09:39.623368 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:09:40.275693 #7] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-07T13:09:40.612680 #7] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-07T13:09:40.629455 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:09:41.715473 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:09:42.314796 #7] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-07T13:09:45.830391 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:09:47.345793 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-07T13:09:47.694819 #7] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- ArgumentError: wrong number of arguments (given 2, expected 1) +/usr/src/app/app/controllers/eventstream.rb:17:in `publish' +/usr/src/app/app/controllers/eventstream.rb:17:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-07T13:09:48.260375 #7] INFO -- : Leaving group `notifications_course_change` +I, [2018-08-07T13:09:48.330499 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:09:49.927567 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:09:50.929209 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:09:52.321460 #7] INFO -- : Seeking section_change/0 to offset 0 +E, [2018-08-07T13:09:53.228278 #7] ERROR -- : Client fetch loop error: wrong number of arguments (given 2, expected 1) +I, [2018-08-07T13:09:53.231777 #7] INFO -- : Joining group `notifications_course_change` +I, [2018-08-07T13:09:53.296710 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-07T13:09:53.333708 #7] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-07T13:09:54.299372 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:09:54.334769 #7] INFO -- : Joining group `notifications_course_change` +I, [2018-08-07T13:09:54.586831 #7] INFO -- : Joined group `notifications_course_change` with member id `notifications-58bc5567-62ab-4021-85a9-2bfbeca3033e` +I, [2018-08-07T13:09:54.586926 #7] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-07T13:09:54.742169 #7] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-07T13:09:54.742414 #7] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-07T13:09:55.304666 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-07T13:09:56.792118 #7] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- ArgumentError: wrong number of arguments (given 2, expected 1) +/usr/src/app/app/controllers/eventstream.rb:17:in `publish' +/usr/src/app/app/controllers/eventstream.rb:17:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-07T13:09:56.807171 #7] INFO -- : Leaving group `notifications_notifications` +I, [2018-08-07T13:09:56.973658 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-07T13:09:57.193345 #7] ERROR -- : Client fetch loop error: wrong number of arguments (given 2, expected 1) +I, [2018-08-07T13:09:57.195248 #7] INFO -- : Joining group `notifications_notifications` +E, [2018-08-07T13:09:57.199819 #7] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-07T13:09:57.279130 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:09:57.976747 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:09:58.200239 #7] INFO -- : Joining group `notifications_notifications` +I, [2018-08-07T13:09:58.294093 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:09:58.574389 #7] INFO -- : Joined group `notifications_notifications` with member id `notifications-e6a57ca3-a155-4f07-bda9-06e45ff25c68` +I, [2018-08-07T13:09:58.574464 #7] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-07T13:09:58.659433 #7] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-07T13:09:58.659647 #7] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-07T13:09:58.977373 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:09:59.308906 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:10:00.093351 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:10:00.310187 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:10:11.518283 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:10:11.537987 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:10:12.736367 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:10:12.754633 #7] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-07T13:10:12.761179 #7] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-07T13:10:12.763056 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:10:13.781863 #7] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-07T13:10:13.785565 #7] INFO -- : Seeking course_change/0 to offset 0 +E, [2018-08-07T13:10:29.246163 #7] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- ArgumentError: wrong number of arguments (given 2, expected 1) +/usr/src/app/app/controllers/eventstream.rb:17:in `publish' +/usr/src/app/app/controllers/eventstream.rb:17:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-07T13:10:29.828220 #7] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-07T13:10:30.097694 #7] ERROR -- : Client fetch loop error: wrong number of arguments (given 2, expected 1) +I, [2018-08-07T13:10:30.099101 #7] INFO -- : Joining group `notifications_course_change` +E, [2018-08-07T13:10:30.292895 #7] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-07T13:10:30.508462 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:10:35.627630 #7] INFO -- : Joining group `notifications_course_change` +I, [2018-08-07T13:10:35.823733 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-07T13:10:35.864268 #7] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- ArgumentError: wrong number of arguments (given 2, expected 1) +/usr/src/app/app/controllers/eventstream.rb:17:in `publish' +/usr/src/app/app/controllers/eventstream.rb:17:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-07T13:10:35.864725 #7] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-07T13:10:36.569683 #7] ERROR -- : Client fetch loop error: wrong number of arguments (given 2, expected 1) +I, [2018-08-07T13:10:36.579181 #7] INFO -- : Joined group `notifications_course_change` with member id `notifications-333f0939-1390-4e8c-9c26-7b18a6f5c6c5` +I, [2018-08-07T13:10:36.579284 #7] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-07T13:10:36.590546 #7] INFO -- : Joining group `notifications_notifications` +I, [2018-08-07T13:10:36.621292 #7] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-07T13:10:36.622284 #7] WARN -- : Not fetching from course_change/0 due to pause +E, [2018-08-07T13:10:36.676093 #7] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-07T13:10:36.693337 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:10:36.849230 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:10:37.676385 #7] INFO -- : Joining group `notifications_notifications` +I, [2018-08-07T13:10:37.689075 #7] INFO -- : Joined group `notifications_notifications` with member id `notifications-d604c2cc-3016-4b24-91f9-1bbd014f06e6` +I, [2018-08-07T13:10:37.689139 #7] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-07T13:10:37.694474 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:10:37.713065 #7] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-07T13:10:37.713333 #7] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-07T13:10:37.850461 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:10:39.691296 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:10:39.695034 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:10:40.518603 #7] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-07T13:10:40.697916 #7] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-07T13:10:40.697609 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:10:42.814920 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-07T13:10:42.871030 #7] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- ArgumentError: wrong number of arguments (given 2, expected 1) +/usr/src/app/app/controllers/eventstream.rb:17:in `publish' +/usr/src/app/app/controllers/eventstream.rb:17:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-07T13:10:42.947366 #7] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-07T13:10:43.111416 #7] ERROR -- : Client fetch loop error: wrong number of arguments (given 2, expected 1) +I, [2018-08-07T13:10:43.138754 #7] INFO -- : Joining group `notifications_course_change` +I, [2018-08-07T13:10:43.192394 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-07T13:10:43.270026 #7] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-07T13:10:43.821828 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:10:44.192811 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:10:44.275373 #7] INFO -- : Joining group `notifications_course_change` +I, [2018-08-07T13:10:44.630318 #7] INFO -- : Joined group `notifications_course_change` with member id `notifications-4601cc15-6d04-4e9d-b8ae-1a0e8ca32e87` +I, [2018-08-07T13:10:44.630391 #7] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-07T13:10:44.753304 #7] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-07T13:10:44.753429 #7] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-07T13:10:44.822972 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:10:45.194475 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:10:45.823422 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:10:46.196393 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:10:46.820329 #7] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-07T13:10:47.154772 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:10:47.484446 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:10:48.170746 #7] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-07T13:10:48.537756 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:10:49.726384 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-07T13:10:49.733339 #7] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- ArgumentError: wrong number of arguments (given 2, expected 1) +/usr/src/app/app/controllers/eventstream.rb:17:in `publish' +/usr/src/app/app/controllers/eventstream.rb:17:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-07T13:10:49.733424 #7] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-07T13:10:49.756709 #7] ERROR -- : Client fetch loop error: wrong number of arguments (given 2, expected 1) +I, [2018-08-07T13:10:49.757381 #7] INFO -- : Joining group `notifications_notifications` +E, [2018-08-07T13:10:49.758843 #7] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-07T13:10:49.765533 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:10:50.729373 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:10:50.782762 #7] INFO -- : Joining group `notifications_notifications` +I, [2018-08-07T13:10:50.784533 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:10:50.906567 #7] INFO -- : Joined group `notifications_notifications` with member id `notifications-48729c78-10d4-4d35-8640-9820e482a9e1` +I, [2018-08-07T13:10:50.906646 #7] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-07T13:10:50.956718 #7] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-07T13:10:50.957076 #7] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-07T13:10:51.731732 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:10:51.785778 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:10:52.733776 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:10:52.786580 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:10:53.734220 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:10:53.802117 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:10:54.734925 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:10:54.802558 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:10:54.898954 #7] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-07T13:10:55.798611 #7] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-07T13:10:55.803285 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:10:56.847919 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-07T13:10:57.078582 #7] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- ArgumentError: wrong number of arguments (given 2, expected 1) +/usr/src/app/app/controllers/eventstream.rb:17:in `publish' +/usr/src/app/app/controllers/eventstream.rb:17:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-07T13:10:57.088308 #7] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-07T13:10:57.144910 #7] ERROR -- : Client fetch loop error: wrong number of arguments (given 2, expected 1) +I, [2018-08-07T13:10:57.146280 #7] INFO -- : Joining group `notifications_course_change` +E, [2018-08-07T13:10:57.157278 #7] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-07T13:10:57.853015 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:10:58.682866 #7] INFO -- : Joining group `notifications_course_change` +I, [2018-08-07T13:10:58.880656 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:10:59.982882 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:11:00.202935 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:11:01.491720 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:11:01.537544 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:11:01.901785 #7] INFO -- : Joined group `notifications_course_change` with member id `notifications-7d49a441-1561-4e38-b75a-27c38f3497e9` +I, [2018-08-07T13:11:01.902749 #7] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-07T13:11:02.192994 #7] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-07T13:11:02.321587 #7] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-07T13:11:02.321827 #7] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-07T13:11:02.492607 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:11:02.551382 #7] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-07T13:11:03.494478 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-07T13:11:04.325031 #7] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- ArgumentError: wrong number of arguments (given 2, expected 1) +/usr/src/app/app/controllers/eventstream.rb:17:in `publish' +/usr/src/app/app/controllers/eventstream.rb:17:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-07T13:11:04.334364 #7] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-07T13:11:04.515345 #7] ERROR -- : Client fetch loop error: wrong number of arguments (given 2, expected 1) +I, [2018-08-07T13:11:04.546204 #7] INFO -- : Joining group `notifications_notifications` +I, [2018-08-07T13:11:04.554946 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-07T13:11:04.574967 #7] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-07T13:11:05.013831 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:11:07.332025 #7] INFO -- : Joining group `notifications_notifications` +I, [2018-08-07T13:11:07.333369 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:11:07.333906 #7] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-07T13:11:07.335697 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:11:09.165049 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:11:09.165406 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:11:10.415026 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:11:10.450556 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:11:11.418561 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:11:11.454719 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:11:13.379555 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:11:13.523203 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:11:14.483144 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:11:14.524657 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:11:15.526803 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:11:16.158979 #7] INFO -- : Joined group `notifications_notifications` with member id `notifications-3a4cc2ba-df5e-4954-a4a5-de21f2a8c9a8` +I, [2018-08-07T13:11:16.159147 #7] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-07T13:11:16.219422 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:11:16.584234 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:11:16.742025 #7] INFO -- : Partitions assigned for `section_change`: 0 +I, [2018-08-07T13:11:17.220022 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:11:18.431000 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:11:23.636816 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:11:23.637270 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:11:24.722620 #7] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-07T13:11:24.923120 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:11:32.082891 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:11:33.239681 #7] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-07T13:11:33.418490 #7] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-07T13:11:36.842549 #7] INFO -- : Seeking section_change/0 to offset 0 +E, [2018-08-07T13:11:38.437319 #7] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- ArgumentError: wrong number of arguments (given 2, expected 1) +/usr/src/app/app/controllers/eventstream.rb:17:in `publish' +/usr/src/app/app/controllers/eventstream.rb:17:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-07T13:11:38.437712 #7] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-07T13:11:38.441325 #7] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- ArgumentError: wrong number of arguments (given 2, expected 1) +/usr/src/app/app/controllers/eventstream.rb:17:in `publish' +/usr/src/app/app/controllers/eventstream.rb:17:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-07T13:11:38.441524 #7] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-07T13:11:38.918697 #7] ERROR -- : Client fetch loop error: wrong number of arguments (given 2, expected 1) +E, [2018-08-07T13:11:38.947893 #7] ERROR -- : Client fetch loop error: wrong number of arguments (given 2, expected 1) +I, [2018-08-07T13:11:39.186532 #7] INFO -- : Joining group `notifications_course_change` +I, [2018-08-07T13:11:39.197925 #7] INFO -- : Joining group `notifications_notifications` +E, [2018-08-07T13:11:39.280599 #7] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-08-07T13:11:39.335893 #7] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-07T13:11:39.357288 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:11:39.370097 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:11:40.298614 #7] INFO -- : Joining group `notifications_course_change` +I, [2018-08-07T13:11:40.337115 #7] INFO -- : Joining group `notifications_notifications` +I, [2018-08-07T13:11:40.358853 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:11:40.370515 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:11:40.586967 #7] INFO -- : Joined group `notifications_course_change` with member id `notifications-f8d02084-5294-4fd9-9fb1-efec911ad988` +I, [2018-08-07T13:11:40.587085 #7] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-07T13:11:40.628670 #7] INFO -- : Joined group `notifications_notifications` with member id `notifications-dbd0b032-5ef3-4b48-b9ef-55a8ae1c0e93` +I, [2018-08-07T13:11:40.628750 #7] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-07T13:11:40.696548 #7] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-07T13:11:40.698452 #7] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-07T13:11:40.708621 #7] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-07T13:11:40.708709 #7] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-07T13:11:41.420972 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:11:41.373550 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:11:42.422355 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:11:42.432075 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:11:43.425855 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:11:43.434337 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:11:44.428621 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:11:44.435808 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:11:45.430306 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:11:45.438491 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:11:46.446538 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:11:46.451857 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:11:47.447441 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:11:47.452526 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:11:48.448005 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:11:48.454788 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:11:49.368139 #7] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-07T13:11:49.444765 #7] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-07T13:11:49.517134 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:11:49.520481 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:11:50.448768 #7] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-07T13:11:50.455682 #7] INFO -- : Seeking course_change/0 to offset 0 +E, [2018-08-07T13:11:51.757329 #7] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- ArgumentError: wrong number of arguments (given 2, expected 1) +/usr/src/app/app/controllers/eventstream.rb:17:in `publish' +/usr/src/app/app/controllers/eventstream.rb:17:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-07T13:11:51.758301 #7] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-07T13:11:52.897487 #7] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- ArgumentError: wrong number of arguments (given 2, expected 1) +/usr/src/app/app/controllers/eventstream.rb:17:in `publish' +/usr/src/app/app/controllers/eventstream.rb:17:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-07T13:11:52.958618 #7] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-07T13:11:53.154616 #7] ERROR -- : Client fetch loop error: wrong number of arguments (given 2, expected 1) +E, [2018-08-07T13:11:53.237391 #7] ERROR -- : Client fetch loop error: wrong number of arguments (given 2, expected 1) +I, [2018-08-07T13:11:53.243662 #7] INFO -- : Joining group `notifications_course_change` +I, [2018-08-07T13:11:53.484005 #7] INFO -- : Joining group `notifications_notifications` +I, [2018-08-07T13:11:53.623113 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:11:53.630485 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:11:54.633207 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:11:54.633675 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:11:57.190148 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:11:58.588719 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:11:59.972887 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:11:59.973357 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:12:01.298753 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:12:01.290026 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:12:21.463650 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:12:21.990994 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:12:23.038199 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:12:23.058397 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-07T13:12:24.023497 #7] ERROR -- : Timed out while waiting for response 85 +E, [2018-08-07T13:12:24.158843 #7] ERROR -- : Timed out while waiting for response 85 +E, [2018-08-07T13:12:24.211171 #7] ERROR -- : Connection error while trying to join group `notifications_notifications`; retrying... +I, [2018-08-07T13:12:24.216271 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-07T13:12:24.226147 #7] ERROR -- : Connection error while trying to join group `notifications_course_change`; retrying... +I, [2018-08-07T13:12:24.256872 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:12:25.267089 #7] INFO -- : Joining group `notifications_course_change` +I, [2018-08-07T13:12:25.495730 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:12:25.505471 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T13:12:25.840908 #7] INFO -- : Joining group `notifications_notifications` +I, [2018-08-07T13:12:25.841488 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T13:12:25.845059 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:12:26.501368 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:12:26.849881 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:12:27.580841 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:12:27.878891 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:12:28.590424 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:12:29.181804 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:12:29.899185 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:12:30.344029 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:12:30.904991 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:12:36.598345 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:12:36.618586 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:12:37.599952 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:12:37.627636 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:12:38.634163 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:12:38.691443 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:12:39.647074 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:12:39.775645 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:12:40.673058 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:12:40.829844 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:12:41.920703 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:12:41.925346 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:12:45.731682 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:12:45.736832 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:12:47.370177 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:12:47.370736 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:12:48.512920 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:12:48.605322 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:12:49.539632 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:12:49.811724 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:12:50.670119 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:12:51.518010 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:12:51.769327 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:12:52.749193 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:12:52.807586 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:12:53.764190 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:12:53.809353 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:12:54.778417 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:12:55.055047 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:12:55.786254 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:12:56.490451 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-07T13:12:56.495845 #7] ERROR -- : Timed out while waiting for response 1 +E, [2018-08-07T13:12:56.771291 #7] ERROR -- : Timed out while waiting for response 1 +I, [2018-08-07T13:12:57.163013 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-07T13:12:57.163179 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection error Errno::ETIMEDOUT: Operation timed out +E, [2018-08-07T13:12:57.576325 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection error Errno::ETIMEDOUT: Operation timed out +E, [2018-08-07T13:12:57.672062 #7] ERROR -- : Connection error while trying to join group `notifications_notifications`; retrying... +I, [2018-08-07T13:12:57.721507 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-07T13:12:57.733743 #7] ERROR -- : Connection error while trying to join group `notifications_course_change`; retrying... +I, [2018-08-07T13:12:58.164096 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:12:58.730168 #7] INFO -- : Joining group `notifications_notifications` +I, [2018-08-07T13:12:58.732230 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T13:12:58.791648 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:12:58.791787 #7] INFO -- : Joining group `notifications_course_change` +I, [2018-08-07T13:12:58.791869 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T13:12:59.203697 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:12:59.793552 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:12:59.839073 #7] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-07T13:13:00.204540 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-07T13:13:00.429711 #7] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-07T13:13:00.667449 #7] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-07T13:13:00.847973 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:13:01.355833 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:13:01.495803 #7] INFO -- : Joining group `notifications_course_change` +E, [2018-08-07T13:13:01.525733 #7] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-07T13:13:01.848535 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:13:02.900787 #7] INFO -- : Joining group `notifications_notifications` +I, [2018-08-07T13:13:03.107709 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:13:02.899271 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:13:04.117155 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:13:04.162601 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:13:05.117881 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:13:05.179902 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:13:05.306829 #7] INFO -- : Joined group `notifications_course_change` with member id `notifications-d81b7d08-8b37-4e1b-bde3-488be37b5a69` +I, [2018-08-07T13:13:05.307005 #7] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-07T13:13:05.444009 #7] INFO -- : Joined group `notifications_notifications` with member id `notifications-caeb4b72-dd5f-46f9-af0a-017a4aa51a64` +I, [2018-08-07T13:13:05.444227 #7] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-07T13:13:06.058121 #7] INFO -- : Partitions assigned for `course_change`: 0 +I, [2018-08-07T13:13:06.226717 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:13:06.233164 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:13:06.278149 #7] INFO -- : Partitions assigned for `section_change`: 0 +I, [2018-08-07T13:13:06.933937 #7] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-07T13:13:07.097995 #7] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-07T13:13:07.242944 #7] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-07T13:13:07.243093 #7] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-07T13:13:07.381911 #7] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-07T13:13:07.382023 #7] INFO -- : Seeking section_change/0 to offset 0 +E, [2018-08-07T13:13:09.144375 #7] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- ArgumentError: wrong number of arguments (given 2, expected 1) +/usr/src/app/app/controllers/eventstream.rb:17:in `publish' +/usr/src/app/app/controllers/eventstream.rb:17:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-07T13:13:09.144646 #7] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-07T13:13:09.145885 #7] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- ArgumentError: wrong number of arguments (given 2, expected 1) +/usr/src/app/app/controllers/eventstream.rb:17:in `publish' +/usr/src/app/app/controllers/eventstream.rb:17:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-07T13:13:09.149109 #7] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-07T13:13:09.188967 #7] ERROR -- : Client fetch loop error: wrong number of arguments (given 2, expected 1) +I, [2018-08-07T13:13:09.191810 #7] INFO -- : Joining group `notifications_course_change` +E, [2018-08-07T13:13:09.196985 #7] ERROR -- : Client fetch loop error: wrong number of arguments (given 2, expected 1) +I, [2018-08-07T13:13:09.203971 #7] INFO -- : Joining group `notifications_notifications` +E, [2018-08-07T13:13:09.282752 #7] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-07T13:13:09.413324 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-07T13:13:09.413576 #7] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-07T13:13:09.571222 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:13:10.289946 #7] INFO -- : Joining group `notifications_notifications` +I, [2018-08-07T13:13:10.515389 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:13:10.515502 #7] INFO -- : Joining group `notifications_course_change` +I, [2018-08-07T13:13:10.581831 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:13:10.834291 #7] INFO -- : Joined group `notifications_notifications` with member id `notifications-5bcb5c00-b339-4c61-be54-de7a4f70bb05` +I, [2018-08-07T13:13:10.853885 #7] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-07T13:13:11.968368 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:13:12.111936 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:13:12.859687 #7] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-07T13:13:12.861131 #7] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-07T13:13:12.970459 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:13:13.055507 #7] INFO -- : Joined group `notifications_course_change` with member id `notifications-ca6bdec6-6ad8-42fc-bfd9-0ae98c3f9602` +I, [2018-08-07T13:13:13.055594 #7] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-07T13:13:13.125870 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:13:13.204515 #7] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-07T13:13:13.205001 #7] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-07T13:13:13.976489 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:13:14.148560 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:13:14.977768 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:13:15.149498 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:13:15.980427 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:13:16.153920 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:13:16.983239 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:13:17.175852 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:13:17.985191 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:13:18.192256 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:13:18.989853 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:13:19.206131 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:13:19.265186 #7] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-07T13:13:19.990781 #7] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-07T13:13:20.359124 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:13:21.198199 #7] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +E, [2018-08-07T13:13:21.181058 #7] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- ArgumentError: wrong number of arguments (given 2, expected 1) +/usr/src/app/app/controllers/eventstream.rb:17:in `publish' +/usr/src/app/app/controllers/eventstream.rb:17:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-07T13:13:21.181279 #7] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-07T13:13:21.245397 #7] ERROR -- : Client fetch loop error: wrong number of arguments (given 2, expected 1) +I, [2018-08-07T13:13:21.247313 #7] INFO -- : Joining group `notifications_course_change` +I, [2018-08-07T13:13:21.256620 #7] INFO -- : Seeking section_change/0 to offset 0 +E, [2018-08-07T13:13:21.258912 #7] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-07T13:13:21.393023 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:13:22.259651 #7] INFO -- : Joining group `notifications_course_change` +I, [2018-08-07T13:13:22.295560 #7] INFO -- : Joined group `notifications_course_change` with member id `notifications-990433e1-3eb2-46c2-a89b-d268bd7601fb` +I, [2018-08-07T13:13:22.295619 #7] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-07T13:13:22.314735 #7] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-07T13:13:22.314892 #7] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-07T13:13:22.405963 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-07T13:13:23.148918 #7] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- ArgumentError: wrong number of arguments (given 2, expected 1) +/usr/src/app/app/controllers/eventstream.rb:17:in `publish' +/usr/src/app/app/controllers/eventstream.rb:17:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-07T13:13:23.149200 #7] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-07T13:13:23.404373 #7] ERROR -- : Client fetch loop error: wrong number of arguments (given 2, expected 1) +I, [2018-08-07T13:13:23.432908 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:13:23.494785 #7] INFO -- : Joining group `notifications_notifications` +E, [2018-08-07T13:13:23.571352 #7] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-07T13:13:24.047970 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:13:24.434227 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:13:24.605239 #7] INFO -- : Joining group `notifications_notifications` +I, [2018-08-07T13:13:24.659546 #7] INFO -- : Joined group `notifications_notifications` with member id `notifications-77ba3b7c-cddf-4396-9404-45e8e09d4d0b` +I, [2018-08-07T13:13:24.659678 #7] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-07T13:13:24.673483 #7] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-07T13:13:24.673717 #7] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-07T13:13:25.050481 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:13:25.434694 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:13:26.051115 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:13:27.657556 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:13:27.658659 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:13:28.658471 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:13:28.659971 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:13:29.661083 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:13:29.661262 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:13:30.665240 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:13:30.665885 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:13:31.780402 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:13:31.902820 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:13:32.387068 #7] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-07T13:13:32.902340 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:13:32.903184 #7] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-07T13:13:33.904875 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:13:33.915548 #7] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +E, [2018-08-07T13:13:34.689102 #7] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- ArgumentError: wrong number of arguments (given 2, expected 1) +/usr/src/app/app/controllers/eventstream.rb:17:in `publish' +/usr/src/app/app/controllers/eventstream.rb:17:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-07T13:13:34.895664 #7] INFO -- : Leaving group `notifications_course_change` +I, [2018-08-07T13:13:34.908436 #7] INFO -- : Seeking section_change/0 to offset 0 +E, [2018-08-07T13:13:34.926419 #7] ERROR -- : Client fetch loop error: wrong number of arguments (given 2, expected 1) +I, [2018-08-07T13:13:34.927501 #7] INFO -- : Joining group `notifications_course_change` +E, [2018-08-07T13:13:34.946278 #7] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-07T13:13:35.356497 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:13:35.946578 #7] INFO -- : Joining group `notifications_course_change` +I, [2018-08-07T13:13:35.962036 #7] INFO -- : Joined group `notifications_course_change` with member id `notifications-cb3189bf-7afe-4c58-b228-601fa5494aae` +I, [2018-08-07T13:13:35.962116 #7] INFO -- : Chosen as leader of group `notifications_course_change` +E, [2018-08-07T13:13:35.981038 #7] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- ArgumentError: wrong number of arguments (given 2, expected 1) +/usr/src/app/app/controllers/eventstream.rb:17:in `publish' +/usr/src/app/app/controllers/eventstream.rb:17:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-07T13:13:35.981218 #7] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-07T13:13:36.066520 #7] ERROR -- : Client fetch loop error: wrong number of arguments (given 2, expected 1) +I, [2018-08-07T13:13:36.066890 #7] INFO -- : Joining group `notifications_notifications` +I, [2018-08-07T13:13:36.068646 #7] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-07T13:13:36.068728 #7] WARN -- : Not fetching from course_change/0 due to pause +E, [2018-08-07T13:13:36.096578 #7] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-07T13:13:36.360559 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:13:36.586353 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:13:37.099335 #7] INFO -- : Joining group `notifications_notifications` +I, [2018-08-07T13:13:37.186031 #7] INFO -- : Joined group `notifications_notifications` with member id `notifications-7520beaa-6658-4275-8594-563732d0f92a` +I, [2018-08-07T13:13:37.186210 #7] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-07T13:13:37.235318 #7] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-07T13:13:37.235447 #7] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-07T13:13:37.371389 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:13:37.586794 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:13:38.371753 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:13:38.594677 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:13:39.385343 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:13:39.646275 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:13:40.385947 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:13:40.665168 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:13:41.392864 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:13:41.666053 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:13:42.394662 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:13:42.666696 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:13:43.395417 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:13:43.666982 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:13:44.396811 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:13:44.668023 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:13:45.397438 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:13:45.668432 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:13:46.090946 #7] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-07T13:13:46.398233 #7] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-07T13:13:46.668830 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:13:47.257542 #7] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-07T13:13:47.669157 #7] INFO -- : Seeking section_change/0 to offset 0 +E, [2018-08-07T13:13:48.098700 #7] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- ArgumentError: wrong number of arguments (given 2, expected 1) +/usr/src/app/app/controllers/eventstream.rb:17:in `publish' +/usr/src/app/app/controllers/eventstream.rb:17:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-07T13:13:48.109448 #7] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-07T13:13:48.135729 #7] ERROR -- : Client fetch loop error: wrong number of arguments (given 2, expected 1) +I, [2018-08-07T13:13:48.136920 #7] INFO -- : Joining group `notifications_course_change` +E, [2018-08-07T13:13:48.139356 #7] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-07T13:13:48.339661 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:13:49.169629 #7] INFO -- : Joining group `notifications_course_change` +I, [2018-08-07T13:13:49.295460 #7] INFO -- : Joined group `notifications_course_change` with member id `notifications-83abe400-66cb-4e56-bcb9-72a437093c6e` +I, [2018-08-07T13:13:49.295578 #7] INFO -- : Chosen as leader of group `notifications_course_change` +E, [2018-08-07T13:13:49.297501 #7] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- ArgumentError: wrong number of arguments (given 2, expected 1) +/usr/src/app/app/controllers/eventstream.rb:17:in `publish' +/usr/src/app/app/controllers/eventstream.rb:17:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-07T13:13:49.297679 #7] INFO -- : Leaving group `notifications_notifications` +I, [2018-08-07T13:13:49.306941 #7] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-07T13:13:49.311708 #7] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-07T13:13:49.341723 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-07T13:13:49.344243 #7] ERROR -- : Client fetch loop error: wrong number of arguments (given 2, expected 1) +I, [2018-08-07T13:13:49.347819 #7] INFO -- : Joining group `notifications_notifications` +E, [2018-08-07T13:13:49.368734 #7] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-07T13:13:49.613756 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:13:50.342748 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:13:50.369345 #7] INFO -- : Joining group `notifications_notifications` +I, [2018-08-07T13:13:50.389998 #7] INFO -- : Joined group `notifications_notifications` with member id `notifications-e83b0d3c-2d8c-4b1e-9fd5-f5d8cb6d6486` +I, [2018-08-07T13:13:50.390061 #7] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-07T13:13:50.393046 #7] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-07T13:13:50.393119 #7] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-07T13:13:50.614063 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:13:51.308615 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:13:51.582390 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:13:52.316827 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:13:52.583050 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:13:53.318429 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:13:53.587042 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:13:54.319119 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:13:54.587642 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:13:55.320094 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:13:55.588324 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:13:56.320507 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:13:56.591481 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:13:57.320864 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:13:57.592486 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:13:58.321504 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:13:58.593086 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:13:59.320263 #7] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-07T13:13:59.321805 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:13:59.593577 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:14:00.322417 #7] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-07T13:14:00.371407 #7] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-07T13:14:00.594017 #7] INFO -- : Seeking section_change/0 to offset 0 +E, [2018-08-07T13:14:01.334834 #7] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- ArgumentError: wrong number of arguments (given 2, expected 1) +/usr/src/app/app/controllers/eventstream.rb:17:in `publish' +/usr/src/app/app/controllers/eventstream.rb:17:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-07T13:14:01.353742 #7] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-07T13:14:01.362191 #7] ERROR -- : Client fetch loop error: wrong number of arguments (given 2, expected 1) +I, [2018-08-07T13:14:01.362492 #7] INFO -- : Joining group `notifications_course_change` +E, [2018-08-07T13:14:01.372148 #7] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-07T13:14:01.735782 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:14:02.372507 #7] INFO -- : Joining group `notifications_course_change` +E, [2018-08-07T13:14:02.376615 #7] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- ArgumentError: wrong number of arguments (given 2, expected 1) +/usr/src/app/app/controllers/eventstream.rb:17:in `publish' +/usr/src/app/app/controllers/eventstream.rb:17:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-07T13:14:02.376693 #7] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-07T13:14:02.397986 #7] ERROR -- : Client fetch loop error: wrong number of arguments (given 2, expected 1) +I, [2018-08-07T13:14:02.398331 #7] INFO -- : Joining group `notifications_notifications` +I, [2018-08-07T13:14:02.410432 #7] INFO -- : Joined group `notifications_course_change` with member id `notifications-a71f0fa5-fdcd-4746-8bd2-1c254b707223` +I, [2018-08-07T13:14:02.410495 #7] INFO -- : Chosen as leader of group `notifications_course_change` +E, [2018-08-07T13:14:02.410903 #7] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-07T13:14:02.445783 #7] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-07T13:14:02.445871 #7] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-07T13:14:02.741172 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:14:03.194524 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:14:03.411286 #7] INFO -- : Joining group `notifications_notifications` +I, [2018-08-07T13:14:03.439549 #7] INFO -- : Joined group `notifications_notifications` with member id `notifications-f96e1721-fe0b-4d71-a0c0-079c8a9e1162` +I, [2018-08-07T13:14:03.439676 #7] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-07T13:14:03.482640 #7] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-07T13:14:03.482756 #7] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-07T13:14:03.742831 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:14:04.326742 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:14:04.890281 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:14:05.358009 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:14:05.894291 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:14:06.372679 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:14:06.909883 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:14:07.373208 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:14:07.912344 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:14:08.373655 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:14:08.915360 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:14:09.374600 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:14:09.916960 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:14:10.374999 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:14:10.918855 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:14:11.375369 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:14:11.919442 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:14:12.523280 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:14:12.747746 #7] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-07T13:14:13.012606 #7] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-07T13:14:13.523965 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:14:13.622313 #7] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-07T13:14:14.535925 #7] INFO -- : Seeking section_change/0 to offset 0 +E, [2018-08-07T13:14:15.021086 #7] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- ArgumentError: wrong number of arguments (given 2, expected 1) +/usr/src/app/app/controllers/eventstream.rb:17:in `publish' +/usr/src/app/app/controllers/eventstream.rb:17:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-07T13:14:15.024774 #7] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-07T13:14:15.045673 #7] ERROR -- : Client fetch loop error: wrong number of arguments (given 2, expected 1) +I, [2018-08-07T13:14:15.046247 #7] INFO -- : Joining group `notifications_course_change` +E, [2018-08-07T13:14:15.050909 #7] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-07T13:14:15.170099 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-07T13:14:15.628576 #7] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- ArgumentError: wrong number of arguments (given 2, expected 1) +/usr/src/app/app/controllers/eventstream.rb:17:in `publish' +/usr/src/app/app/controllers/eventstream.rb:17:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-07T13:14:15.628655 #7] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-07T13:14:15.690410 #7] ERROR -- : Client fetch loop error: wrong number of arguments (given 2, expected 1) +I, [2018-08-07T13:14:15.691114 #7] INFO -- : Joining group `notifications_notifications` +E, [2018-08-07T13:14:15.697694 #7] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-07T13:14:15.943875 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:14:16.051135 #7] INFO -- : Joining group `notifications_course_change` +I, [2018-08-07T13:14:16.058658 #7] INFO -- : Joined group `notifications_course_change` with member id `notifications-9a6bfa1b-69e1-4066-9333-e4e4adcc7c8e` +I, [2018-08-07T13:14:16.058706 #7] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-07T13:14:16.065544 #7] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-07T13:14:16.065641 #7] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-07T13:14:16.170608 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:14:16.697922 #7] INFO -- : Joining group `notifications_notifications` +I, [2018-08-07T13:14:16.703996 #7] INFO -- : Joined group `notifications_notifications` with member id `notifications-5df5891e-b0f2-43e6-b3f0-1f8cf95dfa90` +I, [2018-08-07T13:14:16.704055 #7] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-07T13:14:16.707635 #7] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-07T13:14:16.707715 #7] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-07T13:14:16.944484 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:14:17.171191 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:14:17.944932 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:14:18.171622 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:14:18.945683 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:14:19.172135 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:14:19.946588 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:14:20.172624 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:14:20.947077 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:14:21.137198 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:14:21.911500 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:14:22.137888 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:14:22.912319 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:14:23.138277 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:14:23.915341 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:14:24.143119 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:14:24.915665 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:14:25.166544 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:14:25.916770 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:14:26.041141 #7] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-07T13:14:26.167911 #7] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-07T13:14:26.719973 #7] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-07T13:14:26.917417 #7] INFO -- : Seeking section_change/0 to offset 0 +E, [2018-08-07T13:14:28.045755 #7] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- ArgumentError: wrong number of arguments (given 2, expected 1) +/usr/src/app/app/controllers/eventstream.rb:17:in `publish' +/usr/src/app/app/controllers/eventstream.rb:17:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-07T13:14:28.058539 #7] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-07T13:14:28.067065 #7] ERROR -- : Client fetch loop error: wrong number of arguments (given 2, expected 1) +I, [2018-08-07T13:14:28.067248 #7] INFO -- : Joining group `notifications_course_change` +E, [2018-08-07T13:14:28.069398 #7] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-07T13:14:28.113270 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-07T13:14:28.729297 #7] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- ArgumentError: wrong number of arguments (given 2, expected 1) +/usr/src/app/app/controllers/eventstream.rb:17:in `publish' +/usr/src/app/app/controllers/eventstream.rb:17:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-07T13:14:28.729352 #7] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-07T13:14:28.738839 #7] ERROR -- : Client fetch loop error: wrong number of arguments (given 2, expected 1) +I, [2018-08-07T13:14:28.739038 #7] INFO -- : Joining group `notifications_notifications` +E, [2018-08-07T13:14:28.741081 #7] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-07T13:14:28.872648 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:14:29.069852 #7] INFO -- : Joining group `notifications_course_change` +I, [2018-08-07T13:14:29.078438 #7] INFO -- : Joined group `notifications_course_change` with member id `notifications-eefd0454-8834-4f03-b60f-deb8cba2240b` +I, [2018-08-07T13:14:29.078499 #7] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-07T13:14:29.083349 #7] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-07T13:14:29.083441 #7] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-07T13:14:29.113723 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:14:29.741322 #7] INFO -- : Joining group `notifications_notifications` +I, [2018-08-07T13:14:29.751557 #7] INFO -- : Joined group `notifications_notifications` with member id `notifications-425e451e-536d-4031-9331-6fe040c9a387` +I, [2018-08-07T13:14:29.751621 #7] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-07T13:14:29.757662 #7] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-07T13:14:29.757961 #7] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-07T13:14:29.873119 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:14:30.114015 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:14:30.873625 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:14:31.114398 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:14:31.874110 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:14:32.114710 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:14:32.874512 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:14:33.115730 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:14:33.875249 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:14:34.116289 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:14:34.875976 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:14:35.116708 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:14:35.876553 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:14:36.117075 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:14:36.878007 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:14:37.117444 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:14:37.880137 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:14:38.117942 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:14:38.881311 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:14:39.105660 #7] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-07T13:14:39.273156 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:14:39.767255 #7] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-07T13:14:39.881901 #7] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-07T13:14:40.679248 #7] INFO -- : Seeking course_change/0 to offset 0 +E, [2018-08-07T13:14:41.345203 #7] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- ArgumentError: wrong number of arguments (given 2, expected 1) +/usr/src/app/app/controllers/eventstream.rb:17:in `publish' +/usr/src/app/app/controllers/eventstream.rb:17:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-07T13:14:41.359555 #7] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-07T13:14:41.366586 #7] ERROR -- : Client fetch loop error: wrong number of arguments (given 2, expected 1) +I, [2018-08-07T13:14:41.369206 #7] INFO -- : Joining group `notifications_course_change` +E, [2018-08-07T13:14:41.370622 #7] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-07T13:14:41.461429 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-07T13:14:41.834625 #7] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- ArgumentError: wrong number of arguments (given 2, expected 1) +/usr/src/app/app/controllers/eventstream.rb:17:in `publish' +/usr/src/app/app/controllers/eventstream.rb:17:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-07T13:14:41.834693 #7] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-07T13:14:41.837310 #7] ERROR -- : Client fetch loop error: wrong number of arguments (given 2, expected 1) +I, [2018-08-07T13:14:41.837587 #7] INFO -- : Joining group `notifications_notifications` +E, [2018-08-07T13:14:41.838769 #7] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-07T13:14:41.877911 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:14:42.371529 #7] INFO -- : Joining group `notifications_course_change` +I, [2018-08-07T13:14:42.430436 #7] INFO -- : Joined group `notifications_course_change` with member id `notifications-de6cc874-2003-4d04-a7bc-a7ff2852a3ac` +I, [2018-08-07T13:14:42.430504 #7] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-07T13:14:42.448594 #7] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-07T13:14:42.448694 #7] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-07T13:14:42.475423 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:14:42.942019 #7] INFO -- : Joining group `notifications_notifications` +I, [2018-08-07T13:14:43.050132 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:14:43.542315 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:14:43.760849 #7] INFO -- : Joined group `notifications_notifications` with member id `notifications-9d31de0c-f58b-4905-870d-88e14acce5fa` +I, [2018-08-07T13:14:43.763780 #7] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-07T13:14:44.006813 #7] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-07T13:14:44.010394 #7] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-07T13:14:44.251132 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:14:44.858873 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:14:45.254733 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:14:45.859730 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:14:46.255132 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:14:46.860366 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:14:47.255615 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:14:47.860784 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:14:48.256059 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:14:48.861612 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:14:49.256820 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:14:49.862393 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:14:50.257409 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:14:50.862825 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:14:51.222826 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:14:51.828114 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:14:52.226695 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:14:52.828690 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:14:53.059531 #7] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-07T13:14:53.115066 #7] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-07T13:14:53.250593 #7] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-07T13:14:53.844630 #7] INFO -- : Seeking course_change/0 to offset 0 +E, [2018-08-07T13:14:55.068786 #7] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- ArgumentError: wrong number of arguments (given 2, expected 1) +/usr/src/app/app/controllers/eventstream.rb:17:in `publish' +/usr/src/app/app/controllers/eventstream.rb:17:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-07T13:24:16.761144 #7] INFO -- : New topics added to target list: course_change +I, [2018-08-07T13:24:16.761301 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T13:24:16.781290 #7] INFO -- : New topics added to target list: section_change +I, [2018-08-07T13:24:16.781377 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T13:24:16.790732 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T13:24:16.791123 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T13:24:16.793050 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T13:24:16.793254 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T13:24:21.758159 #7] 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.14:9094 +I, [2018-08-07T13:24:21.759889 #7] INFO -- : New topics added to target list: course_change +I, [2018-08-07T13:24:21.759941 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T13:24:21.760289 #7] 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.14:9094 +I, [2018-08-07T13:24:21.761904 #7] INFO -- : New topics added to target list: section_change +I, [2018-08-07T13:24:21.762120 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T13:24:21.765410 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T13:24:21.765978 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T13:24:21.766790 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T13:24:21.767420 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T13:24:26.766665 #7] 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.14:9094 +I, [2018-08-07T13:24:26.767565 #7] INFO -- : New topics added to target list: course_change +I, [2018-08-07T13:24:26.767618 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T13:24:26.770201 #7] 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.14:9094 +I, [2018-08-07T13:24:26.772675 #7] INFO -- : New topics added to target list: section_change +I, [2018-08-07T13:24:26.772801 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T13:24:28.659448 #7] ERROR -- : No brokers in cluster +E, [2018-08-07T13:24:28.665446 #7] ERROR -- : No brokers in cluster +E, [2018-08-07T13:24:33.660123 #7] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: + +I, [2018-08-07T13:24:33.661542 #7] INFO -- : New topics added to target list: course_change +I, [2018-08-07T13:24:33.661614 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T13:24:33.665946 #7] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: + +I, [2018-08-07T13:24:33.671070 #7] INFO -- : New topics added to target list: section_change +I, [2018-08-07T13:24:33.671196 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T13:24:33.815257 #7] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-07T13:24:33.815564 #7] INFO -- : Joining group `notifications_notifications` +I, [2018-08-07T13:24:33.832775 #7] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-07T13:24:33.832971 #7] INFO -- : Joining group `notifications_course_change` +I, [2018-08-07T13:24:33.862343 #7] INFO -- : Will fetch at most 1048576 bytes at a time per partition from course_change +I, [2018-08-07T13:24:33.862503 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T13:24:33.871809 #7] INFO -- : Will fetch at most 1048576 bytes at a time per partition from section_change +I, [2018-08-07T13:24:33.872409 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T13:24:33.876374 #7] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-07T13:24:33.876499 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:24:33.880812 #7] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-07T13:24:33.880922 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:24:34.876964 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:24:34.881304 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:24:35.877698 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:24:35.881731 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:24:36.878041 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:24:36.882182 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:24:37.892914 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:24:37.895626 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:24:38.896031 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:24:38.896184 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:24:39.896543 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:24:39.896881 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:24:40.567580 #7] INFO -- : Joined group `notifications_course_change` with member id `notifications-9bb19414-0818-42ca-8ad4-f170b989df61` +I, [2018-08-07T13:24:40.567987 #7] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-07T13:24:40.633643 #7] INFO -- : Joined group `notifications_notifications` with member id `notifications-bb8046e0-ab54-4e48-a1a6-9b8e028a05d4` +I, [2018-08-07T13:24:40.634138 #7] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-07T13:24:40.901729 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:24:40.903346 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:24:41.608063 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T13:24:41.776724 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T13:24:41.903315 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:24:41.903703 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:24:41.907308 #7] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-07T13:24:41.926419 #7] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-07T13:24:42.077128 #7] INFO -- : Partitions assigned for `course_change`: 0 +I, [2018-08-07T13:24:42.078726 #7] INFO -- : Partitions assigned for `section_change`: 0 +I, [2018-08-07T13:24:42.905809 #7] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-07T13:24:42.905915 #7] INFO -- : New topics added to target list: section_change +I, [2018-08-07T13:24:42.905949 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T13:24:42.906385 #7] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-07T13:24:42.906495 #7] INFO -- : New topics added to target list: course_change +I, [2018-08-07T13:24:42.907775 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T13:24:42.934824 #7] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-07T13:24:42.936767 #7] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +E, [2018-08-07T13:24:50.499676 #7] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- TypeError: wrong argument type String (expected Hash) +/usr/src/app/app/controllers/eventstream.rb:17:in `publish' +/usr/src/app/app/controllers/eventstream.rb:17:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-07T13:24:50.504484 #7] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-07T13:24:50.512351 #7] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- TypeError: wrong argument type String (expected Hash) +/usr/src/app/app/controllers/eventstream.rb:17:in `publish' +/usr/src/app/app/controllers/eventstream.rb:17:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-07T13:24:50.512408 #7] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-07T13:24:50.578649 #7] ERROR -- : Client fetch loop error: wrong argument type String (expected Hash) +I, [2018-08-07T13:24:50.580401 #7] INFO -- : Joining group `notifications_course_change` +E, [2018-08-07T13:24:50.595841 #7] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-08-07T13:24:50.618183 #7] ERROR -- : Client fetch loop error: wrong argument type String (expected Hash) +I, [2018-08-07T13:24:50.621163 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:24:50.621417 #7] INFO -- : Joining group `notifications_notifications` +E, [2018-08-07T13:24:50.628033 #7] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-07T13:24:51.034784 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:24:51.562370 #7] INFO -- : Joining group `notifications_course_change` +I, [2018-08-07T13:24:51.587752 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:24:51.594667 #7] INFO -- : Joining group `notifications_notifications` +I, [2018-08-07T13:24:51.596298 #7] INFO -- : Joined group `notifications_course_change` with member id `notifications-b755488f-8a0b-4ba4-afa4-e904c69793cd` +I, [2018-08-07T13:24:51.596350 #7] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-07T13:24:51.621211 #7] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-07T13:24:51.621379 #7] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-07T13:24:51.650588 #7] INFO -- : Joined group `notifications_notifications` with member id `notifications-75101a10-4501-49b1-937f-92a912aba1cf` +I, [2018-08-07T13:24:51.650656 #7] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-07T13:24:51.669078 #7] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-07T13:24:51.669166 #7] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-07T13:24:52.003200 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:24:52.588268 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:24:53.003648 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:24:53.590743 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:24:54.004281 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:24:54.591077 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:24:55.007655 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:24:55.591982 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:24:56.008017 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:24:56.594929 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:24:57.008372 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:24:57.595884 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:24:58.008707 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:24:58.597781 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:24:59.009101 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:24:59.598235 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:25:00.012126 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:25:00.598556 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:25:01.013321 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:25:01.599025 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:25:01.638781 #7] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-07T13:25:01.720937 #7] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-07T13:25:02.027956 #7] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-07T13:25:02.600409 #7] INFO -- : Seeking section_change/0 to offset 0 +E, [2018-08-07T13:25:08.091684 #7] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- TypeError: wrong argument type String (expected Hash) +/usr/src/app/app/controllers/eventstream.rb:17:in `publish' +/usr/src/app/app/controllers/eventstream.rb:17:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-07T13:25:08.092604 #7] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-07T13:25:08.155009 #7] ERROR -- : Client fetch loop error: wrong argument type String (expected Hash) +I, [2018-08-07T13:25:08.222614 #7] INFO -- : Joining group `notifications_course_change` +I, [2018-08-07T13:25:08.260312 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-07T13:25:09.928389 #7] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-07T13:25:10.419759 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:25:10.930306 #7] INFO -- : Joining group `notifications_course_change` +I, [2018-08-07T13:25:11.371394 #7] INFO -- : Joined group `notifications_course_change` with member id `notifications-e4ae7fa1-1168-4bba-9e24-b7b0be1081bb` +I, [2018-08-07T13:25:11.371602 #7] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-07T13:25:11.561235 #7] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-07T13:25:11.561767 #7] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-07T13:25:11.577210 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-07T13:25:12.401772 #7] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- TypeError: wrong argument type String (expected Hash) +/usr/src/app/app/controllers/eventstream.rb:17:in `publish' +/usr/src/app/app/controllers/eventstream.rb:17:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-07T13:25:12.444697 #7] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-07T13:25:12.512859 #7] ERROR -- : Client fetch loop error: wrong argument type String (expected Hash) +I, [2018-08-07T13:25:12.579785 #7] INFO -- : Joining group `notifications_notifications` +I, [2018-08-07T13:25:12.600746 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-07T13:25:12.612529 #7] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-07T13:25:12.677348 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:25:13.603754 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:25:13.613213 #7] INFO -- : Joining group `notifications_notifications` +I, [2018-08-07T13:25:13.630478 #7] INFO -- : Joined group `notifications_notifications` with member id `notifications-f00a08f9-f4cd-427d-ae47-d7dbbde98c73` +I, [2018-08-07T13:25:13.630538 #7] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-07T13:25:13.662130 #7] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-07T13:25:13.662218 #7] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-07T13:25:13.677909 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:25:14.605461 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:25:14.679019 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:25:15.606976 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:25:15.680378 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:25:16.617696 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:25:16.681517 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:25:18.240672 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:25:18.243087 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:25:18.294591 #7] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-07T13:25:19.242465 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:25:19.244244 #7] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-07T13:25:20.244304 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-07T13:25:20.358818 #7] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- TypeError: wrong argument type String (expected Hash) +/usr/src/app/app/controllers/eventstream.rb:17:in `publish' +/usr/src/app/app/controllers/eventstream.rb:17:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-07T13:25:20.370432 #7] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-07T13:25:20.382642 #7] ERROR -- : Client fetch loop error: wrong argument type String (expected Hash) +I, [2018-08-07T13:25:20.384530 #7] INFO -- : Joining group `notifications_course_change` +E, [2018-08-07T13:25:20.436906 #7] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-07T13:25:21.281943 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:25:21.453877 #7] INFO -- : Joining group `notifications_course_change` +I, [2018-08-07T13:25:25.493202 #7] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-07T13:25:25.503261 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:25:25.504238 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:25:25.505118 #7] INFO -- : Joined group `notifications_course_change` with member id `notifications-7290ea6e-f63a-4cab-b8dc-46f09322b41e` +I, [2018-08-07T13:25:25.505179 #7] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-07T13:25:25.704447 #7] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-07T13:25:25.704680 #7] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-07T13:25:26.504240 #7] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-07T13:25:26.576989 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:25:27.577499 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-07T13:25:27.699600 #7] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- TypeError: wrong argument type String (expected Hash) +/usr/src/app/app/controllers/eventstream.rb:17:in `publish' +/usr/src/app/app/controllers/eventstream.rb:17:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-07T13:25:27.699663 #7] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-07T13:25:27.715331 #7] ERROR -- : Client fetch loop error: wrong argument type String (expected Hash) +I, [2018-08-07T13:25:27.715687 #7] INFO -- : Joining group `notifications_notifications` +E, [2018-08-07T13:25:27.722552 #7] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-07T13:25:27.996599 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:25:28.578999 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:25:28.739532 #7] INFO -- : Joining group `notifications_notifications` +I, [2018-08-07T13:25:28.880853 #7] INFO -- : Joined group `notifications_notifications` with member id `notifications-ac326f5f-5e80-423f-938a-5ba810805a0b` +I, [2018-08-07T13:25:28.880917 #7] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-07T13:25:28.888400 #7] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-07T13:25:28.888473 #7] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-07T13:25:28.997018 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:25:29.579335 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:25:29.997311 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:25:30.579730 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:25:30.997771 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:25:31.587769 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:25:31.719554 #7] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-07T13:25:31.998190 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:25:32.590263 #7] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-07T13:25:33.176095 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-07T13:25:33.991267 #7] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- TypeError: wrong argument type String (expected Hash) +/usr/src/app/app/controllers/eventstream.rb:17:in `publish' +/usr/src/app/app/controllers/eventstream.rb:17:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-07T13:25:33.993479 #7] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-07T13:25:34.052155 #7] ERROR -- : Client fetch loop error: wrong argument type String (expected Hash) +I, [2018-08-07T13:25:34.052534 #7] INFO -- : Joining group `notifications_course_change` +E, [2018-08-07T13:25:34.055156 #7] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-07T13:25:34.136159 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:25:34.176662 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:25:35.055356 #7] INFO -- : Joining group `notifications_course_change` +I, [2018-08-07T13:25:35.060269 #7] INFO -- : Joined group `notifications_course_change` with member id `notifications-d945f12c-6e39-47b0-8ca4-baa5949da1a9` +I, [2018-08-07T13:25:35.060326 #7] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-07T13:25:35.088393 #7] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-07T13:25:35.088489 #7] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-07T13:25:35.136600 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:25:35.177250 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:25:36.137332 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:25:36.177620 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:25:37.139436 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:25:37.178023 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:25:38.139827 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:25:38.178587 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:25:39.140206 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:25:39.174778 #7] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-07T13:25:39.178847 #7] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-07T13:25:40.140623 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:25:41.140940 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-07T13:25:41.177739 #7] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- TypeError: wrong argument type String (expected Hash) +/usr/src/app/app/controllers/eventstream.rb:17:in `publish' +/usr/src/app/app/controllers/eventstream.rb:17:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-07T13:25:41.177820 #7] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-07T13:25:41.191873 #7] ERROR -- : Client fetch loop error: wrong argument type String (expected Hash) +I, [2018-08-07T13:25:41.192271 #7] INFO -- : Joining group `notifications_notifications` +E, [2018-08-07T13:25:41.201766 #7] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-07T13:25:41.297005 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:25:42.141275 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:25:42.202032 #7] INFO -- : Joining group `notifications_notifications` +I, [2018-08-07T13:25:42.206307 #7] INFO -- : Joined group `notifications_notifications` with member id `notifications-e5c4377f-f1c9-4024-bcb3-ddf6954ee3c3` +I, [2018-08-07T13:25:42.206362 #7] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-07T13:25:42.209669 #7] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-07T13:25:42.209752 #7] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-07T13:25:42.297418 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:25:43.147034 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:25:43.408452 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:25:44.147527 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:25:44.409059 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:25:45.098344 #7] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-07T13:25:45.147901 #7] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-07T13:25:45.409512 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:25:46.409903 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-07T13:25:47.105074 #7] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- TypeError: wrong argument type String (expected Hash) +/usr/src/app/app/controllers/eventstream.rb:17:in `publish' +/usr/src/app/app/controllers/eventstream.rb:17:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-07T13:25:47.106181 #7] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-07T13:25:47.138765 #7] ERROR -- : Client fetch loop error: wrong argument type String (expected Hash) +I, [2018-08-07T13:25:47.139721 #7] INFO -- : Joining group `notifications_course_change` +E, [2018-08-07T13:25:47.145553 #7] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-07T13:25:47.183414 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:25:47.410379 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:25:48.145776 #7] INFO -- : Joining group `notifications_course_change` +I, [2018-08-07T13:25:48.150345 #7] INFO -- : Joined group `notifications_course_change` with member id `notifications-cad657f8-56ab-4c12-949f-d96c0f424608` +I, [2018-08-07T13:25:48.150404 #7] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-07T13:25:48.159738 #7] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-07T13:25:48.159805 #7] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-07T13:25:48.184351 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:25:48.410727 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:25:49.188350 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:25:49.411181 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:25:50.189540 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:25:50.411907 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:25:51.189994 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:25:51.412206 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:25:52.139970 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:25:52.167139 #7] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-07T13:25:52.362272 #7] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-07T13:25:53.140357 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:25:54.140752 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-07T13:25:54.169195 #7] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- TypeError: wrong argument type String (expected Hash) +/usr/src/app/app/controllers/eventstream.rb:17:in `publish' +/usr/src/app/app/controllers/eventstream.rb:17:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-07T13:25:54.169248 #7] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-07T13:25:54.172639 #7] ERROR -- : Client fetch loop error: wrong argument type String (expected Hash) +I, [2018-08-07T13:25:54.172812 #7] INFO -- : Joining group `notifications_notifications` +E, [2018-08-07T13:25:54.173841 #7] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-07T13:25:54.542577 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:25:55.141159 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:25:55.174046 #7] INFO -- : Joining group `notifications_notifications` +I, [2018-08-07T13:25:55.193053 #7] INFO -- : Joined group `notifications_notifications` with member id `notifications-78dc9701-7535-463c-86b1-30fc96556814` +I, [2018-08-07T13:25:55.193108 #7] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-07T13:25:55.197984 #7] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-07T13:25:55.198075 #7] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-07T13:25:55.543020 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:25:56.141565 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:25:56.543308 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:25:57.142285 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:25:57.543702 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:25:58.117265 #7] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-07T13:25:58.143198 #7] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-07T13:25:58.544015 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:25:59.544467 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-07T13:26:00.124999 #7] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- TypeError: wrong argument type String (expected Hash) +/usr/src/app/app/controllers/eventstream.rb:17:in `publish' +/usr/src/app/app/controllers/eventstream.rb:17:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-07T13:26:00.132381 #7] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-07T13:26:00.136957 #7] ERROR -- : Client fetch loop error: wrong argument type String (expected Hash) +I, [2018-08-07T13:26:00.137715 #7] INFO -- : Joining group `notifications_course_change` +E, [2018-08-07T13:26:00.142967 #7] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-07T13:26:00.515788 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:26:00.555289 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:26:01.143418 #7] INFO -- : Joining group `notifications_course_change` +I, [2018-08-07T13:26:01.149247 #7] INFO -- : Joined group `notifications_course_change` with member id `notifications-fd1af83e-72ff-457a-9f25-b4a27abaee2e` +I, [2018-08-07T13:26:01.149306 #7] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-07T13:26:01.161777 #7] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-07T13:26:01.161883 #7] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-07T13:26:01.516143 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:26:01.557778 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:26:02.523715 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:26:02.558166 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:26:03.524186 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:26:03.558710 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:26:04.524557 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:26:04.559033 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:26:05.237827 #7] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-07T13:26:05.524938 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:26:05.560988 #7] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-07T13:26:06.525333 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-07T13:26:07.258638 #7] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- TypeError: wrong argument type String (expected Hash) +/usr/src/app/app/controllers/eventstream.rb:17:in `publish' +/usr/src/app/app/controllers/eventstream.rb:17:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-07T13:26:07.258696 #7] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-07T13:26:07.263735 #7] ERROR -- : Client fetch loop error: wrong argument type String (expected Hash) +I, [2018-08-07T13:26:07.263961 #7] INFO -- : Joining group `notifications_notifications` +E, [2018-08-07T13:26:07.265118 #7] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-07T13:26:07.316549 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:26:07.526124 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:26:08.265358 #7] INFO -- : Joining group `notifications_notifications` +I, [2018-08-07T13:26:08.269369 #7] INFO -- : Joined group `notifications_notifications` with member id `notifications-0cada8c6-664a-46d0-9b6e-56c6043307db` +I, [2018-08-07T13:26:08.269427 #7] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-07T13:26:08.281976 #7] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-07T13:26:08.282064 #7] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-07T13:26:08.317035 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:26:08.526476 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:26:09.318034 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:26:09.527380 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:26:10.318609 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:26:10.527868 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:26:11.246489 #7] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-07T13:26:11.319105 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:26:11.530052 #7] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-07T13:26:12.319757 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-07T13:26:13.251197 #7] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- TypeError: wrong argument type String (expected Hash) +/usr/src/app/app/controllers/eventstream.rb:17:in `publish' +/usr/src/app/app/controllers/eventstream.rb:17:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-07T13:26:13.256413 #7] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-07T13:26:13.269563 #7] ERROR -- : Client fetch loop error: wrong argument type String (expected Hash) +I, [2018-08-07T13:26:13.270011 #7] INFO -- : Joining group `notifications_course_change` +E, [2018-08-07T13:26:13.271707 #7] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-07T13:26:13.320126 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:26:13.720999 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:26:14.271933 #7] INFO -- : Joining group `notifications_course_change` +I, [2018-08-07T13:26:14.282151 #7] INFO -- : Joined group `notifications_course_change` with member id `notifications-5b9f43a2-dc89-4729-8d0b-07ddeb1bec0f` +I, [2018-08-07T13:26:14.282223 #7] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-07T13:26:14.297384 #7] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-07T13:26:14.297482 #7] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-07T13:26:14.320547 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:26:14.721692 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:26:15.320972 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:26:15.722137 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:26:16.321642 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:26:16.722751 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:26:17.322577 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:26:17.725399 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:26:18.288633 #7] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-07T13:26:18.323209 #7] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-07T13:26:18.725707 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:26:19.726115 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-07T13:26:20.291391 #7] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- TypeError: wrong argument type String (expected Hash) +/usr/src/app/app/controllers/eventstream.rb:17:in `publish' +/usr/src/app/app/controllers/eventstream.rb:17:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-07T13:26:20.291589 #7] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-07T13:26:20.308757 #7] ERROR -- : Client fetch loop error: wrong argument type String (expected Hash) +I, [2018-08-07T13:26:20.309201 #7] INFO -- : Joining group `notifications_notifications` +I, [2018-08-07T13:26:20.310070 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-07T13:26:20.312976 #7] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-07T13:26:20.726497 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:26:21.310576 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:26:21.313203 #7] INFO -- : Joining group `notifications_notifications` +I, [2018-08-07T13:26:21.316292 #7] INFO -- : Joined group `notifications_notifications` with member id `notifications-5edeb103-f39c-4827-bca3-5c465394e2be` +I, [2018-08-07T13:26:21.316333 #7] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-07T13:26:21.320260 #7] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-07T13:26:21.320330 #7] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-07T13:26:21.726935 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:26:22.275229 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:26:22.691670 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:26:23.275576 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:26:23.691959 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:26:24.266717 #7] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-07T13:26:24.275898 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:26:24.692233 #7] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-07T13:26:25.276108 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-07T13:26:26.268886 #7] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- TypeError: wrong argument type String (expected Hash) +/usr/src/app/app/controllers/eventstream.rb:17:in `publish' +/usr/src/app/app/controllers/eventstream.rb:17:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-07T13:26:26.271818 #7] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-07T13:26:26.274953 #7] ERROR -- : Client fetch loop error: wrong argument type String (expected Hash) +I, [2018-08-07T13:26:26.275178 #7] INFO -- : Joining group `notifications_course_change` +I, [2018-08-07T13:26:26.276548 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-07T13:26:26.276722 #7] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-07T13:26:26.306879 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:26:27.276960 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:26:27.277064 #7] INFO -- : Joining group `notifications_course_change` +I, [2018-08-07T13:26:27.280216 #7] INFO -- : Joined group `notifications_course_change` with member id `notifications-d56a2b0a-bdfc-456f-8b4a-7e7868eedf31` +I, [2018-08-07T13:26:27.280286 #7] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-07T13:26:27.282706 #7] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-07T13:26:27.282771 #7] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-07T13:26:27.307180 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:26:28.277369 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:26:28.307456 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:26:29.277784 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:26:29.310074 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:26:30.278474 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:26:30.310397 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:26:31.278825 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:26:31.299939 #7] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-07T13:26:31.310779 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:26:32.279225 #7] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-07T13:26:32.311615 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-07T13:26:33.304959 #7] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- TypeError: wrong argument type String (expected Hash) +/usr/src/app/app/controllers/eventstream.rb:17:in `publish' +/usr/src/app/app/controllers/eventstream.rb:17:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-07T13:26:33.305021 #7] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-07T13:26:33.308467 #7] ERROR -- : Client fetch loop error: wrong argument type String (expected Hash) +I, [2018-08-07T13:26:33.308708 #7] INFO -- : Joining group `notifications_notifications` +E, [2018-08-07T13:26:33.309917 #7] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-07T13:26:33.312056 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:26:33.396164 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:26:34.310421 #7] INFO -- : Joining group `notifications_notifications` +I, [2018-08-07T13:26:34.312764 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:26:34.320565 #7] INFO -- : Joined group `notifications_notifications` with member id `notifications-5ca9b9fb-8ec4-4f9c-99b2-56b89b50a44a` +I, [2018-08-07T13:26:34.320620 #7] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-07T13:26:34.328205 #7] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-07T13:26:34.328597 #7] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-07T13:26:34.397022 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:26:35.313568 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:26:35.414850 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:26:36.314124 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:26:36.415455 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:26:37.314783 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:26:37.321754 #7] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-07T13:26:37.415890 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:26:38.315367 #7] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-07T13:26:38.416410 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-07T13:26:39.331785 #7] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- TypeError: wrong argument type String (expected Hash) +/usr/src/app/app/controllers/eventstream.rb:17:in `publish' +/usr/src/app/app/controllers/eventstream.rb:17:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-07T13:28:38.999675 #7] INFO -- : New topics added to target list: course_change +I, [2018-08-07T13:28:39.000444 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T13:28:39.020077 #7] INFO -- : New topics added to target list: section_change +I, [2018-08-07T13:28:39.020151 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T13:28:39.031250 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T13:28:39.031488 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T13:28:39.038910 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T13:28:39.039048 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T13:28:44.031865 #7] 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.14:9094 +I, [2018-08-07T13:28:44.032909 #7] INFO -- : New topics added to target list: section_change +I, [2018-08-07T13:28:44.032953 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T13:28:44.034275 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T13:28:44.034441 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T13:28:44.039649 #7] 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.14:9094 +I, [2018-08-07T13:28:44.041641 #7] INFO -- : New topics added to target list: course_change +I, [2018-08-07T13:28:44.041696 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T13:28:44.045312 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T13:28:44.045402 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T13:28:49.045934 #7] 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.14:9094 +I, [2018-08-07T13:28:49.050448 #7] INFO -- : New topics added to target list: course_change +I, [2018-08-07T13:28:49.050535 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T13:28:49.043205 #7] 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.14:9094 +I, [2018-08-07T13:28:49.052049 #7] INFO -- : New topics added to target list: section_change +I, [2018-08-07T13:28:49.052117 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T13:28:49.405283 #7] ERROR -- : No brokers in cluster +E, [2018-08-07T13:28:49.405742 #7] ERROR -- : No brokers in cluster +E, [2018-08-07T13:28:54.370525 #7] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: + +E, [2018-08-07T13:28:54.370989 #7] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: + +I, [2018-08-07T13:28:54.372037 #7] INFO -- : New topics added to target list: course_change +I, [2018-08-07T13:28:54.372103 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T13:28:54.386230 #7] INFO -- : New topics added to target list: section_change +I, [2018-08-07T13:28:54.386328 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T13:28:54.633036 #7] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-07T13:28:54.633264 #7] INFO -- : Joining group `notifications_course_change` +I, [2018-08-07T13:28:54.651315 #7] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-07T13:28:54.651509 #7] INFO -- : Joining group `notifications_notifications` +I, [2018-08-07T13:28:54.676414 #7] INFO -- : Will fetch at most 1048576 bytes at a time per partition from course_change +I, [2018-08-07T13:28:54.676675 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T13:28:54.688777 #7] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-07T13:28:54.689065 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:28:54.696246 #7] INFO -- : Will fetch at most 1048576 bytes at a time per partition from section_change +I, [2018-08-07T13:28:54.696410 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T13:28:54.715869 #7] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-07T13:28:54.715985 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:28:55.689696 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:28:55.716324 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:28:56.155320 #7] INFO -- : Joined group `notifications_notifications` with member id `notifications-fa25ecac-db09-49e3-ad05-3c5ca77a6424` +I, [2018-08-07T13:28:56.155381 #7] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-07T13:28:56.199939 #7] INFO -- : Joined group `notifications_course_change` with member id `notifications-473d4ff5-a173-457b-afce-cdec68cedb5b` +I, [2018-08-07T13:28:56.200032 #7] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-07T13:28:56.689994 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:28:56.716639 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:28:57.155806 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T13:28:57.169023 #7] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-07T13:28:57.201254 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T13:28:57.204671 #7] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-07T13:28:57.463454 #7] INFO -- : Partitions assigned for `section_change`: 0 +I, [2018-08-07T13:28:57.471448 #7] INFO -- : Partitions assigned for `course_change`: 0 +I, [2018-08-07T13:28:57.690426 #7] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-07T13:28:57.690531 #7] INFO -- : New topics added to target list: course_change +I, [2018-08-07T13:28:57.690564 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T13:28:57.701217 #7] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-07T13:28:57.721490 #7] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-07T13:28:57.721590 #7] INFO -- : New topics added to target list: section_change +I, [2018-08-07T13:28:57.721622 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T13:28:57.759177 #7] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-07T13:29:01.634064 #7] INFO -- : Inline processing of topic course_change with 1 messages took 45.33 ms +I, [2018-08-07T13:29:01.634137 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:29:01.634193 #7] INFO -- : Committing offsets with recommit: course_change/0:1 +I, [2018-08-07T13:29:01.634615 #7] INFO -- : Inline processing of topic section_change with 1 messages took 19.1 ms +I, [2018-08-07T13:29:01.634649 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:29:01.634719 #7] INFO -- : Committing offsets with recommit: section_change/0:1 +I, [2018-08-07T13:29:01.656580 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T13:29:01.656636 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:29:01.656947 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T13:29:01.659533 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:29:01.660082 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T13:29:01.660135 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:29:01.660501 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T13:29:01.660642 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:29:01.660935 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T13:29:01.660979 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:29:01.661363 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T13:29:01.661408 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:29:01.661773 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T13:29:01.661816 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:29:01.662138 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T13:29:01.662180 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:29:01.662662 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-08-07T13:29:01.662708 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:29:01.663036 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T13:29:01.663077 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:29:01.663400 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T13:29:01.663445 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:29:01.663799 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T13:29:01.663844 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:29:01.664364 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T13:29:01.664410 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:29:01.664905 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-08-07T13:29:01.664956 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:29:01.665344 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T13:29:01.665389 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:29:01.665933 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T13:29:01.666052 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:29:01.688634 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.31 ms +I, [2018-08-07T13:29:01.688758 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:29:01.689270 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.34 ms +I, [2018-08-07T13:29:01.689315 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:29:03.666836 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T13:29:03.666919 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:29:03.667245 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T13:29:03.667330 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:29:03.667570 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T13:29:03.667599 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:29:03.667926 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T13:29:03.667959 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:29:03.668345 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T13:29:03.668386 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:29:03.668749 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T13:29:03.668799 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:29:03.669139 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T13:29:03.669172 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:29:03.669639 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T13:29:03.669673 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:29:03.669989 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T13:29:03.670315 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:29:03.670645 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T13:29:03.670677 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:29:03.670970 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T13:29:03.671003 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:29:03.673546 #7] INFO -- : Inline processing of topic section_change with 1 messages took 2.37 ms +I, [2018-08-07T13:29:03.673593 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:29:03.674054 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T13:29:03.674089 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:29:03.682818 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-08-07T13:29:03.682868 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:29:03.683250 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T13:29:03.683366 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:29:03.683773 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T13:29:03.683810 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:29:03.684068 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T13:29:03.684107 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:29:03.684426 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T13:29:03.684477 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:29:03.684769 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T13:29:03.684812 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:29:03.685123 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T13:29:03.685171 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:29:03.686715 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T13:29:03.686758 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:29:03.687055 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T13:29:03.687161 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:29:03.687538 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T13:29:03.687602 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:29:03.688078 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T13:29:03.688139 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:29:03.688485 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T13:29:03.688527 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:29:03.688997 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T13:29:03.700035 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T13:29:03.700091 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:29:03.700349 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-08-07T13:29:03.700379 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:29:03.702530 #7] INFO -- : Inline processing of topic course_change with 1 messages took 1.95 ms +I, [2018-08-07T13:29:03.702604 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:29:03.703125 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-08-07T13:29:03.703176 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:29:03.710121 #7] INFO -- : Inline processing of topic course_change with 1 messages took 6.76 ms +I, [2018-08-07T13:29:03.710189 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:29:03.710526 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T13:29:03.710563 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:29:03.710893 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T13:29:03.710926 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:29:03.711198 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T13:29:03.711249 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:29:03.711616 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-08-07T13:29:03.711703 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:29:03.711847 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:29:03.712192 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T13:29:03.712260 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:29:03.712560 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T13:29:03.712599 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:29:03.712957 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T13:29:03.713001 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:29:05.747421 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-08-07T13:29:05.747537 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:29:05.750334 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.59 ms +I, [2018-08-07T13:29:05.750564 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:29:05.751545 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.57 ms +I, [2018-08-07T13:29:05.751785 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:29:05.753117 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.46 ms +I, [2018-08-07T13:29:05.753206 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:29:05.753791 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.24 ms +I, [2018-08-07T13:29:05.753826 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:29:05.764541 #7] INFO -- : Inline processing of topic course_change with 1 messages took 4.88 ms +I, [2018-08-07T13:29:05.764619 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:29:05.771540 #7] INFO -- : Inline processing of topic course_change with 1 messages took 2.17 ms +I, [2018-08-07T13:29:05.772141 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:29:05.773837 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.28 ms +I, [2018-08-07T13:29:05.773898 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:29:05.774254 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T13:29:05.774352 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:29:05.774750 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-08-07T13:29:05.774801 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:29:05.775137 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T13:29:05.775186 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:29:05.775480 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T13:29:05.775516 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:29:05.775774 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T13:29:05.775809 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:29:05.796269 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-08-07T13:29:05.796340 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:29:05.800556 #7] INFO -- : Inline processing of topic course_change with 1 messages took 3.97 ms +I, [2018-08-07T13:29:05.802652 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:29:05.807070 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T13:29:05.807116 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:29:05.807269 #7] INFO -- : Inline processing of topic section_change with 1 messages took 53.24 ms +I, [2018-08-07T13:29:05.807301 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:29:05.809932 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-08-07T13:29:05.810001 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:29:05.810405 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T13:29:05.814987 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:29:05.821625 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.51 ms +I, [2018-08-07T13:29:05.821706 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:29:05.843829 #7] INFO -- : Inline processing of topic section_change with 1 messages took 21.68 ms +I, [2018-08-07T13:29:05.843983 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:29:05.844472 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T13:29:05.845060 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:29:05.845748 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-08-07T13:29:05.845798 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:29:05.846287 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T13:29:05.846331 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:29:05.846628 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T13:29:05.846692 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:29:05.847244 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T13:29:05.847420 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:29:05.848271 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.44 ms +I, [2018-08-07T13:29:05.855821 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:29:05.860625 #7] INFO -- : Inline processing of topic section_change with 1 messages took 4.12 ms +I, [2018-08-07T13:29:05.860712 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:29:05.861509 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-08-07T13:29:05.861564 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:29:05.862215 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T13:29:05.862258 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:29:05.874725 #7] INFO -- : Inline processing of topic section_change with 1 messages took 11.9 ms +I, [2018-08-07T13:29:05.875525 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:29:05.879900 #7] INFO -- : Inline processing of topic section_change with 1 messages took 2.25 ms +I, [2018-08-07T13:29:05.879980 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:29:05.881933 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T13:29:05.881998 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:29:05.899366 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T13:29:05.899443 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:29:07.808406 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-08-07T13:29:07.808460 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:29:07.808727 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T13:29:07.808759 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:29:07.808991 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T13:29:07.809029 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:29:07.809247 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-08-07T13:29:07.809277 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:29:07.809577 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T13:29:07.809618 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:29:07.810009 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T13:29:07.810061 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:29:07.810305 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T13:29:07.810335 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:29:07.810551 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T13:29:07.810580 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:29:07.900652 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T13:29:07.900723 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:29:07.901085 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T13:29:07.901147 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:29:07.901565 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T13:29:07.901615 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:29:07.902026 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T13:29:07.902065 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:29:07.902529 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T13:29:07.902621 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:29:07.903431 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T13:29:07.903467 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:29:07.904071 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T13:29:07.904201 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:29:07.904607 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T13:29:07.904659 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:29:07.905008 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T13:29:07.905048 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:29:07.905306 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T13:29:07.905337 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:29:07.905660 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T13:29:07.905701 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:29:07.906012 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T13:29:07.906054 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:29:07.906515 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T13:29:07.906562 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:29:07.913980 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T13:29:07.914045 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:29:07.914533 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T13:29:07.914575 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:29:07.914829 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T13:29:07.914921 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:29:07.915213 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T13:29:07.915245 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:29:09.811359 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.27 ms +I, [2018-08-07T13:29:09.811423 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:29:09.811683 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T13:29:09.811751 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:29:09.812028 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T13:29:09.812058 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:29:09.812266 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T13:29:09.812292 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:29:09.812498 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T13:29:09.812533 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:29:09.812767 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T13:29:09.812797 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:29:09.813009 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T13:29:09.813033 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:29:09.813262 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T13:29:09.813305 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:29:09.813602 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T13:29:09.813636 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:29:09.814100 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.31 ms +I, [2018-08-07T13:29:09.814186 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:29:09.814535 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T13:29:09.814583 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:29:09.814952 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T13:29:09.814993 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:29:09.815286 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T13:29:09.815329 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:29:09.815612 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T13:29:09.815691 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:29:09.816094 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.24 ms +I, [2018-08-07T13:29:09.816145 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:29:09.916341 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-08-07T13:29:09.916408 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:29:09.916734 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T13:29:09.916774 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:29:09.917242 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T13:29:09.917288 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:29:09.917664 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T13:29:09.917870 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:29:09.918569 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T13:29:09.918607 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:29:09.919048 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T13:29:09.919090 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:29:09.919693 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-08-07T13:29:09.919813 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:29:09.920777 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T13:29:09.920882 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:29:09.921536 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T13:29:09.921614 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:29:09.922432 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T13:29:09.922629 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:29:09.933645 #7] INFO -- : Inline processing of topic section_change with 1 messages took 10.65 ms +I, [2018-08-07T13:29:09.933698 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:29:09.933994 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T13:29:09.934024 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:29:09.934339 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T13:29:09.934371 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:29:09.934589 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T13:29:09.934617 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:29:09.934820 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T13:29:09.934897 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:29:09.935121 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-08-07T13:29:09.935150 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:29:11.816925 #7] INFO -- : Committing offsets: course_change/0:50 +I, [2018-08-07T13:29:11.854775 #7] INFO -- : Inline processing of topic course_change with 1 messages took 3.03 ms +I, [2018-08-07T13:29:11.854855 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:29:11.856703 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.25 ms +I, [2018-08-07T13:29:11.859487 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:29:11.859835 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T13:29:11.859868 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:29:11.860150 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T13:29:11.860266 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:29:11.860656 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T13:29:11.860701 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:29:11.861254 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.39 ms +I, [2018-08-07T13:29:11.861305 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:29:11.861578 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T13:29:11.861608 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:29:11.862108 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-08-07T13:29:11.862156 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:29:11.863081 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.23 ms +I, [2018-08-07T13:29:11.867746 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:29:11.868278 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.29 ms +I, [2018-08-07T13:29:11.868325 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:29:11.868830 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.33 ms +I, [2018-08-07T13:29:11.868880 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:29:11.935508 #7] INFO -- : Committing offsets: section_change/0:98 +I, [2018-08-07T13:29:11.947337 #7] INFO -- : Inline processing of topic section_change with 1 messages took 2.19 ms +I, [2018-08-07T13:29:11.947409 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:29:11.947763 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T13:29:11.947796 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:29:11.948055 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T13:29:11.948097 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:29:11.948339 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T13:29:11.951163 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:29:11.951553 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T13:29:11.951632 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:29:11.951841 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T13:29:11.951902 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:29:11.952106 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T13:29:11.958128 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:29:11.958616 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T13:29:11.958842 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:29:11.959234 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T13:29:11.959332 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:29:13.869863 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-08-07T13:29:13.869915 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:29:13.870155 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T13:29:13.870186 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:29:13.870425 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T13:29:13.870457 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:29:13.870673 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T13:29:13.870713 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:29:13.870912 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T13:29:13.870946 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:29:13.871146 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T13:29:13.871175 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:29:13.871521 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T13:29:13.871593 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:29:13.872618 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.84 ms +I, [2018-08-07T13:29:13.872678 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:29:13.873016 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T13:29:13.873059 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:29:13.873367 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T13:29:13.873409 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:29:13.873720 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T13:29:13.873762 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:29:13.960458 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-08-07T13:29:13.960508 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:29:13.960819 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T13:29:13.960860 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:29:13.961141 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T13:29:13.961177 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:29:13.962264 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.87 ms +I, [2018-08-07T13:29:13.967737 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:29:13.968065 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T13:29:13.968139 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:29:13.968483 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T13:29:13.968522 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:29:13.968769 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T13:29:13.969600 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:29:13.970024 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T13:29:13.970062 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:29:13.970326 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T13:29:13.970366 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:29:13.970589 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T13:29:13.970618 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:29:13.970840 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T13:29:13.970869 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:29:13.971084 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T13:29:13.971113 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:29:13.971322 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T13:29:13.971350 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:29:13.971564 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T13:29:13.971593 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:29:13.971802 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T13:29:13.971842 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:29:15.890044 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.41 ms +I, [2018-08-07T13:29:15.890158 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:29:15.890443 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T13:29:15.890507 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:29:15.891015 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.27 ms +I, [2018-08-07T13:29:15.891060 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:29:15.891547 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T13:29:15.891577 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:29:15.891970 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T13:29:15.892080 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:29:15.892459 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T13:29:15.892513 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:29:15.893016 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.26 ms +I, [2018-08-07T13:29:15.893173 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:29:15.893576 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-08-07T13:29:15.893628 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:29:17.118451 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.61 ms +I, [2018-08-07T13:29:17.118578 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:29:17.172297 #7] INFO -- : Inline processing of topic section_change with 1 messages took 51.8 ms +I, [2018-08-07T13:29:17.172372 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:29:17.173359 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T13:29:17.173732 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:29:17.182842 #7] INFO -- : Inline processing of topic section_change with 1 messages took 8.87 ms +I, [2018-08-07T13:29:17.182914 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:29:17.183665 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.51 ms +I, [2018-08-07T13:29:17.183755 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:29:17.184087 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T13:29:17.184373 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:29:17.184805 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T13:29:17.184849 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:29:17.186461 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T13:29:17.190696 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:29:17.191389 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.45 ms +I, [2018-08-07T13:29:17.191445 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:29:17.192079 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-08-07T13:29:17.192168 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:29:17.192551 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T13:29:17.192595 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:29:17.205359 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.48 ms +I, [2018-08-07T13:29:17.205578 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:29:17.207110 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.77 ms +I, [2018-08-07T13:29:17.212093 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:29:17.212645 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T13:29:17.212699 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:29:17.213110 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T13:29:17.213159 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:29:17.222144 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.12 ms +I, [2018-08-07T13:29:17.222246 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:29:17.223074 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T13:29:17.223127 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:29:17.223597 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-08-07T13:29:17.223642 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:29:17.224048 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T13:29:17.224088 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:29:17.224509 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T13:29:17.224552 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:29:17.912656 #7] INFO -- : Inline processing of topic course_change with 1 messages took 13.68 ms +I, [2018-08-07T13:29:17.912741 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:29:19.572601 #7] INFO -- : Inline processing of topic section_change with 1 messages took 14.93 ms +I, [2018-08-07T13:29:19.577267 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:29:22.021900 #7] INFO -- : Committing offsets: course_change/0:81 +I, [2018-08-07T13:29:22.026838 #7] INFO -- : Inline processing of topic section_change with 1 messages took 258.7 ms +I, [2018-08-07T13:29:22.026959 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:29:22.027073 #7] INFO -- : Committing offsets: section_change/0:144 +I, [2018-08-07T13:29:22.191063 #7] INFO -- : Inline processing of topic course_change with 1 messages took 1.14 ms +I, [2018-08-07T13:29:22.191164 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:29:24.302990 #7] INFO -- : Inline processing of topic course_change with 1 messages took 6.05 ms +I, [2018-08-07T13:29:24.304764 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:29:24.307985 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.76 ms +I, [2018-08-07T13:29:24.308240 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:29:28.921980 #7] INFO -- : Inline processing of topic course_change with 1 messages took 1.84 ms +I, [2018-08-07T13:29:28.922687 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:29:28.930123 #7] INFO -- : Inline processing of topic section_change with 1 messages took 73.87 ms +I, [2018-08-07T13:29:28.930213 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:29:30.936762 #7] INFO -- : Inline processing of topic course_change with 1 messages took 1.09 ms +I, [2018-08-07T13:29:30.936915 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:29:30.939636 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.15 ms +I, [2018-08-07T13:29:30.939706 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:29:30.941019 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.99 ms +I, [2018-08-07T13:29:30.941081 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:29:33.059215 #7] INFO -- : Committing offsets: course_change/0:85 +I, [2018-08-07T13:29:33.071911 #7] INFO -- : Committing offsets: section_change/0:148 +I, [2018-08-07T13:29:33.471682 #7] INFO -- : Inline processing of topic section_change with 1 messages took 2.26 ms +I, [2018-08-07T13:29:33.471769 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:29:33.491827 #7] INFO -- : Inline processing of topic course_change with 1 messages took 1.71 ms +I, [2018-08-07T13:29:33.491916 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:29:35.478435 #7] INFO -- : Inline processing of topic section_change with 1 messages took 2.09 ms +I, [2018-08-07T13:29:35.479185 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:29:35.480730 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.47 ms +I, [2018-08-07T13:29:35.482141 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:29:35.482885 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.46 ms +I, [2018-08-07T13:29:35.482926 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:29:35.506914 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.4 ms +I, [2018-08-07T13:29:35.506971 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:29:37.557691 #7] INFO -- : Inline processing of topic course_change with 1 messages took 7.78 ms +I, [2018-08-07T13:29:37.557766 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:29:37.740711 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.44 ms +I, [2018-08-07T13:29:37.740782 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:29:37.741964 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.96 ms +I, [2018-08-07T13:29:37.742018 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:29:37.743397 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.71 ms +I, [2018-08-07T13:29:37.743551 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:29:37.757253 #7] INFO -- : Inline processing of topic course_change with 1 messages took 25.79 ms +I, [2018-08-07T13:29:37.757606 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:29:37.763280 #7] INFO -- : Inline processing of topic course_change with 1 messages took 4.41 ms +I, [2018-08-07T13:29:37.765449 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:29:39.958294 #7] INFO -- : Inline processing of topic section_change with 1 messages took 3.25 ms +I, [2018-08-07T13:29:39.961339 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:29:40.042725 #7] INFO -- : Inline processing of topic course_change with 1 messages took 17.0 ms +I, [2018-08-07T13:29:40.061601 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:29:42.045868 #7] INFO -- : Inline processing of topic section_change with 1 messages took 8.8 ms +I, [2018-08-07T13:29:42.049973 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:29:43.103039 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1052.55 ms +I, [2018-08-07T13:29:43.103287 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:29:43.105045 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.98 ms +I, [2018-08-07T13:29:43.105134 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:29:43.106659 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.19 ms +I, [2018-08-07T13:29:43.106751 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:29:43.108328 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.34 ms +I, [2018-08-07T13:29:43.108392 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:29:43.114002 #7] INFO -- : Inline processing of topic course_change with 1 messages took 3.16 ms +I, [2018-08-07T13:29:43.114135 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:29:43.131734 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.61 ms +I, [2018-08-07T13:29:43.131804 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:29:43.140174 #7] INFO -- : Inline processing of topic course_change with 1 messages took 8.15 ms +I, [2018-08-07T13:29:43.140229 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:29:43.140849 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.43 ms +I, [2018-08-07T13:29:43.140889 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:29:43.152418 #7] INFO -- : Inline processing of topic course_change with 1 messages took 3.96 ms +I, [2018-08-07T13:29:43.153177 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:29:45.120047 #7] INFO -- : Committing offsets: section_change/0:161 +I, [2018-08-07T13:29:45.163747 #7] INFO -- : Committing offsets: course_change/0:96 +I, [2018-08-07T13:29:45.328570 #7] INFO -- : Inline processing of topic course_change with 1 messages took 1.27 ms +I, [2018-08-07T13:29:45.328671 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:29:45.329677 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.74 ms +I, [2018-08-07T13:29:45.329734 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:29:45.369993 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-08-07T13:29:45.370061 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:29:45.370792 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T13:29:45.370844 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:29:45.372011 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T13:29:45.372106 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:29:45.378637 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.04 ms +I, [2018-08-07T13:29:45.378912 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:29:45.380572 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.63 ms +I, [2018-08-07T13:29:45.380762 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:29:45.414648 #7] INFO -- : Inline processing of topic section_change with 1 messages took 32.59 ms +I, [2018-08-07T13:29:45.414710 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:29:47.963888 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.24 ms +I, [2018-08-07T13:29:47.964044 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:29:47.980579 #7] INFO -- : Inline processing of topic section_change with 1 messages took 16.29 ms +I, [2018-08-07T13:29:47.980689 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:29:47.981612 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.62 ms +I, [2018-08-07T13:29:47.981668 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:29:47.982394 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.53 ms +I, [2018-08-07T13:29:47.982448 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:29:47.984695 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.74 ms +I, [2018-08-07T13:29:47.984838 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:29:47.986687 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.38 ms +I, [2018-08-07T13:29:47.986798 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:29:47.988151 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.0 ms +I, [2018-08-07T13:29:47.988208 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:29:48.093133 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.53 ms +I, [2018-08-07T13:29:48.093258 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:29:48.110840 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.91 ms +I, [2018-08-07T13:29:48.111069 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:29:48.112466 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T13:29:48.112525 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:29:48.133249 #7] INFO -- : Inline processing of topic section_change with 1 messages took 19.63 ms +I, [2018-08-07T13:29:48.133342 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:29:48.146378 #7] INFO -- : Inline processing of topic section_change with 1 messages took 12.72 ms +I, [2018-08-07T13:29:48.146468 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:29:48.161069 #7] INFO -- : Inline processing of topic section_change with 1 messages took 14.3 ms +I, [2018-08-07T13:29:48.161192 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:29:50.158392 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.69 ms +I, [2018-08-07T13:29:50.158505 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:29:50.159595 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.87 ms +I, [2018-08-07T13:29:50.159651 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:29:50.190114 #7] INFO -- : Inline processing of topic course_change with 1 messages took 30.24 ms +I, [2018-08-07T13:29:50.190187 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:29:50.190979 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.57 ms +I, [2018-08-07T13:29:50.191026 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:29:50.191560 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.36 ms +I, [2018-08-07T13:29:50.191605 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:29:50.192315 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.44 ms +I, [2018-08-07T13:29:50.192365 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:29:52.161248 #7] INFO -- : Inline processing of topic course_change with 1 messages took 1.47 ms +I, [2018-08-07T13:29:52.161442 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:29:52.162245 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.51 ms +I, [2018-08-07T13:29:52.162604 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:29:52.179075 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.38 ms +I, [2018-08-07T13:29:52.179200 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:29:52.180014 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.59 ms +I, [2018-08-07T13:29:52.180596 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:29:52.181753 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.88 ms +I, [2018-08-07T13:29:52.181823 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:29:52.220336 #7] INFO -- : Inline processing of topic course_change with 1 messages took 37.78 ms +I, [2018-08-07T13:29:52.220413 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:29:52.221146 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.47 ms +I, [2018-08-07T13:29:52.221363 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:29:52.222048 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.36 ms +I, [2018-08-07T13:29:52.222436 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:29:52.237535 #7] INFO -- : Inline processing of topic course_change with 1 messages took 14.83 ms +I, [2018-08-07T13:29:52.237611 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:29:52.241547 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.68 ms +I, [2018-08-07T13:29:52.241697 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:29:54.473211 #7] INFO -- : Inline processing of topic course_change with 1 messages took 1.83 ms +I, [2018-08-07T13:29:54.475890 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:29:54.478437 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.59 ms +I, [2018-08-07T13:29:54.480599 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:29:55.000310 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.98 ms +I, [2018-08-07T13:29:55.000385 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:29:55.003632 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.48 ms +I, [2018-08-07T13:29:55.003703 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:29:55.004732 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.67 ms +I, [2018-08-07T13:29:55.004964 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:29:56.896821 #7] INFO -- : Committing offsets: course_change/0:116 +I, [2018-08-07T13:29:57.394812 #7] INFO -- : Committing offsets: section_change/0:183 +I, [2018-08-07T13:29:57.744079 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.18 ms +I, [2018-08-07T13:29:57.744154 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:29:59.821159 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T13:29:59.821876 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:29:59.822581 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.47 ms +I, [2018-08-07T13:29:59.822695 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:29:59.823988 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T13:29:59.824046 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:29:59.875923 #7] INFO -- : Inline processing of topic course_change with 1 messages took 2.71 ms +I, [2018-08-07T13:29:59.876017 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:29:59.876500 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.31 ms +I, [2018-08-07T13:29:59.876532 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:29:59.877052 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.39 ms +I, [2018-08-07T13:29:59.877105 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:29:59.877569 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.31 ms +I, [2018-08-07T13:29:59.877615 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:30:01.848263 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T13:30:01.848314 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:01.848762 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T13:30:01.848794 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:01.849174 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T13:30:01.849205 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:01.884117 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T13:30:01.884172 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:30:03.850208 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T13:30:03.850259 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:03.850634 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T13:30:03.850850 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:03.851195 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T13:30:03.851221 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:03.851519 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T13:30:03.851550 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:03.851849 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T13:30:03.851877 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:03.884926 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-08-07T13:30:03.884993 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:30:03.885341 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T13:30:03.885381 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:30:03.885848 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T13:30:03.885893 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:30:03.886413 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T13:30:03.886460 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:30:03.887977 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.77 ms +I, [2018-08-07T13:30:03.888062 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:30:05.853045 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.45 ms +I, [2018-08-07T13:30:05.853117 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:05.853621 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T13:30:05.853668 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:05.854176 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T13:30:05.854223 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:05.854918 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.47 ms +I, [2018-08-07T13:30:05.855014 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:05.855744 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.4 ms +I, [2018-08-07T13:30:05.855802 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:05.856724 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.49 ms +I, [2018-08-07T13:30:05.856773 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:05.857203 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T13:30:05.857245 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:05.893859 #7] INFO -- : Inline processing of topic course_change with 1 messages took 3.36 ms +I, [2018-08-07T13:30:05.894441 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:30:05.901954 #7] INFO -- : Inline processing of topic course_change with 1 messages took 4.74 ms +I, [2018-08-07T13:30:05.902981 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:30:05.909900 #7] INFO -- : Inline processing of topic course_change with 1 messages took 5.64 ms +I, [2018-08-07T13:30:05.909975 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:30:05.916608 #7] INFO -- : Inline processing of topic course_change with 1 messages took 3.03 ms +I, [2018-08-07T13:30:05.916706 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:30:05.917293 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.34 ms +I, [2018-08-07T13:30:05.920298 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:30:05.921912 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.25 ms +I, [2018-08-07T13:30:05.921970 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:30:05.927899 #7] INFO -- : Inline processing of topic course_change with 1 messages took 5.69 ms +I, [2018-08-07T13:30:05.928646 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:30:07.858633 #7] INFO -- : Committing offsets: section_change/0:202 +I, [2018-08-07T13:30:07.866051 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-08-07T13:30:07.866319 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:07.866597 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T13:30:07.866755 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:07.867114 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T13:30:07.867159 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:07.867374 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T13:30:07.867512 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:07.868249 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T13:30:07.868292 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:07.868707 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T13:30:07.868746 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:07.869239 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-08-07T13:30:07.869274 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:07.869720 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-08-07T13:30:07.869751 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:07.930496 #7] INFO -- : Committing offsets: course_change/0:133 +I, [2018-08-07T13:30:07.945083 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-08-07T13:30:07.945153 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:30:07.945925 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.5 ms +I, [2018-08-07T13:30:07.946548 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:30:07.946840 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T13:30:07.946922 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:30:07.954825 #7] INFO -- : Inline processing of topic course_change with 1 messages took 6.5 ms +I, [2018-08-07T13:30:07.954897 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:30:07.955605 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.36 ms +I, [2018-08-07T13:30:07.955679 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:30:07.956220 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.28 ms +I, [2018-08-07T13:30:07.956308 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:30:07.957151 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.57 ms +I, [2018-08-07T13:30:07.957242 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:30:07.958146 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.69 ms +I, [2018-08-07T13:30:07.958217 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:30:07.959610 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.76 ms +I, [2018-08-07T13:30:07.959710 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:30:09.894319 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-08-07T13:30:09.894379 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:09.895051 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.4 ms +I, [2018-08-07T13:30:09.895100 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:09.895810 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T13:30:09.895849 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:09.896169 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T13:30:09.896285 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:09.908471 #7] INFO -- : Inline processing of topic section_change with 1 messages took 11.68 ms +I, [2018-08-07T13:30:09.908547 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:09.909375 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.46 ms +I, [2018-08-07T13:30:09.909633 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:09.966262 #7] INFO -- : Inline processing of topic course_change with 1 messages took 2.18 ms +I, [2018-08-07T13:30:09.966336 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:30:09.968170 #7] INFO -- : Inline processing of topic course_change with 1 messages took 1.42 ms +I, [2018-08-07T13:30:09.968551 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:30:09.968971 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-08-07T13:30:09.969063 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:30:09.969369 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T13:30:09.969400 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:30:09.969867 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.3 ms +I, [2018-08-07T13:30:09.969968 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:30:11.968984 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.8 ms +I, [2018-08-07T13:30:11.969076 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:11.969701 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-08-07T13:30:11.969767 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:11.972522 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T13:30:11.972587 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:11.972994 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T13:30:11.973053 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:11.973576 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-08-07T13:30:11.973643 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:11.974106 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T13:30:11.974166 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:11.974611 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T13:30:11.974693 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:11.987452 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.33 ms +I, [2018-08-07T13:30:11.987528 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:30:11.988224 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.28 ms +I, [2018-08-07T13:30:11.988295 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:30:13.982931 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T13:30:13.983057 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:13.983605 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T13:30:13.983660 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:13.984087 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T13:30:13.984136 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:13.984497 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T13:30:13.984541 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:13.984847 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T13:30:13.984987 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:13.988047 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T13:30:13.988114 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:13.988510 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T13:30:13.988557 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:13.989327 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T13:30:13.989649 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:13.990822 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-08-07T13:30:13.990891 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:13.993189 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.51 ms +I, [2018-08-07T13:30:13.993386 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:13.993973 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-08-07T13:30:13.994060 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:14.019610 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.33 ms +I, [2018-08-07T13:30:14.019678 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:30:14.020092 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-08-07T13:30:14.020139 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:30:14.096018 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.47 ms +I, [2018-08-07T13:30:14.096341 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:14.097305 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T13:30:14.097425 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:14.098385 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.48 ms +I, [2018-08-07T13:30:14.098763 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:14.099974 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.85 ms +I, [2018-08-07T13:30:14.124977 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:16.021055 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.27 ms +I, [2018-08-07T13:30:16.021123 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:30:16.021466 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T13:30:16.021506 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:30:16.021795 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T13:30:16.021836 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:30:16.130550 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T13:30:16.130614 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:16.130992 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T13:30:16.131036 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:16.131373 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T13:30:16.131416 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:16.133238 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.93 ms +I, [2018-08-07T13:30:16.133424 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:18.022185 #7] INFO -- : Committing offsets: course_change/0:154 +I, [2018-08-07T13:30:18.034833 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.55 ms +I, [2018-08-07T13:30:18.034924 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:30:18.035508 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T13:30:18.035548 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:30:18.036003 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T13:30:18.036039 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:30:18.036340 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-08-07T13:30:18.036373 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:30:18.042324 #7] INFO -- : Inline processing of topic course_change with 1 messages took 5.7 ms +I, [2018-08-07T13:30:18.042414 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:30:18.059600 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.31 ms +I, [2018-08-07T13:30:18.059663 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:30:18.062007 #7] INFO -- : Inline processing of topic course_change with 1 messages took 1.48 ms +I, [2018-08-07T13:30:18.062084 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:30:18.062532 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T13:30:18.062658 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:30:18.070699 #7] INFO -- : Inline processing of topic course_change with 1 messages took 7.5 ms +I, [2018-08-07T13:30:18.070962 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:30:18.072634 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.54 ms +I, [2018-08-07T13:30:18.072880 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:30:18.076264 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-08-07T13:30:18.076309 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:30:18.080298 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T13:30:18.080351 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:30:18.080664 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-08-07T13:30:18.080710 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:30:18.133943 #7] INFO -- : Committing offsets: section_change/0:242 +I, [2018-08-07T13:30:18.137928 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.57 ms +I, [2018-08-07T13:30:18.137999 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:18.138783 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.56 ms +I, [2018-08-07T13:30:18.138852 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:18.139731 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.42 ms +I, [2018-08-07T13:30:18.139788 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:18.140686 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-08-07T13:30:18.140769 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:18.141378 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T13:30:18.141424 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:18.141936 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T13:30:18.141972 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:18.142403 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T13:30:18.142455 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:18.142885 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T13:30:18.142936 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:18.143579 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.46 ms +I, [2018-08-07T13:30:18.143670 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:18.150952 #7] INFO -- : Inline processing of topic section_change with 1 messages took 7.0 ms +I, [2018-08-07T13:30:18.151367 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:18.157127 #7] INFO -- : Inline processing of topic section_change with 1 messages took 3.47 ms +I, [2018-08-07T13:30:18.157243 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:18.160852 #7] INFO -- : Inline processing of topic section_change with 1 messages took 2.47 ms +I, [2018-08-07T13:30:18.160985 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:18.165579 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-08-07T13:30:18.165728 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:18.166464 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.42 ms +I, [2018-08-07T13:30:18.166528 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:20.081987 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.23 ms +I, [2018-08-07T13:30:20.082162 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:30:20.082676 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.3 ms +I, [2018-08-07T13:30:20.082729 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:30:20.083229 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.29 ms +I, [2018-08-07T13:30:20.083356 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:30:20.083950 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.28 ms +I, [2018-08-07T13:30:20.084628 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:30:20.085521 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.25 ms +I, [2018-08-07T13:30:20.085627 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:30:20.086234 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.36 ms +I, [2018-08-07T13:30:20.086306 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:30:20.087614 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.39 ms +I, [2018-08-07T13:30:20.087665 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:30:20.087969 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T13:30:20.088003 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:30:20.088349 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-08-07T13:30:20.088384 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:30:20.088767 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-08-07T13:30:20.088830 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:30:20.170157 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-08-07T13:30:20.170221 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:20.171379 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.88 ms +I, [2018-08-07T13:30:20.171443 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:20.171954 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T13:30:20.172005 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:20.172316 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T13:30:20.172391 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:20.179719 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-08-07T13:30:20.179832 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:20.186813 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T13:30:20.186912 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:20.188243 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.09 ms +I, [2018-08-07T13:30:20.188327 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:20.188789 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T13:30:20.188903 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:20.190005 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.84 ms +I, [2018-08-07T13:30:20.190187 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:20.190562 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T13:30:20.190615 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:20.191034 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T13:30:20.191089 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:20.192013 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T13:30:20.192087 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:20.194854 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-08-07T13:30:20.194922 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:20.195331 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T13:30:20.195384 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:20.200955 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-08-07T13:30:20.201030 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:20.201578 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T13:30:20.201639 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:20.202714 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.42 ms +I, [2018-08-07T13:30:20.202951 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:20.208133 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-08-07T13:30:20.208242 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:22.068193 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.27 ms +I, [2018-08-07T13:30:22.068245 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:30:22.068544 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T13:30:22.068585 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:30:22.178484 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.48 ms +I, [2018-08-07T13:30:22.178814 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:22.179941 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-08-07T13:30:22.180068 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:22.181502 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.48 ms +I, [2018-08-07T13:30:22.181615 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:22.185761 #7] INFO -- : Inline processing of topic section_change with 1 messages took 3.92 ms +I, [2018-08-07T13:30:22.185842 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:22.187882 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.31 ms +I, [2018-08-07T13:30:22.188129 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:22.189092 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.64 ms +I, [2018-08-07T13:30:22.194224 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:22.194911 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-08-07T13:30:22.194978 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:22.195679 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.48 ms +I, [2018-08-07T13:30:22.195782 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:22.196173 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T13:30:22.196208 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:22.196612 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T13:30:22.196750 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:22.197067 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T13:30:22.197107 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:22.197399 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T13:30:22.197498 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:22.197725 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T13:30:22.197790 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:22.198059 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T13:30:22.198102 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:22.198370 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T13:30:22.198403 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:22.199161 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-08-07T13:30:22.199218 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:22.199524 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T13:30:22.200273 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:22.205886 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.61 ms +I, [2018-08-07T13:30:22.205967 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:22.207048 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T13:30:22.207110 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:22.207539 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T13:30:22.207593 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:24.069792 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T13:30:24.072257 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:30:24.208649 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.47 ms +I, [2018-08-07T13:30:24.208717 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:24.209076 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T13:30:24.209111 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:24.209439 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T13:30:24.209520 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:24.209895 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T13:30:24.209931 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:24.210309 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T13:30:24.210358 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:24.211009 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.41 ms +I, [2018-08-07T13:30:24.211064 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:24.211379 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T13:30:24.211412 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:24.211762 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T13:30:24.211812 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:24.212236 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T13:30:24.212273 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:24.212601 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T13:30:24.212648 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:24.213056 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T13:30:24.213091 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:26.073405 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.35 ms +I, [2018-08-07T13:30:26.073569 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:30:26.073999 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T13:30:26.074043 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:30:26.074355 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T13:30:26.074395 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:30:26.074696 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T13:30:26.074735 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:30:26.075334 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.45 ms +I, [2018-08-07T13:30:26.075390 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:30:26.075755 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-08-07T13:30:26.075802 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:30:26.076125 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T13:30:26.076170 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:30:26.076648 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.25 ms +I, [2018-08-07T13:30:26.076682 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:30:26.076922 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T13:30:26.076962 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:30:26.077213 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T13:30:26.077243 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:30:26.077943 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.53 ms +I, [2018-08-07T13:30:26.078219 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:30:26.214291 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-08-07T13:30:26.214379 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:26.215274 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-08-07T13:30:26.215339 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:26.215777 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T13:30:26.216096 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:26.217611 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T13:30:26.217713 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:26.218431 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.52 ms +I, [2018-08-07T13:30:26.218499 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:26.219122 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T13:30:26.219220 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:26.219814 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T13:30:26.219897 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:26.232190 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T13:30:26.232232 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:26.232692 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T13:30:26.232730 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:26.235836 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T13:30:26.235993 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:26.237073 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.6 ms +I, [2018-08-07T13:30:26.237165 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:26.249524 #7] INFO -- : Inline processing of topic section_change with 1 messages took 12.07 ms +I, [2018-08-07T13:30:26.249665 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:26.256443 #7] INFO -- : Inline processing of topic section_change with 1 messages took 3.46 ms +I, [2018-08-07T13:30:26.256555 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:28.078959 #7] INFO -- : Committing offsets: course_change/0:191 +I, [2018-08-07T13:30:28.081952 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-08-07T13:30:28.082419 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:30:28.082760 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T13:30:28.082793 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:30:28.083014 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T13:30:28.083043 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:30:28.083276 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T13:30:28.083305 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:30:28.083530 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T13:30:28.083560 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:30:28.083781 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T13:30:28.083810 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:30:28.084024 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T13:30:28.084053 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:30:28.084255 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T13:30:28.084284 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:30:28.084476 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-08-07T13:30:28.084504 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:30:28.084712 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T13:30:28.084741 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:30:28.084941 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T13:30:28.084969 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:30:28.257242 #7] INFO -- : Committing offsets: section_change/0:318 +I, [2018-08-07T13:30:28.259685 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T13:30:28.259729 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:28.259972 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T13:30:28.260001 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:28.260225 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T13:30:28.260255 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:28.260469 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T13:30:28.260498 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:28.260716 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T13:30:28.260744 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:28.261010 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T13:30:28.261040 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:28.261270 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T13:30:28.261299 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:28.261501 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T13:30:28.261529 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:28.261747 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T13:30:28.263791 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:28.264206 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T13:30:28.264252 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:28.264584 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T13:30:28.264628 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:28.264950 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T13:30:28.264992 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:28.265384 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T13:30:28.268030 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:28.268731 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T13:30:28.269356 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:28.270111 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.47 ms +I, [2018-08-07T13:30:28.270185 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:28.270486 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T13:30:28.270519 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:30.085670 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-08-07T13:30:30.085721 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:30:30.085959 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T13:30:30.085989 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:30:30.086209 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T13:30:30.086238 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:30:30.086448 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T13:30:30.086478 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:30:30.086688 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T13:30:30.086717 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:30:30.086899 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T13:30:30.086927 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:30:30.087135 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T13:30:30.087163 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:30:30.087363 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T13:30:30.087392 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:30:30.087592 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T13:30:30.087639 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:30:30.087827 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T13:30:30.088278 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:30:30.088551 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T13:30:30.088581 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:30:30.088854 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T13:30:30.088884 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:30:30.089071 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T13:30:30.089100 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:30:30.271366 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T13:30:30.271441 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:30.272039 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-08-07T13:30:30.272100 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:30.272488 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T13:30:30.272542 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:30.272866 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T13:30:30.272914 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:30.273444 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T13:30:30.273531 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:30.273908 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T13:30:30.273952 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:30.274248 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T13:30:30.274285 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:30.274596 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T13:30:30.274639 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:30.274916 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T13:30:30.274996 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:30.275293 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T13:30:30.275335 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:30.277344 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.47 ms +I, [2018-08-07T13:30:30.277432 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:30.277757 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T13:30:30.277789 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:30.280496 #7] INFO -- : Inline processing of topic section_change with 1 messages took 2.48 ms +I, [2018-08-07T13:30:30.280646 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:30.282151 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.46 ms +I, [2018-08-07T13:30:30.282328 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:30.283063 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.4 ms +I, [2018-08-07T13:30:30.283204 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:30.284005 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-08-07T13:30:30.284155 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:30.284729 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T13:30:30.284767 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:30.285008 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T13:30:30.285038 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:30.285256 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T13:30:30.285281 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:30.285548 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T13:30:30.285578 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:30.285804 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T13:30:30.285834 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:30.293195 #7] INFO -- : Inline processing of topic section_change with 1 messages took 7.2 ms +I, [2018-08-07T13:30:30.293280 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:30.293898 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-08-07T13:30:30.293941 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:30.294378 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T13:30:30.294431 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:30.294807 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T13:30:30.294856 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:30.295183 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T13:30:30.295256 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:30.295491 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T13:30:30.295522 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:30.295831 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T13:30:30.295862 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:30.296101 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T13:30:30.296211 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:30.299646 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T13:30:30.299691 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:30.299997 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T13:30:30.300029 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:30.300240 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T13:30:30.300270 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:30.300479 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T13:30:30.300589 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:30.304513 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T13:30:30.304578 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:30.304921 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T13:30:30.304953 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:30.305188 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-08-07T13:30:30.305218 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:30.305428 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T13:30:30.305456 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:30.305797 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T13:30:30.305829 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:30.308209 #7] INFO -- : Inline processing of topic section_change with 1 messages took 2.21 ms +I, [2018-08-07T13:30:30.308275 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:30.309051 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.43 ms +I, [2018-08-07T13:30:30.309100 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:30.309689 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T13:30:30.312050 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:30.312624 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T13:30:30.312677 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:30.313023 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T13:30:30.313092 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:30.313631 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T13:30:30.314043 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:30.315094 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.55 ms +I, [2018-08-07T13:30:30.315150 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:30.315480 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T13:30:30.315519 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:30.315892 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T13:30:30.315931 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:30.316214 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T13:30:30.316251 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:32.092757 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.33 ms +I, [2018-08-07T13:30:32.092845 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:30:32.093516 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.3 ms +I, [2018-08-07T13:30:32.093557 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:30:32.093980 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.23 ms +I, [2018-08-07T13:30:32.094024 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:30:32.094565 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.28 ms +I, [2018-08-07T13:30:32.094615 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:30:32.095179 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.36 ms +I, [2018-08-07T13:30:32.095233 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:30:32.095747 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.32 ms +I, [2018-08-07T13:30:32.095781 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:30:32.096249 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T13:30:32.096288 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:30:32.096736 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-08-07T13:30:32.096773 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:30:32.326711 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-08-07T13:30:32.326788 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:32.327323 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T13:30:32.327395 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:32.327783 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T13:30:32.327834 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:32.328218 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T13:30:32.328251 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:32.329965 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.46 ms +I, [2018-08-07T13:30:32.330077 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:32.330462 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T13:30:32.330495 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:32.330861 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T13:30:32.330895 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:32.331193 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T13:30:32.331228 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:32.331491 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T13:30:32.331527 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:32.331774 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T13:30:32.331804 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:32.332191 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T13:30:32.332237 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:32.332624 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T13:30:32.332662 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:34.097615 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-08-07T13:30:34.097678 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:30:34.098015 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T13:30:34.099413 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:30:34.099762 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T13:30:34.099797 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:30:34.102214 #7] INFO -- : Inline processing of topic course_change with 1 messages took 2.21 ms +I, [2018-08-07T13:30:34.102297 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:30:34.102864 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.32 ms +I, [2018-08-07T13:30:34.102907 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:30:34.103179 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T13:30:34.103217 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:30:34.103473 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-08-07T13:30:34.103505 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:30:34.103693 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T13:30:34.103747 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:30:34.103984 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T13:30:34.104015 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:30:34.104217 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T13:30:34.104246 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:30:34.333532 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T13:30:34.333595 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:34.334114 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T13:30:34.334201 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:34.334536 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T13:30:34.334570 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:34.335089 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T13:30:34.335126 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:34.335498 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T13:30:34.335534 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:34.335814 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T13:30:34.335871 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:34.336119 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T13:30:34.336149 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:34.336426 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T13:30:34.336490 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:34.336756 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T13:30:34.336788 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:34.337212 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-08-07T13:30:34.337280 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:34.337627 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T13:30:34.337667 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:34.338349 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.54 ms +I, [2018-08-07T13:30:34.338431 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:36.105410 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.63 ms +I, [2018-08-07T13:30:36.105479 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:30:36.105853 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T13:30:36.105901 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:30:36.106264 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T13:30:36.106313 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:30:36.107138 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.66 ms +I, [2018-08-07T13:30:36.107174 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:30:36.107438 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T13:30:36.107484 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:30:36.107800 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T13:30:36.107844 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:30:36.108193 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T13:30:36.108238 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:30:36.108608 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T13:30:36.108704 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:30:36.109215 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.25 ms +I, [2018-08-07T13:30:36.109268 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:30:36.109640 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T13:30:36.109692 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:30:36.110481 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.61 ms +I, [2018-08-07T13:30:36.110534 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:30:36.110907 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T13:30:36.110958 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:30:36.122983 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.72 ms +I, [2018-08-07T13:30:36.123051 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:30:36.123479 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-08-07T13:30:36.123526 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:30:36.338985 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T13:30:36.339035 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:36.339459 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T13:30:36.339535 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:36.340330 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T13:30:36.340369 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:36.340782 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T13:30:36.340823 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:36.341139 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T13:30:36.341183 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:36.341486 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T13:30:36.341517 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:36.342033 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-08-07T13:30:36.342073 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:36.342395 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T13:30:36.342437 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:36.342700 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T13:30:36.342731 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:36.343151 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T13:30:36.343184 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:36.343472 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T13:30:36.343508 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:36.343759 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T13:30:36.343841 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:36.344128 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T13:30:36.344159 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:36.344464 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T13:30:36.344497 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:36.344713 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-08-07T13:30:36.344743 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:36.344980 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T13:30:36.345045 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:36.345276 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T13:30:36.345306 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:36.345549 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T13:30:36.345579 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:36.345780 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T13:30:36.345808 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:36.347991 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T13:30:36.348077 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:36.348748 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T13:30:36.348801 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:36.349068 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T13:30:36.349100 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:38.123825 #7] INFO -- : Committing offsets: course_change/0:247 +I, [2018-08-07T13:30:38.126259 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-08-07T13:30:38.126304 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:30:38.126571 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T13:30:38.126625 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:30:38.126850 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T13:30:38.126880 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:30:38.127094 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T13:30:38.127123 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:30:38.349352 #7] INFO -- : Committing offsets: section_change/0:428 +I, [2018-08-07T13:30:38.351481 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T13:30:38.351528 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:38.351786 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T13:30:38.351815 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:38.353920 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T13:30:38.353981 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:38.354375 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T13:30:38.354428 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:38.354778 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T13:30:38.354811 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:38.355048 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T13:30:38.355086 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:38.355301 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T13:30:38.355330 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:38.355538 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T13:30:38.355567 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:38.355821 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T13:30:38.355877 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:38.356359 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-08-07T13:30:38.356416 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:38.356768 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T13:30:38.356816 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:38.357118 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T13:30:38.358755 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:38.359188 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T13:30:38.359241 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:38.367030 #7] INFO -- : Inline processing of topic section_change with 1 messages took 7.42 ms +I, [2018-08-07T13:30:38.367093 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:38.367623 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T13:30:38.367685 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:38.367935 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T13:30:38.367965 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:38.368174 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T13:30:38.368203 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:38.368442 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T13:30:38.368474 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:38.368814 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T13:30:38.368861 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:38.372119 #7] INFO -- : Inline processing of topic section_change with 1 messages took 2.15 ms +I, [2018-08-07T13:30:38.372248 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:38.372689 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T13:30:38.372734 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:38.373063 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T13:30:38.373097 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:38.373393 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T13:30:38.373442 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:38.377389 #7] INFO -- : Inline processing of topic section_change with 1 messages took 3.65 ms +I, [2018-08-07T13:30:38.377460 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:38.379870 #7] INFO -- : Inline processing of topic section_change with 1 messages took 2.16 ms +I, [2018-08-07T13:30:38.379941 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:38.380501 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T13:30:38.380556 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:38.383164 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T13:30:38.383247 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:38.385430 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.98 ms +I, [2018-08-07T13:30:38.385493 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:38.385931 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T13:30:38.385971 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:38.387966 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.81 ms +I, [2018-08-07T13:30:38.388103 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:38.388640 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T13:30:38.388686 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:38.388999 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T13:30:38.389046 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:38.391492 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T13:30:38.394723 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:38.400466 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-08-07T13:30:38.400540 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:38.401220 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T13:30:38.401263 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:38.401518 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T13:30:38.401548 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:38.401754 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T13:30:38.401783 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:38.402005 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T13:30:38.402034 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:38.402267 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T13:30:38.402296 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:38.402537 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T13:30:38.402566 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:38.402795 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T13:30:38.402823 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:38.403047 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T13:30:38.403075 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:40.134380 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-08-07T13:30:40.134447 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:30:40.404050 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-08-07T13:30:40.404119 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:40.404592 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T13:30:40.404652 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:40.405051 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T13:30:40.405099 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:40.405404 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T13:30:40.405472 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:40.405780 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T13:30:40.405814 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:40.406631 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T13:30:40.406669 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:40.406941 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T13:30:40.406972 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:40.407231 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T13:30:40.407261 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:42.140703 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.34 ms +I, [2018-08-07T13:30:42.140760 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:30:42.141058 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T13:30:42.141091 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:30:42.141455 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T13:30:42.141516 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:30:42.420535 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T13:30:42.420586 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:42.421065 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T13:30:42.421109 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:42.421512 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T13:30:42.421553 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:42.421938 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T13:30:42.421981 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:42.422352 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T13:30:42.422400 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:42.422732 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T13:30:42.422786 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:44.143130 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.31 ms +I, [2018-08-07T13:30:44.143186 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:30:44.143520 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T13:30:44.143553 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:30:44.143830 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T13:30:44.143877 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:30:44.146979 #7] INFO -- : Inline processing of topic course_change with 1 messages took 2.76 ms +I, [2018-08-07T13:30:44.147216 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:30:44.148147 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.43 ms +I, [2018-08-07T13:30:44.148217 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:30:44.155991 #7] INFO -- : Inline processing of topic course_change with 1 messages took 7.53 ms +I, [2018-08-07T13:30:44.156048 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:30:44.156514 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.26 ms +I, [2018-08-07T13:30:44.156562 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:30:44.423959 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.6 ms +I, [2018-08-07T13:30:44.424035 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:44.424552 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T13:30:44.424602 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:44.424961 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T13:30:44.424999 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:44.425541 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-08-07T13:30:44.425591 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:44.425971 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T13:30:44.426016 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:44.426357 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T13:30:44.426390 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:44.426663 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T13:30:44.426700 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:44.426971 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T13:30:44.427001 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:46.157313 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T13:30:46.157364 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:30:46.157608 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-08-07T13:30:46.157637 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:30:46.157939 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T13:30:46.158001 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:30:46.427623 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T13:30:46.427674 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:46.427924 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T13:30:46.427954 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:46.428197 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T13:30:46.428273 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:46.428524 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T13:30:46.428553 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:46.428793 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T13:30:46.428822 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:48.158470 #7] INFO -- : Committing offsets: course_change/0:265 +I, [2018-08-07T13:30:48.166229 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.31 ms +I, [2018-08-07T13:30:48.166288 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:30:48.168555 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-08-07T13:30:48.168598 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:30:48.168827 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T13:30:48.168855 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:30:48.169072 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-08-07T13:30:48.169102 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:30:48.169514 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-08-07T13:30:48.169549 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:30:48.169872 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T13:30:48.169922 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:30:48.170127 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-08-07T13:30:48.170192 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:30:48.170406 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T13:30:48.170435 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:30:48.176030 #7] INFO -- : Inline processing of topic course_change with 1 messages took 5.36 ms +I, [2018-08-07T13:30:48.176085 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:30:48.176490 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T13:30:48.176530 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:30:48.176800 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T13:30:48.178179 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:30:48.179291 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.63 ms +I, [2018-08-07T13:30:48.179363 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:30:48.179688 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T13:30:48.179722 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:30:48.180085 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.23 ms +I, [2018-08-07T13:30:48.180134 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:30:48.180438 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T13:30:48.180470 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:30:48.429127 #7] INFO -- : Committing offsets: section_change/0:497 +I, [2018-08-07T13:30:48.431730 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T13:30:48.431799 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:48.433178 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-08-07T13:30:48.433227 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:48.433657 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T13:30:48.433698 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:48.434001 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T13:30:48.434036 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:48.435185 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.98 ms +I, [2018-08-07T13:30:48.435255 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:48.435801 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T13:30:48.435868 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:48.436272 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T13:30:48.436311 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:48.436571 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T13:30:48.436636 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:48.436937 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T13:30:48.436967 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:48.437273 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T13:30:48.437309 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:48.437698 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T13:30:48.437801 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:48.438104 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T13:30:48.438136 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:48.438366 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T13:30:48.438396 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:48.442188 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T13:30:48.442263 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:48.442577 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T13:30:48.442608 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:48.442868 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T13:30:48.442900 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:50.181085 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-08-07T13:30:50.181134 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:30:50.181362 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T13:30:50.181393 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:30:50.181606 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T13:30:50.181634 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:30:50.181816 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T13:30:50.181866 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:30:50.182048 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T13:30:50.182108 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:30:50.182290 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T13:30:50.182318 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:30:50.183033 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T13:30:50.183068 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:30:50.183326 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T13:30:50.183357 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:30:50.183564 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T13:30:50.183594 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:30:50.183805 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-08-07T13:30:50.183833 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:30:50.185499 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T13:30:50.185536 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:30:50.185763 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T13:30:50.185830 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:30:50.443600 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T13:30:50.443651 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:50.443914 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T13:30:50.443944 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:50.444161 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T13:30:50.444190 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:50.444409 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T13:30:50.444439 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:50.444641 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-08-07T13:30:50.444670 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:50.444889 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T13:30:50.444918 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:50.445140 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T13:30:50.445169 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:50.445375 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-08-07T13:30:50.445403 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:50.445646 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T13:30:50.445674 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:50.445881 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T13:30:50.445909 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:50.446129 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T13:30:50.446157 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:50.446366 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-08-07T13:30:50.446395 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:50.446598 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-08-07T13:30:50.446626 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:50.446837 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-08-07T13:30:50.446866 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:50.447073 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-08-07T13:30:50.447101 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:50.447307 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-08-07T13:30:50.447335 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:50.447542 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-08-07T13:30:50.447569 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:50.447774 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-08-07T13:30:50.447803 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:50.448061 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T13:30:50.448092 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:50.448304 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-08-07T13:30:50.448333 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:50.448542 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T13:30:50.448571 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:50.448780 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T13:30:50.448809 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:50.449004 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T13:30:50.449049 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:50.449249 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T13:30:50.449302 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:50.449503 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-08-07T13:30:50.449532 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:50.449717 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-08-07T13:30:50.449775 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:50.449955 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-08-07T13:30:50.450008 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:50.450208 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T13:30:50.450237 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:50.450441 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T13:30:50.451781 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:50.452570 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T13:30:50.452912 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:50.453434 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T13:30:50.456307 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:50.456817 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T13:30:50.457004 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:50.457397 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T13:30:50.457434 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:50.457760 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T13:30:50.457793 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:52.152445 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T13:30:52.152494 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:30:52.152728 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T13:30:52.152758 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:30:52.152966 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T13:30:52.152994 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:30:52.153216 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T13:30:52.153246 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:30:52.153451 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T13:30:52.153480 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:30:52.153684 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T13:30:52.153712 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:30:52.153915 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T13:30:52.153944 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:30:52.154148 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T13:30:52.154196 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:30:52.154398 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T13:30:52.154427 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:30:52.154630 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T13:30:52.154660 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:30:52.154839 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T13:30:52.154885 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:30:52.423942 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T13:30:52.424044 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:52.424327 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T13:30:52.424373 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:52.424636 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T13:30:52.424666 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:52.424909 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T13:30:52.424938 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:52.425268 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T13:30:52.425299 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:52.425547 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T13:30:52.425577 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:52.426042 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T13:30:52.426111 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:52.426403 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T13:30:52.426442 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:52.426695 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T13:30:52.426726 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:52.426977 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T13:30:52.427020 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:52.427268 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T13:30:52.427313 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:52.427772 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T13:30:52.427840 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:52.428093 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T13:30:52.428132 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:52.428388 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T13:30:52.428418 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:52.428688 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T13:30:52.428724 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:54.155957 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.48 ms +I, [2018-08-07T13:30:54.156164 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:30:54.156682 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T13:30:54.156741 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:30:54.157134 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T13:30:54.157185 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:30:54.157669 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.28 ms +I, [2018-08-07T13:30:54.157759 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:30:54.158209 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T13:30:54.158253 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:30:54.158538 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T13:30:54.158584 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:30:54.158944 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T13:30:54.158995 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:30:54.159887 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-08-07T13:30:54.159987 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:30:54.160663 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.23 ms +I, [2018-08-07T13:30:54.160728 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:30:54.161640 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.35 ms +I, [2018-08-07T13:30:54.161812 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:30:54.162444 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.36 ms +I, [2018-08-07T13:30:54.162496 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:30:54.162852 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T13:30:54.162897 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:30:54.163253 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T13:30:54.163318 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:30:54.163697 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T13:30:54.163858 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:30:54.164268 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-08-07T13:30:54.164316 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:30:54.429401 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T13:30:54.429452 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:54.429717 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T13:30:54.429747 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:54.429974 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T13:30:54.430003 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:54.430235 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T13:30:54.430291 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:54.430494 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T13:30:54.430549 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:54.430782 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T13:30:54.430811 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:54.431006 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T13:30:54.431035 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:54.431340 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T13:30:54.431376 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:54.431614 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T13:30:54.431644 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:54.431868 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T13:30:54.431925 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:54.432146 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T13:30:54.432175 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:54.432399 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T13:30:54.432428 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:54.432654 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T13:30:54.432683 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:54.432899 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-08-07T13:30:54.432928 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:54.433131 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-08-07T13:30:54.433185 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:54.433498 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T13:30:54.433527 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:54.433704 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-08-07T13:30:54.433741 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:54.433936 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T13:30:54.433964 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:54.434153 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T13:30:54.434181 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:54.434371 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T13:30:54.434428 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:56.165141 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-08-07T13:30:56.165191 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:30:56.165436 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T13:30:56.165466 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:30:56.165685 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T13:30:56.165714 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:30:56.165927 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T13:30:56.165956 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:30:56.166170 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T13:30:56.166199 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:30:56.166400 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T13:30:56.166439 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:30:56.166632 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-08-07T13:30:56.166678 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:30:56.166874 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-08-07T13:30:56.166903 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:30:56.167113 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T13:30:56.168288 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:30:56.169293 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T13:30:56.169332 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:30:56.435318 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-08-07T13:30:56.435378 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:56.435686 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T13:30:56.435719 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:56.435989 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T13:30:56.436026 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:56.437114 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.91 ms +I, [2018-08-07T13:30:56.438228 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:56.438585 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T13:30:56.438659 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:56.438866 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T13:30:56.438896 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:56.439336 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-08-07T13:30:56.439370 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:56.439601 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T13:30:56.439630 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:56.439864 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T13:30:56.439893 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:56.440288 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T13:30:56.440319 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:56.440566 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T13:30:56.440595 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:56.440818 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T13:30:56.440848 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:56.441059 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T13:30:56.441089 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:56.441307 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T13:30:56.441336 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:56.441539 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T13:30:56.441581 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:56.441805 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T13:30:56.441863 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:56.442568 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.59 ms +I, [2018-08-07T13:30:56.442609 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:56.442860 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T13:30:56.442889 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:56.443104 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T13:30:56.443198 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:56.443520 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T13:30:56.443558 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:56.444087 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T13:30:56.444136 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:56.444478 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T13:30:56.444523 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:56.444957 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T13:30:56.445013 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:56.445778 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.53 ms +I, [2018-08-07T13:30:56.446100 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:56.446512 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T13:30:56.446563 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:56.446910 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T13:30:56.446957 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:56.447279 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T13:30:56.447326 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:56.448125 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.63 ms +I, [2018-08-07T13:30:56.448272 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:56.448786 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-08-07T13:30:56.448838 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:56.449249 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T13:30:56.449303 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:56.449600 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T13:30:56.449683 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:56.450696 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.77 ms +I, [2018-08-07T13:30:56.450843 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:56.451500 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T13:30:56.451543 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:56.451891 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T13:30:56.451933 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:56.452344 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T13:30:56.452380 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:56.453975 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-08-07T13:30:56.454019 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:56.454356 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T13:30:56.454389 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:56.454633 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T13:30:56.454664 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:56.455329 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.55 ms +I, [2018-08-07T13:30:56.455368 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:56.455976 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-08-07T13:30:56.456019 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:30:58.169774 #7] INFO -- : Committing offsets: course_change/0:328 +I, [2018-08-07T13:30:58.174139 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.47 ms +I, [2018-08-07T13:30:58.174253 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:30:58.174887 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.4 ms +I, [2018-08-07T13:30:58.175076 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:30:58.175607 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.29 ms +I, [2018-08-07T13:30:58.175680 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:30:58.176177 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T13:30:58.176216 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:30:58.176671 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T13:30:58.176720 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:30:58.177156 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T13:30:58.177409 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:30:58.177975 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T13:30:58.178027 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:30:58.178406 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-08-07T13:30:58.178450 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:30:58.178732 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T13:30:58.178761 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:30:58.179101 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-08-07T13:30:58.179148 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:30:58.179467 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T13:30:58.179509 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:30:58.179854 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T13:30:58.179898 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:30:58.180555 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T13:30:58.181104 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:30:58.182091 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.78 ms +I, [2018-08-07T13:30:58.182166 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:30:58.183005 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T13:30:58.183465 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:30:58.184658 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.93 ms +I, [2018-08-07T13:30:58.184896 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:30:58.472497 #7] INFO -- : Committing offsets: section_change/0:622 +I, [2018-08-07T13:30:58.770336 #7] INFO -- : Inline processing of topic section_change with 1 messages took 42.35 ms +I, [2018-08-07T13:30:58.770455 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:31:00.190456 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1412.06 ms +I, [2018-08-07T13:31:00.203594 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:31:00.313418 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.29 ms +I, [2018-08-07T13:31:00.313596 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:31:00.314865 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.89 ms +I, [2018-08-07T13:31:00.314948 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:31:00.325491 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.6 ms +I, [2018-08-07T13:31:00.325625 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:31:00.328553 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.92 ms +I, [2018-08-07T13:31:00.328993 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:31:00.330053 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T13:31:00.330165 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:31:00.331686 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.7 ms +I, [2018-08-07T13:31:00.331747 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:31:00.332739 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.62 ms +I, [2018-08-07T13:31:00.332806 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:31:00.334875 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.78 ms +I, [2018-08-07T13:31:00.341523 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:31:00.354090 #7] INFO -- : Inline processing of topic section_change with 1 messages took 12.15 ms +I, [2018-08-07T13:31:00.354328 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:31:00.356008 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.3 ms +I, [2018-08-07T13:31:00.356137 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:31:00.357930 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.25 ms +I, [2018-08-07T13:31:00.358002 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:31:02.302652 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.44 ms +I, [2018-08-07T13:31:02.302732 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:31:02.303400 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T13:31:02.303463 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:31:02.304581 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-08-07T13:31:02.304653 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:31:02.305222 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.3 ms +I, [2018-08-07T13:31:02.305273 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:31:02.305786 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T13:31:02.305840 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:31:02.306435 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.4 ms +I, [2018-08-07T13:31:02.306479 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:31:02.306901 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.27 ms +I, [2018-08-07T13:31:02.306934 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:31:02.307274 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-08-07T13:31:02.307350 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:31:02.359505 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T13:31:02.359655 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:31:02.360001 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T13:31:02.360035 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:31:02.360337 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T13:31:02.360369 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:31:02.360664 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T13:31:02.360720 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:31:02.360968 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T13:31:02.361150 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:31:02.361417 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T13:31:02.361517 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:31:02.362081 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-08-07T13:31:02.362159 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:31:02.362444 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T13:31:02.362475 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:31:02.362818 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T13:31:02.362851 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:31:02.363638 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T13:31:02.363691 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:31:02.364065 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T13:31:02.364128 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:31:02.364592 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-08-07T13:31:02.364635 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:31:02.364972 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T13:31:02.365005 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:31:02.365847 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T13:31:02.366046 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:31:02.366546 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T13:31:02.366583 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:31:02.366906 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T13:31:02.366949 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:31:02.367232 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T13:31:02.367264 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:31:02.367949 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.55 ms +I, [2018-08-07T13:31:02.367999 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:31:02.368906 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T13:31:02.368961 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:31:02.369439 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T13:31:02.369490 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:31:02.370614 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.6 ms +I, [2018-08-07T13:31:02.370703 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:31:02.371150 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T13:31:02.371219 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:31:02.371502 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T13:31:02.371536 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:31:02.371756 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T13:31:02.372436 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:31:02.373272 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-08-07T13:31:02.373365 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:31:02.373700 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T13:31:02.373740 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:31:02.374036 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T13:31:02.374080 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:31:02.374344 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T13:31:02.374375 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:31:02.375158 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.63 ms +I, [2018-08-07T13:31:02.375203 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:31:02.375852 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-08-07T13:31:02.375900 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:31:02.378563 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-08-07T13:31:02.379353 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:31:02.379940 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-08-07T13:31:02.380072 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:31:02.382543 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-08-07T13:31:02.395571 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:31:02.395945 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T13:31:02.395978 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:31:04.311739 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.29 ms +I, [2018-08-07T13:31:04.311794 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:31:04.313224 #7] INFO -- : Inline processing of topic course_change with 1 messages took 1.19 ms +I, [2018-08-07T13:31:04.313277 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:31:04.313646 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T13:31:04.313679 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:31:04.315873 #7] INFO -- : Inline processing of topic course_change with 1 messages took 1.07 ms +I, [2018-08-07T13:31:04.315924 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:31:04.316255 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T13:31:04.316287 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:31:04.316560 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T13:31:04.316591 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:31:04.316795 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T13:31:04.316832 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:31:04.399247 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-08-07T13:31:04.399299 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:31:04.399624 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T13:31:04.399656 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:31:04.399880 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T13:31:04.399910 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:31:04.400135 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T13:31:04.400164 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:31:04.401012 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T13:31:04.401079 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:31:04.402637 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.92 ms +I, [2018-08-07T13:31:04.402777 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:31:04.404714 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.88 ms +I, [2018-08-07T13:31:04.404841 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:31:04.406257 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.5 ms +I, [2018-08-07T13:31:04.406401 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:31:04.407103 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-08-07T13:31:04.407148 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:31:06.317816 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.34 ms +I, [2018-08-07T13:31:06.317908 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:31:06.318474 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.24 ms +I, [2018-08-07T13:31:06.318568 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:31:06.318982 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T13:31:06.319025 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:31:06.319450 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-08-07T13:31:06.319493 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:31:06.319993 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.26 ms +I, [2018-08-07T13:31:06.320045 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:31:06.320461 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.24 ms +I, [2018-08-07T13:31:06.320505 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:31:06.320923 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.25 ms +I, [2018-08-07T13:31:06.320962 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:31:06.321481 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-08-07T13:31:06.321519 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:31:06.321857 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T13:31:06.321903 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:31:06.408185 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-08-07T13:31:06.408236 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:31:06.408920 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.46 ms +I, [2018-08-07T13:31:06.408964 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:31:06.411646 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T13:31:06.412098 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:31:06.412730 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T13:31:06.412779 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:31:06.413328 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T13:31:06.413381 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:31:06.414018 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T13:31:06.414106 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:31:06.415092 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T13:31:06.415198 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:31:06.417177 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.76 ms +I, [2018-08-07T13:31:06.417790 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:31:06.418802 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-08-07T13:31:06.420516 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:31:06.421048 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T13:31:06.421088 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:31:06.424138 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T13:31:06.424183 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:31:06.425893 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T13:31:06.425949 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:31:06.430129 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T13:31:06.430174 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:31:06.431123 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-08-07T13:31:06.431197 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:31:06.431692 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T13:31:06.431749 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:31:06.432190 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-08-07T13:31:06.432654 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:31:06.436685 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-08-07T13:31:06.436745 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:31:06.439668 #7] INFO -- : Inline processing of topic section_change with 1 messages took 2.19 ms +I, [2018-08-07T13:31:06.439714 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:31:06.445530 #7] INFO -- : Inline processing of topic section_change with 1 messages took 2.71 ms +I, [2018-08-07T13:31:06.445581 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:31:06.446872 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.49 ms +I, [2018-08-07T13:31:06.446915 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:31:06.449350 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.59 ms +I, [2018-08-07T13:31:06.450019 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:31:06.452750 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.65 ms +I, [2018-08-07T13:31:06.454142 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:31:06.455956 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.62 ms +I, [2018-08-07T13:31:06.456918 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:31:06.458347 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.73 ms +I, [2018-08-07T13:31:06.459202 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:31:06.460977 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-08-07T13:31:06.461071 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:31:06.461459 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T13:31:06.461494 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:31:06.461994 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T13:31:06.462030 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:31:06.468325 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-08-07T13:31:06.468409 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:31:08.322517 #7] INFO -- : Committing offsets: course_change/0:368 +I, [2018-08-07T13:31:08.332910 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.38 ms +I, [2018-08-07T13:31:08.333147 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:31:08.471078 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.49 ms +I, [2018-08-07T13:31:08.471469 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:31:08.472002 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-08-07T13:31:08.472055 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:31:08.472732 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.49 ms +I, [2018-08-07T13:31:08.472773 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:31:08.473318 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.4 ms +I, [2018-08-07T13:31:08.477449 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:31:08.478555 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.84 ms +I, [2018-08-07T13:31:08.478610 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:31:08.479330 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.41 ms +I, [2018-08-07T13:31:08.479403 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:31:08.487173 #7] INFO -- : Inline processing of topic section_change with 1 messages took 6.28 ms +I, [2018-08-07T13:31:08.487234 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:31:08.487990 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.58 ms +I, [2018-08-07T13:31:08.488179 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:31:08.488580 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T13:31:08.488616 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:31:08.489857 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T13:31:08.489997 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:31:10.336439 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.32 ms +I, [2018-08-07T13:31:10.336514 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:31:10.337101 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.4 ms +I, [2018-08-07T13:31:10.337138 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:31:10.338024 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.71 ms +I, [2018-08-07T13:31:10.338074 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:31:10.339158 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.53 ms +I, [2018-08-07T13:31:10.339213 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:31:10.339617 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.26 ms +I, [2018-08-07T13:31:10.339795 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:33:28.267269 #7] INFO -- : New topics added to target list: course_change +I, [2018-08-07T13:33:28.267436 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T13:33:28.273917 #7] INFO -- : New topics added to target list: section_change +I, [2018-08-07T13:33:28.274344 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T13:33:28.295226 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T13:33:28.295379 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T13:33:28.295610 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T13:33:28.295664 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T13:33:33.296096 #7] 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.14:9094 +I, [2018-08-07T13:33:33.297079 #7] INFO -- : New topics added to target list: section_change +I, [2018-08-07T13:33:33.297154 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T13:33:33.299158 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T13:33:33.299895 #7] 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.14:9094 +I, [2018-08-07T13:33:33.304728 #7] INFO -- : New topics added to target list: course_change +I, [2018-08-07T13:33:33.304991 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T13:33:33.306027 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T13:33:33.309192 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T13:33:33.309578 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T13:33:38.400236 #7] 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.14:9094 +E, [2018-08-07T13:33:38.452232 #7] 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.14:9094 +I, [2018-08-07T13:33:38.497122 #7] INFO -- : New topics added to target list: section_change +I, [2018-08-07T13:33:38.497265 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T13:33:38.533964 #7] INFO -- : New topics added to target list: course_change +I, [2018-08-07T13:33:38.534059 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T13:33:38.562067 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T13:33:38.562257 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T13:33:38.566679 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T13:33:38.566811 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T13:33:43.563379 #7] 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.14:9094 +I, [2018-08-07T13:33:43.602659 #7] INFO -- : New topics added to target list: section_change +I, [2018-08-07T13:33:43.602729 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T13:33:43.576249 #7] 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.14:9094 +I, [2018-08-07T13:33:43.609871 #7] INFO -- : New topics added to target list: course_change +I, [2018-08-07T13:33:43.613361 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T13:33:48.100836 #7] ERROR -- : No brokers in cluster +E, [2018-08-07T13:33:48.222100 #7] ERROR -- : No brokers in cluster +E, [2018-08-07T13:33:53.190154 #7] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: + +I, [2018-08-07T13:33:53.240075 #7] INFO -- : New topics added to target list: section_change +I, [2018-08-07T13:33:53.240496 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T13:33:53.243681 #7] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: + +I, [2018-08-07T13:33:53.250706 #7] INFO -- : New topics added to target list: course_change +I, [2018-08-07T13:33:53.250845 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T13:33:53.476080 #7] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-07T13:33:53.487821 #7] INFO -- : Joining group `notifications_course_change` +I, [2018-08-07T13:33:53.607510 #7] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-07T13:33:53.610991 #7] INFO -- : Joining group `notifications_notifications` +I, [2018-08-07T13:33:53.608051 #7] INFO -- : Will fetch at most 1048576 bytes at a time per partition from course_change +I, [2018-08-07T13:33:53.615241 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T13:33:53.640946 #7] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-07T13:33:53.641190 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:33:53.708291 #7] INFO -- : Will fetch at most 1048576 bytes at a time per partition from section_change +I, [2018-08-07T13:33:53.710030 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T13:33:53.723815 #7] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-07T13:33:53.723954 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:33:54.646967 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:33:54.734345 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:33:55.647535 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:33:55.735245 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:33:56.651394 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:33:56.735724 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:33:57.652687 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:33:57.736188 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:33:58.653111 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:33:58.736556 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:33:59.655680 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:33:59.736959 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:34:00.210745 #7] INFO -- : Joined group `notifications_course_change` with member id `notifications-17cb494c-fd53-4888-b7fe-1dc74c20ce49` +I, [2018-08-07T13:34:00.210810 #7] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-07T13:34:00.234472 #7] INFO -- : Joined group `notifications_notifications` with member id `notifications-a7c5a642-93e6-4ef1-b564-934d51fbda3b` +I, [2018-08-07T13:34:00.234562 #7] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-07T13:34:00.656163 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:34:00.737312 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:34:01.219024 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T13:34:01.236595 #7] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-07T13:34:01.236939 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T13:34:01.251955 #7] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-07T13:34:01.275426 #7] INFO -- : Partitions assigned for `course_change`: 0 +I, [2018-08-07T13:34:01.289049 #7] INFO -- : Partitions assigned for `section_change`: 0 +I, [2018-08-07T13:34:01.657236 #7] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-07T13:34:01.657358 #7] INFO -- : New topics added to target list: course_change +I, [2018-08-07T13:34:01.657396 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T13:34:01.667986 #7] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-07T13:34:01.739105 #7] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-07T13:34:01.739397 #7] INFO -- : New topics added to target list: section_change +I, [2018-08-07T13:34:01.739544 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T13:34:01.825575 #7] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-07T13:34:05.409353 #7] INFO -- : Inline processing of topic course_change with 1 messages took 70.12 ms +I, [2018-08-07T13:34:05.409450 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:34:05.409500 #7] INFO -- : Committing offsets with recommit: course_change/0:1 +I, [2018-08-07T13:34:05.416771 #7] INFO -- : Inline processing of topic section_change with 1 messages took 51.24 ms +I, [2018-08-07T13:34:05.416853 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:34:05.416920 #7] INFO -- : Committing offsets with recommit: section_change/0:1 +I, [2018-08-07T13:34:05.427750 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T13:34:05.427801 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:34:05.428124 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T13:34:05.428165 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:34:05.428557 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T13:34:05.428593 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:34:05.445200 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T13:34:05.445666 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:34:05.446467 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-08-07T13:34:05.446519 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:34:05.447296 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.48 ms +I, [2018-08-07T13:34:05.447628 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:34:05.448203 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T13:34:05.448288 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:34:05.449087 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T13:34:05.449127 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:34:05.449445 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T13:34:05.449479 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:34:05.449924 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-08-07T13:34:05.449976 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:34:05.454368 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-08-07T13:34:05.454414 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:34:05.454760 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T13:34:05.454854 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:34:05.454975 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T13:34:05.455094 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:34:05.455785 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-08-07T13:34:05.455846 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:34:05.456318 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T13:34:05.456415 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:34:05.456752 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T13:34:05.456784 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:34:05.457083 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T13:34:05.457174 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:34:05.459872 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.43 ms +I, [2018-08-07T13:34:05.459919 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:34:07.456308 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-08-07T13:34:07.456392 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:34:07.456738 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T13:34:07.456781 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:34:07.457070 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T13:34:07.457113 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:34:07.457421 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T13:34:07.459103 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:34:07.459697 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.36 ms +I, [2018-08-07T13:34:07.459745 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:34:07.460064 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T13:34:07.460103 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:34:07.460388 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T13:34:07.460426 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:34:07.460689 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T13:34:07.460727 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:34:07.461002 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T13:34:07.461039 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:34:07.461310 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T13:34:07.464540 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:34:07.464961 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T13:34:07.463181 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-08-07T13:34:07.465657 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:34:07.466100 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T13:34:07.466150 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:34:07.466477 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T13:34:07.466526 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:34:07.469716 #7] INFO -- : Inline processing of topic section_change with 1 messages took 2.88 ms +I, [2018-08-07T13:34:07.469764 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:34:07.470049 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T13:34:07.470105 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:34:07.470324 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T13:34:07.470354 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:34:07.470608 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T13:34:07.470650 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:34:07.470976 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T13:34:07.471048 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:34:07.471479 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T13:34:07.471539 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:34:07.471893 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T13:34:07.471945 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:34:07.472268 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T13:34:07.472312 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:34:07.472622 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T13:34:07.472665 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:34:07.472955 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T13:34:07.472994 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:34:07.473289 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T13:34:07.473325 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:34:07.473650 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T13:34:07.473699 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:34:07.474010 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T13:34:07.474057 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:34:07.474369 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T13:34:07.474414 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:34:07.474735 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T13:34:07.474780 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:34:07.475062 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T13:34:07.475109 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:34:07.475408 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T13:34:07.475447 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:34:07.475740 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T13:34:07.475779 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:34:07.486010 #7] INFO -- : Inline processing of topic section_change with 1 messages took 9.89 ms +I, [2018-08-07T13:34:07.488739 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:34:07.489103 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T13:34:07.489136 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:34:07.489353 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T13:34:07.489445 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:34:07.496929 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T13:34:07.497022 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:34:07.498110 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.85 ms +I, [2018-08-07T13:34:07.498187 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:34:07.499717 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-08-07T13:34:07.499835 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:34:07.516664 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-08-07T13:34:07.516737 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:34:07.517193 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T13:34:07.517257 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:34:07.517595 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T13:34:07.517641 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:34:07.518328 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T13:34:07.518397 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:34:07.518838 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T13:34:07.518904 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:34:07.465018 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:34:07.520172 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-08-07T13:34:07.520219 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:34:10.242519 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.78 ms +I, [2018-08-07T13:34:10.242698 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:34:10.244601 #7] INFO -- : Inline processing of topic course_change with 1 messages took 1.4 ms +I, [2018-08-07T13:34:10.244701 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:34:10.622041 #7] INFO -- : Inline processing of topic course_change with 1 messages took 2.71 ms +I, [2018-08-07T13:34:10.622120 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:34:10.623378 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.83 ms +I, [2018-08-07T13:34:10.623814 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:34:10.681731 #7] INFO -- : Inline processing of topic course_change with 1 messages took 56.79 ms +I, [2018-08-07T13:34:10.681983 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:34:10.682701 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-08-07T13:34:10.682759 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:34:10.683185 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-08-07T13:34:10.683233 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:34:10.683655 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-08-07T13:34:10.683704 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:34:10.758902 #7] INFO -- : Inline processing of topic section_change with 1 messages took 3.34 ms +I, [2018-08-07T13:34:10.758994 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:34:10.761171 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.37 ms +I, [2018-08-07T13:34:10.761290 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:34:10.762548 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-08-07T13:34:10.762616 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:34:10.796455 #7] INFO -- : Inline processing of topic section_change with 1 messages took 32.39 ms +I, [2018-08-07T13:34:10.796552 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:34:10.807857 #7] INFO -- : Inline processing of topic section_change with 1 messages took 7.97 ms +I, [2018-08-07T13:34:10.807929 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:34:10.808491 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T13:34:10.816047 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:34:10.817374 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.02 ms +I, [2018-08-07T13:34:10.817456 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:34:10.818513 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.85 ms +I, [2018-08-07T13:34:10.818587 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:34:13.043432 #7] INFO -- : Inline processing of topic course_change with 1 messages took 1.3 ms +I, [2018-08-07T13:34:13.043891 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:34:15.929768 #7] INFO -- : Committing offsets: section_change/0:57 +I, [2018-08-07T13:34:15.923672 #7] INFO -- : Committing offsets: course_change/0:24 +I, [2018-08-07T13:34:20.056623 #7] INFO -- : Inline processing of topic section_change with 1 messages took 181.68 ms +I, [2018-08-07T13:34:20.056836 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:34:22.057684 #7] INFO -- : Inline processing of topic course_change with 1 messages took 6.83 ms +I, [2018-08-07T13:34:22.057854 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:34:22.066937 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.44 ms +I, [2018-08-07T13:34:22.069882 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:34:22.073750 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.98 ms +I, [2018-08-07T13:34:22.073890 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:34:22.074924 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.54 ms +I, [2018-08-07T13:34:22.074999 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:34:22.084481 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.67 ms +I, [2018-08-07T13:34:22.084572 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:34:22.087450 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-08-07T13:34:22.087551 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:34:24.071868 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.35 ms +I, [2018-08-07T13:34:24.072238 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:34:24.072603 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T13:34:24.072936 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:34:24.073262 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T13:34:24.073311 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:34:24.073940 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T13:34:24.074000 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:34:24.074891 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.44 ms +I, [2018-08-07T13:34:24.075876 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:34:24.090461 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.41 ms +I, [2018-08-07T13:34:24.090521 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:34:24.091014 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T13:34:24.091058 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:34:24.091917 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.54 ms +I, [2018-08-07T13:34:24.092399 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:34:24.093050 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.45 ms +I, [2018-08-07T13:34:24.093091 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:34:24.093942 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.43 ms +I, [2018-08-07T13:34:24.094142 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:34:24.097076 #7] INFO -- : Inline processing of topic section_change with 1 messages took 2.72 ms +I, [2018-08-07T13:34:24.097164 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:34:24.100265 #7] INFO -- : Inline processing of topic section_change with 1 messages took 2.36 ms +I, [2018-08-07T13:34:24.100325 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:34:24.101247 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.43 ms +I, [2018-08-07T13:34:24.101411 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:34:24.102502 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.61 ms +I, [2018-08-07T13:34:24.110202 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:34:24.111374 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.51 ms +I, [2018-08-07T13:34:24.120064 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:34:24.127229 #7] INFO -- : Inline processing of topic section_change with 1 messages took 4.42 ms +I, [2018-08-07T13:34:24.127339 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:34:24.131830 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.8 ms +I, [2018-08-07T13:34:24.131932 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:34:24.134154 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.81 ms +I, [2018-08-07T13:34:24.134233 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:34:26.081495 #7] INFO -- : Inline processing of topic course_change with 1 messages took 2.03 ms +I, [2018-08-07T13:34:26.082134 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:34:26.613922 #7] INFO -- : Inline processing of topic section_change with 1 messages took 13.82 ms +I, [2018-08-07T13:34:26.614178 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:34:26.614899 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-08-07T13:34:26.615047 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:34:26.615656 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.4 ms +I, [2018-08-07T13:34:26.615707 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:34:26.616238 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-08-07T13:34:26.616291 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:34:26.616789 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T13:34:26.616832 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:34:26.620072 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-08-07T13:34:26.620182 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:34:26.622544 #7] INFO -- : Inline processing of topic course_change with 1 messages took 46.66 ms +I, [2018-08-07T13:34:26.622615 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:34:26.623271 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.3 ms +I, [2018-08-07T13:34:26.623317 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:34:28.900477 #7] INFO -- : Inline processing of topic course_change with 1 messages took 2.75 ms +I, [2018-08-07T13:34:28.901456 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:34:30.866725 #7] INFO -- : Committing offsets: section_change/0:81 +I, [2018-08-07T13:34:30.896810 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.77 ms +I, [2018-08-07T13:34:30.896879 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:34:30.897542 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.43 ms +I, [2018-08-07T13:34:30.897593 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:34:30.898490 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.51 ms +I, [2018-08-07T13:34:30.898546 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:34:30.899159 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.42 ms +I, [2018-08-07T13:34:30.899215 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:34:30.904529 #7] INFO -- : Inline processing of topic section_change with 1 messages took 4.03 ms +I, [2018-08-07T13:34:30.906240 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:34:30.907792 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-08-07T13:34:30.907854 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:34:30.908372 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-08-07T13:34:30.908430 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:34:30.908880 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T13:34:30.908928 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:34:30.909387 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T13:34:30.909460 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:34:30.910158 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T13:34:30.910239 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:34:30.911009 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.52 ms +I, [2018-08-07T13:34:30.911069 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:34:30.942404 #7] INFO -- : Committing offsets: course_change/0:35 +I, [2018-08-07T13:34:30.971605 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.41 ms +I, [2018-08-07T13:34:30.971920 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:34:30.973339 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.85 ms +I, [2018-08-07T13:34:30.974299 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:34:30.974993 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.29 ms +I, [2018-08-07T13:34:30.975038 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:34:30.975364 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-08-07T13:34:30.975397 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:34:30.985974 #7] INFO -- : Inline processing of topic course_change with 1 messages took 6.56 ms +I, [2018-08-07T13:34:30.986071 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:34:30.987347 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.27 ms +I, [2018-08-07T13:34:30.987391 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:34:30.987731 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T13:34:30.987766 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:34:30.988170 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-08-07T13:34:30.988217 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:34:30.996872 #7] INFO -- : Inline processing of topic course_change with 1 messages took 6.47 ms +I, [2018-08-07T13:34:30.996936 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:34:30.997285 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T13:34:30.999292 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:34:31.002298 #7] INFO -- : Inline processing of topic course_change with 1 messages took 2.64 ms +I, [2018-08-07T13:34:31.004216 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:34:32.912067 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-08-07T13:34:32.912147 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:34:32.912628 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T13:34:32.912704 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:34:32.913302 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-08-07T13:34:32.913402 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:34:32.914596 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.5 ms +I, [2018-08-07T13:34:32.914868 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:34:32.935293 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.42 ms +I, [2018-08-07T13:34:32.935360 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:34:32.935898 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-08-07T13:34:32.935955 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:34:32.936444 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T13:34:32.936498 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:34:32.942112 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T13:34:32.942338 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:34:32.942958 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-08-07T13:34:32.943184 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:34:32.944546 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.02 ms +I, [2018-08-07T13:34:32.944709 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:34:32.945717 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.43 ms +I, [2018-08-07T13:34:32.945872 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:34:32.946585 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T13:34:32.946649 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:34:32.947195 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-08-07T13:34:32.947266 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:34:32.947967 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.45 ms +I, [2018-08-07T13:34:32.948033 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:34:32.948517 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T13:34:32.948573 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:34:33.006528 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.29 ms +I, [2018-08-07T13:34:33.006612 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:34:33.007069 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-08-07T13:34:33.007149 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:34:33.015736 #7] INFO -- : Inline processing of topic course_change with 1 messages took 1.3 ms +I, [2018-08-07T13:34:33.016194 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:34:33.016938 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-08-07T13:34:33.017041 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:34:33.017593 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.33 ms +I, [2018-08-07T13:34:33.017650 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:34:33.018294 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-08-07T13:34:33.018346 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:34:33.019888 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.24 ms +I, [2018-08-07T13:34:33.019949 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:34:33.020341 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-08-07T13:34:33.020390 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:34:33.021064 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.5 ms +I, [2018-08-07T13:34:33.021170 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:34:33.021603 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.25 ms +I, [2018-08-07T13:34:33.021653 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:34:33.022026 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-08-07T13:34:33.022122 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:34:33.022571 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.24 ms +I, [2018-08-07T13:34:33.022623 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:34:33.022997 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T13:34:33.023046 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:34:33.023432 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-08-07T13:34:33.023485 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:34:33.024010 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.34 ms +I, [2018-08-07T13:34:33.024072 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:34:34.951428 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-08-07T13:34:34.951612 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:34:35.003468 #7] INFO -- : Inline processing of topic section_change with 1 messages took 51.41 ms +I, [2018-08-07T13:34:35.003531 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:34:35.026473 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.26 ms +I, [2018-08-07T13:34:35.026550 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:34:35.026965 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T13:34:35.027023 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:34:35.034377 #7] INFO -- : Inline processing of topic course_change with 1 messages took 7.13 ms +I, [2018-08-07T13:34:35.034447 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:34:35.034924 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.25 ms +I, [2018-08-07T13:34:35.040820 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:34:35.042268 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.24 ms +I, [2018-08-07T13:34:35.042314 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:34:35.066736 #7] INFO -- : Inline processing of topic course_change with 1 messages took 24.07 ms +I, [2018-08-07T13:34:35.069826 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:34:35.070693 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-08-07T13:34:35.070748 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:34:35.107103 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.31 ms +I, [2018-08-07T13:34:35.107179 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:34:35.041108 #7] INFO -- : Inline processing of topic section_change with 1 messages took 37.32 ms +I, [2018-08-07T13:34:35.130158 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:34:35.130698 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T13:34:35.130758 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:34:35.131191 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T13:34:35.141041 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:34:35.141648 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-08-07T13:34:35.141710 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:34:35.156235 #7] INFO -- : Inline processing of topic section_change with 1 messages took 14.29 ms +I, [2018-08-07T13:34:35.156294 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:34:35.156605 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T13:34:35.156637 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:34:35.162141 #7] INFO -- : Inline processing of topic section_change with 1 messages took 5.28 ms +I, [2018-08-07T13:34:35.162221 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:34:35.162632 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T13:34:35.162687 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:34:35.177443 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.74 ms +I, [2018-08-07T13:34:35.177503 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:34:35.180437 #7] INFO -- : Inline processing of topic section_change with 1 messages took 2.7 ms +I, [2018-08-07T13:34:35.180500 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:34:35.180787 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T13:34:35.180820 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:34:35.181116 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T13:34:35.188872 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:34:35.189945 #7] INFO -- : Inline processing of topic course_change with 1 messages took 82.54 ms +I, [2018-08-07T13:34:35.189999 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:34:35.200726 #7] INFO -- : Inline processing of topic course_change with 1 messages took 10.21 ms +I, [2018-08-07T13:34:35.200779 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:34:35.201126 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T13:34:35.226130 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:34:37.189787 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-08-07T13:34:37.189853 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:34:37.190219 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T13:34:37.190258 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:34:37.190528 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T13:34:37.190563 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:34:37.190912 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T13:34:37.190950 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:34:37.191201 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T13:34:37.191235 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:34:37.191474 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T13:34:37.191509 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:34:37.191752 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T13:34:37.191785 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:34:37.337049 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T13:34:37.337177 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:34:37.337711 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-08-07T13:34:37.337779 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:34:37.338188 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-08-07T13:34:37.338233 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:34:37.338561 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T13:34:37.338606 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:34:37.338937 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T13:34:37.338980 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:34:37.339305 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T13:34:37.339378 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:34:37.339697 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T13:34:37.340274 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:34:37.341171 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T13:34:37.341245 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:34:37.341578 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T13:34:37.341631 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:34:37.341950 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T13:34:37.342251 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:34:37.342752 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-08-07T13:34:37.349964 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:34:37.342874 #7] INFO -- : Inline processing of topic section_change with 1 messages took 150.95 ms +I, [2018-08-07T13:34:37.350239 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:34:37.350748 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T13:34:37.350786 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:34:37.351437 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.48 ms +I, [2018-08-07T13:34:37.351491 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:34:37.351746 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T13:34:37.351777 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:34:37.352013 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T13:34:37.352056 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:34:37.352327 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T13:34:37.352362 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:34:37.352612 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T13:34:37.352643 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:34:37.352953 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T13:34:37.352995 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:34:37.353237 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T13:34:37.353297 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:34:37.353519 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T13:34:37.353548 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:34:37.353755 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T13:34:37.353785 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:34:37.354020 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T13:34:37.354050 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:34:37.354287 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T13:34:37.354317 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:34:37.354535 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T13:34:37.354565 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:34:37.354813 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T13:34:37.354844 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:34:37.357132 #7] INFO -- : Inline processing of topic section_change with 1 messages took 2.03 ms +I, [2018-08-07T13:34:37.357176 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:34:37.357455 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T13:34:37.357486 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:34:37.357815 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T13:34:37.357850 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:34:39.350991 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.38 ms +I, [2018-08-07T13:34:39.351044 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:34:39.351330 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T13:34:39.351366 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:34:39.351638 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T13:34:39.351674 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:34:39.404750 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.46 ms +I, [2018-08-07T13:34:39.404822 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:34:39.412147 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T13:34:39.412193 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:34:39.412502 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T13:34:39.412534 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:34:39.412887 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T13:34:39.412922 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:34:39.413173 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T13:34:39.413204 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:34:39.413438 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T13:34:39.413468 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:34:39.413675 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T13:34:39.413719 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:34:39.413940 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T13:34:39.413985 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:34:39.414197 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T13:34:39.414227 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:34:39.436388 #7] INFO -- : Inline processing of topic section_change with 1 messages took 21.95 ms +I, [2018-08-07T13:34:39.436458 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:34:39.439978 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T13:34:39.440025 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:34:39.440286 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T13:34:39.440361 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:34:39.440740 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T13:34:39.440773 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:34:39.444729 #7] INFO -- : Inline processing of topic course_change with 1 messages took 92.9 ms +I, [2018-08-07T13:34:39.444800 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:34:39.445224 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T13:34:39.445275 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:34:39.449157 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-08-07T13:34:39.449205 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:34:39.449560 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T13:34:39.449624 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:34:39.449858 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T13:34:39.449888 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:34:39.450107 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T13:34:39.450136 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:34:39.473287 #7] INFO -- : Inline processing of topic course_change with 1 messages took 23.0 ms +I, [2018-08-07T13:34:39.473358 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:34:41.442701 #7] INFO -- : Committing offsets: section_change/0:159 +I, [2018-08-07T13:34:41.478193 #7] INFO -- : Inline processing of topic section_change with 1 messages took 6.73 ms +I, [2018-08-07T13:34:41.478275 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:34:41.478746 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T13:34:41.478803 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:34:41.479228 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T13:34:41.479284 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:34:41.479674 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T13:34:41.479755 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:34:41.480112 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T13:34:41.480165 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:34:41.480548 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T13:34:41.480603 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:34:41.480957 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T13:34:41.481011 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:34:41.481429 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T13:34:41.481508 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:34:41.481832 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T13:34:41.481879 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:34:41.482372 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T13:34:41.482418 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:34:41.482788 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T13:34:41.482839 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:34:41.483221 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T13:34:41.483273 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:34:41.484135 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.67 ms +I, [2018-08-07T13:34:41.484215 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:34:41.490981 #7] INFO -- : Committing offsets: course_change/0:93 +I, [2018-08-07T13:34:41.583616 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.35 ms +I, [2018-08-07T13:34:41.583726 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:34:41.583983 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T13:34:41.584036 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:34:41.584328 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-08-07T13:34:41.584370 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:34:41.584636 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T13:34:41.584670 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:34:41.585209 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.38 ms +I, [2018-08-07T13:34:41.585262 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:34:43.485633 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T13:34:43.485686 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:34:43.486702 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.78 ms +I, [2018-08-07T13:34:43.486754 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:34:43.487690 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.77 ms +I, [2018-08-07T13:34:43.487774 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:34:43.488275 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T13:34:43.488332 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:34:43.488670 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T13:34:43.488722 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:34:43.493127 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T13:34:43.493274 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:34:43.493984 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-08-07T13:34:43.494085 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:34:43.494563 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T13:34:43.495951 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:34:43.505329 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.58 ms +I, [2018-08-07T13:34:43.505376 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:34:43.506317 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T13:34:43.506355 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:34:43.506623 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T13:34:43.506711 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:34:43.507610 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T13:34:43.507649 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:34:43.513398 #7] INFO -- : Inline processing of topic section_change with 1 messages took 5.59 ms +I, [2018-08-07T13:34:43.514401 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:34:43.516662 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-08-07T13:34:43.516785 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:34:43.588368 #7] INFO -- : Inline processing of topic course_change with 1 messages took 1.11 ms +I, [2018-08-07T13:34:43.588429 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:34:43.588710 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T13:34:43.588744 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:34:43.588988 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T13:34:43.590228 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:34:43.590559 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T13:34:43.590614 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:34:43.591176 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.32 ms +I, [2018-08-07T13:34:43.591243 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:34:43.592273 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.81 ms +I, [2018-08-07T13:34:43.592315 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:34:43.592632 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T13:34:43.592666 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:34:43.592910 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T13:34:43.592942 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:34:43.593196 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T13:34:43.593228 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:34:43.593434 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-08-07T13:34:43.593465 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:34:43.593708 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T13:34:43.593740 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:34:43.593946 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-08-07T13:34:43.593978 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:34:43.594220 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T13:34:43.594251 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:34:43.594454 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-08-07T13:34:43.594486 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:34:43.594720 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T13:34:43.594753 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:34:43.620237 #7] INFO -- : Inline processing of topic course_change with 1 messages took 24.83 ms +I, [2018-08-07T13:34:43.622024 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:34:43.622653 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.26 ms +I, [2018-08-07T13:34:43.622807 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:34:43.623124 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T13:34:43.623166 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:34:43.633025 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.3 ms +I, [2018-08-07T13:34:43.633076 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:34:43.633307 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T13:34:43.633345 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:34:43.633647 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T13:34:43.634057 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:34:45.517702 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T13:34:45.517783 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:34:45.518145 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T13:34:45.518178 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:34:45.518467 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T13:34:45.518505 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:34:45.518919 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T13:34:45.518963 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:34:45.519319 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T13:34:45.519375 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:34:45.519695 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T13:34:45.519748 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:34:45.520084 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T13:34:45.520123 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:34:45.520412 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T13:34:45.520451 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:34:45.520962 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T13:34:45.521029 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:34:45.521507 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T13:34:45.521561 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:34:45.634771 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T13:34:45.634867 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:34:45.635133 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T13:34:45.635168 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:34:45.635438 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-08-07T13:34:45.635472 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:34:45.635702 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T13:34:45.635740 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:34:45.636506 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T13:34:45.636548 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:34:45.636784 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T13:34:45.636817 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:34:45.637070 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T13:34:45.637104 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:34:45.637310 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-08-07T13:34:45.637347 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:34:45.638239 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.37 ms +I, [2018-08-07T13:34:45.638316 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:34:47.522327 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T13:34:47.522378 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:34:47.522597 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T13:34:47.522632 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:34:47.522892 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T13:34:47.522923 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:34:47.523130 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T13:34:47.523160 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:34:47.523425 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T13:34:47.523455 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:34:47.523663 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T13:34:47.523693 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:34:47.523927 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T13:34:47.523956 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:34:47.524163 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T13:34:47.524192 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:34:47.524436 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T13:34:47.525774 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:34:47.526331 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T13:34:47.526389 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:34:47.526801 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T13:34:47.526853 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:34:47.527173 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T13:34:47.527223 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:34:47.527612 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T13:34:47.527664 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:34:47.527989 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T13:34:47.528048 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:34:47.528517 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T13:34:47.528586 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:34:47.639203 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.23 ms +I, [2018-08-07T13:34:47.639301 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:34:47.639612 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T13:34:47.639650 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:34:47.639910 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T13:34:47.639945 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:34:47.640305 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T13:34:47.640345 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:34:47.640653 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T13:34:47.640685 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:34:47.640895 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T13:34:47.640929 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:34:47.641158 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T13:34:47.641188 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:34:47.641374 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T13:34:47.641407 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:34:47.641636 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T13:34:47.641666 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:34:47.642050 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.27 ms +I, [2018-08-07T13:34:47.642097 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:34:47.642567 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T13:34:47.642639 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:34:47.642960 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T13:34:47.643008 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:34:47.643390 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T13:34:47.643438 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:34:47.643730 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T13:34:47.643786 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:34:47.644130 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T13:34:47.644179 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:34:49.531971 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.54 ms +I, [2018-08-07T13:34:49.532025 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:34:49.532404 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T13:34:49.533040 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:34:49.533500 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T13:34:49.533541 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:34:49.533895 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T13:34:49.534042 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:34:49.534469 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T13:34:49.534553 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:34:49.645243 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.23 ms +I, [2018-08-07T13:34:49.645300 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:34:49.645656 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-08-07T13:34:49.645701 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:34:49.645972 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T13:34:49.646013 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:34:49.646335 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T13:34:49.646378 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:34:51.535093 #7] INFO -- : Committing offsets: section_change/0:216 +I, [2018-08-07T13:34:51.646742 #7] INFO -- : Committing offsets: course_change/0:147 +I, [2018-08-07T13:34:51.651835 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T13:34:51.651881 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:34:51.652244 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T13:34:51.652285 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:34:51.652571 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T13:34:51.652604 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:34:51.652802 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T13:34:51.652953 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:34:51.654079 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.79 ms +I, [2018-08-07T13:34:51.654155 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:34:51.654536 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T13:34:51.654655 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:34:51.655262 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-08-07T13:34:51.655329 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:34:51.655653 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T13:34:51.655683 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:34:51.655923 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T13:34:51.655956 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:34:51.656144 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-08-07T13:34:51.656174 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:34:51.656397 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T13:34:51.656427 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:34:51.656905 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-08-07T13:34:51.656943 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:34:51.657262 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T13:34:51.657289 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:34:51.657637 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T13:34:51.657714 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:34:51.657922 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T13:34:51.657951 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:34:51.658179 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T13:34:51.658209 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:34:51.658425 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T13:34:51.658456 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:34:51.658686 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T13:34:51.658717 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:34:51.658969 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T13:34:51.658999 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:34:51.659190 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T13:34:51.659236 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:34:51.659515 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T13:34:51.660086 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:34:51.660666 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.4 ms +I, [2018-08-07T13:34:51.660710 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:34:51.661044 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T13:34:51.661079 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:34:51.668357 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-08-07T13:34:51.668402 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:34:51.668665 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T13:34:51.668711 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:34:51.668963 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T13:34:51.669016 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:34:51.669273 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T13:34:51.669306 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:34:55.931003 #7] INFO -- : Inline processing of topic section_change with 1 messages took 136.74 ms +I, [2018-08-07T13:34:56.251513 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:34:57.926960 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.42 ms +I, [2018-08-07T13:34:57.927056 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:34:57.929748 #7] INFO -- : Inline processing of topic course_change with 1 messages took 2.43 ms +I, [2018-08-07T13:34:57.929947 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:34:57.930855 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.23 ms +I, [2018-08-07T13:34:57.930917 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:34:58.283697 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-08-07T13:34:58.283784 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:34:58.284433 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-08-07T13:34:58.284498 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:34:59.934990 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.28 ms +I, [2018-08-07T13:34:59.935060 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:34:59.935436 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T13:34:59.935484 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:34:59.935820 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T13:34:59.935867 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:34:59.936178 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T13:34:59.936654 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:34:59.936929 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T13:34:59.936961 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:34:59.937448 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.26 ms +I, [2018-08-07T13:34:59.937561 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:34:59.938132 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-08-07T13:34:59.938172 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:34:59.938444 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T13:34:59.938481 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:34:59.938907 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T13:34:59.938956 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:34:59.945971 #7] INFO -- : Inline processing of topic course_change with 1 messages took 6.85 ms +I, [2018-08-07T13:34:59.946041 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:35:00.285470 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-08-07T13:35:00.285545 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:00.285891 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T13:35:00.285987 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:00.286825 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-08-07T13:35:00.286862 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:00.287365 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-08-07T13:35:00.287418 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:00.288692 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.63 ms +I, [2018-08-07T13:35:00.288764 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:00.289581 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T13:35:00.289621 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:00.289974 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T13:35:00.291459 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:00.292229 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T13:35:00.292280 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:00.294925 #7] INFO -- : Inline processing of topic section_change with 1 messages took 2.44 ms +I, [2018-08-07T13:35:00.295301 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:00.295698 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T13:35:00.295745 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:00.296137 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T13:35:00.296172 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:00.296492 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T13:35:00.296537 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:00.296902 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T13:35:00.296937 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:01.946763 #7] INFO -- : Committing offsets: course_change/0:164 +I, [2018-08-07T13:35:01.951959 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T13:35:01.952005 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:35:01.952255 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T13:35:01.952286 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:35:01.952606 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-08-07T13:35:01.952639 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:35:01.952832 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T13:35:01.952861 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:35:01.953076 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T13:35:01.953559 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:35:01.954389 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.46 ms +I, [2018-08-07T13:35:01.954495 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:35:02.297285 #7] INFO -- : Committing offsets: section_change/0:255 +I, [2018-08-07T13:35:02.306310 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.34 ms +I, [2018-08-07T13:35:02.306364 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:02.308654 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.91 ms +I, [2018-08-07T13:35:02.308725 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:02.310478 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T13:35:02.310539 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:02.310804 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T13:35:02.310909 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:02.311125 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T13:35:02.311157 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:02.311410 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T13:35:02.311443 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:02.311678 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T13:35:02.311710 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:02.311908 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T13:35:02.311939 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:02.312194 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T13:35:02.312226 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:02.312454 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T13:35:02.312485 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:02.312683 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T13:35:02.312715 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:02.313019 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T13:35:02.313050 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:02.313278 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T13:35:02.313310 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:03.958226 #7] INFO -- : Inline processing of topic course_change with 1 messages took 1.37 ms +I, [2018-08-07T13:35:03.958539 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:35:03.959102 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T13:35:03.959141 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:35:03.959387 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-08-07T13:35:03.959418 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:35:03.959652 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T13:35:03.959682 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:35:03.959898 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T13:35:03.959928 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:35:03.960113 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T13:35:03.960142 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:35:03.960369 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T13:35:03.960399 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:35:03.960633 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T13:35:03.960663 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:35:04.315047 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-08-07T13:35:04.315107 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:04.315495 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T13:35:04.315531 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:04.316089 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-08-07T13:35:04.316216 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:04.316598 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T13:35:04.316631 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:04.316867 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T13:35:04.316896 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:04.317222 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T13:35:04.317260 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:04.317469 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T13:35:04.317504 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:04.317758 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T13:35:04.317925 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:04.321083 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.48 ms +I, [2018-08-07T13:35:04.321174 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:04.327953 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T13:35:04.328630 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:04.329477 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T13:35:04.329555 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:04.329964 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T13:35:04.329997 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:04.330303 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T13:35:04.330424 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:04.330993 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T13:35:04.331054 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:04.331497 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T13:35:04.331554 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:04.332206 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-08-07T13:35:04.332268 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:04.333751 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.27 ms +I, [2018-08-07T13:35:04.333987 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:04.346287 #7] INFO -- : Inline processing of topic section_change with 1 messages took 2.02 ms +I, [2018-08-07T13:35:04.347466 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:06.180762 #7] INFO -- : Inline processing of topic course_change with 1 messages took 3.84 ms +I, [2018-08-07T13:35:06.181287 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:35:06.439993 #7] INFO -- : Inline processing of topic section_change with 1 messages took 18.37 ms +I, [2018-08-07T13:35:06.440093 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:06.443581 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.71 ms +I, [2018-08-07T13:35:06.444031 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:06.478171 #7] INFO -- : Inline processing of topic section_change with 1 messages took 33.49 ms +I, [2018-08-07T13:35:06.478251 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:06.480039 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.43 ms +I, [2018-08-07T13:35:06.480125 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:08.481458 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.64 ms +I, [2018-08-07T13:35:08.481553 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:08.482462 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T13:35:08.482508 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:08.486142 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.63 ms +I, [2018-08-07T13:35:08.498334 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:08.499079 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.42 ms +I, [2018-08-07T13:35:08.499148 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:08.499866 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.49 ms +I, [2018-08-07T13:35:08.499915 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:08.503197 #7] INFO -- : Inline processing of topic section_change with 1 messages took 3.08 ms +I, [2018-08-07T13:35:08.503253 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:10.183152 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.44 ms +I, [2018-08-07T13:35:10.183235 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:35:10.504513 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-08-07T13:35:10.504778 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:10.505369 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.41 ms +I, [2018-08-07T13:35:10.505408 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:10.506027 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.45 ms +I, [2018-08-07T13:35:10.506112 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:10.506651 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-08-07T13:35:10.506807 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:10.507438 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T13:35:10.507476 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:10.507977 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-08-07T13:35:10.508139 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:10.508657 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T13:35:10.508697 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:10.509523 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.65 ms +I, [2018-08-07T13:35:10.509568 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:12.184783 #7] INFO -- : Committing offsets: course_change/0:180 +I, [2018-08-07T13:35:12.192963 #7] INFO -- : Inline processing of topic course_change with 1 messages took 2.38 ms +I, [2018-08-07T13:35:12.193060 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:35:12.193723 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.35 ms +I, [2018-08-07T13:35:12.193831 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:35:12.194383 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.26 ms +I, [2018-08-07T13:35:12.194476 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:35:12.195034 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.29 ms +I, [2018-08-07T13:35:12.195081 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:35:12.197404 #7] INFO -- : Inline processing of topic course_change with 1 messages took 1.15 ms +I, [2018-08-07T13:35:12.197469 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:35:12.199026 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.36 ms +I, [2018-08-07T13:35:12.199157 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:35:12.200603 #7] INFO -- : Inline processing of topic course_change with 1 messages took 1.09 ms +I, [2018-08-07T13:35:12.200663 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:35:12.206695 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.99 ms +I, [2018-08-07T13:35:12.206747 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:35:12.509972 #7] INFO -- : Committing offsets: section_change/0:304 +I, [2018-08-07T13:35:12.522093 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.4 ms +I, [2018-08-07T13:35:12.522210 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:12.522949 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.46 ms +I, [2018-08-07T13:35:12.522994 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:12.524063 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.87 ms +I, [2018-08-07T13:35:12.524101 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:12.526560 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-08-07T13:35:12.526656 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:12.534788 #7] INFO -- : Inline processing of topic section_change with 1 messages took 6.62 ms +I, [2018-08-07T13:35:12.536860 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:12.538583 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.44 ms +I, [2018-08-07T13:35:12.538644 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:12.543571 #7] INFO -- : Inline processing of topic section_change with 1 messages took 4.7 ms +I, [2018-08-07T13:35:12.543900 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:12.552355 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T13:35:12.552416 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:12.552835 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T13:35:12.552878 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:12.553492 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.46 ms +I, [2018-08-07T13:35:12.553533 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:12.557612 #7] INFO -- : Inline processing of topic section_change with 1 messages took 3.89 ms +I, [2018-08-07T13:35:12.557693 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:12.558172 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T13:35:12.558226 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:12.566831 #7] INFO -- : Inline processing of topic section_change with 1 messages took 6.79 ms +I, [2018-08-07T13:35:12.567022 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:14.208439 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.8 ms +I, [2018-08-07T13:35:14.208543 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:35:14.212946 #7] INFO -- : Inline processing of topic course_change with 1 messages took 4.06 ms +I, [2018-08-07T13:35:14.213042 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:35:14.213803 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.23 ms +I, [2018-08-07T13:35:14.213881 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:35:14.214403 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-08-07T13:35:14.214473 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:35:14.571262 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.53 ms +I, [2018-08-07T13:35:14.571586 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:14.572683 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.63 ms +I, [2018-08-07T13:35:14.572779 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:14.573718 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.55 ms +I, [2018-08-07T13:35:14.573926 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:14.588491 #7] INFO -- : Inline processing of topic section_change with 1 messages took 13.95 ms +I, [2018-08-07T13:35:14.588619 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:16.217178 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.46 ms +I, [2018-08-07T13:35:16.217327 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:35:16.595567 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.63 ms +I, [2018-08-07T13:35:16.595789 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:18.218608 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.37 ms +I, [2018-08-07T13:35:18.218679 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:35:18.219113 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.23 ms +I, [2018-08-07T13:35:18.219215 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:35:18.219530 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T13:35:18.219577 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:35:18.219962 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-08-07T13:35:18.220006 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:35:18.220385 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-08-07T13:35:18.220425 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:35:18.220697 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T13:35:18.220746 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:35:18.221121 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T13:35:18.221161 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:35:18.221507 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T13:35:18.221606 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:35:18.597038 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.41 ms +I, [2018-08-07T13:35:18.597149 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:18.597695 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T13:35:18.597728 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:18.598060 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T13:35:18.598094 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:18.598287 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-08-07T13:35:18.598316 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:18.598584 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T13:35:18.598616 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:18.598863 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T13:35:18.598892 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:18.599099 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-08-07T13:35:18.599129 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:18.599353 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T13:35:18.599398 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:18.599642 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T13:35:18.599672 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:18.599942 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T13:35:18.599974 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:18.603560 #7] INFO -- : Inline processing of topic section_change with 1 messages took 2.15 ms +I, [2018-08-07T13:35:18.603607 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:20.222558 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.33 ms +I, [2018-08-07T13:35:20.222611 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:35:20.222918 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T13:35:20.224290 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:35:20.224626 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T13:35:20.224660 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:35:20.224900 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T13:35:20.224931 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:35:20.225216 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T13:35:20.225249 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:35:20.225437 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T13:35:20.225466 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:35:20.225741 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T13:35:20.225771 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:35:20.226003 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T13:35:20.226033 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:35:20.226218 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T13:35:20.226248 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:35:20.606669 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.95 ms +I, [2018-08-07T13:35:20.606821 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:20.608196 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.02 ms +I, [2018-08-07T13:35:20.608280 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:20.608930 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-08-07T13:35:20.609040 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:20.622259 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T13:35:20.622445 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:20.625152 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T13:35:20.625270 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:20.627138 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.65 ms +I, [2018-08-07T13:35:20.627186 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:20.627536 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T13:35:20.627569 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:20.627789 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T13:35:20.627878 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:20.628079 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T13:35:20.628108 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:20.628432 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T13:35:20.628462 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:20.629345 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.7 ms +I, [2018-08-07T13:35:20.629385 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:20.629617 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T13:35:20.629647 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:20.646354 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-08-07T13:35:20.646547 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:20.646915 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T13:35:20.646948 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:20.647265 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T13:35:20.647297 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:20.647979 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T13:35:20.648018 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:20.648360 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T13:35:20.648452 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:20.649978 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.39 ms +I, [2018-08-07T13:35:20.650027 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:20.650420 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T13:35:20.650455 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:20.652447 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T13:35:20.652544 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:20.653748 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.98 ms +I, [2018-08-07T13:35:20.653864 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:20.654638 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T13:35:20.654793 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:20.655074 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T13:35:20.655114 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:20.655817 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T13:35:20.656180 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:22.179206 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.27 ms +I, [2018-08-07T13:35:22.179260 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:35:22.179522 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T13:35:22.179572 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:35:22.179828 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T13:35:22.179859 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:35:22.180138 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T13:35:22.180169 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:35:22.180384 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-08-07T13:35:22.180436 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:35:22.608634 #7] INFO -- : Committing offsets: section_change/0:357 +I, [2018-08-07T13:35:22.612009 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T13:35:22.612098 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:22.612373 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T13:35:22.612405 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:22.612804 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T13:35:22.612836 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:22.613169 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T13:35:22.613200 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:22.614120 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.69 ms +I, [2018-08-07T13:35:22.614307 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:22.615008 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T13:35:22.615063 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:22.615463 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T13:35:22.615515 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:22.615851 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T13:35:22.615900 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:22.623231 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-08-07T13:35:22.623357 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:22.623673 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T13:35:22.623707 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:22.623941 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T13:35:22.623983 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:22.624191 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T13:35:22.624219 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:22.624427 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T13:35:22.624457 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:22.624650 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T13:35:22.624690 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:22.624904 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-08-07T13:35:22.624952 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:22.625144 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T13:35:22.625173 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:22.625394 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T13:35:22.635615 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:22.636124 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T13:35:22.636165 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:22.638785 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T13:35:22.638833 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:22.639131 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T13:35:22.639162 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:22.639494 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T13:35:22.639526 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:22.639751 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T13:35:22.639780 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:22.640058 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T13:35:22.640095 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:22.640560 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T13:35:22.640594 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:22.640871 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T13:35:22.640907 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:22.641199 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T13:35:22.641229 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:22.641481 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T13:35:22.641526 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:22.641780 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T13:35:22.641811 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:24.181334 #7] INFO -- : Committing offsets: course_change/0:215 +I, [2018-08-07T13:35:24.184508 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-08-07T13:35:24.184554 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:35:24.184842 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T13:35:24.184873 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:35:24.185191 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T13:35:24.185234 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:35:24.185625 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-08-07T13:35:24.185657 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:35:24.185887 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T13:35:24.185919 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:35:24.186143 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T13:35:24.186175 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:35:24.187919 #7] INFO -- : Inline processing of topic course_change with 1 messages took 1.6 ms +I, [2018-08-07T13:35:24.187990 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:35:24.688739 #7] INFO -- : Inline processing of topic section_change with 1 messages took 22.16 ms +I, [2018-08-07T13:35:24.689428 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:24.690552 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.62 ms +I, [2018-08-07T13:35:24.691018 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:24.691472 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T13:35:24.691534 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:24.692077 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T13:35:24.692114 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:24.692721 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.44 ms +I, [2018-08-07T13:35:24.693044 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:24.693978 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T13:35:24.694041 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:24.704529 #7] INFO -- : Inline processing of topic section_change with 1 messages took 10.17 ms +I, [2018-08-07T13:35:24.704697 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:24.705403 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.44 ms +I, [2018-08-07T13:35:24.705452 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:24.705774 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T13:35:24.705819 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:26.437128 #7] INFO -- : Inline processing of topic course_change with 1 messages took 28.88 ms +I, [2018-08-07T13:35:26.437243 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:35:26.437696 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T13:35:26.437735 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:35:26.438021 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T13:35:26.438053 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:35:26.438546 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.37 ms +I, [2018-08-07T13:35:26.438595 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:35:26.439910 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.61 ms +I, [2018-08-07T13:35:26.440024 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:35:26.707683 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.72 ms +I, [2018-08-07T13:35:26.707832 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:26.729177 #7] INFO -- : Inline processing of topic section_change with 1 messages took 14.44 ms +I, [2018-08-07T13:35:26.729273 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:26.741993 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.74 ms +I, [2018-08-07T13:35:26.742063 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:28.754140 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.77 ms +I, [2018-08-07T13:35:28.754251 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:30.679593 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.47 ms +I, [2018-08-07T13:35:30.679736 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:35:30.682840 #7] INFO -- : Inline processing of topic course_change with 1 messages took 1.83 ms +I, [2018-08-07T13:35:30.683052 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:35:30.684835 #7] INFO -- : Inline processing of topic course_change with 1 messages took 1.08 ms +I, [2018-08-07T13:35:30.685113 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:35:30.757698 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.69 ms +I, [2018-08-07T13:35:30.757861 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:30.759156 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.57 ms +I, [2018-08-07T13:35:30.759305 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:30.760234 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.44 ms +I, [2018-08-07T13:35:30.760355 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:32.686706 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.63 ms +I, [2018-08-07T13:35:32.686812 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:35:32.687496 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.29 ms +I, [2018-08-07T13:35:32.687599 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:35:32.688326 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.28 ms +I, [2018-08-07T13:35:32.688406 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:35:32.689622 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.9 ms +I, [2018-08-07T13:35:32.697014 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:35:32.761328 #7] INFO -- : Committing offsets: section_change/0:401 +I, [2018-08-07T13:35:32.775478 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.45 ms +I, [2018-08-07T13:35:32.775630 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:32.778032 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.93 ms +I, [2018-08-07T13:35:32.778394 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:32.779669 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.66 ms +I, [2018-08-07T13:35:32.779808 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:32.813402 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.5 ms +I, [2018-08-07T13:35:32.828591 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:34.706492 #7] INFO -- : Committing offsets: course_change/0:234 +I, [2018-08-07T13:35:34.714545 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.33 ms +I, [2018-08-07T13:35:34.714606 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:35:34.715575 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.76 ms +I, [2018-08-07T13:35:34.715631 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:35:34.715961 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T13:35:34.716002 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:35:34.717042 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.29 ms +I, [2018-08-07T13:35:34.717167 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:35:34.830363 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-08-07T13:35:34.833731 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:34.834305 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-08-07T13:35:34.834340 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:34.834624 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T13:35:34.834655 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:34.834880 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T13:35:34.834955 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:36.718419 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.31 ms +I, [2018-08-07T13:35:36.718485 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:35:36.718780 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T13:35:36.718820 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:35:36.719229 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T13:35:36.719271 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:35:36.719739 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.32 ms +I, [2018-08-07T13:35:36.719781 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:35:36.720052 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T13:35:36.720142 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:35:36.720409 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T13:35:36.720446 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:35:36.720959 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.33 ms +I, [2018-08-07T13:35:36.721003 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:35:36.721532 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.37 ms +I, [2018-08-07T13:35:36.721569 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:35:36.721813 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T13:35:36.721849 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:35:36.722268 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T13:35:36.722304 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:35:36.835951 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.5 ms +I, [2018-08-07T13:35:36.836001 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:36.836999 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.85 ms +I, [2018-08-07T13:35:36.837043 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:36.837292 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T13:35:36.837322 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:36.837709 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T13:35:36.837740 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:36.838142 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-08-07T13:35:36.838173 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:36.838472 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T13:35:36.838502 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:36.838700 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T13:35:36.838729 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:36.839082 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T13:35:36.839112 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:36.839417 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T13:35:36.839448 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:36.839746 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T13:35:36.839777 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:36.840180 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T13:35:36.840343 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:36.840532 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-08-07T13:35:36.840560 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:36.840840 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T13:35:36.840869 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:36.841148 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T13:35:36.841281 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:36.841947 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-08-07T13:35:36.841980 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:36.842391 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T13:35:36.842443 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:36.845996 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-08-07T13:35:36.846064 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:36.858376 #7] INFO -- : Inline processing of topic section_change with 1 messages took 10.38 ms +I, [2018-08-07T13:35:36.858574 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:36.860178 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.49 ms +I, [2018-08-07T13:35:36.860368 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:36.864801 #7] INFO -- : Inline processing of topic section_change with 1 messages took 4.21 ms +I, [2018-08-07T13:35:36.864880 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:36.866215 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.51 ms +I, [2018-08-07T13:35:36.866270 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:36.877713 #7] INFO -- : Inline processing of topic section_change with 1 messages took 11.11 ms +I, [2018-08-07T13:35:36.877885 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:36.878452 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T13:35:36.878493 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:36.879930 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.42 ms +I, [2018-08-07T13:35:36.880162 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:36.880650 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-08-07T13:35:36.880706 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:36.886048 #7] INFO -- : Inline processing of topic section_change with 1 messages took 5.07 ms +I, [2018-08-07T13:35:36.886097 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:36.886678 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T13:35:36.886713 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:36.887056 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T13:35:36.887087 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:36.887444 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T13:35:36.887477 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:36.893575 #7] INFO -- : Inline processing of topic section_change with 1 messages took 5.78 ms +I, [2018-08-07T13:35:36.893652 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:36.894553 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.61 ms +I, [2018-08-07T13:35:36.894599 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:38.723005 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T13:35:38.723055 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:35:38.725660 #7] INFO -- : Inline processing of topic course_change with 1 messages took 2.48 ms +I, [2018-08-07T13:35:38.725700 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:35:38.725966 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T13:35:38.725997 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:35:38.895445 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T13:35:38.895517 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:38.896025 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T13:35:38.896196 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:38.896598 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T13:35:38.896634 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:38.896951 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T13:35:38.896985 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:38.897302 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T13:35:38.897335 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:38.897694 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T13:35:38.897726 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:38.898064 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T13:35:38.898189 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:38.898726 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T13:35:38.898763 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:38.899288 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T13:35:38.899320 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:38.899973 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.52 ms +I, [2018-08-07T13:35:38.900021 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:38.900704 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.48 ms +I, [2018-08-07T13:35:38.900742 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:38.901278 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-08-07T13:35:38.901314 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:38.901850 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-08-07T13:35:38.901886 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:38.902555 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-08-07T13:35:38.902592 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:38.903145 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-08-07T13:35:38.903197 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:38.903872 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.43 ms +I, [2018-08-07T13:35:38.903987 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:38.906916 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-08-07T13:35:38.907014 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:38.916639 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.4 ms +I, [2018-08-07T13:35:38.916706 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:38.917448 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-08-07T13:35:38.917496 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:38.918263 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.43 ms +I, [2018-08-07T13:35:38.918310 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:38.925919 #7] INFO -- : Inline processing of topic section_change with 1 messages took 3.74 ms +I, [2018-08-07T13:35:38.926029 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:38.927892 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.67 ms +I, [2018-08-07T13:35:38.927956 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:38.939296 #7] INFO -- : Inline processing of topic section_change with 1 messages took 8.55 ms +I, [2018-08-07T13:35:38.939369 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:38.940929 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.26 ms +I, [2018-08-07T13:35:38.940993 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:38.947599 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.57 ms +I, [2018-08-07T13:35:38.947799 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:38.948597 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.52 ms +I, [2018-08-07T13:35:38.952178 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:38.953900 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.15 ms +I, [2018-08-07T13:35:38.957172 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:38.961675 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-08-07T13:35:38.961731 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:38.975654 #7] INFO -- : Inline processing of topic section_change with 1 messages took 13.61 ms +I, [2018-08-07T13:35:38.975712 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:38.976052 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T13:35:38.976087 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:38.976959 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.73 ms +I, [2018-08-07T13:35:38.977008 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:40.726754 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-08-07T13:35:40.726814 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:35:40.727059 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T13:35:40.727089 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:35:40.727327 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T13:35:40.727356 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:35:40.727760 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-08-07T13:35:40.727793 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:35:40.977906 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T13:35:40.977961 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:40.978228 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T13:35:40.978260 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:40.980101 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.68 ms +I, [2018-08-07T13:35:40.980144 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:40.980462 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T13:35:40.980495 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:40.980729 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T13:35:40.980759 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:40.981008 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T13:35:40.981038 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:40.981258 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T13:35:40.981324 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:40.981539 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T13:35:40.981569 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:40.981805 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T13:35:40.981834 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:40.982165 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T13:35:40.982215 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:40.982571 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T13:35:40.982615 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:40.984017 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T13:35:40.984069 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:40.984441 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T13:35:40.984571 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:42.728479 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-08-07T13:35:42.728557 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:35:42.728776 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-08-07T13:35:42.728806 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:35:42.729208 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T13:35:42.729244 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:35:42.729482 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T13:35:42.729513 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:35:42.729700 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T13:35:42.729729 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:35:42.729945 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T13:35:42.729974 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:35:42.730196 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T13:35:42.730225 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:35:42.730444 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T13:35:42.730473 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:35:42.730655 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T13:35:42.730684 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:35:42.730895 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T13:35:42.730923 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:35:42.984918 #7] INFO -- : Committing offsets: section_change/0:484 +I, [2018-08-07T13:35:42.989901 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T13:35:42.989950 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:42.990246 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T13:35:42.990279 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:42.990537 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T13:35:42.990569 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:42.990766 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T13:35:42.992006 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:42.992423 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T13:35:42.992460 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:42.992701 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T13:35:42.992733 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:42.992958 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T13:35:42.992989 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:42.993192 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T13:35:42.993222 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:42.993480 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T13:35:42.993511 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:42.993747 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T13:35:42.993815 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:42.994083 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T13:35:42.994113 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:42.994358 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T13:35:42.994388 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:44.732346 #7] INFO -- : Committing offsets: course_change/0:265 +I, [2018-08-07T13:35:44.753402 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.26 ms +I, [2018-08-07T13:35:44.753476 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:35:44.753875 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T13:35:44.753952 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:35:44.754410 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.23 ms +I, [2018-08-07T13:35:44.754470 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:35:44.754809 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T13:35:44.754852 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:35:44.755188 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T13:35:44.755233 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:35:44.755612 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T13:35:44.755669 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:35:44.756058 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T13:35:44.756108 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:35:44.756565 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.26 ms +I, [2018-08-07T13:35:44.761078 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:35:44.762308 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.23 ms +I, [2018-08-07T13:35:44.762490 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:35:44.995657 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-08-07T13:35:44.995744 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:44.996154 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T13:35:44.996205 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:44.996720 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T13:35:44.996771 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:44.997193 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T13:35:44.997247 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:44.997566 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T13:35:44.997665 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:44.997989 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T13:35:44.998038 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:44.998497 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T13:35:44.998560 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:44.999285 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T13:35:44.999387 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:45.000240 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-08-07T13:35:45.000312 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:45.000877 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T13:35:45.000944 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:46.763548 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-08-07T13:35:46.763688 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:35:46.764033 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T13:35:46.764070 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:35:46.764525 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-08-07T13:35:46.764560 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:35:46.764882 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-08-07T13:35:46.764916 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:35:46.765165 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T13:35:46.765212 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:35:46.765573 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T13:35:46.765606 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:35:46.765894 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T13:35:46.765928 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:35:46.766156 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T13:35:46.766186 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:35:46.767253 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.93 ms +I, [2018-08-07T13:35:46.770127 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:35:46.772909 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T13:35:46.773061 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:35:47.004486 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.34 ms +I, [2018-08-07T13:35:47.004684 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:47.007969 #7] INFO -- : Inline processing of topic section_change with 1 messages took 2.41 ms +I, [2018-08-07T13:35:47.008405 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:47.011716 #7] INFO -- : Inline processing of topic section_change with 1 messages took 2.51 ms +I, [2018-08-07T13:35:47.012085 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:47.013531 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.86 ms +I, [2018-08-07T13:35:47.013671 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:47.014816 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.62 ms +I, [2018-08-07T13:35:47.014963 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:47.016017 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-08-07T13:35:47.016237 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:47.018819 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.84 ms +I, [2018-08-07T13:35:47.018986 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:47.020412 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.74 ms +I, [2018-08-07T13:35:47.020736 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:47.022069 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.73 ms +I, [2018-08-07T13:35:47.022220 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:47.023445 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.58 ms +I, [2018-08-07T13:35:47.024667 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:47.026839 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.9 ms +I, [2018-08-07T13:35:47.026962 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:47.027889 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.47 ms +I, [2018-08-07T13:35:47.028020 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:48.774333 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.31 ms +I, [2018-08-07T13:35:48.774436 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:35:48.774996 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-08-07T13:35:48.775072 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:35:48.775710 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.33 ms +I, [2018-08-07T13:35:48.775804 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:35:48.789108 #7] INFO -- : Inline processing of topic course_change with 1 messages took 12.96 ms +I, [2018-08-07T13:35:48.789228 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:35:49.029589 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.63 ms +I, [2018-08-07T13:35:49.030752 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:49.036198 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.62 ms +I, [2018-08-07T13:35:49.041661 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:49.042740 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-08-07T13:35:49.042838 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:50.793237 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.82 ms +I, [2018-08-07T13:35:50.793615 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:35:50.795859 #7] INFO -- : Inline processing of topic course_change with 1 messages took 1.63 ms +I, [2018-08-07T13:35:50.796147 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:35:51.044364 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-08-07T13:35:51.044505 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:51.044871 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T13:35:51.044912 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:51.045235 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T13:35:51.045268 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:51.045593 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T13:35:51.045641 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:51.046056 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T13:35:51.046115 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:51.047021 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T13:35:51.047074 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:52.815703 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.25 ms +I, [2018-08-07T13:35:52.815788 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:35:52.817208 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.56 ms +I, [2018-08-07T13:35:52.817450 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:35:52.818440 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.34 ms +I, [2018-08-07T13:35:52.818777 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:35:52.830009 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T13:35:52.830444 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:35:52.831421 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.23 ms +I, [2018-08-07T13:35:52.831469 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:35:52.835424 #7] INFO -- : Inline processing of topic course_change with 1 messages took 3.12 ms +I, [2018-08-07T13:35:52.835597 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:35:52.837424 #7] INFO -- : Inline processing of topic course_change with 1 messages took 1.45 ms +I, [2018-08-07T13:35:52.837496 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:35:52.854161 #7] INFO -- : Inline processing of topic course_change with 1 messages took 16.41 ms +I, [2018-08-07T13:35:52.854232 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:35:52.857464 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-08-07T13:35:52.857523 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:35:53.014234 #7] INFO -- : Committing offsets: section_change/0:527 +I, [2018-08-07T13:35:53.021020 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T13:35:53.021072 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:53.021379 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T13:35:53.021417 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:53.022574 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.99 ms +I, [2018-08-07T13:35:53.022636 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:53.022979 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T13:35:53.023179 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:53.023496 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T13:35:53.023532 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:53.023803 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T13:35:53.023839 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:53.024085 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T13:35:53.024120 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:53.024335 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T13:35:53.024377 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:53.025237 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T13:35:53.025285 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:53.025563 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T13:35:53.025596 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:53.025863 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T13:35:53.025897 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:53.026212 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T13:35:53.026253 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:53.026559 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T13:35:53.026594 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:53.026837 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T13:35:53.026871 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:53.027087 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T13:35:53.027142 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:53.027362 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T13:35:53.027396 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:53.027634 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T13:35:53.027668 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:53.027912 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T13:35:53.027945 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:53.028418 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T13:35:53.028458 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:53.028748 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T13:35:53.028783 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:53.029066 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T13:35:53.029144 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:53.029428 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T13:35:53.029463 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:53.030171 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.56 ms +I, [2018-08-07T13:35:53.030220 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:53.031610 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T13:35:53.031711 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:53.033943 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T13:35:53.034010 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:53.034442 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T13:35:53.034482 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:53.034785 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T13:35:53.034821 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:54.858129 #7] INFO -- : Committing offsets: course_change/0:299 +I, [2018-08-07T13:35:54.863420 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T13:35:54.863466 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:35:54.863703 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-08-07T13:35:54.863733 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:35:54.863963 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T13:35:54.863993 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:35:54.864217 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T13:35:54.864247 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:35:54.864431 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T13:35:54.864460 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:35:54.864665 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T13:35:54.864694 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:35:54.864895 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T13:35:54.864923 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:35:54.865127 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T13:35:54.866071 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:35:54.866320 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T13:35:54.866351 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:35:54.867006 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T13:35:54.867036 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:35:54.867313 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T13:35:54.867344 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:35:55.035728 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-08-07T13:35:55.035779 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:55.036062 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T13:35:55.036092 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:55.036359 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T13:35:55.036390 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:55.036777 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T13:35:55.036836 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:55.037154 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T13:35:55.037186 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:55.037530 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T13:35:55.037569 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:55.037840 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T13:35:55.037870 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:55.038173 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T13:35:55.038209 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:55.038413 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T13:35:55.038443 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:55.038701 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T13:35:55.038731 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:55.038984 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T13:35:55.039013 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:55.039277 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T13:35:55.039308 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:55.039543 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T13:35:55.039572 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:56.868203 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.32 ms +I, [2018-08-07T13:35:56.868257 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:35:56.868519 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T13:35:56.868554 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:35:56.868870 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-08-07T13:35:56.868902 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:35:56.869304 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.27 ms +I, [2018-08-07T13:35:56.870097 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:35:56.870645 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T13:35:56.870699 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:35:56.870967 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T13:35:56.871015 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:35:56.871387 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T13:35:56.871433 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:35:56.871783 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-08-07T13:35:56.871869 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:35:56.872259 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-08-07T13:35:56.872312 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:35:56.872685 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-08-07T13:35:56.872737 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:35:56.872983 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T13:35:56.873074 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:35:56.873503 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.24 ms +I, [2018-08-07T13:35:56.873544 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:35:57.040921 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T13:35:57.040992 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:57.041483 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T13:35:57.041595 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:57.042286 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.44 ms +I, [2018-08-07T13:35:57.042334 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:57.042839 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T13:35:57.042882 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:57.043352 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-08-07T13:35:57.043400 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:57.044187 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-08-07T13:35:57.044247 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:57.045029 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.48 ms +I, [2018-08-07T13:35:57.045080 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:57.045426 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T13:35:57.045802 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:57.050157 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T13:35:57.050225 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:57.050682 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T13:35:57.050742 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:57.051121 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T13:35:57.051183 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:57.051503 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T13:35:57.051548 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:57.051879 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T13:35:57.051929 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:57.052467 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T13:35:57.052531 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:57.053192 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.42 ms +I, [2018-08-07T13:35:57.053328 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:57.053959 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T13:35:57.053995 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:57.054331 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T13:35:57.054372 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:57.054730 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T13:35:57.054773 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:57.055309 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T13:35:57.055365 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:57.055694 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T13:35:57.055740 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:57.056585 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-08-07T13:35:57.056945 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:57.057419 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T13:35:57.057456 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:57.057840 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T13:35:57.057893 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:57.058651 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-08-07T13:35:57.058784 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:57.059700 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.56 ms +I, [2018-08-07T13:35:57.059802 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:57.060147 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T13:35:57.060192 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:57.060575 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T13:35:57.060621 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:57.060966 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T13:35:57.061173 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:57.061557 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T13:35:57.061609 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:57.061946 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T13:35:57.061997 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:57.062354 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T13:35:57.062398 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:57.070157 #7] INFO -- : Inline processing of topic section_change with 1 messages took 7.17 ms +I, [2018-08-07T13:35:57.070270 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:57.070737 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T13:35:57.070789 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:57.072315 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T13:35:57.072550 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:58.876798 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.63 ms +I, [2018-08-07T13:35:58.876930 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:35:58.877422 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.24 ms +I, [2018-08-07T13:35:58.877511 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:35:58.877971 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.26 ms +I, [2018-08-07T13:35:58.878012 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:35:58.878511 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.28 ms +I, [2018-08-07T13:35:58.878561 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:35:58.879058 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.27 ms +I, [2018-08-07T13:35:58.879169 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:35:59.074763 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.52 ms +I, [2018-08-07T13:35:59.074868 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:59.075379 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T13:35:59.075500 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:59.076258 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-08-07T13:35:59.076317 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:59.076813 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T13:35:59.076879 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:59.077543 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.41 ms +I, [2018-08-07T13:35:59.077629 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:59.078247 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T13:35:59.081008 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:59.087400 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.7 ms +I, [2018-08-07T13:35:59.087754 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:59.115181 #7] INFO -- : Inline processing of topic section_change with 1 messages took 27.08 ms +I, [2018-08-07T13:35:59.115286 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:59.117668 #7] INFO -- : Inline processing of topic section_change with 1 messages took 2.0 ms +I, [2018-08-07T13:35:59.117855 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:59.118596 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T13:35:59.118638 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:59.121222 #7] INFO -- : Inline processing of topic section_change with 1 messages took 2.24 ms +I, [2018-08-07T13:35:59.121326 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:59.123456 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.71 ms +I, [2018-08-07T13:35:59.123506 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:59.124026 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T13:35:59.124068 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:59.124516 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T13:35:59.126266 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:59.126910 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-08-07T13:35:59.126975 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:59.127569 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-08-07T13:35:59.127619 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:35:59.130639 #7] INFO -- : Inline processing of topic section_change with 1 messages took 2.78 ms +I, [2018-08-07T13:35:59.130717 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:36:00.880157 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.31 ms +I, [2018-08-07T13:36:00.880239 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:36:00.880528 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T13:36:00.880561 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:36:00.880829 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T13:36:00.880867 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:36:00.881303 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T13:36:00.881338 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:36:00.881579 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T13:36:00.881609 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:36:00.881878 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T13:36:00.881959 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:36:00.882185 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T13:36:00.882214 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:36:00.882431 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T13:36:00.882460 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:36:01.131736 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-08-07T13:36:01.131803 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:36:01.132299 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T13:36:01.132350 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:36:01.132917 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.4 ms +I, [2018-08-07T13:36:01.132966 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:36:01.133840 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T13:36:01.135322 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:36:01.135748 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T13:36:01.135790 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:36:01.136360 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-08-07T13:36:01.136413 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:36:01.138569 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.76 ms +I, [2018-08-07T13:36:01.138801 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:36:01.143296 #7] INFO -- : Inline processing of topic section_change with 1 messages took 3.84 ms +I, [2018-08-07T13:36:01.143377 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:36:01.144062 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-08-07T13:36:01.144127 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:36:02.885576 #7] INFO -- : Inline processing of topic course_change with 1 messages took 1.71 ms +I, [2018-08-07T13:36:02.885739 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:36:02.887439 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.79 ms +I, [2018-08-07T13:36:02.887598 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:36:02.896194 #7] INFO -- : Inline processing of topic course_change with 1 messages took 2.02 ms +I, [2018-08-07T13:36:02.897417 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:36:02.908256 #7] INFO -- : Inline processing of topic course_change with 1 messages took 1.64 ms +I, [2018-08-07T13:36:02.909639 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:36:03.145209 #7] INFO -- : Committing offsets: section_change/0:627 +I, [2018-08-07T13:36:03.761653 #7] INFO -- : Inline processing of topic section_change with 1 messages took 58.69 ms +I, [2018-08-07T13:36:03.761831 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:36:03.763461 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.73 ms +I, [2018-08-07T13:36:03.763583 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:36:03.764926 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.72 ms +I, [2018-08-07T13:36:03.765052 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:36:03.770476 #7] INFO -- : Inline processing of topic section_change with 1 messages took 4.03 ms +I, [2018-08-07T13:36:03.838081 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:36:05.068162 #7] INFO -- : Committing offsets: course_change/0:339 +I, [2018-08-07T13:36:05.260667 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.49 ms +I, [2018-08-07T13:36:05.260852 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:36:07.684189 #7] INFO -- : Inline processing of topic course_change with 1 messages took 20.48 ms +I, [2018-08-07T13:36:07.801158 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:36:07.891223 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.5 ms +I, [2018-08-07T13:36:07.891362 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:36:09.806737 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.33 ms +I, [2018-08-07T13:36:09.806810 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:36:09.808419 #7] INFO -- : Inline processing of topic course_change with 1 messages took 1.38 ms +I, [2018-08-07T13:36:09.808489 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:36:09.808884 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T13:36:09.808934 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:36:09.932570 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.51 ms +I, [2018-08-07T13:36:09.932652 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:36:09.934031 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.74 ms +I, [2018-08-07T13:36:09.934223 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:36:09.934867 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-08-07T13:36:09.934926 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:36:09.935517 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-08-07T13:36:09.935575 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:36:11.809731 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T13:36:11.809872 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:36:11.810083 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-08-07T13:36:11.810115 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:36:11.810391 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T13:36:11.810421 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:36:11.810680 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T13:36:11.810711 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:36:11.810896 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T13:36:11.810925 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:36:11.811322 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T13:36:11.811352 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:36:11.811686 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.23 ms +I, [2018-08-07T13:36:11.811717 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:36:11.812034 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-08-07T13:36:11.812081 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:36:11.812512 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T13:36:11.812549 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:36:11.812781 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T13:36:11.812810 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:36:11.936509 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-08-07T13:36:11.936620 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:36:11.937072 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T13:36:11.937106 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:36:11.937484 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T13:36:11.937523 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:36:11.937753 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T13:36:11.937783 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:36:11.938203 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T13:36:11.938235 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:36:11.938502 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T13:36:11.938584 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:36:11.938841 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T13:36:11.938872 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:36:11.939200 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T13:36:11.939236 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:36:11.939478 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T13:36:11.939558 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:36:11.939844 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T13:36:11.939876 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:36:11.940345 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-08-07T13:36:11.940379 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:36:11.940694 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T13:36:11.940741 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:36:11.943086 #7] INFO -- : Inline processing of topic section_change with 1 messages took 2.0 ms +I, [2018-08-07T13:36:11.943174 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:36:11.944485 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-08-07T13:36:11.944564 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:36:11.945021 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T13:36:11.945062 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:36:11.946255 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.81 ms +I, [2018-08-07T13:36:11.949895 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:36:11.950417 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-08-07T13:36:11.950456 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:36:11.950715 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T13:36:11.950745 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:36:11.950990 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T13:36:11.951082 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:36:11.951335 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T13:36:11.951365 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:36:11.951615 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T13:36:11.951645 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:36:11.951948 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T13:36:11.951979 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:36:11.952266 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T13:36:11.952333 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:36:11.952606 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T13:36:11.952638 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:36:11.952900 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T13:36:11.952929 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:36:11.953272 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T13:36:11.953309 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:36:11.953533 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T13:36:11.953563 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:36:11.953826 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T13:36:11.953878 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:36:11.955999 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T13:36:11.956045 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:36:11.956506 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-08-07T13:36:11.956548 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:36:11.956796 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T13:36:11.956827 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:36:11.957752 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.63 ms +I, [2018-08-07T13:36:11.958555 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:36:11.960437 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T13:36:11.960499 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:36:11.960955 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T13:36:11.960989 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:36:11.961291 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T13:36:11.961323 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:36:11.961644 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T13:36:11.961676 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:36:13.813483 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-08-07T13:36:13.813534 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:36:13.813810 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T13:36:13.813842 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:36:13.814063 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T13:36:13.814093 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:36:13.814345 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T13:36:13.814375 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:36:13.814607 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T13:36:13.814650 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:36:13.962029 #7] INFO -- : Committing offsets: section_change/0:672 +I, [2018-08-07T13:36:13.968770 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T13:36:13.968833 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:36:13.970329 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.23 ms +I, [2018-08-07T13:36:13.970594 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:36:13.974723 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T13:36:13.974759 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:36:13.975136 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T13:36:13.975203 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:36:13.975631 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T13:36:13.975763 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:36:13.976224 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T13:36:13.976276 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:36:13.976850 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-08-07T13:36:13.976904 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:36:13.977287 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T13:36:13.977349 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:36:15.814908 #7] INFO -- : Committing offsets: course_change/0:359 +I, [2018-08-07T13:36:15.820819 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.25 ms +I, [2018-08-07T13:36:15.820869 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:36:15.821185 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T13:36:15.821233 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:36:15.822826 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.26 ms +I, [2018-08-07T13:36:15.822871 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:36:15.823462 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T13:36:15.823504 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:36:15.823732 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-08-07T13:36:15.823762 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:36:15.824012 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T13:36:15.824051 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:36:15.824310 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T13:36:15.824341 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:36:15.824531 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T13:36:15.824560 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:36:15.824782 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T13:36:15.824819 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:36:15.825270 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.32 ms +I, [2018-08-07T13:36:15.825312 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:36:15.979120 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T13:36:15.979243 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:36:15.980393 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-08-07T13:36:15.980475 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:36:15.981421 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-08-07T13:36:15.981483 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:36:15.982537 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.74 ms +I, [2018-08-07T13:36:15.989775 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:36:15.990330 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T13:36:15.990411 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:36:15.992556 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.91 ms +I, [2018-08-07T13:36:15.992620 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:36:15.993120 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T13:36:15.993174 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:36:15.993526 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T13:36:15.993577 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:36:15.994100 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T13:36:15.994160 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:36:15.994764 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.4 ms +I, [2018-08-07T13:36:15.994825 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:36:15.995226 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T13:36:15.995272 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:36:16.000913 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.44 ms +I, [2018-08-07T13:36:16.000984 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:36:16.001468 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T13:36:16.001515 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:36:16.001936 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T13:36:16.001991 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:36:16.037443 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.42 ms +I, [2018-08-07T13:36:16.037546 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:36:16.038078 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T13:36:16.038138 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:36:16.038749 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T13:36:16.038880 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:36:16.039284 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T13:36:16.040047 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:36:16.042366 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.92 ms +I, [2018-08-07T13:36:16.042647 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:36:16.046563 #7] INFO -- : Inline processing of topic section_change with 1 messages took 2.78 ms +I, [2018-08-07T13:36:16.046632 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:36:16.047181 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T13:36:16.047240 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:36:16.047725 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T13:36:16.047776 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:36:16.048165 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T13:36:16.048275 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:36:16.048615 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T13:36:16.048650 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:36:16.048856 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T13:36:16.048885 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:36:16.049397 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T13:36:16.049442 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:36:16.049832 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T13:36:16.049880 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:36:16.050346 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T13:36:16.050555 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:36:16.051074 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-08-07T13:36:16.054104 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:36:16.055199 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.74 ms +I, [2018-08-07T13:36:16.055276 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:36:16.059149 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.51 ms +I, [2018-08-07T13:36:16.060555 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:36:16.061479 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.45 ms +I, [2018-08-07T13:36:16.061570 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:36:16.063094 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.28 ms +I, [2018-08-07T13:36:16.063165 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:36:17.826081 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-08-07T13:36:17.826162 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:36:17.826379 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-08-07T13:36:17.826409 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:36:17.826628 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T13:36:17.826658 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:36:17.826917 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T13:36:17.826948 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:36:17.827137 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T13:36:17.827169 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:36:17.827527 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T13:36:17.827571 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:36:17.827965 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-08-07T13:36:17.828016 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:36:18.064835 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T13:36:18.064899 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:36:18.065129 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T13:36:18.065154 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:36:18.065347 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-08-07T13:36:18.065372 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:36:18.065607 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T13:36:18.065637 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:36:18.065869 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T13:36:18.066958 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:36:18.067363 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T13:36:18.067579 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:36:18.067846 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T13:36:18.067878 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:36:18.068119 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T13:36:18.068149 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:36:18.068416 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T13:36:18.068446 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:36:18.068683 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T13:36:18.068712 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:36:18.068990 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T13:36:18.069039 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:36:18.069468 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T13:36:18.069512 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:36:19.828824 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T13:36:19.828873 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:36:19.829121 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T13:36:19.829152 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:36:19.829364 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T13:36:19.829393 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:36:19.829600 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-08-07T13:36:19.829629 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:36:19.829838 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-08-07T13:36:19.829867 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:36:19.830081 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-08-07T13:36:19.830131 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:36:19.830322 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-08-07T13:36:19.830369 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:36:19.830563 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-08-07T13:36:19.830592 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:36:19.830808 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-08-07T13:36:19.830839 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:36:19.831039 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-08-07T13:36:19.831068 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:36:19.831263 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-08-07T13:36:19.831292 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:36:19.831500 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-08-07T13:36:19.831529 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:36:19.831747 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T13:36:19.831788 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:36:20.070150 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T13:36:20.070200 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:36:20.070518 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T13:36:20.070550 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:36:20.070756 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T13:36:20.070786 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:36:20.070999 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T13:36:20.071052 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:36:20.071339 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T13:36:20.071370 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:36:20.071630 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T13:36:20.071660 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:36:20.071877 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T13:36:20.071907 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:36:20.072103 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T13:36:20.072132 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:36:20.072624 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-08-07T13:36:20.072659 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:36:20.072868 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T13:36:20.072898 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:36:20.073773 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-08-07T13:36:20.073917 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:36:20.074450 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T13:36:20.074512 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:36:20.075106 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T13:36:20.075142 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:36:20.075372 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T13:36:20.075424 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:36:20.075689 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T13:36:20.075720 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:36:20.075938 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T13:36:20.075968 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:36:20.080893 #7] INFO -- : Inline processing of topic section_change with 1 messages took 4.56 ms +I, [2018-08-07T13:36:20.080951 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:36:20.081324 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T13:36:20.081376 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:36:20.081706 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T13:36:20.081760 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:36:20.082132 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T13:36:20.082167 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:36:20.082435 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T13:36:20.082465 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:36:22.050123 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.76 ms +I, [2018-08-07T13:36:22.050201 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:36:22.051620 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.07 ms +I, [2018-08-07T13:36:22.051897 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:36:22.056297 #7] INFO -- : Inline processing of topic section_change with 1 messages took 4.0 ms +I, [2018-08-07T13:36:22.056389 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:36:23.798167 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.25 ms +I, [2018-08-07T13:36:23.798343 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:36:24.056828 #7] INFO -- : Committing offsets: section_change/0:749 +I, [2018-08-07T13:36:24.063922 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-08-07T13:36:24.064002 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:36:24.064402 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T13:36:24.064472 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:36:24.064959 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T13:36:24.065030 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:36:24.065853 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.61 ms +I, [2018-08-07T13:36:24.065904 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:36:24.066296 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T13:36:24.066353 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:36:24.066671 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T13:36:24.066702 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:36:25.799544 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.43 ms +I, [2018-08-07T13:36:25.799653 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:36:26.071877 #7] INFO -- : Inline processing of topic section_change with 1 messages took 4.32 ms +I, [2018-08-07T13:36:26.071957 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:36:26.072595 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.41 ms +I, [2018-08-07T13:36:26.072685 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:36:26.073381 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-08-07T13:36:26.073425 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:36:26.073964 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-08-07T13:36:26.074006 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:36:26.081380 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T13:36:26.081427 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:36:27.800044 #7] INFO -- : Committing offsets: course_change/0:391 +I, [2018-08-07T13:36:28.082301 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T13:36:28.082352 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:36:28.082656 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T13:36:28.082687 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:36:28.083004 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T13:36:28.083081 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:36:28.083536 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T13:36:28.083612 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:36:28.083846 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T13:36:28.083916 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:36:30.085320 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.86 ms +I, [2018-08-07T13:36:30.085405 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:36:30.086000 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-08-07T13:36:30.086053 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:36:30.086566 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-08-07T13:36:30.086638 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:36:30.088517 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.54 ms +I, [2018-08-07T13:36:30.088604 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:36:36.762587 #7] INFO -- : Inline processing of topic course_change with 1 messages took 1.47 ms +I, [2018-08-07T13:36:37.628982 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:36:37.711647 #7] INFO -- : Committing offsets: section_change/0:769 +I, [2018-08-07T13:36:38.292861 #7] INFO -- : Inline processing of topic section_change with 1 messages took 2.36 ms +I, [2018-08-07T13:36:38.295763 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:36:38.306547 #7] INFO -- : Inline processing of topic section_change with 1 messages took 8.06 ms +I, [2018-08-07T13:36:38.306753 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:36:39.630345 #7] INFO -- : Committing offsets: course_change/0:392 +I, [2018-08-07T13:36:40.308810 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.48 ms +I, [2018-08-07T13:36:40.308869 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:36:40.309374 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-08-07T13:36:40.309428 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:36:44.976817 #7] INFO -- : Inline processing of topic section_change with 1 messages took 73.34 ms +I, [2018-08-07T13:36:45.249240 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:36:47.252453 #7] INFO -- : Inline processing of topic course_change with 1 messages took 1.65 ms +I, [2018-08-07T13:36:47.252531 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:36:47.254406 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.82 ms +I, [2018-08-07T13:36:47.254456 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:36:49.258803 #7] INFO -- : Committing offsets: section_change/0:775 +I, [2018-08-07T13:36:49.368414 #7] INFO -- : Inline processing of topic section_change with 1 messages took 23.22 ms +I, [2018-08-07T13:36:49.368484 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:36:49.369060 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T13:36:49.369228 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:36:51.510154 #7] INFO -- : Committing offsets: course_change/0:393 +I, [2018-08-07T13:36:51.668108 #7] INFO -- : Inline processing of topic section_change with 1 messages took 77.44 ms +I, [2018-08-07T13:36:51.668284 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:36:59.995137 #7] INFO -- : Committing offsets: section_change/0:778 +I, [2018-08-07T13:37:00.267000 #7] INFO -- : Inline processing of topic section_change with 1 messages took 30.68 ms +I, [2018-08-07T13:37:00.267180 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:37:02.281138 #7] INFO -- : Inline processing of topic section_change with 1 messages took 8.4 ms +I, [2018-08-07T13:37:02.281223 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:37:02.314665 #7] INFO -- : Inline processing of topic section_change with 1 messages took 32.27 ms +I, [2018-08-07T13:37:02.314754 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:37:04.206778 #7] INFO -- : Committing offsets: course_change/0:393 +I, [2018-08-07T13:37:04.618090 #7] INFO -- : Inline processing of topic section_change with 1 messages took 94.13 ms +I, [2018-08-07T13:37:04.666840 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:37:11.173423 #7] INFO -- : Committing offsets: section_change/0:782 +I, [2018-08-07T13:37:11.971159 #7] INFO -- : Inline processing of topic section_change with 1 messages took 66.93 ms +I, [2018-08-07T13:37:12.045596 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:37:16.601754 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.78 ms +I, [2018-08-07T13:37:16.601873 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:37:18.858474 #7] INFO -- : Committing offsets: course_change/0:394 +I, [2018-08-07T13:37:23.020653 #7] INFO -- : Committing offsets: section_change/0:783 +I, [2018-08-07T13:37:31.002122 #7] INFO -- : Committing offsets: course_change/0:394 +I, [2018-08-07T13:37:32.880330 #7] INFO -- : Inline processing of topic section_change with 1 messages took 141.97 ms +I, [2018-08-07T13:37:32.885760 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:37:37.288137 #7] INFO -- : Committing offsets: section_change/0:784 +I, [2018-08-07T13:37:38.585944 #7] INFO -- : Inline processing of topic section_change with 1 messages took 9.01 ms +I, [2018-08-07T13:37:38.586827 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:37:43.741357 #7] INFO -- : Committing offsets: course_change/0:394 +I, [2018-08-07T13:37:48.794569 #7] INFO -- : Committing offsets: section_change/0:785 +I, [2018-08-07T13:37:53.851184 #7] INFO -- : Inline processing of topic section_change with 1 messages took 60.28 ms +I, [2018-08-07T13:37:53.851390 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:37:55.855021 #7] INFO -- : Inline processing of topic section_change with 1 messages took 2.05 ms +I, [2018-08-07T13:37:55.857669 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:37:57.869699 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.9 ms +I, [2018-08-07T13:37:57.869895 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:37:58.313729 #7] INFO -- : Committing offsets: course_change/0:394 +I, [2018-08-07T13:37:58.334171 #7] INFO -- : Inline processing of topic course_change with 1 messages took 4.8 ms +I, [2018-08-07T13:37:58.334285 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:37:58.342827 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.99 ms +I, [2018-08-07T13:37:58.343018 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:37:59.871094 #7] INFO -- : Committing offsets: section_change/0:788 +I, [2018-08-07T13:37:59.898065 #7] INFO -- : Inline processing of topic section_change with 1 messages took 2.81 ms +I, [2018-08-07T13:37:59.898325 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:37:59.906933 #7] INFO -- : Inline processing of topic section_change with 1 messages took 7.51 ms +I, [2018-08-07T13:37:59.907103 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:37:59.911967 #7] INFO -- : Inline processing of topic section_change with 1 messages took 3.67 ms +I, [2018-08-07T13:37:59.912809 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:38:00.414488 #7] INFO -- : Inline processing of topic course_change with 1 messages took 67.29 ms +I, [2018-08-07T13:38:00.414670 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:38:00.418907 #7] INFO -- : Inline processing of topic course_change with 1 messages took 2.7 ms +I, [2018-08-07T13:38:00.419084 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:38:02.029415 #7] INFO -- : Inline processing of topic section_change with 1 messages took 114.1 ms +I, [2018-08-07T13:38:02.029535 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:38:03.273216 #7] INFO -- : Inline processing of topic course_change with 1 messages took 218.95 ms +I, [2018-08-07T13:38:03.274239 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:38:05.152243 #7] INFO -- : Inline processing of topic section_change with 1 messages took 66.9 ms +I, [2018-08-07T13:38:05.152454 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:38:05.278389 #7] INFO -- : Inline processing of topic course_change with 1 messages took 2.41 ms +I, [2018-08-07T13:38:05.278608 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:38:07.206885 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-08-07T13:38:07.207241 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:38:07.282783 #7] INFO -- : Inline processing of topic course_change with 1 messages took 3.04 ms +I, [2018-08-07T13:38:07.282895 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:38:09.220497 #7] INFO -- : Inline processing of topic section_change with 1 messages took 11.5 ms +I, [2018-08-07T13:38:09.232476 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:38:09.286301 #7] INFO -- : Committing offsets: course_change/0:401 +I, [2018-08-07T13:38:09.324358 #7] INFO -- : Inline processing of topic course_change with 1 messages took 3.95 ms +I, [2018-08-07T13:38:09.340336 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:38:11.234312 #7] INFO -- : Committing offsets: section_change/0:795 +I, [2018-08-07T13:38:11.295597 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T13:38:11.295673 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:38:11.297498 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.62 ms +I, [2018-08-07T13:38:11.297571 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:38:11.341698 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.38 ms +I, [2018-08-07T13:38:11.341780 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:38:11.342603 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-08-07T13:38:11.342645 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:38:13.366350 #7] INFO -- : Inline processing of topic section_change with 1 messages took 2.44 ms +I, [2018-08-07T13:38:13.366645 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:38:13.414720 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.5 ms +I, [2018-08-07T13:38:13.415559 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:38:13.436663 #7] INFO -- : Inline processing of topic course_change with 1 messages took 19.29 ms +I, [2018-08-07T13:38:13.449918 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:38:13.557573 #7] INFO -- : Inline processing of topic section_change with 1 messages took 189.51 ms +I, [2018-08-07T13:38:13.557745 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:38:15.456571 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.45 ms +I, [2018-08-07T13:38:15.461022 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:38:15.708123 #7] INFO -- : Inline processing of topic section_change with 1 messages took 4.15 ms +I, [2018-08-07T13:38:15.708258 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:38:17.767950 #7] INFO -- : Inline processing of topic section_change with 1 messages took 4.0 ms +I, [2018-08-07T13:38:17.768355 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:38:17.770302 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.04 ms +I, [2018-08-07T13:38:17.784730 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:38:17.785961 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.59 ms +I, [2018-08-07T13:38:17.788134 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:38:19.660320 #7] INFO -- : Committing offsets: course_change/0:407 +I, [2018-08-07T13:38:19.776439 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.57 ms +I, [2018-08-07T13:38:19.776583 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:38:19.778059 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.4 ms +I, [2018-08-07T13:38:19.778197 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:38:19.792154 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.72 ms +I, [2018-08-07T13:38:19.792358 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:38:19.794637 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.52 ms +I, [2018-08-07T13:38:19.794789 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:38:21.860003 #7] INFO -- : Inline processing of topic course_change with 1 messages took 4.5 ms +I, [2018-08-07T13:38:21.860073 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:38:21.867550 #7] INFO -- : Committing offsets: section_change/0:805 +I, [2018-08-07T13:38:21.868681 #7] INFO -- : Inline processing of topic course_change with 1 messages took 2.0 ms +I, [2018-08-07T13:38:21.871591 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:38:21.873068 #7] INFO -- : Inline processing of topic course_change with 1 messages took 1.2 ms +I, [2018-08-07T13:38:21.873180 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:38:21.901878 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.75 ms +I, [2018-08-07T13:38:21.901946 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:38:21.904148 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.38 ms +I, [2018-08-07T13:38:21.904264 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:38:23.886211 #7] INFO -- : Inline processing of topic course_change with 1 messages took 1.98 ms +I, [2018-08-07T13:38:23.886351 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:38:25.457128 #7] INFO -- : Inline processing of topic section_change with 1 messages took 9.82 ms +I, [2018-08-07T13:38:25.458845 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:38:25.847270 #7] INFO -- : Inline processing of topic section_change with 1 messages took 346.69 ms +I, [2018-08-07T13:38:25.848418 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:38:26.158606 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.87 ms +I, [2018-08-07T13:38:26.158746 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:38:26.160363 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.49 ms +I, [2018-08-07T13:38:26.164232 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:38:26.166576 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.31 ms +I, [2018-08-07T13:38:26.166714 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:38:26.168130 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.94 ms +I, [2018-08-07T13:38:26.168260 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:38:35.066987 #7] INFO -- : Inline processing of topic course_change with 1 messages took 7100.29 ms +I, [2018-08-07T13:38:35.134722 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:38:35.176651 #7] INFO -- : Committing offsets: section_change/0:813 +I, [2018-08-07T13:38:35.393590 #7] INFO -- : Committing offsets: course_change/0:414 +I, [2018-08-07T13:38:36.313141 #7] INFO -- : Inline processing of topic course_change with 1 messages took 43.93 ms +I, [2018-08-07T13:38:36.313306 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:38:36.404851 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.43 ms +I, [2018-08-07T13:38:36.405347 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:38:36.409862 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.96 ms +I, [2018-08-07T13:38:36.410001 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:38:38.269844 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.23 ms +I, [2018-08-07T13:38:38.269952 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:38:38.648542 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T13:38:38.648594 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:38:40.277965 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.26 ms +I, [2018-08-07T13:38:40.278047 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:38:40.652249 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.4 ms +I, [2018-08-07T13:38:40.652320 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:38:40.654922 #7] INFO -- : Inline processing of topic course_change with 1 messages took 2.25 ms +I, [2018-08-07T13:38:40.654984 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:38:42.425684 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.76 ms +I, [2018-08-07T13:38:42.425900 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:38:44.481639 #7] INFO -- : Inline processing of topic section_change with 1 messages took 26.6 ms +I, [2018-08-07T13:38:44.483876 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:38:44.905714 #7] INFO -- : Inline processing of topic course_change with 1 messages took 1.54 ms +I, [2018-08-07T13:38:44.905847 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:38:46.575326 #7] INFO -- : Committing offsets: section_change/0:817 +I, [2018-08-07T13:38:47.175436 #7] INFO -- : Committing offsets: course_change/0:421 +I, [2018-08-07T13:38:49.258244 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.89 ms +I, [2018-08-07T13:38:49.258398 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:38:49.334162 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.43 ms +I, [2018-08-07T13:38:49.334566 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:38:51.263758 #7] INFO -- : Inline processing of topic section_change with 1 messages took 2.5 ms +I, [2018-08-07T13:38:51.263928 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:38:51.337620 #7] INFO -- : Inline processing of topic course_change with 1 messages took 1.66 ms +I, [2018-08-07T13:38:51.337817 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:38:53.233378 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.71 ms +I, [2018-08-07T13:38:53.235413 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:38:53.307251 #7] INFO -- : Inline processing of topic course_change with 1 messages took 1.21 ms +I, [2018-08-07T13:38:53.307411 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:38:55.423766 #7] INFO -- : Inline processing of topic course_change with 1 messages took 1.76 ms +I, [2018-08-07T13:38:55.423920 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:38:55.447461 #7] INFO -- : Inline processing of topic section_change with 1 messages took 16.35 ms +I, [2018-08-07T13:38:55.448095 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:38:57.426078 #7] INFO -- : Committing offsets: course_change/0:425 +I, [2018-08-07T13:38:57.452581 #7] INFO -- : Committing offsets: section_change/0:821 +I, [2018-08-07T13:38:57.495175 #7] INFO -- : Inline processing of topic course_change with 1 messages took 1.17 ms +I, [2018-08-07T13:38:57.495281 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:38:57.541780 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.12 ms +I, [2018-08-07T13:38:57.542770 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:38:59.503714 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.48 ms +I, [2018-08-07T13:38:59.503868 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:38:59.632385 #7] INFO -- : Inline processing of topic section_change with 1 messages took 62.59 ms +I, [2018-08-07T13:38:59.640511 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:39:01.507469 #7] INFO -- : Inline processing of topic course_change with 1 messages took 1.89 ms +I, [2018-08-07T13:39:01.507609 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:39:01.508099 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.27 ms +I, [2018-08-07T13:39:01.508487 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:39:01.509135 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.39 ms +I, [2018-08-07T13:39:01.509258 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:39:01.511927 #7] INFO -- : Inline processing of topic course_change with 1 messages took 2.3 ms +I, [2018-08-07T13:39:01.512727 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:39:01.515293 #7] INFO -- : Inline processing of topic course_change with 1 messages took 1.39 ms +I, [2018-08-07T13:39:01.523769 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:39:01.529598 #7] INFO -- : Inline processing of topic course_change with 1 messages took 2.46 ms +I, [2018-08-07T13:39:01.529901 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:39:01.711692 #7] INFO -- : Inline processing of topic section_change with 1 messages took 63.07 ms +I, [2018-08-07T13:39:01.711955 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:39:01.717334 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.76 ms +I, [2018-08-07T13:39:01.717398 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:39:01.717998 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-08-07T13:39:01.718056 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:39:01.719592 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.85 ms +I, [2018-08-07T13:39:01.719717 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:39:01.720630 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T13:39:01.720720 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:39:01.728575 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-08-07T13:39:01.728645 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:39:03.549772 #7] INFO -- : Inline processing of topic course_change with 1 messages took 3.84 ms +I, [2018-08-07T13:39:03.549935 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:39:03.556138 #7] INFO -- : Inline processing of topic course_change with 1 messages took 5.38 ms +I, [2018-08-07T13:39:03.556290 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:39:03.803173 #7] INFO -- : Inline processing of topic section_change with 1 messages took 66.01 ms +I, [2018-08-07T13:39:03.803339 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:39:03.822868 #7] INFO -- : Inline processing of topic section_change with 1 messages took 2.51 ms +I, [2018-08-07T13:39:03.823892 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:39:05.832134 #7] INFO -- : Inline processing of topic section_change with 1 messages took 5.34 ms +I, [2018-08-07T13:39:05.832284 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:39:07.562383 #7] INFO -- : Committing offsets: course_change/0:435 +I, [2018-08-07T13:39:07.667597 #7] INFO -- : Inline processing of topic course_change with 1 messages took 3.42 ms +I, [2018-08-07T13:39:07.667756 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:39:07.833673 #7] INFO -- : Committing offsets: section_change/0:832 +I, [2018-08-07T13:39:09.776680 #7] INFO -- : Inline processing of topic course_change with 1 messages took 2.37 ms +I, [2018-08-07T13:39:09.776921 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:39:09.788479 #7] INFO -- : Inline processing of topic course_change with 1 messages took 11.04 ms +I, [2018-08-07T13:39:09.788674 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:39:09.859191 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.9 ms +I, [2018-08-07T13:39:09.859348 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:39:09.860608 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.77 ms +I, [2018-08-07T13:39:09.860734 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:39:13.815971 #7] INFO -- : Inline processing of topic course_change with 1 messages took 4.88 ms +I, [2018-08-07T13:39:13.816688 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:39:13.870508 #7] INFO -- : Inline processing of topic section_change with 1 messages took 2.75 ms +I, [2018-08-07T13:39:13.871036 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:39:13.873341 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.69 ms +I, [2018-08-07T13:39:13.873497 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:39:13.876470 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.12 ms +I, [2018-08-07T13:39:13.876718 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:39:13.877546 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-08-07T13:39:13.877659 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:39:13.878882 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.81 ms +I, [2018-08-07T13:39:13.879220 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:39:13.883077 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.3 ms +I, [2018-08-07T13:39:13.883614 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:39:13.885885 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.87 ms +I, [2018-08-07T13:39:13.886623 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:39:16.642159 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.32 ms +I, [2018-08-07T13:39:16.643881 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:39:16.707136 #7] INFO -- : Inline processing of topic section_change with 1 messages took 4.23 ms +I, [2018-08-07T13:39:16.708029 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:39:16.713823 #7] INFO -- : Inline processing of topic section_change with 1 messages took 3.54 ms +I, [2018-08-07T13:39:16.714744 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:39:16.766566 #7] INFO -- : Inline processing of topic section_change with 1 messages took 50.99 ms +I, [2018-08-07T13:39:16.766726 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:39:16.767694 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-08-07T13:39:16.767921 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:39:16.773468 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.52 ms +I, [2018-08-07T13:39:16.773612 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:39:16.776473 #7] INFO -- : Inline processing of topic section_change with 1 messages took 2.33 ms +I, [2018-08-07T13:39:16.778250 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:39:16.792094 #7] INFO -- : Inline processing of topic section_change with 1 messages took 2.92 ms +I, [2018-08-07T13:39:16.792571 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:39:16.798687 #7] INFO -- : Inline processing of topic section_change with 1 messages took 3.61 ms +I, [2018-08-07T13:39:16.799770 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:39:16.964203 #7] INFO -- : Inline processing of topic section_change with 1 messages took 141.14 ms +I, [2018-08-07T13:39:16.964432 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:39:16.977154 #7] INFO -- : Inline processing of topic section_change with 1 messages took 11.07 ms +I, [2018-08-07T13:39:16.977336 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:39:18.709909 #7] INFO -- : Committing offsets: course_change/0:439 +I, [2018-08-07T13:39:18.782858 #7] INFO -- : Inline processing of topic course_change with 1 messages took 1.77 ms +I, [2018-08-07T13:39:18.783049 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:39:18.979797 #7] INFO -- : Committing offsets: section_change/0:852 +I, [2018-08-07T13:39:19.007638 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.44 ms +I, [2018-08-07T13:39:19.007793 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:39:19.009162 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-08-07T13:39:19.009305 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:39:19.010569 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.87 ms +I, [2018-08-07T13:39:19.010680 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:39:19.011844 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-08-07T13:39:19.012013 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:39:19.012800 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-08-07T13:39:19.012935 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:39:19.022357 #7] INFO -- : Inline processing of topic section_change with 1 messages took 8.73 ms +I, [2018-08-07T13:39:19.029282 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:39:19.038818 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.8 ms +I, [2018-08-07T13:39:19.039321 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:39:21.041296 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.47 ms +I, [2018-08-07T13:39:21.041396 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:39:21.042276 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.49 ms +I, [2018-08-07T13:39:21.042434 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:39:21.067862 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.61 ms +I, [2018-08-07T13:39:21.068006 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:39:21.069377 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.48 ms +I, [2018-08-07T13:39:21.069494 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:39:21.078167 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.63 ms +I, [2018-08-07T13:39:21.078324 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:39:21.080973 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-08-07T13:39:21.081414 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:39:21.090274 #7] INFO -- : Inline processing of topic section_change with 1 messages took 8.37 ms +I, [2018-08-07T13:39:21.090378 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:39:21.109148 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.88 ms +I, [2018-08-07T13:39:21.109449 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:39:21.124899 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.36 ms +I, [2018-08-07T13:39:21.125053 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:39:21.126079 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.53 ms +I, [2018-08-07T13:39:21.127111 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:39:21.128553 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.55 ms +I, [2018-08-07T13:39:21.128760 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:39:21.135005 #7] INFO -- : Inline processing of topic section_change with 1 messages took 5.75 ms +I, [2018-08-07T13:39:21.135164 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:39:21.136325 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.64 ms +I, [2018-08-07T13:39:21.136455 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:39:21.138082 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.98 ms +I, [2018-08-07T13:39:21.138504 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:39:21.140590 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.03 ms +I, [2018-08-07T13:39:21.140708 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:39:21.143327 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.53 ms +I, [2018-08-07T13:39:21.143468 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:39:21.146889 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.79 ms +I, [2018-08-07T13:39:21.147032 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:39:21.152439 #7] INFO -- : Inline processing of topic section_change with 1 messages took 4.81 ms +I, [2018-08-07T13:39:21.152589 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:39:21.154404 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.57 ms +I, [2018-08-07T13:39:21.154575 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:39:21.155901 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.51 ms +I, [2018-08-07T13:39:21.156017 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:39:21.157293 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.48 ms +I, [2018-08-07T13:39:21.157422 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:39:21.160732 #7] INFO -- : Inline processing of topic section_change with 1 messages took 2.37 ms +I, [2018-08-07T13:39:21.166271 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:39:21.169690 #7] INFO -- : Inline processing of topic section_change with 1 messages took 2.66 ms +I, [2018-08-07T13:39:21.169868 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:39:22.752970 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.75 ms +I, [2018-08-07T13:39:22.753592 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:39:22.754949 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.85 ms +I, [2018-08-07T13:39:22.755092 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:39:23.140011 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.31 ms +I, [2018-08-07T13:39:23.140223 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:39:23.141598 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.89 ms +I, [2018-08-07T13:39:23.141729 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:39:23.145087 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.85 ms +I, [2018-08-07T13:39:23.146185 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:39:23.147637 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.93 ms +I, [2018-08-07T13:39:23.149986 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:39:23.151814 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.51 ms +I, [2018-08-07T13:39:23.152123 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:39:23.195082 #7] INFO -- : Inline processing of topic section_change with 1 messages took 33.96 ms +I, [2018-08-07T13:39:23.195491 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:39:23.198067 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.52 ms +I, [2018-08-07T13:39:23.198572 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:39:23.222734 #7] INFO -- : Inline processing of topic section_change with 1 messages took 19.98 ms +I, [2018-08-07T13:39:23.231427 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:39:23.236832 #7] INFO -- : Inline processing of topic section_change with 1 messages took 2.31 ms +I, [2018-08-07T13:39:23.237330 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:39:23.239282 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.13 ms +I, [2018-08-07T13:39:23.239720 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:39:23.244041 #7] INFO -- : Inline processing of topic section_change with 1 messages took 2.64 ms +I, [2018-08-07T13:39:23.244179 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:39:23.246938 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.64 ms +I, [2018-08-07T13:39:23.247356 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:39:23.250590 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.2 ms +I, [2018-08-07T13:39:23.251060 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:39:23.254310 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.83 ms +I, [2018-08-07T13:39:23.254454 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:39:23.259665 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.91 ms +I, [2018-08-07T13:39:23.259925 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:39:23.261193 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.48 ms +I, [2018-08-07T13:39:23.261486 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:39:23.264161 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.68 ms +I, [2018-08-07T13:39:23.264885 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:39:24.757605 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.69 ms +I, [2018-08-07T13:39:24.757770 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:39:26.349100 #7] INFO -- : Inline processing of topic section_change with 1 messages took 66.61 ms +I, [2018-08-07T13:39:26.349434 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:39:26.385742 #7] INFO -- : Inline processing of topic section_change with 1 messages took 11.49 ms +I, [2018-08-07T13:39:26.391632 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:39:26.458600 #7] INFO -- : Inline processing of topic section_change with 1 messages took 4.92 ms +I, [2018-08-07T13:39:26.459020 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:39:26.480456 #7] INFO -- : Inline processing of topic section_change with 1 messages took 19.88 ms +I, [2018-08-07T13:39:26.482030 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:39:26.490069 #7] INFO -- : Inline processing of topic section_change with 1 messages took 5.27 ms +I, [2018-08-07T13:39:26.492480 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:39:26.565468 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.14 ms +I, [2018-08-07T13:39:26.565741 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:39:26.898069 #7] INFO -- : Inline processing of topic section_change with 1 messages took 330.49 ms +I, [2018-08-07T13:39:26.899374 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:39:28.726635 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1759.76 ms +I, [2018-08-07T13:39:28.731814 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:39:28.775010 #7] INFO -- : Inline processing of topic section_change with 1 messages took 18.5 ms +I, [2018-08-07T13:39:28.775649 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:39:28.793861 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.43 ms +I, [2018-08-07T13:39:28.795014 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:39:28.795926 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-08-07T13:39:28.796044 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:39:28.798449 #7] INFO -- : Inline processing of topic section_change with 1 messages took 2.2 ms +I, [2018-08-07T13:39:28.798548 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:39:28.932462 #7] INFO -- : Inline processing of topic section_change with 1 messages took 119.3 ms +I, [2018-08-07T13:39:28.932906 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:39:28.949660 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.16 ms +I, [2018-08-07T13:39:29.003460 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:39:29.003637 #7] INFO -- : Committing offsets: section_change/0:913 +I, [2018-08-07T13:39:29.889193 #7] INFO -- : Inline processing of topic section_change with 1 messages took 3.76 ms +I, [2018-08-07T13:39:30.127837 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:39:30.145092 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.85 ms +I, [2018-08-07T13:39:30.145330 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:39:30.181424 #7] INFO -- : Inline processing of topic section_change with 1 messages took 35.25 ms +I, [2018-08-07T13:39:30.181749 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:39:30.304333 #7] INFO -- : Committing offsets: course_change/0:443 +I, [2018-08-07T13:39:32.456142 #7] INFO -- : Inline processing of topic section_change with 1 messages took 146.33 ms +I, [2018-08-07T13:39:32.456957 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:39:37.673640 #7] INFO -- : Inline processing of topic section_change with 1 messages took 6.22 ms +I, [2018-08-07T13:39:37.675378 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:39:39.614605 #7] INFO -- : Inline processing of topic course_change with 1 messages took 3.03 ms +I, [2018-08-07T13:39:39.614812 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:39:39.676622 #7] INFO -- : Committing offsets: section_change/0:918 +I, [2018-08-07T13:39:39.704281 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.52 ms +I, [2018-08-07T13:39:39.704421 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:39:42.014500 #7] INFO -- : Committing offsets: course_change/0:444 +I, [2018-08-07T13:39:42.296345 #7] INFO -- : Inline processing of topic section_change with 1 messages took 2.26 ms +I, [2018-08-07T13:39:42.296873 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:39:42.347722 #7] INFO -- : Inline processing of topic course_change with 1 messages took 1.52 ms +I, [2018-08-07T13:39:42.347864 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:39:44.302806 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.6 ms +I, [2018-08-07T13:39:44.302995 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:39:44.313862 #7] INFO -- : Inline processing of topic section_change with 1 messages took 10.02 ms +I, [2018-08-07T13:39:44.313987 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:39:46.973456 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.38 ms +I, [2018-08-07T13:39:46.973677 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:39:46.996368 #7] INFO -- : Inline processing of topic section_change with 1 messages took 22.12 ms +I, [2018-08-07T13:39:46.996513 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:39:47.019956 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.6 ms +I, [2018-08-07T13:39:47.020108 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:39:47.022123 #7] INFO -- : Inline processing of topic course_change with 1 messages took 1.49 ms +I, [2018-08-07T13:39:47.022263 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:39:49.002179 #7] INFO -- : Inline processing of topic section_change with 1 messages took 4.25 ms +I, [2018-08-07T13:39:49.002331 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:39:49.075177 #7] INFO -- : Inline processing of topic course_change with 1 messages took 1.37 ms +I, [2018-08-07T13:39:49.075869 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:39:51.003178 #7] INFO -- : Committing offsets: section_change/0:925 +I, [2018-08-07T13:39:51.035881 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.5 ms +I, [2018-08-07T13:39:51.036019 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:39:51.037731 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.47 ms +I, [2018-08-07T13:39:51.037836 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:39:51.077467 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.46 ms +I, [2018-08-07T13:39:51.077609 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:39:51.079013 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.81 ms +I, [2018-08-07T13:39:51.079140 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:39:53.008129 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.45 ms +I, [2018-08-07T13:39:53.016206 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:39:53.022246 #7] INFO -- : Inline processing of topic section_change with 1 messages took 3.92 ms +I, [2018-08-07T13:39:53.022461 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:39:53.044509 #7] INFO -- : Committing offsets: course_change/0:450 +I, [2018-08-07T13:39:53.098833 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.95 ms +I, [2018-08-07T13:39:53.098967 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:39:55.094815 #7] INFO -- : Inline processing of topic section_change with 1 messages took 56.98 ms +I, [2018-08-07T13:39:55.095189 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:39:57.119791 #7] INFO -- : Inline processing of topic course_change with 1 messages took 1.24 ms +I, [2018-08-07T13:39:57.120643 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:39:57.125167 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.44 ms +I, [2018-08-07T13:39:57.125326 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:39:57.138905 #7] INFO -- : Inline processing of topic course_change with 1 messages took 10.86 ms +I, [2018-08-07T13:39:57.139256 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:39:57.149758 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.58 ms +I, [2018-08-07T13:39:57.168593 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:39:57.170669 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.44 ms +I, [2018-08-07T13:39:57.170807 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:39:59.151359 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.59 ms +I, [2018-08-07T13:39:59.151501 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:39:59.190255 #7] INFO -- : Inline processing of topic section_change with 1 messages took 2.02 ms +I, [2018-08-07T13:39:59.190463 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:40:01.153147 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.39 ms +I, [2018-08-07T13:40:01.153948 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:40:01.156537 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.45 ms +I, [2018-08-07T13:40:01.156961 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:40:01.191284 #7] INFO -- : Committing offsets: section_change/0:933 +I, [2018-08-07T13:40:01.196636 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.43 ms +I, [2018-08-07T13:42:41.688040 #7] INFO -- : New topics added to target list: section_change +I, [2018-08-07T13:42:41.688404 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T13:42:41.719841 #7] INFO -- : New topics added to target list: course_change +I, [2018-08-07T13:42:41.719924 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T13:42:41.744115 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-07T13:42:41.744369 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-07T13:42:41.765410 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-07T13:42:41.765551 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-07T13:42:46.745253 #7] 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.13:9094 +I, [2018-08-07T13:42:46.752443 #7] INFO -- : New topics added to target list: course_change +I, [2018-08-07T13:42:46.752515 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T13:42:46.755619 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-07T13:42:46.755916 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-07T13:42:46.765863 #7] 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.13:9094 +I, [2018-08-07T13:42:46.771992 #7] INFO -- : New topics added to target list: section_change +I, [2018-08-07T13:42:46.773253 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T13:42:46.779753 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-07T13:42:46.783273 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-07T13:42:51.760963 #7] 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.13:9094 +I, [2018-08-07T13:42:51.960051 #7] INFO -- : New topics added to target list: course_change +I, [2018-08-07T13:42:51.960232 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T13:42:51.954589 #7] 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.13:9094 +I, [2018-08-07T13:42:53.700489 #7] INFO -- : New topics added to target list: section_change +I, [2018-08-07T13:42:53.701096 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T13:42:53.770821 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-07T13:42:53.771105 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-07T13:42:53.771501 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-07T13:42:53.771595 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.13:9094 +E, [2018-08-07T13:42:58.775541 #7] 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.13:9094 +I, [2018-08-07T13:42:58.867532 #7] INFO -- : New topics added to target list: course_change +I, [2018-08-07T13:42:58.867825 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T13:42:58.894782 #7] 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.13:9094 +I, [2018-08-07T13:42:58.916073 #7] INFO -- : New topics added to target list: section_change +I, [2018-08-07T13:42:58.916175 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T13:43:07.093349 #7] ERROR -- : No brokers in cluster +E, [2018-08-07T13:43:07.114359 #7] ERROR -- : No brokers in cluster +E, [2018-08-07T13:43:12.331195 #7] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: + +E, [2018-08-07T13:43:12.440916 #7] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: + +I, [2018-08-07T13:43:12.612420 #7] INFO -- : New topics added to target list: course_change +I, [2018-08-07T13:43:12.613173 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T13:43:12.755434 #7] INFO -- : New topics added to target list: section_change +I, [2018-08-07T13:43:12.755543 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T13:43:12.972722 #7] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-07T13:43:12.973158 #7] INFO -- : Joining group `notifications_notifications` +I, [2018-08-07T13:43:13.061885 #7] INFO -- : Will fetch at most 1048576 bytes at a time per partition from section_change +I, [2018-08-07T13:43:13.064255 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T13:43:15.591811 #7] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-07T13:43:15.593052 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:43:15.793954 #7] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-07T13:43:15.795833 #7] INFO -- : Joining group `notifications_course_change` +I, [2018-08-07T13:43:15.802899 #7] INFO -- : Will fetch at most 1048576 bytes at a time per partition from course_change +I, [2018-08-07T13:43:15.983546 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T13:43:16.806798 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:43:17.808423 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:43:18.000309 #7] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-07T13:43:18.001064 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:43:19.177374 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:43:19.177601 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:43:20.359927 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:43:21.164078 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:43:21.470057 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:43:22.174778 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:43:22.471231 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:43:23.564783 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:43:23.617807 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:43:24.573532 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:43:24.625680 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:43:25.575334 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:43:25.628743 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:43:26.576481 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:43:26.629324 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:43:27.577766 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:43:27.629758 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:43:28.578169 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:43:28.647019 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:43:29.578600 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:43:29.658956 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:43:30.579158 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:43:30.659578 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:43:31.660477 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:43:32.780272 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:43:32.780662 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:43:33.788517 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:43:33.788726 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:43:34.789092 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:43:34.791447 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:43:35.099072 #7] INFO -- : Joined group `notifications_notifications` with member id `notifications-5ab86b9c-04bf-4490-bbcc-d1e93e0395fc` +I, [2018-08-07T13:43:35.099189 #7] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-07T13:43:35.316848 #7] INFO -- : Joined group `notifications_course_change` with member id `notifications-50e4fccb-5193-4855-b76c-f0da25dd269c` +I, [2018-08-07T13:43:35.317225 #7] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-07T13:43:35.792398 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:43:35.804550 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:43:36.103970 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T13:43:36.129406 #7] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-07T13:43:36.317815 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T13:43:36.329022 #7] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-07T13:43:36.476169 #7] INFO -- : Partitions assigned for `course_change`: 0 +I, [2018-08-07T13:43:36.481069 #7] INFO -- : Partitions assigned for `section_change`: 0 +I, [2018-08-07T13:43:36.793452 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:43:36.804982 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:43:37.793710 #7] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-07T13:43:37.794104 #7] INFO -- : New topics added to target list: course_change +I, [2018-08-07T13:43:37.794169 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T13:43:37.799816 #7] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-07T13:43:37.810420 #7] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-07T13:43:37.810623 #7] INFO -- : New topics added to target list: section_change +I, [2018-08-07T13:43:37.810697 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T13:43:37.822590 #7] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +E, [2018-08-07T13:43:47.703111 #7] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- NoMethodError: undefined method `write' for Iodine:Module +/usr/src/app/app/controllers/eventstream.rb:20:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-07T13:43:47.706114 #7] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-07T13:43:47.710001 #7] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- NoMethodError: undefined method `write' for Iodine:Module +/usr/src/app/app/controllers/eventstream.rb:20:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-07T13:43:47.726594 #7] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-07T13:43:47.891315 #7] ERROR -- : Client fetch loop error: undefined method `write' for Iodine:Module +I, [2018-08-07T13:43:47.894073 #7] INFO -- : Joining group `notifications_course_change` +E, [2018-08-07T13:43:47.904410 #7] ERROR -- : Client fetch loop error: undefined method `write' for Iodine:Module +I, [2018-08-07T13:43:47.904563 #7] INFO -- : Joining group `notifications_notifications` +E, [2018-08-07T13:43:47.905043 #7] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-08-07T13:43:47.910324 #7] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-07T13:43:47.922270 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:43:48.322597 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:43:48.905480 #7] INFO -- : Joining group `notifications_course_change` +I, [2018-08-07T13:43:48.935744 #7] INFO -- : Joining group `notifications_notifications` +I, [2018-08-07T13:43:48.936234 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:43:48.947754 #7] INFO -- : Joined group `notifications_course_change` with member id `notifications-a9fa1826-8af0-47aa-a652-2a2b04a220e5` +I, [2018-08-07T13:43:48.947812 #7] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-07T13:43:48.979056 #7] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-07T13:43:48.979260 #7] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-07T13:43:48.985896 #7] INFO -- : Joined group `notifications_notifications` with member id `notifications-8e324f9c-9076-46bf-a5fb-c7792be443ab` +I, [2018-08-07T13:43:48.985956 #7] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-07T13:43:48.993679 #7] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-07T13:43:48.993782 #7] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-07T13:43:49.323340 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:43:49.936697 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:43:50.357485 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:43:51.008662 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:43:51.358565 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:43:52.009164 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:43:52.359219 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:43:53.014122 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:43:53.328946 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:43:54.015386 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:43:54.329286 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:43:55.043146 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:43:55.329688 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:43:56.043685 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:43:56.330543 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:43:57.044138 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:43:57.331509 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:43:58.045569 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:43:58.331849 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:43:59.046216 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:43:59.059510 #7] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-07T13:43:59.235281 #7] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-07T13:43:59.332240 #7] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-07T13:44:00.046437 #7] INFO -- : Seeking section_change/0 to offset 0 +E, [2018-08-07T13:44:01.097831 #7] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- NoMethodError: undefined method `write' for Iodine:Module +/usr/src/app/app/controllers/eventstream.rb:20:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-07T13:44:01.097905 #7] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-07T13:44:01.123060 #7] ERROR -- : Client fetch loop error: undefined method `write' for Iodine:Module +I, [2018-08-07T13:44:01.123750 #7] INFO -- : Joining group `notifications_notifications` +E, [2018-08-07T13:44:01.140393 #7] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-07T13:44:01.193887 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-07T13:44:01.242241 #7] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- NoMethodError: undefined method `write' for Iodine:Module +/usr/src/app/app/controllers/eventstream.rb:20:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-07T13:44:01.242305 #7] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-07T13:44:01.257804 #7] ERROR -- : Client fetch loop error: undefined method `write' for Iodine:Module +I, [2018-08-07T13:44:01.258162 #7] INFO -- : Joining group `notifications_course_change` +E, [2018-08-07T13:44:01.260979 #7] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-07T13:44:01.328132 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:44:02.141426 #7] INFO -- : Joining group `notifications_notifications` +I, [2018-08-07T13:44:02.162256 #7] INFO -- : Joined group `notifications_notifications` with member id `notifications-c2842afe-d5a3-4dbf-af8a-7442d20385fc` +I, [2018-08-07T13:44:02.162307 #7] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-07T13:44:02.177582 #7] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-07T13:44:02.177683 #7] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-07T13:44:02.194237 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:44:02.261225 #7] INFO -- : Joining group `notifications_course_change` +I, [2018-08-07T13:44:02.283324 #7] INFO -- : Joined group `notifications_course_change` with member id `notifications-aaf0e0b8-4b84-4462-89aa-56c9aa464008` +I, [2018-08-07T13:44:02.283376 #7] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-07T13:44:02.294236 #7] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-07T13:44:02.294307 #7] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-07T13:44:02.331298 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:44:03.195585 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:44:03.339298 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:44:04.250206 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:44:04.370375 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:44:05.252537 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:44:05.370759 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:44:06.259568 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:44:06.371742 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:44:07.260481 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:44:07.372916 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:44:08.262372 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:44:08.373342 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:44:09.263455 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:44:09.373955 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:44:10.264277 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:44:10.374497 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:44:11.264578 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:44:11.375152 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:44:12.264827 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:44:12.375961 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:44:12.402759 #7] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-07T13:44:12.469902 #7] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-07T13:44:13.265076 #7] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-07T13:44:13.376286 #7] INFO -- : Seeking course_change/0 to offset 0 +E, [2018-08-07T13:44:14.433513 #7] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- NoMethodError: undefined method `write' for Iodine:Module +/usr/src/app/app/controllers/eventstream.rb:20:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-07T13:44:14.437582 #7] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-07T13:44:14.465534 #7] ERROR -- : Client fetch loop error: undefined method `write' for Iodine:Module +I, [2018-08-07T13:44:14.465873 #7] INFO -- : Joining group `notifications_notifications` +E, [2018-08-07T13:44:14.478717 #7] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- NoMethodError: undefined method `write' for Iodine:Module +/usr/src/app/app/controllers/eventstream.rb:20:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-07T13:44:14.478787 #7] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-07T13:44:14.479176 #7] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-08-07T13:44:14.518263 #7] ERROR -- : Client fetch loop error: undefined method `write' for Iodine:Module +I, [2018-08-07T13:44:14.518491 #7] INFO -- : Joining group `notifications_course_change` +E, [2018-08-07T13:44:14.523207 #7] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-07T13:44:14.543190 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:44:14.607461 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:44:15.479349 #7] INFO -- : Joining group `notifications_notifications` +I, [2018-08-07T13:44:15.483269 #7] INFO -- : Joined group `notifications_notifications` with member id `notifications-a7bd0df8-265b-45fd-bdc2-f168b4707c0c` +I, [2018-08-07T13:44:15.483313 #7] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-07T13:44:15.486822 #7] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-07T13:44:15.486883 #7] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-07T13:44:15.523622 #7] INFO -- : Joining group `notifications_course_change` +I, [2018-08-07T13:44:15.529247 #7] INFO -- : Joined group `notifications_course_change` with member id `notifications-da799d11-c304-4665-a7ad-186477cec810` +I, [2018-08-07T13:44:15.529306 #7] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-07T13:44:15.532260 #7] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-07T13:44:15.532320 #7] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-07T13:44:15.543500 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:44:15.607894 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:44:16.544989 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:44:16.608198 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:44:17.545589 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:44:17.608614 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:44:18.545956 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:44:18.609443 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:44:19.546372 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:44:19.612038 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:44:20.546862 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:44:20.612363 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:44:21.547202 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:44:21.612795 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:44:22.547608 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:44:22.613110 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:44:23.518863 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:44:23.585086 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:44:24.519320 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:44:24.585492 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:44:25.473778 #7] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-07T13:44:25.513274 #7] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-07T13:44:25.519990 #7] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-07T13:44:25.586138 #7] INFO -- : Seeking course_change/0 to offset 0 +E, [2018-08-07T13:44:27.494650 #7] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- NoMethodError: undefined method `write' for Iodine:Module +/usr/src/app/app/controllers/eventstream.rb:20:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-07T13:44:27.496844 #7] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-07T13:44:27.500196 #7] ERROR -- : Client fetch loop error: undefined method `write' for Iodine:Module +I, [2018-08-07T13:44:27.500485 #7] INFO -- : Joining group `notifications_notifications` +E, [2018-08-07T13:44:27.501722 #7] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-08-07T13:44:27.516798 #7] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- NoMethodError: undefined method `write' for Iodine:Module +/usr/src/app/app/controllers/eventstream.rb:20:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-07T13:44:27.516850 #7] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-07T13:44:27.519909 #7] ERROR -- : Client fetch loop error: undefined method `write' for Iodine:Module +I, [2018-08-07T13:44:27.520078 #7] INFO -- : Joining group `notifications_course_change` +E, [2018-08-07T13:44:27.520904 #7] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-07T13:44:27.527751 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:44:28.281709 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:44:28.501984 #7] INFO -- : Joining group `notifications_notifications` +I, [2018-08-07T13:44:28.510738 #7] INFO -- : Joined group `notifications_notifications` with member id `notifications-c3410bb6-8343-4c80-9e57-b64a5e013ca5` +I, [2018-08-07T13:44:28.510799 #7] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-07T13:44:28.516501 #7] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-07T13:44:28.516569 #7] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-07T13:44:28.521165 #7] INFO -- : Joining group `notifications_course_change` +I, [2018-08-07T13:44:28.527371 #7] INFO -- : Joined group `notifications_course_change` with member id `notifications-b7136d90-e40e-4fa0-9e69-6f4bb8fdd2c7` +I, [2018-08-07T13:44:28.527422 #7] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-07T13:44:28.528163 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:44:28.533197 #7] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-07T13:44:28.533275 #7] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-07T13:44:29.282243 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:44:29.528420 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:44:30.282963 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:44:30.528627 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:44:31.283259 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:44:31.528963 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:44:32.283586 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:44:32.529288 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:44:33.283943 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:44:33.529835 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:44:34.284370 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:44:34.530462 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:44:35.285495 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:44:35.530960 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:44:36.288336 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:44:36.531828 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:44:37.288854 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:44:37.533360 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:44:38.548269 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:44:38.634519 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:44:38.635330 #7] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-07T13:44:38.717882 #7] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-07T13:44:39.550896 #7] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-07T13:44:39.637839 #7] INFO -- : Seeking section_change/0 to offset 0 +E, [2018-08-07T13:44:40.738782 #7] ERROR -- : Exception raised when processing course_change/0 at offset 0 -- NoMethodError: undefined method `write' for Iodine:Module +/usr/src/app/app/controllers/eventstream.rb:20:in `notify' +/usr/src/app/app/consumers/courses_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-07T13:44:40.769899 #7] INFO -- : Leaving group `notifications_course_change` +E, [2018-08-07T13:44:40.767809 #7] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- NoMethodError: undefined method `write' for Iodine:Module +/usr/src/app/app/controllers/eventstream.rb:20:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-07T13:44:40.770234 #7] INFO -- : Leaving group `notifications_notifications` +E, [2018-08-07T13:44:40.790722 #7] ERROR -- : Client fetch loop error: undefined method `write' for Iodine:Module +I, [2018-08-07T13:44:40.791061 #7] INFO -- : Joining group `notifications_notifications` +E, [2018-08-07T13:44:40.792619 #7] ERROR -- : Client fetch loop error: undefined method `write' for Iodine:Module +I, [2018-08-07T13:44:40.793115 #7] INFO -- : Joining group `notifications_course_change` +E, [2018-08-07T13:44:40.794638 #7] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +E, [2018-08-07T13:44:40.796156 #7] ERROR -- : Failed to join group; resetting member id and retrying in 1s... +I, [2018-08-07T13:44:40.887719 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:44:40.887890 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:44:41.795077 #7] INFO -- : Joining group `notifications_course_change` +I, [2018-08-07T13:44:41.797008 #7] INFO -- : Joining group `notifications_notifications` +I, [2018-08-07T13:44:41.811710 #7] INFO -- : Joined group `notifications_notifications` with member id `notifications-7817e6ca-86de-4c6c-a2db-485e456e68c3` +I, [2018-08-07T13:44:41.811777 #7] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-07T13:44:41.821203 #7] INFO -- : Partitions assigned for `section_change`: 0 +W, [2018-08-07T13:44:41.821365 #7] WARN -- : Not fetching from section_change/0 due to pause +I, [2018-08-07T13:44:41.823807 #7] INFO -- : Joined group `notifications_course_change` with member id `notifications-15fc9284-80b6-4f12-a7ee-e5297d241e4b` +I, [2018-08-07T13:44:41.823874 #7] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-07T13:44:41.828551 #7] INFO -- : Partitions assigned for `course_change`: 0 +W, [2018-08-07T13:44:41.828776 #7] WARN -- : Not fetching from course_change/0 due to pause +I, [2018-08-07T13:44:41.888268 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:44:41.888431 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:44:42.888760 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:44:42.888950 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:44:43.889219 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:44:43.889390 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:44:44.889997 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:44:44.890093 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:44:45.906986 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:44:45.907195 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:44:46.907297 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:44:46.907467 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:44:47.907665 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:44:47.907828 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:44:48.908157 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:44:48.908556 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:44:49.953594 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:44:49.956105 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:44:50.956067 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:44:50.956429 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:44:51.941912 #7] INFO -- : Automatically resuming partition section_change/0, pause timeout expired +I, [2018-08-07T13:44:51.945216 #7] INFO -- : Automatically resuming partition course_change/0, pause timeout expired +I, [2018-08-07T13:44:51.956436 #7] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-07T13:44:51.959568 #7] INFO -- : Seeking section_change/0 to offset 0 +E, [2018-08-07T13:44:54.298071 #7] ERROR -- : Exception raised when processing section_change/0 at offset 0 -- NoMethodError: undefined method `write' for Iodine:Module +/usr/src/app/app/controllers/eventstream.rb:20:in `notify' +/usr/src/app/app/consumers/sections_consumer.rb:7:in `consume' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `block in process' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/backends/inline.rb:12:in `process' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/base_consumer.rb:46:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:38:in `block (2 levels) in call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `each' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:36:in `block in call' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:8:in `measure' +/usr/local/bundle/gems/dry-monitor-0.1.2/lib/dry/monitor/notifications.rb:42:in `instrument' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/delegator.rb:24:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:42:in `block in fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `block in fetch_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:224:in `block (4 levels) in each_message' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:222:in `block (3 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:207:in `block (2 levels) in each_message' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `each' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:206:in `block in each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:27:in `block in consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:387:in `block in consumer_loop' +/usr/local/bundle/gems/activesupport-5.2.0/lib/active_support/notifications.rb:170:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:21:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/instrumenter.rb:35:in `instrument' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:386:in `consumer_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/patches/ruby_kafka.rb:15:in `consumer_loop' +/usr/local/bundle/gems/ruby-kafka-0.6.7/lib/kafka/consumer.rb:203:in `each_message' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/client.rb:32:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:39:in `fetch_loop' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/connection/listener.rb:23:in `call' +/usr/local/bundle/gems/karafka-1.2.5/lib/karafka/fetcher.rb:19:in `block (2 levels) in call' +I, [2018-08-07T13:52:28.663015 #7] INFO -- : New topics added to target list: section_change +I, [2018-08-07T13:52:28.663145 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T13:52:28.667278 #7] INFO -- : New topics added to target list: course_change +I, [2018-08-07T13:52:28.667506 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T13:52:28.672478 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +E, [2018-08-07T13:52:28.672622 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +E, [2018-08-07T13:52:28.672875 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +E, [2018-08-07T13:52:28.672932 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +E, [2018-08-07T13:52:33.673309 #7] 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 +E, [2018-08-07T13:52:33.674791 #7] 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-08-07T13:52:33.675600 #7] INFO -- : New topics added to target list: section_change +I, [2018-08-07T13:52:33.675681 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T13:52:33.677680 #7] INFO -- : New topics added to target list: course_change +I, [2018-08-07T13:52:33.677791 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T13:52:33.680073 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +E, [2018-08-07T13:52:33.681608 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +E, [2018-08-07T13:52:33.690547 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +E, [2018-08-07T13:52:33.690699 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +E, [2018-08-07T13:52:38.685275 #7] 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-08-07T13:52:38.688363 #7] INFO -- : New topics added to target list: section_change +I, [2018-08-07T13:52:38.689296 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T13:52:38.693118 #7] 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-08-07T13:52:38.699092 #7] INFO -- : New topics added to target list: course_change +I, [2018-08-07T13:52:38.699211 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T13:52:39.745073 #7] ERROR -- : No brokers in cluster +E, [2018-08-07T13:52:39.766681 #7] ERROR -- : No brokers in cluster +E, [2018-08-07T13:52:44.747661 #7] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: + +I, [2018-08-07T13:52:44.756259 #7] INFO -- : New topics added to target list: course_change +I, [2018-08-07T13:52:44.756421 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T13:52:44.767863 #7] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: + +I, [2018-08-07T13:52:44.768635 #7] INFO -- : New topics added to target list: section_change +I, [2018-08-07T13:52:44.768693 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T13:52:44.786994 #7] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-07T13:52:44.788020 #7] INFO -- : Joining group `notifications_course_change` +I, [2018-08-07T13:52:44.856140 #7] INFO -- : Will fetch at most 1048576 bytes at a time per partition from course_change +I, [2018-08-07T13:52:44.856407 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T13:52:44.892540 #7] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-07T13:52:44.892737 #7] INFO -- : Joining group `notifications_notifications` +I, [2018-08-07T13:52:44.930536 #7] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-07T13:52:44.930764 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:52:44.970153 #7] INFO -- : Will fetch at most 1048576 bytes at a time per partition from section_change +I, [2018-08-07T13:52:44.970443 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T13:52:45.012945 #7] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-07T13:52:45.013089 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:52:45.931037 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:52:46.022231 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:52:46.931476 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:52:47.022612 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:52:47.931872 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:52:48.023147 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:52:48.932187 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:52:49.023688 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +E, [2018-08-07T13:52:49.222911 #7] ERROR -- : Failed to find coordinator for group `notifications_course_change`; retrying... +E, [2018-08-07T13:52:49.224147 #7] ERROR -- : Failed to find coordinator for group `notifications_notifications`; retrying... +I, [2018-08-07T13:52:49.932564 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:52:50.024054 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:52:50.223204 #7] INFO -- : Joining group `notifications_course_change` +I, [2018-08-07T13:52:50.224543 #7] INFO -- : Joining group `notifications_notifications` +I, [2018-08-07T13:52:50.417230 #7] INFO -- : Joined group `notifications_notifications` with member id `notifications-96a6d03b-0c46-456b-9148-1ef33649be72` +I, [2018-08-07T13:52:50.417283 #7] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-07T13:52:50.421932 #7] INFO -- : Joined group `notifications_course_change` with member id `notifications-d169105d-c750-4d0b-a554-cfb2da001b8a` +I, [2018-08-07T13:52:50.421975 #7] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-07T13:52:50.933030 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:52:51.024349 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T13:52:51.418278 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T13:52:51.423422 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T13:52:51.443438 #7] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-07T13:52:51.446021 #7] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-07T13:52:51.627484 #7] INFO -- : Partitions assigned for `section_change`: 0 +I, [2018-08-07T13:52:51.628745 #7] INFO -- : Partitions assigned for `course_change`: 0 +I, [2018-08-07T13:52:51.933569 #7] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-07T13:52:51.933682 #7] INFO -- : New topics added to target list: course_change +I, [2018-08-07T13:52:51.933743 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T13:52:51.975048 #7] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-07T13:52:52.024713 #7] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-07T13:52:52.025579 #7] INFO -- : New topics added to target list: section_change +I, [2018-08-07T13:52:52.025648 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T13:52:52.034137 #7] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-07T13:52:55.733086 #7] INFO -- : Inline processing of topic course_change with 1 messages took 46.56 ms +I, [2018-08-07T13:52:55.733216 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:52:55.734053 #7] INFO -- : Committing offsets with recommit: course_change/0:1 +I, [2018-08-07T13:52:55.739351 #7] INFO -- : Inline processing of topic section_change with 1 messages took 33.4 ms +I, [2018-08-07T13:52:55.739417 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:52:55.739461 #7] INFO -- : Committing offsets with recommit: section_change/0:1 +I, [2018-08-07T13:52:55.770459 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T13:52:55.770508 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:52:55.770928 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.24 ms +I, [2018-08-07T13:52:55.770972 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:52:55.774221 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T13:52:55.774265 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:52:55.774554 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T13:52:55.774585 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:52:55.775138 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.44 ms +I, [2018-08-07T13:52:55.775174 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:52:55.775588 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T13:52:55.775622 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:52:55.776584 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.84 ms +I, [2018-08-07T13:52:55.776628 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:52:55.776931 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T13:52:55.777905 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:52:55.778259 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T13:52:55.778347 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:52:55.778644 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T13:52:55.779583 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:52:55.779896 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T13:52:55.779929 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:52:55.780263 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T13:52:55.780293 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:52:55.780525 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T13:52:55.780555 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:52:55.780735 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-08-07T13:52:55.780764 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:52:55.780989 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-08-07T13:52:55.781018 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:52:55.786944 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T13:52:55.787055 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:52:55.787410 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T13:52:55.787445 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:52:55.787665 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T13:52:55.787805 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:52:55.788676 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.7 ms +I, [2018-08-07T13:52:55.788724 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:52:55.789152 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T13:52:55.796885 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:52:57.825593 #7] INFO -- : Inline processing of topic course_change with 1 messages took 6.42 ms +I, [2018-08-07T13:52:57.825675 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:52:57.826765 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.91 ms +I, [2018-08-07T13:52:57.827249 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:52:57.828468 #7] INFO -- : Inline processing of topic course_change with 1 messages took 1.04 ms +I, [2018-08-07T13:52:57.829193 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:52:57.830708 #7] INFO -- : Inline processing of topic course_change with 1 messages took 1.31 ms +I, [2018-08-07T13:52:57.832291 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:52:57.834511 #7] INFO -- : Inline processing of topic course_change with 1 messages took 1.92 ms +I, [2018-08-07T13:52:57.835767 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:52:57.838058 #7] INFO -- : Inline processing of topic course_change with 1 messages took 1.48 ms +I, [2018-08-07T13:52:57.838381 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:52:57.842794 #7] INFO -- : Inline processing of topic course_change with 1 messages took 1.83 ms +I, [2018-08-07T13:52:57.843049 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:52:57.850483 #7] INFO -- : Inline processing of topic section_change with 1 messages took 5.97 ms +I, [2018-08-07T13:52:57.850565 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:52:57.856990 #7] INFO -- : Inline processing of topic section_change with 1 messages took 6.13 ms +I, [2018-08-07T13:52:57.857047 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:52:57.858586 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.9 ms +I, [2018-08-07T13:52:57.859400 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:52:57.860588 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.94 ms +I, [2018-08-07T13:52:57.861626 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:52:57.863258 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.42 ms +I, [2018-08-07T13:52:57.863320 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:52:57.865904 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.34 ms +I, [2018-08-07T13:52:57.867822 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:52:57.869557 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.43 ms +I, [2018-08-07T13:52:57.869625 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:52:57.871536 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.14 ms +I, [2018-08-07T13:52:57.871605 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:52:57.874351 #7] INFO -- : Inline processing of topic section_change with 1 messages took 2.22 ms +I, [2018-08-07T13:52:57.875683 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:52:57.879517 #7] INFO -- : Inline processing of topic section_change with 1 messages took 3.47 ms +I, [2018-08-07T13:52:57.879583 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:52:57.880672 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-08-07T13:52:57.880733 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:52:57.882709 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.09 ms +I, [2018-08-07T13:52:57.883035 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:52:57.885070 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.5 ms +I, [2018-08-07T13:52:57.885117 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:52:57.898418 #7] INFO -- : Inline processing of topic section_change with 1 messages took 12.64 ms +I, [2018-08-07T13:52:57.898476 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:52:57.902646 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.29 ms +I, [2018-08-07T13:52:57.902702 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:52:57.904251 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.75 ms +I, [2018-08-07T13:52:57.904748 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:52:57.939334 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T13:52:57.939383 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:52:57.940923 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.38 ms +I, [2018-08-07T13:52:57.940969 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:52:57.941570 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.44 ms +I, [2018-08-07T13:52:57.941618 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:52:57.944327 #7] INFO -- : Inline processing of topic section_change with 1 messages took 2.55 ms +I, [2018-08-07T13:52:57.944377 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:52:59.843966 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.25 ms +I, [2018-08-07T13:52:59.844035 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:52:59.844330 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T13:52:59.844362 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:52:59.844594 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T13:52:59.844621 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:52:59.844799 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T13:52:59.844852 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:52:59.845042 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-08-07T13:52:59.845072 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:52:59.845284 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T13:52:59.845313 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:52:59.845520 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T13:52:59.845658 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:52:59.845949 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T13:52:59.845978 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:52:59.846221 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T13:52:59.846275 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:52:59.851642 #7] INFO -- : Inline processing of topic course_change with 1 messages took 5.18 ms +I, [2018-08-07T13:52:59.851766 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:52:59.852346 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.35 ms +I, [2018-08-07T13:52:59.852401 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:52:59.852754 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T13:52:59.852804 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:52:59.853136 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T13:52:59.853182 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:52:59.853486 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T13:52:59.853529 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:52:59.853832 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T13:52:59.853875 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:52:59.854256 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-08-07T13:52:59.854313 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:52:59.854610 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T13:52:59.854669 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:52:59.945491 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-08-07T13:52:59.945619 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:52:59.946372 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.52 ms +I, [2018-08-07T13:52:59.946425 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:52:59.946847 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T13:52:59.946890 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:52:59.947222 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T13:52:59.947264 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:52:59.947565 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T13:52:59.947630 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:52:59.949142 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-08-07T13:52:59.949223 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:52:59.950046 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.55 ms +I, [2018-08-07T13:52:59.950107 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:52:59.950614 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T13:52:59.950672 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:52:59.951123 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T13:52:59.951160 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:52:59.951543 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T13:52:59.951592 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:52:59.952072 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T13:52:59.952171 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:52:59.952596 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T13:52:59.952645 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:52:59.953045 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T13:52:59.953098 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:52:59.953496 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T13:52:59.953543 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:52:59.953942 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T13:52:59.953994 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:52:59.954610 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-08-07T13:52:59.954681 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:52:59.964837 #7] INFO -- : Inline processing of topic section_change with 1 messages took 9.89 ms +I, [2018-08-07T13:52:59.964937 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:52:59.965283 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T13:52:59.965369 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:52:59.965607 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T13:52:59.965637 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:52:59.965845 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-08-07T13:52:59.965883 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:52:59.966361 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T13:52:59.966398 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:52:59.966631 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T13:52:59.966716 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:52:59.966947 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T13:52:59.966976 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:52:59.970483 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T13:52:59.970549 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:52:59.971032 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T13:52:59.971083 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:52:59.971488 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T13:52:59.971535 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:01.856413 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.5 ms +I, [2018-08-07T13:53:01.856640 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:01.857664 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.41 ms +I, [2018-08-07T13:53:01.857717 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:01.858050 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T13:53:01.858112 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:01.859494 #7] INFO -- : Inline processing of topic course_change with 1 messages took 1.21 ms +I, [2018-08-07T13:53:01.859559 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:01.859945 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T13:53:01.860014 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:01.972308 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T13:53:01.972408 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:01.972811 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T13:53:01.972917 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:01.973259 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T13:53:01.973314 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:01.973600 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T13:53:01.973631 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:01.973967 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T13:53:01.974020 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:01.974309 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T13:53:01.974351 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:01.974631 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T13:53:01.974717 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:01.977292 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.66 ms +I, [2018-08-07T13:53:01.977365 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:01.977788 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T13:53:01.977821 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:01.978225 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T13:53:01.978264 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:01.978627 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T13:53:01.979980 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:01.980347 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T13:53:01.980392 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:01.980737 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T13:53:01.980795 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:01.981093 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T13:53:01.981148 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:01.981514 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T13:53:01.981577 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:03.860700 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T13:53:03.860752 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:03.861003 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-08-07T13:53:03.861041 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:03.861391 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.24 ms +I, [2018-08-07T13:53:03.861424 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:03.861822 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-08-07T13:53:03.861912 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:03.862206 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T13:53:03.862239 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:03.862471 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T13:53:03.862501 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:03.862732 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T13:53:03.862762 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:03.863031 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T13:53:03.864825 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:03.865282 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-08-07T13:53:03.865338 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:03.865751 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T13:53:03.865837 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:03.866286 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-08-07T13:53:03.866383 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:03.866735 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T13:53:03.866787 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:03.867141 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T13:53:03.867190 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:03.867559 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T13:53:03.867610 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:03.867982 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T13:53:03.868032 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:03.868360 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T13:53:03.868409 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:03.868750 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T13:53:03.868845 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:03.869170 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T13:53:03.869224 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:03.869568 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T13:53:03.869623 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:03.982533 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T13:53:03.982581 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:03.982813 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-08-07T13:53:03.982842 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:03.983057 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T13:53:03.983085 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:03.983357 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T13:53:03.983428 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:03.985391 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.13 ms +I, [2018-08-07T13:53:03.985445 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:03.985734 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T13:53:03.985763 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:03.985982 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T13:53:03.986009 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:03.986291 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T13:53:03.986322 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:03.986673 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T13:53:03.986705 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:03.986979 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-08-07T13:53:03.987052 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:03.987447 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T13:53:03.987484 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:03.987752 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T13:53:03.987779 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:03.987996 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T13:53:03.988025 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:03.988891 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T13:53:03.988935 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:03.989191 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T13:53:03.989222 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:03.989447 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T13:53:03.989480 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:03.989711 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T13:53:03.989740 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:03.989947 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T13:53:03.996152 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:05.870573 #7] INFO -- : Committing offsets: course_change/0:51 +I, [2018-08-07T13:53:05.901332 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.24 ms +I, [2018-08-07T13:53:05.901456 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:05.903182 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T13:53:05.903223 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:05.903449 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-08-07T13:53:05.903479 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:05.903691 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T13:53:05.903719 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:05.903933 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T13:53:05.903961 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:05.904164 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-08-07T13:53:05.904198 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:05.904399 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T13:53:05.904427 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:05.904629 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-08-07T13:53:05.904658 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:05.904870 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-08-07T13:53:05.904898 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:05.905122 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T13:53:05.905161 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:05.905475 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T13:53:05.905506 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:05.905791 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T13:53:05.905822 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:05.906128 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T13:53:05.906177 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:05.906992 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.28 ms +I, [2018-08-07T13:53:05.907051 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:05.907420 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T13:53:05.907469 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:05.908279 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T13:53:05.908355 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:05.908696 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T13:53:05.908745 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:05.909105 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T13:53:05.909261 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:05.909636 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T13:53:05.909681 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:05.911936 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.28 ms +I, [2018-08-07T13:53:05.912476 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:05.913314 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.42 ms +I, [2018-08-07T13:53:05.913358 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:05.996551 #7] INFO -- : Committing offsets: section_change/0:98 +I, [2018-08-07T13:53:06.001279 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T13:53:06.001323 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:06.001569 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T13:53:06.001599 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:06.001844 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T13:53:06.001874 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:06.002105 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T13:53:06.002134 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:06.002348 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T13:53:06.002385 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:06.002605 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T13:53:06.002644 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:06.002863 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T13:53:06.002910 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:06.003696 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T13:53:06.003754 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:06.005855 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.72 ms +I, [2018-08-07T13:53:06.005908 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:06.007213 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.76 ms +I, [2018-08-07T13:53:06.007372 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:06.008326 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T13:53:06.010264 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:06.012385 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.9 ms +I, [2018-08-07T13:53:06.012595 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:06.013097 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T13:53:06.013826 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:06.015956 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.22 ms +I, [2018-08-07T13:53:06.016258 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:06.017202 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.46 ms +I, [2018-08-07T13:53:06.017246 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:06.021644 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.89 ms +I, [2018-08-07T13:53:06.021744 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:06.024974 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.72 ms +I, [2018-08-07T13:53:06.025018 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:06.025488 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-08-07T13:53:06.025522 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:06.027115 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.08 ms +I, [2018-08-07T13:53:06.027166 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:06.029062 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.86 ms +I, [2018-08-07T13:53:06.029220 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:06.031191 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.37 ms +I, [2018-08-07T13:53:06.031387 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:06.032692 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.05 ms +I, [2018-08-07T13:53:06.032738 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:06.034160 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.2 ms +I, [2018-08-07T13:53:06.034363 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:07.915008 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T13:53:07.915061 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:07.915284 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T13:53:07.915313 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:07.916079 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.59 ms +I, [2018-08-07T13:53:07.916199 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:07.916479 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T13:53:07.916509 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:07.917055 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.42 ms +I, [2018-08-07T13:53:07.917092 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:07.921600 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.23 ms +I, [2018-08-07T13:53:07.921665 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:07.922191 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.27 ms +I, [2018-08-07T13:53:07.922241 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:07.922544 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T13:53:07.922610 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:08.035193 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T13:53:08.035266 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:08.035790 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T13:53:08.035855 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:08.036372 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T13:53:08.036419 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:08.036767 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T13:53:08.036823 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:08.037232 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T13:53:08.037273 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:08.037546 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T13:53:08.037581 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:08.037916 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T13:53:08.037958 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:08.038435 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T13:53:08.038511 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:08.038972 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T13:53:08.039018 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:08.039315 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T13:53:08.039362 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:08.041553 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.98 ms +I, [2018-08-07T13:53:08.041644 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:08.042203 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-08-07T13:53:08.042339 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:08.042964 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T13:53:08.043141 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:08.043808 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-08-07T13:53:08.043856 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:08.046567 #7] INFO -- : Inline processing of topic section_change with 1 messages took 2.38 ms +I, [2018-08-07T13:53:08.046636 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:08.047311 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T13:53:08.050115 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:08.050824 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T13:53:08.052450 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:08.053032 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T13:53:08.053075 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:08.053446 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T13:53:08.053584 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:08.053973 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T13:53:08.054010 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:08.054293 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T13:53:08.054333 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:09.923559 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.29 ms +I, [2018-08-07T13:53:09.923640 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:09.923941 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T13:53:09.923980 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:09.924219 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T13:53:09.924255 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:09.924489 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T13:53:09.924522 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:09.924742 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T13:53:09.924774 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:09.924996 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T13:53:09.925024 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:09.925229 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T13:53:09.925259 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:09.925481 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T13:53:09.925508 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:09.925729 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T13:53:09.925764 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:09.926247 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T13:53:09.926289 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:09.926517 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T13:53:09.926563 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:09.926782 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T13:53:09.926811 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:10.055186 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T13:53:10.055249 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:10.055480 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T13:53:10.055509 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:10.055728 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T13:53:10.055759 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:10.055968 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T13:53:10.055993 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:10.056355 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T13:53:10.056388 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:10.056646 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T13:53:10.056689 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:10.057097 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T13:53:10.057145 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:10.057376 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T13:53:10.057406 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:10.058593 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T13:53:10.058672 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:10.059049 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T13:53:10.059117 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:10.059415 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T13:53:10.061144 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:10.061741 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-08-07T13:53:10.061817 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:10.066876 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.62 ms +I, [2018-08-07T13:53:10.066934 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:10.067905 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T13:53:10.067995 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:10.068381 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T13:53:10.068423 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:10.068723 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T13:53:10.068756 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:11.928388 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.63 ms +I, [2018-08-07T13:53:11.928494 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:11.929187 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T13:53:11.929244 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:11.929637 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T13:53:11.929673 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:11.931958 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.47 ms +I, [2018-08-07T13:53:11.932022 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:11.932463 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.23 ms +I, [2018-08-07T13:53:11.932515 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:11.932880 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-08-07T13:53:11.932930 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:12.069869 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T13:53:12.069971 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:12.070202 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T13:53:12.070257 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:12.070477 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T13:53:12.070508 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:12.070761 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T13:53:12.070791 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:12.071015 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T13:53:12.071043 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:12.071389 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T13:53:12.071430 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:12.071731 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T13:53:12.071823 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:12.072094 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T13:53:12.072125 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:12.072337 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T13:53:12.072377 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:12.073290 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.8 ms +I, [2018-08-07T13:53:12.073333 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:12.073754 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T13:53:12.073806 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:12.074157 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T13:53:12.074204 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:12.074520 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T13:53:12.074553 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:12.074969 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T13:53:12.076315 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:12.076731 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T13:53:12.076782 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:12.077122 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T13:53:12.077169 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:12.077523 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T13:53:12.081857 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:12.082608 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-08-07T13:53:12.082839 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:12.083293 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T13:53:12.083340 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:12.083674 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T13:53:12.083725 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:12.084034 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T13:53:12.084079 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:12.084428 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T13:53:12.084474 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:13.933629 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-08-07T13:53:13.933678 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:13.933916 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T13:53:13.933945 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:13.934155 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T13:53:13.934184 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:13.934407 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T13:53:13.934436 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:13.934650 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T13:53:13.934679 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:13.934886 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T13:53:13.934915 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:13.935140 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T13:53:13.935169 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:13.935374 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T13:53:13.935402 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:13.935614 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T13:53:13.935642 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:13.935862 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T13:53:13.935890 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:13.936181 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-08-07T13:53:13.936211 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:13.936434 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T13:53:13.936871 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:13.937231 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T13:53:13.937263 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:13.937581 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-08-07T13:53:13.937611 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:13.937865 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T13:53:13.937894 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:13.938099 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T13:53:13.938128 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:13.938329 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T13:53:13.938377 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:13.938566 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T13:53:13.938631 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:13.938875 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T13:53:13.938904 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:13.939137 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T13:53:13.939165 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:13.939451 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-08-07T13:53:13.939481 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:13.939677 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-08-07T13:53:13.939712 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:13.939955 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T13:53:13.939984 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:13.940266 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T13:53:13.940298 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:14.090221 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.56 ms +I, [2018-08-07T13:53:14.090413 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:14.090890 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T13:53:14.091033 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:14.091717 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-08-07T13:53:14.091781 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:14.092215 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T13:53:14.092250 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:14.092587 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T13:53:14.092619 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:14.092852 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T13:53:14.092912 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:14.095536 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T13:53:14.117368 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:14.119644 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T13:53:14.136133 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:14.136644 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T13:53:14.136682 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:14.136988 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T13:53:14.137033 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:14.137508 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-08-07T13:53:14.137552 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:15.940649 #7] INFO -- : Committing offsets: course_change/0:122 +I, [2018-08-07T13:53:15.946039 #7] INFO -- : Inline processing of topic course_change with 1 messages took 1.16 ms +I, [2018-08-07T13:53:15.946090 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:15.946459 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T13:53:15.946491 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:15.946693 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-08-07T13:53:15.946755 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:15.946941 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T13:53:15.946969 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:15.947201 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T13:53:15.947229 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:15.947455 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T13:53:15.947551 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:15.947989 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.24 ms +I, [2018-08-07T13:53:15.948040 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:15.948461 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T13:53:15.948522 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:15.948796 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T13:53:15.948827 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:16.138296 #7] INFO -- : Committing offsets: section_change/0:191 +I, [2018-08-07T13:53:16.151031 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T13:53:16.151080 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:16.151344 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T13:53:16.151376 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:16.151786 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T13:53:16.151843 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:16.152183 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T13:53:16.153084 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:16.153737 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T13:53:16.153777 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:16.154036 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T13:53:16.154066 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:16.154305 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-08-07T13:53:16.154334 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:16.154568 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T13:53:16.154596 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:16.154832 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T13:53:16.155030 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:16.159120 #7] INFO -- : Inline processing of topic section_change with 1 messages took 2.52 ms +I, [2018-08-07T13:53:16.159696 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:17.950183 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.29 ms +I, [2018-08-07T13:53:17.950268 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:17.950535 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T13:53:17.950911 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:17.952743 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.58 ms +I, [2018-08-07T13:53:17.953121 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:17.954191 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.3 ms +I, [2018-08-07T13:53:17.954249 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:17.954603 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T13:53:17.954636 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:17.954987 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T13:53:17.955034 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:17.955363 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T13:53:17.955406 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:17.955711 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T13:53:17.955756 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:17.956136 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-08-07T13:53:17.956181 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:17.956501 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T13:53:17.956547 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:17.957946 #7] INFO -- : Inline processing of topic course_change with 1 messages took 1.16 ms +I, [2018-08-07T13:53:17.958005 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:17.958376 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T13:53:17.958423 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:17.958712 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T13:53:17.958806 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:18.160541 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T13:53:18.160588 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:18.160841 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T13:53:18.160872 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:18.161119 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T13:53:18.161148 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:18.161365 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T13:53:18.161394 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:18.161624 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T13:53:18.161654 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:18.161869 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T13:53:18.161927 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:18.163046 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T13:53:18.163147 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:18.163446 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T13:53:18.163478 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:18.163790 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T13:53:18.163942 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:18.164496 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T13:53:18.164531 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:18.164777 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T13:53:18.164806 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:18.165020 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-08-07T13:53:18.165049 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:18.165389 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T13:53:18.165422 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:18.165653 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-08-07T13:53:18.165823 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:19.959571 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-08-07T13:53:19.959650 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:19.959864 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-08-07T13:53:19.959900 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:19.960127 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T13:53:19.960156 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:19.961574 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-08-07T13:53:19.961631 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:19.961853 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T13:53:19.961882 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:19.962120 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-08-07T13:53:19.963466 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:19.963898 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-08-07T13:53:19.963999 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:20.167429 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.03 ms +I, [2018-08-07T13:53:20.167522 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:20.170337 #7] INFO -- : Inline processing of topic section_change with 1 messages took 2.42 ms +I, [2018-08-07T13:53:20.170399 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:20.183997 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T13:53:20.186425 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:20.187209 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T13:53:20.187257 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:20.187644 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T13:53:20.187783 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:20.191551 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.58 ms +I, [2018-08-07T13:53:20.191615 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:20.191983 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T13:53:20.192014 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:20.192321 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T13:53:20.192352 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:20.192571 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T13:53:20.192599 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:20.192809 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T13:53:20.192844 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:20.203124 #7] INFO -- : Inline processing of topic section_change with 1 messages took 9.92 ms +I, [2018-08-07T13:53:20.203313 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:20.203761 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T13:53:20.203838 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:20.204157 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T13:53:20.204195 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:20.204481 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T13:53:20.204513 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:20.205130 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-08-07T13:53:20.205216 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:20.207912 #7] INFO -- : Inline processing of topic section_change with 1 messages took 2.2 ms +I, [2018-08-07T13:53:20.208132 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:20.208489 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T13:53:20.208523 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:20.211232 #7] INFO -- : Inline processing of topic section_change with 1 messages took 2.1 ms +I, [2018-08-07T13:53:20.211325 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:20.211774 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T13:53:20.212513 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:20.275716 #7] INFO -- : Inline processing of topic section_change with 1 messages took 62.53 ms +I, [2018-08-07T13:53:20.275878 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:20.284838 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T13:53:20.284929 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:20.285234 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T13:53:20.285267 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:20.285515 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T13:53:20.285545 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:20.288801 #7] INFO -- : Inline processing of topic section_change with 1 messages took 3.09 ms +I, [2018-08-07T13:53:20.288862 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:20.289465 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-08-07T13:53:20.289517 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:20.289845 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T13:53:20.289894 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:21.964763 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T13:53:21.964877 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:21.965137 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T13:53:21.965168 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:21.965409 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T13:53:21.965443 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:21.967787 #7] INFO -- : Inline processing of topic course_change with 1 messages took 2.14 ms +I, [2018-08-07T13:53:21.967996 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:21.968864 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-08-07T13:53:21.968911 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:21.969297 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T13:53:21.969386 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:21.969947 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.27 ms +I, [2018-08-07T13:53:21.971403 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:21.972268 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.27 ms +I, [2018-08-07T13:53:21.972325 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:21.972668 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T13:53:21.972708 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:21.972998 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T13:53:21.973037 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:21.973312 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T13:53:21.973422 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:21.973700 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T13:53:21.973731 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:21.973945 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-08-07T13:53:21.973974 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:21.974174 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T13:53:21.974201 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:21.974963 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T13:53:21.974996 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:21.975215 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T13:53:21.975266 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:21.975527 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T13:53:21.975569 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:22.290724 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T13:53:22.290814 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:22.291169 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T13:53:22.291228 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:22.291601 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T13:53:22.291643 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:22.292015 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T13:53:22.292068 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:22.292400 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T13:53:22.292450 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:22.292753 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T13:53:22.292801 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:22.293143 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T13:53:22.293195 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:22.293615 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T13:53:22.293669 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:22.294030 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T13:53:22.294081 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:22.294412 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T13:53:22.294458 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:22.294784 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T13:53:22.294830 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:22.295150 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T13:53:22.295230 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:22.295573 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T13:53:22.295625 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:22.295930 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T13:53:22.295975 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:22.298505 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T13:53:22.298547 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:22.298808 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T13:53:22.298838 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:22.299079 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T13:53:22.299108 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:22.305149 #7] INFO -- : Inline processing of topic section_change with 1 messages took 5.85 ms +I, [2018-08-07T13:53:22.305256 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:22.305650 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T13:53:22.305741 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:22.306165 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T13:53:22.306251 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:23.943607 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.23 ms +I, [2018-08-07T13:53:23.943669 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:23.943997 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T13:53:23.944031 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:23.944253 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T13:53:23.944279 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:23.944499 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T13:53:23.944535 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:23.944745 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T13:53:23.944773 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:23.944969 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T13:53:23.944997 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:23.945682 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T13:53:23.945789 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:23.946094 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T13:53:23.946133 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:23.946347 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T13:53:23.946376 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:23.946663 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-08-07T13:53:23.946705 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:23.946943 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T13:53:23.946972 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:24.273996 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T13:53:24.274054 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:24.274321 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T13:53:24.274352 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:24.274596 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T13:53:24.274631 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:24.274862 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T13:53:24.274899 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:24.275141 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T13:53:24.275179 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:24.276146 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T13:53:24.276248 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:24.276586 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T13:53:24.276621 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:24.276850 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T13:53:24.276880 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:24.277119 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T13:53:24.277149 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:24.277379 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T13:53:24.277408 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:24.277608 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T13:53:24.277637 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:24.277842 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T13:53:24.277870 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:24.278105 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T13:53:24.278134 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:24.278343 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T13:53:24.278371 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:24.278577 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T13:53:24.278605 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:24.278795 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T13:53:24.278823 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:24.279042 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T13:53:24.279108 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:24.279610 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-08-07T13:53:24.279641 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:24.279857 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T13:53:24.279882 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:24.280079 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T13:53:24.280105 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:24.280300 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T13:53:24.280421 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:24.280911 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T13:53:24.280965 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:24.281403 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T13:53:24.281454 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:24.281810 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T13:53:24.281858 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:24.282213 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T13:53:24.282263 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:24.282576 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T13:53:24.282624 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:24.283008 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T13:53:24.283062 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:24.292929 #7] INFO -- : Inline processing of topic section_change with 1 messages took 7.03 ms +I, [2018-08-07T13:53:24.292972 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:24.293355 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T13:53:24.293390 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:24.293637 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T13:53:24.293666 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:24.293891 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T13:53:24.293966 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:25.947542 #7] INFO -- : Committing offsets: course_change/0:179 +I, [2018-08-07T13:53:25.953096 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-08-07T13:53:25.953146 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:26.294309 #7] INFO -- : Committing offsets: section_change/0:292 +I, [2018-08-07T13:53:26.297364 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T13:53:26.297408 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:26.297675 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T13:53:26.297707 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:26.298149 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T13:53:26.298204 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:26.298451 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T13:53:26.298481 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:26.298717 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T13:53:26.298746 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:26.298974 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T13:53:26.299003 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:26.299247 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T13:53:26.299275 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:26.299670 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T13:53:26.299702 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:26.299960 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T13:53:26.299988 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:26.300217 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T13:53:26.300245 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:26.300466 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T13:53:26.300494 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:26.300715 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T13:53:26.300744 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:27.953957 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.25 ms +I, [2018-08-07T13:53:27.954100 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:27.954437 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T13:53:27.954470 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:27.954781 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T13:53:27.957462 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:27.957991 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.23 ms +I, [2018-08-07T13:53:27.958052 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:27.958402 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T13:53:27.958448 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:27.958834 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T13:53:27.958887 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:27.959252 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-08-07T13:53:27.959355 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:27.959710 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T13:53:27.959756 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:27.960075 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T13:53:27.960120 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:27.960442 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T13:53:27.960488 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:27.961620 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.97 ms +I, [2018-08-07T13:53:27.961675 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:28.301739 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T13:53:28.301860 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:28.302161 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T13:53:28.302194 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:28.302461 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T13:53:28.302505 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:28.302900 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T13:53:28.302937 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:28.303202 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T13:53:28.303245 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:28.304113 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.56 ms +I, [2018-08-07T13:53:28.304176 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:28.304471 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T13:53:28.304506 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:28.304753 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T13:53:28.304790 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:28.305046 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T13:53:28.305096 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:28.305342 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T13:53:28.305374 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:28.305694 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T13:53:28.305726 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:28.305968 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T13:53:28.305999 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:28.306704 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T13:53:28.306741 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:28.307017 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T13:53:28.307051 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:28.307309 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T13:53:28.307341 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:28.307597 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T13:53:28.307628 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:29.962450 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-08-07T13:53:29.962498 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:29.962727 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-08-07T13:53:29.962764 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:29.963008 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-08-07T13:53:29.963072 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:29.963257 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T13:53:29.963322 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:29.963548 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T13:53:29.963576 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:29.963789 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T13:53:29.963816 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:29.965261 #7] INFO -- : Inline processing of topic course_change with 1 messages took 1.3 ms +I, [2018-08-07T13:53:29.965472 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:29.965806 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T13:53:29.965839 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:29.966059 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T13:53:29.966087 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:29.966318 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T13:53:29.966346 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:29.966571 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T13:53:29.966600 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:29.966806 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T13:53:29.966834 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:29.967038 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T13:53:29.967067 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:29.967307 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T13:53:29.967361 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:29.967710 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T13:53:29.967756 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:29.968090 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T13:53:29.968137 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:29.968469 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T13:53:29.968516 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:29.969809 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.84 ms +I, [2018-08-07T13:53:29.969879 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:29.971736 #7] INFO -- : Inline processing of topic course_change with 1 messages took 1.03 ms +I, [2018-08-07T13:53:29.972429 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:30.308494 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T13:53:30.308588 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:30.308868 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T13:53:30.308980 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:30.309237 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T13:53:30.309268 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:30.309547 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T13:53:30.309579 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:30.309855 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T13:53:30.309891 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:30.310124 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T13:53:30.310199 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:30.310479 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T13:53:30.310514 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:30.310742 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T13:53:30.310816 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:30.311040 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T13:53:30.311068 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:30.311430 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T13:53:30.311468 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:30.311721 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T13:53:30.311798 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:30.312112 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T13:53:30.312147 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:30.312410 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T13:53:30.312441 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:30.312666 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T13:53:30.313252 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:30.313557 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T13:53:30.313588 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:30.313813 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T13:53:30.313842 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:30.314052 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T13:53:30.314080 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:30.315740 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.52 ms +I, [2018-08-07T13:53:30.315784 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:30.316130 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T13:53:30.316183 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:30.316419 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T13:53:30.316448 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:30.316632 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T13:53:30.316661 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:30.316848 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-08-07T13:53:30.316877 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:30.318053 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.8 ms +I, [2018-08-07T13:53:30.318180 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:30.322956 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T13:53:30.323019 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:30.323447 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T13:53:30.323494 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:30.323808 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T13:53:30.323853 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:30.324228 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T13:53:30.324273 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:30.324585 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T13:53:30.324630 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:30.325015 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T13:53:30.325061 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:30.325466 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T13:53:30.325516 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:30.325850 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T13:53:30.325899 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:30.326342 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T13:53:30.326391 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:30.326722 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T13:53:30.326758 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:30.326973 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T13:53:30.327011 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:30.327211 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T13:53:30.327239 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:30.331094 #7] INFO -- : Inline processing of topic section_change with 1 messages took 3.2 ms +I, [2018-08-07T13:53:30.331163 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:30.331449 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T13:53:30.331482 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:30.331765 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T13:53:30.331800 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:30.332021 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T13:53:30.332049 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:30.332412 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T13:53:30.332453 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:30.332782 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T13:53:30.332830 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:30.335784 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.31 ms +I, [2018-08-07T13:53:30.337354 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:30.340365 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T13:53:30.340426 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:30.340703 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T13:53:30.340737 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:31.973488 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.46 ms +I, [2018-08-07T13:53:31.973698 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:31.974574 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T13:53:31.974622 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:31.975160 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T13:53:31.975203 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:31.975511 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T13:53:31.975552 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:31.975932 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T13:53:31.985235 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:31.985870 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.33 ms +I, [2018-08-07T13:53:31.985924 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:31.987245 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T13:53:31.987302 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:31.987910 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T13:53:31.988003 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:31.988296 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T13:53:31.988343 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:31.988671 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-08-07T13:53:31.988702 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:32.341800 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-08-07T13:53:32.341928 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:32.342207 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T13:53:32.342238 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:32.342525 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T13:53:32.342558 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:32.342863 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T13:53:32.342900 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:32.343341 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-08-07T13:53:32.343376 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:32.343607 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T13:53:32.343635 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:32.343869 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T13:53:32.343899 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:32.344118 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T13:53:32.344176 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:32.344369 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-08-07T13:53:32.344399 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:32.344919 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T13:53:32.344979 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:32.345536 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T13:53:32.345601 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:32.346327 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.53 ms +I, [2018-08-07T13:53:32.346536 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:32.347046 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T13:53:32.347098 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:32.347434 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T13:53:32.347481 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:32.347787 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T13:53:32.347827 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:32.348117 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T13:53:32.348160 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:32.348452 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T13:53:32.348483 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:32.348703 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T13:53:32.348732 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:32.349027 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T13:53:32.349057 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:32.349361 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T13:53:32.349391 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:32.349580 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-08-07T13:53:32.349629 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:32.349823 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T13:53:32.349910 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:32.350207 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T13:53:32.350253 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:32.350600 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T13:53:32.350641 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:32.350986 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T13:53:32.351032 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:32.351390 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T13:53:32.351423 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:32.368621 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-08-07T13:53:32.368696 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:32.369174 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T13:53:32.369231 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:32.369981 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.41 ms +I, [2018-08-07T13:53:32.373276 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:33.989464 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T13:53:33.989515 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:33.989766 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T13:53:33.989801 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:33.990016 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T13:53:33.990044 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:33.990263 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T13:53:33.990664 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:33.990928 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T13:53:33.990981 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:33.991199 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T13:53:33.991256 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:33.991425 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T13:53:33.991455 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:33.991755 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T13:53:33.992115 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:33.993128 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.72 ms +I, [2018-08-07T13:53:33.993261 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:33.993581 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T13:53:33.993636 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:33.993877 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T13:53:33.993907 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:33.994113 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-08-07T13:53:33.994143 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:33.994350 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T13:53:33.994378 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:34.374758 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-08-07T13:53:34.374828 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:34.375212 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T13:53:34.375257 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:34.375728 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T13:53:34.375869 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:34.376323 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T13:53:34.376371 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:34.376713 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T13:53:34.376753 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:34.377660 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.68 ms +I, [2018-08-07T13:53:34.377730 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:34.378118 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T13:53:34.378162 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:34.378616 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T13:53:34.378682 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:34.380437 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.3 ms +I, [2018-08-07T13:53:34.380550 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:34.381470 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T13:53:34.381553 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:34.393572 #7] INFO -- : Inline processing of topic section_change with 1 messages took 11.53 ms +I, [2018-08-07T13:53:34.393658 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:34.394334 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.4 ms +I, [2018-08-07T13:53:34.394372 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:34.394686 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T13:53:34.394790 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:35.994820 #7] INFO -- : Committing offsets: course_change/0:233 +I, [2018-08-07T13:53:36.009301 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.31 ms +I, [2018-08-07T13:53:36.009708 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:36.010263 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T13:53:36.010306 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:36.010985 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.27 ms +I, [2018-08-07T13:53:36.011028 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:36.011386 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T13:53:36.011427 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:36.011832 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.24 ms +I, [2018-08-07T13:53:36.011909 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:36.012761 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.27 ms +I, [2018-08-07T13:53:36.012812 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:36.017722 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-08-07T13:53:36.017771 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:36.018340 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.34 ms +I, [2018-08-07T13:53:36.018405 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:36.028381 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.24 ms +I, [2018-08-07T13:53:36.028482 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:36.395387 #7] INFO -- : Committing offsets: section_change/0:406 +I, [2018-08-07T13:53:36.408114 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T13:53:36.408183 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:36.408524 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T13:53:36.408613 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:36.408930 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T13:53:36.409010 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:36.409350 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T13:53:36.409398 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:36.409737 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T13:53:36.410630 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:36.410987 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T13:53:36.411020 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:36.411251 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T13:53:36.411281 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:36.411540 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T13:53:36.411570 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:36.411804 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T13:53:36.411833 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:36.412062 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T13:53:36.412090 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:38.029332 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.26 ms +I, [2018-08-07T13:53:38.029387 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:38.029690 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T13:53:38.029722 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:38.029952 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T13:53:38.029981 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:38.030197 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T13:53:38.030226 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:38.030437 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T13:53:38.030466 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:38.030835 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-08-07T13:53:38.030874 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:38.031147 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T13:53:38.031179 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:38.413011 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T13:53:38.413056 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:38.413352 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T13:53:38.413384 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:38.413610 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T13:53:38.413635 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:38.413826 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T13:53:38.413851 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:38.414042 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T13:53:38.414066 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:38.414939 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T13:53:38.415144 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:38.415779 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-08-07T13:53:38.415883 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:38.416255 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T13:53:38.416300 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:38.416604 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T13:53:38.416645 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:38.416937 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T13:53:38.416980 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:38.417298 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T13:53:38.417345 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:38.417684 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T13:53:38.417731 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:38.418047 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T13:53:38.418087 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:38.418569 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T13:53:38.418630 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:38.418993 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T13:53:38.419041 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:38.419409 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T13:53:38.419455 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:38.419772 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T13:53:38.419817 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:38.420123 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T13:53:38.420169 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:38.420471 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T13:53:38.420505 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:38.420734 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T13:53:38.420765 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:38.420999 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T13:53:38.421031 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:38.421979 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.78 ms +I, [2018-08-07T13:53:38.422044 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:38.422421 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T13:53:38.422464 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:38.422790 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T13:53:38.422832 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:38.433814 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T13:53:38.433861 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:38.434087 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T13:53:38.434115 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:38.434419 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T13:53:38.434449 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:38.434656 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T13:53:38.434684 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:38.434960 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T13:53:38.434992 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:38.435206 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T13:53:38.435241 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:38.435442 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T13:53:38.435488 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:38.435764 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T13:53:38.435794 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:38.436014 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T13:53:38.436043 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:38.436260 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T13:53:38.436289 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:38.436563 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T13:53:38.436594 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:38.436824 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T13:53:38.437313 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:38.437710 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T13:53:38.437761 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:38.438182 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T13:53:38.438232 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:38.438574 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T13:53:38.438690 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:38.444006 #7] INFO -- : Inline processing of topic section_change with 1 messages took 5.06 ms +I, [2018-08-07T13:53:38.444071 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:38.444594 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T13:53:38.444660 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:38.445155 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T13:53:38.445229 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:38.445822 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T13:53:38.445873 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:38.446171 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T13:53:38.446204 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:38.446583 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T13:53:38.446618 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:38.446885 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T13:53:38.446987 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:38.447239 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T13:53:38.447269 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:38.447497 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T13:53:38.447533 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:38.454007 #7] INFO -- : Inline processing of topic section_change with 1 messages took 6.33 ms +I, [2018-08-07T13:53:38.454086 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:38.454421 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T13:53:38.458724 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:40.031873 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-08-07T13:53:40.031924 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:40.032125 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T13:53:40.032154 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:40.032522 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T13:53:40.032552 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:40.478173 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.79 ms +I, [2018-08-07T13:53:40.478233 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:40.478665 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T13:53:40.478714 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:40.479073 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T13:53:40.479162 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:40.479472 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T13:53:40.479555 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:40.479894 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T13:53:40.479931 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:40.480169 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T13:53:40.480246 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:42.033420 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.27 ms +I, [2018-08-07T13:53:42.033472 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:42.033712 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T13:53:42.034747 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:42.035068 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T13:53:42.035099 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:42.480882 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T13:53:42.480931 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:42.481210 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T13:53:42.481240 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:42.481484 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T13:53:42.481513 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:42.481754 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T13:53:42.481814 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:42.484396 #7] INFO -- : Inline processing of topic section_change with 1 messages took 2.28 ms +I, [2018-08-07T13:53:42.484566 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:42.485188 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-08-07T13:53:42.485273 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:42.485729 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T13:53:42.485788 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:42.486271 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T13:53:42.486334 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:42.487042 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-08-07T13:53:42.487121 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:42.488423 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.07 ms +I, [2018-08-07T13:53:42.488501 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:42.488976 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T13:53:42.489024 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:42.489454 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T13:53:42.489503 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:42.489888 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T13:53:42.489935 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:42.490331 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T13:53:42.490377 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:44.035843 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-08-07T13:53:44.035894 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:44.036135 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T13:53:44.036166 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:44.036378 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T13:53:44.036408 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:44.036620 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T13:53:44.036649 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:44.036859 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T13:53:44.036889 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:44.037093 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T13:53:44.037122 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:44.037328 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T13:53:44.037356 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:44.037565 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T13:53:44.037594 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:44.037805 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T13:53:44.037845 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:44.038058 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T13:53:44.038088 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:44.038302 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T13:53:44.038330 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:44.491102 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T13:53:44.491155 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:44.491398 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T13:53:44.491428 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:44.491667 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T13:53:44.491695 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:44.491901 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T13:53:44.491942 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:44.492285 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T13:53:44.492335 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:44.492570 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T13:53:44.492599 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:44.492847 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T13:53:44.492880 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:44.493099 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T13:53:44.493135 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:44.493423 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T13:53:44.493453 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:44.493709 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T13:53:44.493736 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:44.496164 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-08-07T13:53:44.496226 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:44.496628 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T13:53:44.496677 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:44.497030 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T13:53:44.497106 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:44.497461 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T13:53:44.497504 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:44.497821 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T13:53:44.497890 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:44.498210 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T13:53:44.498256 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:46.038689 #7] INFO -- : Committing offsets: course_change/0:266 +I, [2018-08-07T13:53:46.042142 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-08-07T13:53:46.042211 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:46.042506 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T13:53:46.042537 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:46.042817 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T13:53:46.042903 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:46.043234 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-08-07T13:53:46.043274 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:46.043582 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T13:53:46.043625 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:46.043890 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T13:53:46.043920 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:46.044143 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T13:53:46.044173 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:46.044475 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T13:53:46.044510 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:46.044733 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T13:53:46.044762 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:46.044991 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T13:53:46.045020 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:46.045240 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T13:53:46.045274 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:46.045487 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T13:53:46.045515 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:46.045727 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T13:53:46.045756 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:46.045964 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T13:53:46.045993 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:46.046203 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T13:53:46.046232 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:46.046431 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T13:53:46.046459 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:46.046651 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-08-07T13:53:46.046679 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:46.046895 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T13:53:46.046924 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:46.047135 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T13:53:46.047164 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:46.047368 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T13:53:46.047396 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:46.047603 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T13:53:46.047633 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:46.498580 #7] INFO -- : Committing offsets: section_change/0:502 +I, [2018-08-07T13:53:46.502330 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T13:53:46.502375 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:46.502632 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T13:53:46.502665 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:46.502902 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T13:53:46.502930 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:46.504429 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.32 ms +I, [2018-08-07T13:53:46.504539 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:46.504849 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T13:53:46.504881 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:46.505090 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-08-07T13:53:46.505118 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:46.505328 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-08-07T13:53:46.505357 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:46.505565 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T13:53:46.505593 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:46.505795 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T13:53:46.505823 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:46.507463 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T13:53:46.507525 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:46.507937 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T13:53:46.507984 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:46.508321 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T13:53:46.508353 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:46.508588 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T13:53:46.508617 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:46.508860 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T13:53:46.508890 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:46.509107 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T13:53:46.509136 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:46.509351 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T13:53:46.509379 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:46.509601 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T13:53:46.509629 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:46.509850 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T13:53:46.509878 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:46.510090 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-08-07T13:53:46.510118 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:46.510371 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T13:53:46.510400 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:46.510604 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T13:53:46.510633 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:46.510841 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T13:53:46.510869 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:46.511072 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T13:53:46.511100 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:46.511298 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T13:53:46.511326 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:46.511524 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T13:53:46.511551 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:48.048336 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T13:53:48.048390 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:48.048716 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T13:53:48.048759 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:48.049007 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T13:53:48.049055 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:48.049264 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T13:53:48.049293 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:48.049511 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T13:53:48.049540 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:48.049773 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-08-07T13:53:48.049802 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:48.050026 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T13:53:48.050056 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:48.050382 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T13:53:48.050415 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:48.050677 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T13:53:48.050725 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:48.052393 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-08-07T13:53:48.052468 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:48.052971 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.26 ms +I, [2018-08-07T13:53:48.053022 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:48.053356 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T13:53:48.053403 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:48.053748 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T13:53:48.053797 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:48.512259 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T13:53:48.512309 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:48.512559 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-08-07T13:53:48.512589 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:48.512823 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-08-07T13:53:48.512852 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:48.513124 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T13:53:48.513158 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:48.513461 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T13:53:48.513492 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:48.513722 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T13:53:48.513751 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:48.513974 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T13:53:48.514003 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:48.514208 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T13:53:48.516584 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:48.517119 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-08-07T13:53:48.517167 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:48.517488 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T13:53:48.517523 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:48.517770 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T13:53:48.517803 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:48.518054 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T13:53:48.518087 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:48.518329 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T13:53:48.518362 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:48.518597 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T13:53:48.518630 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:48.518869 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T13:53:48.518901 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:48.519109 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T13:53:48.519171 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:48.519380 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T13:53:48.519412 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:48.519650 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T13:53:48.519682 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:48.519920 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T13:53:48.519952 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:48.520198 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T13:53:48.520228 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:48.520477 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T13:53:48.520541 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:48.520750 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T13:53:48.520782 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:48.521041 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T13:53:48.521100 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:48.521351 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T13:53:48.521385 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:48.521733 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T13:53:48.521788 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:48.522085 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T13:53:48.522115 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:48.522344 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T13:53:48.523950 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:48.524323 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T13:53:48.524375 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:48.524624 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T13:53:48.524654 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:48.524905 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T13:53:48.524935 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:48.525168 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T13:53:48.525197 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:50.054687 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.29 ms +I, [2018-08-07T13:53:50.054740 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:50.054988 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T13:53:50.055033 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:50.055251 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T13:53:50.055280 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:50.055488 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T13:53:50.055517 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:50.055718 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T13:53:50.055747 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:50.055946 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T13:53:50.055975 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:50.056180 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T13:53:50.056208 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:50.056409 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T13:53:50.056437 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:50.056640 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T13:53:50.056668 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:50.056870 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T13:53:50.056899 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:50.057100 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T13:53:50.057128 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:50.057330 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T13:53:50.057358 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:50.057557 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T13:53:50.057605 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:50.059508 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T13:53:50.059549 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:50.525901 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T13:53:50.525949 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:50.526177 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T13:53:50.526206 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:50.526448 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T13:53:50.526478 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:50.526709 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T13:53:50.526765 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:50.526987 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T13:53:50.527023 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:50.527260 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T13:53:50.527289 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:50.527514 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T13:53:50.527543 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:50.527794 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T13:53:50.527828 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:50.528061 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T13:53:50.528089 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:50.528320 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T13:53:50.528370 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:50.528586 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T13:53:50.528616 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:50.528832 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T13:53:50.528860 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:50.529109 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T13:53:50.530385 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:50.530772 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T13:53:50.530806 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:50.531075 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T13:53:50.531106 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:52.060192 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-08-07T13:53:52.060242 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:52.060508 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T13:53:52.060537 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:52.060755 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T13:53:52.060783 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:52.061002 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T13:53:52.061031 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:52.061214 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T13:53:52.061278 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:52.061483 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T13:53:52.061512 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:52.061719 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T13:53:52.061748 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:52.061926 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T13:53:52.061979 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:52.062158 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T13:53:52.062186 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:52.062388 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T13:53:52.062415 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:52.062615 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T13:53:52.062643 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:52.062838 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.07 ms +I, [2018-08-07T13:53:52.062866 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:52.063064 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T13:53:52.063092 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:52.532029 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T13:53:52.532081 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:52.532506 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T13:53:52.532551 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:52.532844 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T13:53:52.532876 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:52.533120 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T13:53:52.533150 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:52.533444 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T13:53:52.533473 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:52.533691 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T13:53:52.533719 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:52.533940 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T13:53:52.533969 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:52.534181 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T13:53:52.535999 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:52.536319 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T13:53:52.536350 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:52.536582 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T13:53:52.536611 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:52.536841 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T13:53:52.536871 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:52.537082 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T13:53:52.537110 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:52.537336 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T13:53:52.537364 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:52.537580 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T13:53:52.537615 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:52.537823 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T13:53:52.537851 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:52.539310 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.33 ms +I, [2018-08-07T13:53:52.539370 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:52.539681 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T13:53:52.539716 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:52.539949 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T13:53:52.539978 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:52.540192 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-08-07T13:53:52.540220 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:52.540433 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-08-07T13:53:52.540461 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:52.540671 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T13:53:52.540699 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:52.540902 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-08-07T13:53:52.540953 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:52.541131 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-08-07T13:53:52.541181 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:52.541413 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T13:53:52.541531 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:52.542028 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T13:53:52.542135 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:52.542456 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T13:53:52.542506 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:52.542850 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T13:53:52.542997 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:52.543373 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T13:53:52.543515 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:52.545519 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T13:53:52.545571 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:52.545984 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T13:53:52.546027 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:52.546375 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T13:53:52.546424 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:52.546839 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T13:53:52.546883 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:52.547250 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T13:53:52.547284 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:52.547549 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T13:53:52.547579 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:52.547833 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T13:53:52.547928 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:52.548280 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T13:53:52.548315 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:52.548676 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T13:53:52.548707 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:52.548919 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T13:53:52.548949 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:52.549354 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T13:53:52.549408 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:52.549731 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T13:53:52.549767 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:52.550443 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.55 ms +I, [2018-08-07T13:53:52.551057 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:52.553170 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T13:53:52.553255 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:52.553554 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T13:53:52.553586 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:52.553815 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T13:53:52.553845 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:52.555690 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T13:53:52.555738 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:52.556062 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T13:53:52.556125 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:52.557493 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T13:53:52.557553 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:52.558082 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T13:53:52.558135 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:54.028990 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T13:53:54.029040 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:54.029314 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T13:53:54.029345 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:54.029578 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T13:53:54.029619 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:54.029840 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T13:53:54.029873 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:54.030097 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T13:53:54.030126 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:54.030350 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T13:53:54.030379 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:54.030599 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T13:53:54.030633 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:54.030857 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T13:53:54.030895 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:54.031854 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.83 ms +I, [2018-08-07T13:53:54.031887 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:54.032120 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T13:53:54.032150 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:54.032364 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T13:53:54.032393 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:54.032605 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T13:53:54.032633 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:54.032813 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T13:53:54.032874 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:54.033053 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T13:53:54.033081 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:54.033287 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T13:53:54.033316 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:54.033528 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T13:53:54.033556 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:54.524275 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-08-07T13:53:54.524416 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:54.524960 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T13:53:54.525033 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:54.525294 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T13:53:54.525338 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:54.525849 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T13:53:54.525899 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:54.526345 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T13:53:54.526429 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:54.526769 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T13:53:54.526875 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:54.527241 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T13:53:54.527282 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:54.527584 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T13:53:54.527630 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:54.528085 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T13:53:54.528126 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:54.528877 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.59 ms +I, [2018-08-07T13:53:54.528930 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:54.529429 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T13:53:54.529470 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:54.529863 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T13:53:54.529909 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:54.530366 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T13:53:54.530486 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:54.537638 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.58 ms +I, [2018-08-07T13:53:54.537771 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:54.538454 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-08-07T13:53:54.538509 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:54.539514 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.6 ms +I, [2018-08-07T13:53:54.539577 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:56.034430 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.26 ms +I, [2018-08-07T13:53:56.034937 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:56.035437 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-08-07T13:53:56.035475 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:56.035723 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T13:53:56.035757 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:56.036013 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T13:53:56.036048 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:56.036281 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-08-07T13:53:56.036315 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:56.036543 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T13:53:56.036575 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:56.036840 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T13:53:56.036874 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:56.037155 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T13:53:56.037188 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:56.037462 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T13:53:56.037497 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:56.037782 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T13:53:56.037810 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:56.038011 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T13:53:56.038039 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:56.038242 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T13:53:56.038317 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:56.540684 #7] INFO -- : Committing offsets: section_change/0:637 +I, [2018-08-07T13:53:56.549291 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T13:53:56.549336 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:56.549596 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T13:53:56.549623 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:56.549845 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T13:53:56.549876 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:56.550149 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T13:53:56.550186 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:56.550418 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T13:53:56.550453 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:56.550685 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T13:53:56.550722 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:56.550933 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T13:53:56.550996 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:56.551200 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T13:53:56.551265 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:56.551483 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T13:53:56.551512 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:56.551726 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T13:53:56.551778 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:56.552059 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T13:53:56.552096 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:56.552340 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T13:53:56.552369 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:56.552595 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T13:53:56.552623 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:56.552842 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T13:53:56.552872 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:56.553100 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T13:53:56.553129 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:56.553382 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T13:53:56.553412 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:56.554499 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.4 ms +I, [2018-08-07T13:53:56.554605 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:56.554915 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T13:53:56.555009 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:56.555526 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T13:53:56.555604 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:56.555982 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T13:53:56.556032 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:56.556701 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.47 ms +I, [2018-08-07T13:53:56.556740 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:56.557100 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T13:53:56.557168 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:56.557670 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T13:53:56.557756 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:56.558174 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T13:53:56.558235 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:56.559287 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.72 ms +I, [2018-08-07T13:53:56.560390 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:56.561012 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-08-07T13:53:56.561069 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:56.561445 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T13:53:56.561499 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:56.561865 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T13:53:56.561913 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:56.562319 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T13:53:56.562379 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:56.565231 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.49 ms +I, [2018-08-07T13:53:56.565289 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:56.565782 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T13:53:56.565819 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:56.566067 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T13:53:56.566096 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:56.566349 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T13:53:56.566378 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:56.566626 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T13:53:56.566656 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:56.566880 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T13:53:56.566909 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:56.567151 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T13:53:56.567180 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:56.567434 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T13:53:56.567463 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:56.568105 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T13:53:56.568202 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:56.568674 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T13:53:56.568707 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:58.038546 #7] INFO -- : Committing offsets: course_change/0:355 +I, [2018-08-07T13:53:58.041812 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T13:53:58.041856 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:58.042098 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T13:53:58.042128 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:58.042341 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T13:53:58.042370 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:58.042601 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T13:53:58.042630 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:58.042834 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T13:53:58.042863 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:58.043068 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T13:53:58.043096 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:58.043414 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-08-07T13:53:58.043467 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:58.043731 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T13:53:58.043755 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:58.043925 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T13:53:58.043949 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:58.044157 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T13:53:58.044180 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:58.044364 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T13:53:58.044507 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:58.044830 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T13:53:58.044861 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:58.045073 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T13:53:58.045101 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:53:58.569436 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T13:53:58.569484 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:58.569722 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T13:53:58.569751 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:58.569986 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T13:53:58.570015 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:58.570218 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T13:53:58.570246 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:58.570472 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-08-07T13:53:58.570501 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:58.570706 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T13:53:58.570734 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:58.571033 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T13:53:58.571073 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:58.571311 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T13:53:58.571340 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:58.571558 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T13:53:58.572563 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:58.572861 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T13:53:58.572893 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:58.573188 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T13:53:58.573229 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:58.573463 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T13:53:58.573521 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:58.573896 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T13:53:58.573927 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:58.574250 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T13:53:58.574286 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:58.574492 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-08-07T13:53:58.574518 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:58.574728 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T13:53:58.574756 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:58.574994 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T13:53:58.575022 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:58.575254 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T13:53:58.575283 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:58.575496 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T13:53:58.575524 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:58.575733 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T13:53:58.575761 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:58.575970 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T13:53:58.575998 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:58.576198 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T13:53:58.576228 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:58.576434 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T13:53:58.576466 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:58.576670 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T13:53:58.576700 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:58.578628 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.78 ms +I, [2018-08-07T13:53:58.578670 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:58.578913 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T13:53:58.578942 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:58.580312 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.25 ms +I, [2018-08-07T13:53:58.580351 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:58.580627 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T13:53:58.580662 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:58.581013 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T13:53:58.581048 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:58.581315 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T13:53:58.581354 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:58.581597 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T13:53:58.581629 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:58.581887 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T13:53:58.581919 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:58.582139 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T13:53:58.582168 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:58.582380 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T13:53:58.582408 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:58.582636 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T13:53:58.582692 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:58.583014 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T13:53:58.583072 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:58.583434 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T13:53:58.583478 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:58.584278 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T13:53:58.584316 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:58.584789 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-08-07T13:53:58.584822 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:53:58.585261 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-08-07T13:53:58.585292 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:00.045689 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-08-07T13:54:00.045739 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:54:00.045964 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T13:54:00.045995 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:54:00.046224 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T13:54:00.046253 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:54:00.046474 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T13:54:00.046503 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:54:00.046714 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T13:54:00.046743 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:54:00.047465 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T13:54:00.047499 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:54:00.047702 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-08-07T13:54:00.047757 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:54:00.047974 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T13:54:00.048004 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:54:00.048227 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T13:54:00.048256 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:54:00.048512 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T13:54:00.048570 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:54:00.048756 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T13:54:00.048784 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:54:00.048999 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T13:54:00.049028 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:54:00.585837 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T13:54:00.585883 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:00.586163 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T13:54:00.586229 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:00.586420 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-08-07T13:54:00.586478 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:00.587918 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T13:54:00.587959 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:00.588221 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T13:54:00.588248 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:00.588562 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T13:54:00.588593 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:00.588836 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T13:54:00.588865 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:00.589117 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T13:54:00.589146 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:00.589372 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T13:54:00.589420 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:00.589648 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T13:54:00.589684 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:00.590008 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T13:54:00.590053 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:00.590364 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T13:54:00.590409 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:00.590765 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T13:54:00.590810 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:00.591140 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T13:54:00.591186 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:00.591558 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T13:54:00.591604 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:00.591936 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T13:54:00.591982 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:02.049683 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-08-07T13:54:02.049732 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:54:02.050084 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T13:54:02.050119 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:54:02.050397 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T13:54:02.050476 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:54:02.050721 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T13:54:02.050749 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:54:02.051064 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T13:54:02.051099 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:54:02.051328 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T13:54:02.051455 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:54:02.051725 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-08-07T13:54:02.051756 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:54:02.052053 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T13:54:02.052085 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:54:02.052300 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T13:54:02.052330 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:54:02.592868 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T13:54:02.592917 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:02.593519 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T13:54:02.593627 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:02.593903 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T13:54:02.593933 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:02.594177 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-08-07T13:54:02.594206 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:02.594470 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T13:54:02.595394 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:02.595687 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T13:54:02.595741 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:02.596121 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T13:54:02.596152 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:02.596361 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T13:54:02.596390 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:02.596635 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T13:54:02.596711 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:02.598351 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T13:54:02.598387 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:02.598683 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T13:54:02.598713 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:02.598943 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T13:54:02.598985 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:02.599254 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T13:54:02.599284 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:02.599538 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T13:54:02.599567 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:02.599827 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T13:54:02.599900 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:02.600541 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.4 ms +I, [2018-08-07T13:54:02.600618 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:02.602075 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.77 ms +I, [2018-08-07T13:54:02.602672 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:04.053008 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-08-07T13:54:04.053063 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:54:04.604699 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.18 ms +I, [2018-08-07T13:54:04.604749 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:04.605041 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T13:54:04.605071 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:04.605361 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T13:54:04.605391 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:04.605762 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T13:54:04.605793 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:04.606025 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T13:54:04.606054 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:04.606358 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T13:54:04.606393 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:04.606637 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T13:54:04.606667 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:04.606896 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T13:54:04.606925 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:04.607266 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T13:54:04.607297 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:04.607558 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T13:54:04.607587 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:06.053819 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T13:54:06.053869 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:54:06.607819 #7] INFO -- : Committing offsets: section_change/0:759 +I, [2018-08-07T13:54:06.611333 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T13:54:06.611409 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:06.611644 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T13:54:06.611708 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:06.611968 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T13:54:06.611997 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:06.612254 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T13:54:06.612283 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:06.612546 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T13:54:06.612575 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:06.612860 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T13:54:06.612890 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:06.613146 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T13:54:06.613175 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:08.054266 #7] INFO -- : Committing offsets: course_change/0:391 +I, [2018-08-07T13:54:08.057677 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T13:54:08.057720 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:54:08.613805 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T13:54:08.613852 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:08.614452 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-08-07T13:54:08.614542 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:08.615027 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T13:54:08.615077 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:08.616701 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T13:54:08.616744 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:08.617015 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T13:54:08.617045 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:08.617293 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T13:54:08.617322 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:08.617563 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T13:54:08.617592 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:08.617860 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T13:54:08.617889 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:08.618170 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T13:54:08.618224 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:08.618621 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T13:54:08.618668 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:10.058384 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.23 ms +I, [2018-08-07T13:54:10.058484 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:54:10.619693 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.41 ms +I, [2018-08-07T13:54:10.619763 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:10.620159 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T13:54:10.620205 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:10.620603 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T13:54:10.620655 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:10.621006 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T13:54:10.621041 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:10.621495 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T13:54:10.621526 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:10.621942 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T13:54:10.621993 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:10.622380 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T13:54:10.622477 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:10.622981 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T13:54:10.623025 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:12.059536 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.34 ms +I, [2018-08-07T13:54:12.059633 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:54:12.624061 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-08-07T13:54:12.624172 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:12.624600 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T13:54:12.624654 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:12.624977 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T13:54:12.625014 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:14.060679 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.24 ms +I, [2018-08-07T13:54:14.060731 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:54:14.061099 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.23 ms +I, [2018-08-07T13:54:14.061135 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:54:14.061410 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T13:54:14.061441 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:54:14.061723 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T13:54:14.061756 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:54:14.062090 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T13:54:14.062121 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:54:14.062410 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T13:54:14.062440 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:54:14.626070 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-08-07T13:54:14.626176 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:14.627958 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T13:54:14.628033 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:14.628242 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T13:54:14.628318 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:14.628672 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T13:54:14.628746 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:14.629013 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T13:54:14.629044 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:14.629267 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T13:54:14.629291 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:14.629512 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T13:54:14.629541 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:14.629768 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T13:54:14.629794 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:14.630437 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T13:54:14.630486 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:16.064874 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.23 ms +I, [2018-08-07T13:54:16.064936 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:54:16.065497 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T13:54:16.069761 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:54:16.070701 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.42 ms +I, [2018-08-07T13:54:16.070832 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:54:16.075565 #7] INFO -- : Inline processing of topic course_change with 1 messages took 4.19 ms +I, [2018-08-07T13:54:16.075914 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:54:16.080795 #7] INFO -- : Inline processing of topic course_change with 1 messages took 1.55 ms +I, [2018-08-07T13:54:16.080882 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:54:16.081206 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T13:54:16.081250 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:54:16.081646 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-08-07T13:54:16.081694 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:54:16.630966 #7] INFO -- : Committing offsets: section_change/0:796 +I, [2018-08-07T13:54:16.634883 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T13:54:16.634957 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:16.635320 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T13:54:16.635354 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:16.635612 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T13:54:16.635642 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:16.635879 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T13:54:16.635910 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:16.636203 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T13:54:16.636233 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:16.636556 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T13:54:16.636587 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:16.636867 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T13:54:16.636898 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:16.637138 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T13:54:16.637167 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:16.637412 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T13:54:16.637442 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:18.082072 #7] INFO -- : Committing offsets: course_change/0:407 +I, [2018-08-07T13:54:18.085862 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T13:54:18.085906 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:54:18.086148 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T13:54:18.086177 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:54:18.086393 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T13:54:18.086438 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:54:18.086669 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T13:54:18.086698 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:54:18.086913 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T13:54:18.086941 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:54:18.087154 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T13:54:18.087182 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:54:18.087388 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T13:54:18.087454 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:54:18.087640 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T13:54:18.089208 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:54:18.089632 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.27 ms +I, [2018-08-07T13:54:18.089666 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:54:18.089886 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T13:54:18.089916 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:54:18.090136 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T13:54:18.090174 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:54:18.090479 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T13:54:18.090527 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:54:18.638248 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T13:54:18.638296 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:18.638684 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T13:54:18.638720 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:18.639011 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T13:54:18.639042 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:18.639285 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T13:54:18.639314 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:18.639529 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T13:54:18.639557 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:18.639812 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T13:54:18.639841 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:18.640066 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T13:54:18.640095 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:18.640316 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T13:54:18.640361 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:18.640575 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T13:54:18.640604 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:18.640852 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T13:54:18.642178 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:18.642549 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T13:54:18.642586 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:18.642852 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T13:54:18.642882 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:18.643139 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T13:54:18.643209 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:20.091315 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T13:54:20.091381 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:54:20.091681 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T13:54:20.091720 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:54:20.092000 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T13:54:20.092031 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:54:20.092255 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T13:54:20.092290 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:54:20.092525 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T13:54:20.092556 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:54:20.092824 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T13:54:20.092870 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:54:20.093906 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-08-07T13:54:20.093937 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:54:20.094153 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T13:54:20.094182 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:54:20.094385 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T13:54:20.094414 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:54:20.094617 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T13:54:20.094794 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:54:20.095013 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T13:54:20.095041 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:54:20.644011 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T13:54:20.644061 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:20.644329 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T13:54:20.644360 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:20.644604 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T13:54:20.644673 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:20.644959 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T13:54:20.644990 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:20.645232 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T13:54:20.645269 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:20.646165 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T13:54:20.646206 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:20.646541 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T13:54:20.646581 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:20.646844 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T13:54:20.646874 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:20.647132 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T13:54:20.647162 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:20.647344 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-08-07T13:54:20.647398 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:20.647737 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T13:54:20.647827 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:20.648212 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T13:54:20.648260 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:20.648630 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T13:54:20.648679 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:22.095639 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-08-07T13:54:22.095691 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:54:22.095954 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T13:54:22.095987 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:54:22.096224 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T13:54:22.096254 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:54:22.096467 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T13:54:22.096497 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:54:22.096702 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T13:54:22.096731 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:54:22.096942 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T13:54:22.096994 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:54:22.097220 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T13:54:22.097249 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:54:22.097457 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T13:54:22.097486 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:54:22.097692 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T13:54:22.097721 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:54:22.098559 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T13:54:22.098677 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:54:22.614351 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.42 ms +I, [2018-08-07T13:54:22.614415 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:22.614714 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T13:54:22.614754 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:22.615008 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T13:54:22.615085 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:22.615521 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T13:54:22.615558 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:22.616827 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.11 ms +I, [2018-08-07T13:54:22.616927 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:22.617264 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T13:54:22.617295 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:22.617553 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T13:54:22.617582 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:22.617835 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T13:54:22.617863 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:22.618420 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.44 ms +I, [2018-08-07T13:54:22.618507 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:22.618798 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T13:54:22.618881 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:22.619166 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T13:54:22.619197 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:22.619758 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-08-07T13:54:22.619877 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:22.620210 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T13:54:22.620259 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:22.620628 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T13:54:22.620677 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:22.621046 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T13:54:22.621095 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:22.621478 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T13:54:22.621676 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:22.622061 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T13:54:22.622094 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:22.622403 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T13:54:22.622434 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:22.622689 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T13:54:22.622730 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:22.623263 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-08-07T13:54:22.623312 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:22.623710 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T13:54:22.623758 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:22.624444 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T13:54:22.624496 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:22.625120 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T13:54:22.625174 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:22.625550 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T13:54:22.625675 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:22.626023 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T13:54:22.626194 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:22.626772 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T13:54:22.626822 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:22.627248 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T13:54:22.627283 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:22.627529 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T13:54:22.627560 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:22.627905 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T13:54:22.627939 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:22.628323 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T13:54:22.628481 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:22.628794 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T13:54:22.628913 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:22.629407 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T13:54:22.629448 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:22.629861 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T13:54:22.629900 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:22.630157 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T13:54:22.630187 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:22.630423 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T13:54:22.630452 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:22.630804 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T13:54:22.632419 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:22.632822 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T13:54:22.632857 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:22.633301 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T13:54:22.633393 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:22.633924 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T13:54:22.633961 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:22.634219 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T13:54:22.634249 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:22.634578 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T13:54:22.636755 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:22.637268 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T13:54:22.637324 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:22.637862 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T13:54:22.637917 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:22.638412 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T13:54:22.638467 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:22.638935 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T13:54:22.638989 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:22.639694 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-08-07T13:54:22.639756 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:22.640152 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T13:54:22.640217 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:22.640687 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T13:54:22.640736 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:22.641333 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T13:54:22.641535 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:22.642054 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-08-07T13:54:22.642125 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:22.642514 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T13:54:22.642547 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:22.642866 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T13:54:22.642895 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:22.643224 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T13:54:22.643282 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:22.643889 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-08-07T13:54:22.643938 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:22.644316 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T13:54:22.644363 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:22.644642 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T13:54:22.644688 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:22.675292 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T13:54:22.675381 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:22.770161 #7] INFO -- : Inline processing of topic section_change with 1 messages took 94.43 ms +I, [2018-08-07T13:54:22.770241 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:22.770562 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T13:54:22.770595 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:22.797560 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-08-07T13:54:22.797607 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:22.812038 #7] INFO -- : Inline processing of topic section_change with 1 messages took 14.25 ms +I, [2018-08-07T13:54:22.812108 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:22.812409 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T13:54:22.812442 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:22.865568 #7] INFO -- : Inline processing of topic section_change with 1 messages took 52.89 ms +I, [2018-08-07T13:54:22.865625 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:22.944086 #7] INFO -- : Inline processing of topic section_change with 1 messages took 78.04 ms +I, [2018-08-07T13:54:22.944147 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:22.981709 #7] INFO -- : Inline processing of topic section_change with 1 messages took 37.36 ms +I, [2018-08-07T13:54:22.981764 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:22.982141 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T13:54:22.982174 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:23.025871 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-08-07T13:54:23.025956 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:23.053940 #7] INFO -- : Inline processing of topic section_change with 1 messages took 27.78 ms +I, [2018-08-07T13:54:23.054023 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:23.054528 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T13:54:23.075958 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:23.076441 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T13:54:23.076481 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:23.084508 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-08-07T13:54:23.084616 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:23.093182 #7] INFO -- : Inline processing of topic section_change with 1 messages took 5.15 ms +I, [2018-08-07T13:54:23.093238 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:23.114905 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T13:54:23.114951 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:23.126309 #7] INFO -- : Inline processing of topic section_change with 1 messages took 11.11 ms +I, [2018-08-07T13:54:23.126438 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:23.126856 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T13:54:23.126889 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:23.137612 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T13:54:23.147209 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:23.147511 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T13:54:23.147544 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:23.150387 #7] INFO -- : Inline processing of topic section_change with 1 messages took 2.71 ms +I, [2018-08-07T13:54:23.150440 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:23.150728 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T13:54:23.160352 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:23.161101 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T13:54:23.161147 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:23.161444 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T13:54:23.161477 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:23.169968 #7] INFO -- : Inline processing of topic section_change with 1 messages took 8.39 ms +I, [2018-08-07T13:54:23.170015 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:23.170229 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T13:54:23.170258 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:23.174808 #7] INFO -- : Inline processing of topic section_change with 1 messages took 4.44 ms +I, [2018-08-07T13:54:23.174856 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:23.175080 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T13:54:23.175105 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:23.176763 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.23 ms +I, [2018-08-07T13:54:23.176868 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:23.177288 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T13:54:23.177334 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:24.063954 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T13:54:24.064003 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:54:24.064209 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-08-07T13:54:24.064239 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:54:24.072964 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-08-07T13:54:24.073011 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:54:24.080798 #7] INFO -- : Inline processing of topic course_change with 1 messages took 7.55 ms +I, [2018-08-07T13:54:24.080872 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:54:24.081153 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T13:54:24.081183 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:54:24.081379 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-08-07T13:54:24.084736 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:54:24.085036 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T13:54:24.085067 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:54:24.085315 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T13:54:24.085357 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:54:25.178112 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T13:54:25.178181 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:25.178448 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T13:54:25.178474 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:25.178701 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T13:54:25.178730 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:25.178968 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T13:54:25.178996 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:25.185486 #7] INFO -- : Inline processing of topic section_change with 1 messages took 6.36 ms +I, [2018-08-07T13:54:25.185542 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:25.185880 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T13:54:25.185912 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:25.186145 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T13:54:25.186250 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:25.186824 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.46 ms +I, [2018-08-07T13:54:25.186856 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:25.187139 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T13:54:25.187166 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:25.187416 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T13:54:25.187470 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:25.187732 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T13:54:25.187759 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:25.188008 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T13:54:25.188037 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:25.188263 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T13:54:25.188292 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:25.188540 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T13:54:25.188980 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:26.132034 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-08-07T13:54:26.132088 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:54:26.132377 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T13:54:26.132450 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:54:26.132715 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T13:54:26.132759 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:54:26.133095 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T13:54:26.133143 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:54:26.133741 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.28 ms +I, [2018-08-07T13:54:26.134002 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:54:26.143211 #7] INFO -- : Inline processing of topic course_change with 1 messages took 8.98 ms +I, [2018-08-07T13:54:26.143297 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:54:26.143794 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T13:54:26.143827 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:54:26.144131 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-08-07T13:54:26.144219 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:54:26.144412 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T13:54:26.144462 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:54:26.144654 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-08-07T13:54:26.144698 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:54:27.189419 #7] INFO -- : Committing offsets: section_change/0:932 +I, [2018-08-07T13:54:27.194074 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T13:54:27.194142 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:27.194528 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T13:54:27.194573 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:27.194919 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T13:54:27.194992 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:27.195325 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T13:54:27.195367 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:27.195731 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T13:54:27.195773 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:27.196125 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T13:54:27.196168 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:27.196502 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T13:54:27.196544 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:27.196911 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T13:54:27.196953 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:27.197250 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T13:54:27.197290 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:28.144965 #7] INFO -- : Committing offsets: course_change/0:458 +I, [2018-08-07T13:54:28.149285 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.23 ms +I, [2018-08-07T13:54:28.149329 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:54:28.149591 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T13:54:28.149622 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:54:28.149832 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T13:54:28.149858 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:54:28.150078 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T13:54:28.151428 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:54:28.151705 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T13:54:28.151738 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:54:28.151953 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T13:54:28.151983 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:54:29.215392 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.97 ms +I, [2018-08-07T13:54:29.217567 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:29.218470 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.46 ms +I, [2018-08-07T13:54:29.218527 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:29.219896 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.15 ms +I, [2018-08-07T13:54:29.219962 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:29.223818 #7] INFO -- : Inline processing of topic section_change with 1 messages took 3.22 ms +I, [2018-08-07T13:54:29.223985 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:29.227429 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.49 ms +I, [2018-08-07T13:54:29.227500 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:29.229216 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.07 ms +I, [2018-08-07T13:54:29.233163 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:29.233992 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.48 ms +I, [2018-08-07T13:54:29.234051 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:32.589145 #7] INFO -- : Inline processing of topic course_change with 1 messages took 1.09 ms +I, [2018-08-07T13:54:32.589600 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:54:33.247515 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.58 ms +I, [2018-08-07T13:54:33.247817 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:33.248423 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.41 ms +I, [2018-08-07T13:54:33.248466 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:33.248934 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-08-07T13:54:33.250365 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:34.590700 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.45 ms +I, [2018-08-07T13:54:34.590806 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:54:34.591273 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-08-07T13:54:34.591394 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:54:34.591779 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T13:54:34.591936 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:54:34.592206 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T13:54:34.592236 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:54:34.594081 #7] INFO -- : Inline processing of topic course_change with 1 messages took 1.63 ms +I, [2018-08-07T13:54:34.594128 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:54:35.253754 #7] INFO -- : Inline processing of topic section_change with 1 messages took 2.06 ms +I, [2018-08-07T13:54:35.254473 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:35.259035 #7] INFO -- : Inline processing of topic section_change with 1 messages took 3.57 ms +I, [2018-08-07T13:54:35.259099 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:35.261623 #7] INFO -- : Inline processing of topic section_change with 1 messages took 2.28 ms +I, [2018-08-07T13:54:35.262383 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:35.265370 #7] INFO -- : Inline processing of topic section_change with 1 messages took 2.7 ms +I, [2018-08-07T13:54:35.265441 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:35.270134 #7] INFO -- : Inline processing of topic section_change with 1 messages took 2.34 ms +I, [2018-08-07T13:54:35.270221 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:35.275330 #7] INFO -- : Inline processing of topic section_change with 1 messages took 4.33 ms +I, [2018-08-07T13:54:35.275999 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:35.280143 #7] INFO -- : Inline processing of topic section_change with 1 messages took 2.49 ms +I, [2018-08-07T13:54:35.280251 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:36.595637 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.46 ms +I, [2018-08-07T13:54:36.595745 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:54:36.596190 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T13:54:36.596229 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:54:36.596542 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T13:54:36.596574 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:54:36.596812 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T13:54:36.596843 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:54:36.597133 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T13:54:36.597164 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:54:37.280627 #7] INFO -- : Committing offsets: section_change/0:958 +I, [2018-08-07T13:54:37.298606 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T13:54:37.298747 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:37.299586 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T13:54:37.299697 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:37.300044 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T13:54:37.300096 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:37.300796 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T13:54:37.301624 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:37.302122 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T13:54:37.302289 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:37.302676 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T13:54:37.302726 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:37.303529 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T13:54:37.303602 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:37.304656 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.86 ms +I, [2018-08-07T13:54:37.304704 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:37.309231 #7] INFO -- : Inline processing of topic section_change with 1 messages took 4.37 ms +I, [2018-08-07T13:54:37.309285 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:38.597554 #7] INFO -- : Committing offsets: course_change/0:475 +I, [2018-08-07T13:54:38.603898 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.23 ms +I, [2018-08-07T13:54:38.603946 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:54:38.604295 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T13:54:38.604328 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:54:38.605131 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.67 ms +I, [2018-08-07T13:54:38.605180 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:54:38.605417 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-08-07T13:54:38.605448 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:54:38.605671 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-08-07T13:54:38.605706 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:54:38.606149 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.27 ms +I, [2018-08-07T13:54:38.606186 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:54:38.606540 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-08-07T13:54:38.606576 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:54:39.316259 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.97 ms +I, [2018-08-07T13:54:39.316532 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:39.343301 #7] INFO -- : Inline processing of topic section_change with 1 messages took 18.46 ms +I, [2018-08-07T13:54:39.343364 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:39.343946 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-08-07T13:54:39.344655 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:39.345870 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.85 ms +I, [2018-08-07T13:54:39.346055 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:39.346598 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-08-07T13:54:39.346634 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:40.789533 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.82 ms +I, [2018-08-07T13:54:40.789730 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:54:41.377726 #7] INFO -- : Inline processing of topic course_change with 1 messages took 544.83 ms +I, [2018-08-07T13:54:41.391027 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:54:41.503345 #7] INFO -- : Inline processing of topic section_change with 1 messages took 40.22 ms +I, [2018-08-07T13:54:41.511426 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:41.524244 #7] INFO -- : Inline processing of topic section_change with 1 messages took 8.08 ms +I, [2018-08-07T13:54:41.524357 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:41.541458 #7] INFO -- : Inline processing of topic course_change with 1 messages took 1.8 ms +I, [2018-08-07T13:54:41.541556 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:54:48.070005 #7] INFO -- : Inline processing of topic section_change with 1 messages took 961.38 ms +I, [2018-08-07T13:54:48.071818 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:48.072213 #7] INFO -- : Committing offsets: section_change/0:975 +I, [2018-08-07T13:54:48.148519 #7] INFO -- : Inline processing of topic course_change with 1 messages took 1509.75 ms +I, [2018-08-07T13:54:48.148740 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:54:50.151378 #7] INFO -- : Committing offsets: course_change/0:486 +I, [2018-08-07T13:54:51.235489 #7] INFO -- : Inline processing of topic section_change with 1 messages took 35.31 ms +I, [2018-08-07T13:54:51.235578 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:52.164151 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.42 ms +I, [2018-08-07T13:54:52.164316 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:54:53.248627 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.86 ms +I, [2018-08-07T13:54:53.248727 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:54:58.039563 #7] INFO -- : Inline processing of topic section_change with 1 messages took 36.2 ms +I, [2018-08-07T13:54:58.181547 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:00.184126 #7] INFO -- : Committing offsets: section_change/0:978 +I, [2018-08-07T13:55:01.494071 #7] INFO -- : Committing offsets: course_change/0:487 +I, [2018-08-07T13:55:01.948198 #7] INFO -- : Inline processing of topic course_change with 1 messages took 6.01 ms +I, [2018-08-07T13:55:01.948678 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:55:01.959218 #7] INFO -- : Inline processing of topic course_change with 1 messages took 1.28 ms +I, [2018-08-07T13:55:01.959387 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:55:02.055997 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.19 ms +I, [2018-08-07T13:55:02.056091 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:02.057928 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.61 ms +I, [2018-08-07T13:55:02.058038 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:02.059076 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.61 ms +I, [2018-08-07T13:55:02.059130 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:03.962090 #7] INFO -- : Inline processing of topic course_change with 1 messages took 1.49 ms +I, [2018-08-07T13:55:03.962541 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:55:04.061473 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.1 ms +I, [2018-08-07T13:55:04.061637 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:04.066429 #7] INFO -- : Inline processing of topic section_change with 1 messages took 4.03 ms +I, [2018-08-07T13:55:04.066513 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:05.976754 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.43 ms +I, [2018-08-07T13:55:05.977093 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:55:06.008432 #7] INFO -- : Inline processing of topic course_change with 1 messages took 30.72 ms +I, [2018-08-07T13:55:06.008506 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:55:06.009046 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T13:55:06.009104 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:55:06.067551 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.41 ms +I, [2018-08-07T13:55:06.067615 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:06.068920 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.07 ms +I, [2018-08-07T13:55:06.068984 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:06.069758 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-08-07T13:55:06.069815 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:08.409302 #7] INFO -- : Inline processing of topic section_change with 1 messages took 2.97 ms +I, [2018-08-07T13:55:08.431789 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:08.443707 #7] INFO -- : Inline processing of topic section_change with 1 messages took 2.41 ms +I, [2018-08-07T13:55:08.443807 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:08.449959 #7] INFO -- : Inline processing of topic section_change with 1 messages took 2.9 ms +I, [2018-08-07T13:55:08.450305 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:08.465927 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.3 ms +I, [2018-08-07T13:55:08.466166 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:55:08.466555 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T13:55:08.466600 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:55:08.467342 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T13:55:08.468223 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:55:08.476470 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.28 ms +I, [2018-08-07T13:55:08.476947 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:55:10.466555 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.95 ms +I, [2018-08-07T13:55:10.468866 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:10.470432 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.06 ms +I, [2018-08-07T13:55:10.470493 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:10.471246 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.54 ms +I, [2018-08-07T13:55:10.471298 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:10.471808 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T13:55:10.472128 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:10.472750 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.43 ms +I, [2018-08-07T13:55:10.472787 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:10.473477 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.45 ms +I, [2018-08-07T13:55:10.473517 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:10.481786 #7] INFO -- : Inline processing of topic course_change with 1 messages took 1.29 ms +I, [2018-08-07T13:55:10.498373 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:55:10.499403 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.69 ms +I, [2018-08-07T13:55:10.499487 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:55:10.501575 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-08-07T13:55:10.501667 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:55:10.502924 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.61 ms +I, [2018-08-07T13:55:10.503027 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:55:10.504073 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.51 ms +I, [2018-08-07T13:55:10.504327 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:55:10.505867 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.33 ms +I, [2018-08-07T13:55:10.505951 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:55:12.473908 #7] INFO -- : Committing offsets: section_change/0:995 +I, [2018-08-07T13:55:12.486084 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.54 ms +I, [2018-08-07T13:55:12.486139 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:12.486643 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-08-07T13:55:12.486687 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:12.487277 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-08-07T13:55:12.487553 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:12.488282 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.54 ms +I, [2018-08-07T13:55:12.488328 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:12.488867 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-08-07T13:55:12.488916 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:12.489443 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-08-07T13:55:12.489512 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:12.492039 #7] INFO -- : Inline processing of topic section_change with 1 messages took 2.13 ms +I, [2018-08-07T13:55:12.492104 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:12.508019 #7] INFO -- : Committing offsets: course_change/0:503 +I, [2018-08-07T13:55:12.527095 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-08-07T13:55:12.527176 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:55:12.527720 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T13:55:12.527762 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:55:12.527982 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T13:55:12.528013 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:55:12.528293 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T13:55:12.528325 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:55:12.528645 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-08-07T13:55:12.528676 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:55:12.529063 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.27 ms +I, [2018-08-07T13:55:12.529095 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:55:12.529468 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.26 ms +I, [2018-08-07T13:55:12.529500 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:55:14.492978 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-08-07T13:55:14.493027 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:14.493401 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T13:55:14.493433 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:14.493797 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T13:55:14.493828 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:14.494253 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T13:55:14.494298 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:14.494673 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T13:55:14.494703 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:14.530578 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.56 ms +I, [2018-08-07T13:55:14.530637 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:55:14.531034 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-08-07T13:55:14.531073 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:55:14.531575 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-08-07T13:55:14.531613 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:55:14.531999 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T13:55:14.532044 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:55:14.532581 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T13:55:14.532618 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:55:16.496168 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-08-07T13:55:16.499026 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:16.500047 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-08-07T13:55:16.500125 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:16.500616 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T13:55:16.500676 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:16.501141 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T13:55:16.501187 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:16.501635 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T13:55:16.501695 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:16.505989 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.82 ms +I, [2018-08-07T13:55:16.506151 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:16.507472 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.97 ms +I, [2018-08-07T13:55:16.507606 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:16.509416 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T13:55:16.509461 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:16.509836 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T13:55:16.509872 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:16.510204 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T13:55:16.510234 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:16.510488 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T13:55:16.510520 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:16.510733 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T13:55:16.510762 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:16.510991 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T13:55:16.511019 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:16.511338 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T13:55:16.511384 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:16.511645 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T13:55:16.511677 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:16.511871 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-08-07T13:55:16.511938 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:16.512169 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-08-07T13:55:16.512200 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:16.512675 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T13:55:16.512720 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:16.513045 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T13:55:16.513071 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:16.513540 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T13:55:16.513594 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:16.513930 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T13:55:16.513982 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:16.533714 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.31 ms +I, [2018-08-07T13:55:16.533813 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:55:16.534372 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.27 ms +I, [2018-08-07T13:55:16.534447 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:55:16.535273 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.6 ms +I, [2018-08-07T13:55:16.535342 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:55:16.535708 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T13:55:16.535750 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:55:18.514981 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T13:55:18.515052 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:18.515509 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T13:55:18.515562 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:18.515966 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T13:55:18.516009 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:18.516475 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T13:55:18.516528 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:18.516901 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T13:55:18.516951 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:18.517306 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T13:55:18.517358 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:18.519987 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T13:55:18.520091 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:18.521048 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.73 ms +I, [2018-08-07T13:55:18.526323 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:18.526777 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T13:55:18.526821 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:18.527258 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T13:55:18.527317 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:18.527714 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T13:55:18.527910 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:18.528903 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.76 ms +I, [2018-08-07T13:55:18.529199 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:18.530273 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T13:55:18.530333 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:18.530848 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T13:55:18.530905 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:18.532127 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-08-07T13:55:18.532237 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:18.533354 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.77 ms +I, [2018-08-07T13:55:18.533430 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:18.533916 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T13:55:18.533974 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:18.538612 #7] INFO -- : Inline processing of topic course_change with 1 messages took 1.11 ms +I, [2018-08-07T13:55:18.539600 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:55:18.540799 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.8 ms +I, [2018-08-07T13:55:18.540880 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:55:18.541214 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T13:55:18.541293 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:55:18.542128 #7] INFO -- : Inline processing of topic section_change with 1 messages took 6.28 ms +I, [2018-08-07T13:55:18.542235 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:18.542887 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.44 ms +I, [2018-08-07T13:55:18.543107 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:18.543562 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T13:55:18.544087 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:18.544951 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T13:55:18.545049 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:18.545476 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T13:55:18.545529 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:18.545860 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T13:55:18.545901 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:18.546284 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T13:55:18.546326 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:18.546612 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T13:55:18.546650 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:18.547451 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-08-07T13:55:18.547513 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:18.547891 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T13:55:18.547935 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:18.548255 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T13:55:18.548306 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:18.548603 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T13:55:18.548641 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:18.548930 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T13:55:18.548996 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:18.549828 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T13:55:18.549886 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:18.550377 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T13:55:18.550434 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:18.551022 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.42 ms +I, [2018-08-07T13:55:18.551109 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:18.552317 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.86 ms +I, [2018-08-07T13:55:18.552891 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:18.553769 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-08-07T13:55:18.553854 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:18.564018 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.56 ms +I, [2018-08-07T13:55:18.564544 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:18.564985 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T13:55:18.565031 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:18.565916 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.68 ms +I, [2018-08-07T13:55:18.565999 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:18.567085 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.56 ms +I, [2018-08-07T13:55:18.567152 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:18.568379 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T13:55:18.568445 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:18.569082 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T13:55:18.569147 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:18.570232 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.59 ms +I, [2018-08-07T13:55:18.570332 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:18.571589 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.59 ms +I, [2018-08-07T13:55:18.571671 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:18.572231 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T13:55:18.572280 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:18.572649 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T13:55:18.572698 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:18.573010 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T13:55:18.586222 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:18.589194 #7] INFO -- : Inline processing of topic section_change with 1 messages took 2.12 ms +I, [2018-08-07T13:55:18.590480 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:18.595679 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.14 ms +I, [2018-08-07T13:55:18.595775 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:18.616917 #7] INFO -- : Inline processing of topic section_change with 1 messages took 4.46 ms +I, [2018-08-07T13:55:18.616992 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:18.620397 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T13:55:18.620476 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:18.621005 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T13:55:18.621062 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:18.621447 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T13:55:18.621502 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:18.622009 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T13:55:18.622068 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:18.629570 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T13:55:18.636651 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:18.661213 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T13:55:18.661432 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:18.662128 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T13:55:18.662194 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:18.662648 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T13:55:18.662705 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:18.663092 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T13:55:18.663146 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:18.663516 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T13:55:18.663571 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:20.542274 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.27 ms +I, [2018-08-07T13:55:20.542471 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:55:20.542947 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-08-07T13:55:20.542985 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:55:20.664511 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T13:55:20.664559 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:20.664804 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T13:55:20.664833 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:20.665052 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T13:55:20.665080 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:20.665872 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-08-07T13:55:20.665973 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:20.666523 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-08-07T13:55:20.666619 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:20.667347 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T13:55:20.667404 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:20.667772 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T13:55:20.667822 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:20.668179 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T13:55:20.668228 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:20.668583 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T13:55:20.668633 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:20.668981 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T13:55:20.669031 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:20.669380 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T13:55:20.669428 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:20.669767 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T13:55:20.669813 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:20.676508 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T13:55:20.676571 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:20.676967 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T13:55:20.677018 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:20.677365 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T13:55:20.677416 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:20.677796 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T13:55:20.677845 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:20.678261 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T13:55:20.678321 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:20.678977 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.41 ms +I, [2018-08-07T13:55:20.679021 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:20.679335 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T13:55:20.679386 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:20.679653 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T13:55:20.679683 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:20.679901 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T13:55:20.679930 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:20.688346 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T13:55:20.688388 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:20.688637 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T13:55:20.688668 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:20.688981 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T13:55:20.689012 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:20.689280 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T13:55:20.689309 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:20.689606 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T13:55:20.689637 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:20.707054 #7] INFO -- : Inline processing of topic section_change with 1 messages took 7.35 ms +I, [2018-08-07T13:55:20.707122 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:22.543377 #7] INFO -- : Committing offsets: course_change/0:524 +I, [2018-08-07T13:55:22.548346 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.27 ms +I, [2018-08-07T13:55:22.548408 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:55:22.707542 #7] INFO -- : Committing offsets: section_change/0:1114 +I, [2018-08-07T13:55:22.716161 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T13:55:22.716263 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:22.716567 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T13:55:22.716601 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:22.716884 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T13:55:22.716918 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:22.717174 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T13:55:22.717207 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:22.717476 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T13:55:22.717508 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:22.719432 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T13:55:22.719475 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:22.719852 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T13:55:22.719976 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:22.720347 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T13:55:22.720397 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:22.720758 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T13:55:22.720793 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:22.721047 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T13:55:22.721077 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:24.483510 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.31 ms +I, [2018-08-07T13:55:24.483561 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:55:24.656218 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-08-07T13:55:24.656268 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:24.656594 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T13:55:24.656626 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:24.656905 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T13:55:24.656934 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:24.657201 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T13:55:24.657232 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:24.657492 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T13:55:24.657521 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:24.657771 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T13:55:24.657800 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:24.658057 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T13:55:24.658086 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:26.676068 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.69 ms +I, [2018-08-07T13:55:26.676206 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:26.676648 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T13:55:26.676710 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:26.677036 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T13:55:26.677095 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:26.677780 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.45 ms +I, [2018-08-07T13:55:26.677855 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:28.488517 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.42 ms +I, [2018-08-07T13:55:28.488579 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:55:28.679116 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-08-07T13:55:28.679206 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:28.680170 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T13:55:28.686930 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:28.689945 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-08-07T13:55:28.690193 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:30.489471 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.29 ms +I, [2018-08-07T13:55:30.489522 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:55:30.691128 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-08-07T13:55:30.691184 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:30.691719 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-08-07T13:55:30.693678 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:30.694641 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.48 ms +I, [2018-08-07T13:55:30.694705 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:30.695152 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T13:55:30.695209 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:30.695682 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T13:55:30.695764 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:30.696136 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T13:55:30.696169 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:32.696897 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-08-07T13:55:32.696960 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:32.697313 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T13:55:32.697348 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:32.697643 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T13:55:32.697894 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:32.698531 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T13:55:32.698668 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:34.491470 #7] INFO -- : Committing offsets: course_change/0:528 +I, [2018-08-07T13:55:34.501908 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-08-07T13:55:34.501961 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:55:34.502251 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T13:55:34.502287 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:55:34.502538 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T13:55:34.502571 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:55:34.699144 #7] INFO -- : Committing offsets: section_change/0:1148 +I, [2018-08-07T13:55:34.703944 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T13:55:34.704003 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:34.704310 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T13:55:34.704340 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:34.704605 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T13:55:34.704635 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:34.704913 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T13:55:34.704944 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:34.705186 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T13:55:34.705215 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:34.705480 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T13:55:34.705509 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:36.707578 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.04 ms +I, [2018-08-07T13:55:36.707836 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:36.708573 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.46 ms +I, [2018-08-07T13:55:36.708663 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:36.709156 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-08-07T13:55:36.709265 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:36.709795 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-08-07T13:55:36.709836 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:38.710600 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-08-07T13:55:38.710662 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:38.711166 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T13:55:38.711215 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:38.711645 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T13:55:38.711681 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:38.711938 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T13:55:38.711969 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:38.712265 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T13:55:38.712296 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:40.504309 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.23 ms +I, [2018-08-07T13:55:40.504363 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:55:40.504653 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T13:55:40.504690 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:55:40.504965 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T13:55:40.504987 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:55:40.713031 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T13:55:40.713086 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:40.713510 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T13:55:40.713548 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:40.713989 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-08-07T13:55:40.714024 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:40.714323 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T13:55:40.714354 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:40.714624 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T13:55:40.714655 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:40.714955 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T13:55:40.714985 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:40.718329 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T13:55:40.718377 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:42.505703 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-08-07T13:55:42.507461 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:55:42.719461 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.56 ms +I, [2018-08-07T13:55:42.719531 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:42.720918 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.45 ms +I, [2018-08-07T13:55:42.720981 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:42.721424 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T13:55:42.721472 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:42.722101 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-08-07T13:55:42.722143 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:42.724407 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.8 ms +I, [2018-08-07T13:55:42.724511 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:42.724982 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T13:55:42.725024 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:42.725670 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T13:55:42.725708 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:42.727585 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-08-07T13:55:42.727662 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:42.728240 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-08-07T13:55:42.728310 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:44.508156 #7] INFO -- : Committing offsets: course_change/0:535 +I, [2018-08-07T13:55:44.511350 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-08-07T13:55:44.511396 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:55:44.511651 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T13:55:44.511681 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:55:44.511973 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T13:55:44.512007 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:55:44.728676 #7] INFO -- : Committing offsets: section_change/0:1179 +I, [2018-08-07T13:55:44.732271 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T13:55:44.732316 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:44.732613 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T13:55:44.732648 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:44.732885 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T13:55:44.732931 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:44.733213 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T13:55:44.733265 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:44.733602 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T13:55:44.733638 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:44.733906 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T13:55:44.733936 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:46.512690 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T13:55:46.512741 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:55:46.513092 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T13:55:46.513122 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:55:46.734955 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-08-07T13:55:46.735006 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:46.735315 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T13:55:46.735346 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:46.735657 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T13:55:46.735687 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:46.736022 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T13:55:46.736054 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:46.736327 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T13:55:46.736357 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:46.736606 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T13:55:46.736650 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:46.736885 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T13:55:46.736949 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:48.514511 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.26 ms +I, [2018-08-07T13:55:48.514584 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:55:48.514971 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-08-07T13:55:48.515025 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:55:48.515362 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T13:55:48.515890 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:55:48.746573 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.8 ms +I, [2018-08-07T13:55:48.746686 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:48.747221 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-08-07T13:55:48.747276 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:48.747752 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T13:55:48.747812 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:48.748342 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-08-07T13:55:48.752107 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:48.753135 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.71 ms +I, [2018-08-07T13:55:48.753231 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:48.754261 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-08-07T13:55:48.754333 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:50.517324 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.27 ms +I, [2018-08-07T13:55:50.517393 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:55:50.517752 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T13:55:50.517786 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:55:50.518507 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T13:55:50.518683 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:55:50.519436 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.32 ms +I, [2018-08-07T13:55:50.519530 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:55:50.773106 #7] INFO -- : Inline processing of topic section_change with 1 messages took 12.94 ms +I, [2018-08-07T13:55:50.773223 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:50.792940 #7] INFO -- : Inline processing of topic section_change with 1 messages took 16.05 ms +I, [2018-08-07T13:55:50.793022 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:50.821188 #7] INFO -- : Inline processing of topic section_change with 1 messages took 4.45 ms +I, [2018-08-07T13:55:50.821263 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:50.824799 #7] INFO -- : Inline processing of topic section_change with 1 messages took 2.31 ms +I, [2018-08-07T13:55:50.825570 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:50.827598 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.64 ms +I, [2018-08-07T13:55:50.827660 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:50.840842 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.72 ms +I, [2018-08-07T13:55:50.850133 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:50.859106 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.63 ms +I, [2018-08-07T13:55:50.859541 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:50.866430 #7] INFO -- : Inline processing of topic section_change with 1 messages took 5.91 ms +I, [2018-08-07T13:55:50.867165 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:52.520698 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.34 ms +I, [2018-08-07T13:55:52.520748 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:55:52.835047 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.4 ms +I, [2018-08-07T13:55:52.835102 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:52.835598 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T13:55:52.835643 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:52.836143 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T13:55:52.836259 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:52.836921 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T13:55:52.837222 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:52.838068 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.63 ms +I, [2018-08-07T13:55:52.838143 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:52.839019 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.53 ms +I, [2018-08-07T13:55:52.839073 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:54.488363 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.25 ms +I, [2018-08-07T13:55:54.488413 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:55:54.488673 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T13:55:54.488702 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:55:54.488959 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T13:55:54.488996 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:55:54.839512 #7] INFO -- : Committing offsets: section_change/0:1212 +I, [2018-08-07T13:55:54.843253 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T13:55:54.843299 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:54.843660 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T13:55:54.843708 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:54.845718 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.56 ms +I, [2018-08-07T13:55:54.845820 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:54.846489 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-08-07T13:55:54.846533 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:54.846817 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T13:55:54.846896 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:54.847510 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.41 ms +I, [2018-08-07T13:55:54.847553 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:56.489344 #7] INFO -- : Committing offsets: course_change/0:551 +I, [2018-08-07T13:55:56.492526 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T13:55:56.492619 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:55:56.492891 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-08-07T13:55:56.492928 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:55:56.493144 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T13:55:56.493173 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:55:56.493417 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T13:55:56.493446 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:55:56.493673 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T13:55:56.493702 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:55:56.493929 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T13:55:56.494425 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:55:56.848488 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T13:55:56.848537 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:56.848785 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T13:55:56.848815 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:56.849055 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T13:55:56.849085 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:56.849387 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T13:55:56.849417 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:56.849716 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T13:55:56.849746 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:56.850057 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T13:55:56.850162 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:56.850459 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T13:55:56.850490 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:58.496137 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.42 ms +I, [2018-08-07T13:55:58.496217 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:55:58.496780 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T13:55:58.496827 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:55:58.851472 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-08-07T13:55:58.851522 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:58.851782 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T13:55:58.851812 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:58.852209 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T13:55:58.852245 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:58.852558 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T13:55:58.852639 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:55:58.852871 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-08-07T13:55:58.852901 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:56:00.498372 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.28 ms +I, [2018-08-07T13:56:00.498466 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:56:00.499142 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.33 ms +I, [2018-08-07T13:56:00.499385 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:56:00.500084 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.34 ms +I, [2018-08-07T13:56:00.500186 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:56:00.501501 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.81 ms +I, [2018-08-07T13:56:00.501863 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:56:00.502711 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.39 ms +I, [2018-08-07T13:56:00.502778 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:56:00.503298 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.31 ms +I, [2018-08-07T13:56:00.503352 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:56:00.510558 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.34 ms +I, [2018-08-07T13:56:00.513100 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:56:00.514133 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.48 ms +I, [2018-08-07T13:56:00.514220 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:56:00.514804 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-08-07T13:56:00.514932 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:56:00.515481 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T13:56:00.515706 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:56:00.516157 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-08-07T13:56:00.516458 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:56:00.853712 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T13:56:00.853762 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:56:00.854027 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T13:56:00.854057 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:56:00.854350 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T13:56:00.854380 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:56:00.854593 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-08-07T13:56:00.854622 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:56:00.854826 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T13:56:00.854855 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:56:00.855238 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T13:56:00.855268 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:56:00.855478 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-08-07T13:56:00.855506 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:56:00.855706 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-08-07T13:56:00.855734 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:56:00.855941 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-08-07T13:56:00.855969 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:56:00.856180 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-08-07T13:56:00.856208 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:56:00.856424 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-08-07T13:56:00.856452 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:56:00.857503 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T13:56:00.857672 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:56:00.858063 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T13:56:00.858096 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:56:00.858338 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T13:56:00.858368 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:56:00.858619 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T13:56:00.858648 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:56:02.518086 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.53 ms +I, [2018-08-07T13:56:02.518620 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:56:02.519433 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.31 ms +I, [2018-08-07T13:56:02.519505 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:56:02.519929 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-08-07T13:56:02.519973 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:56:02.520302 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T13:56:02.520333 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:56:02.520557 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T13:56:02.520586 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:56:02.860837 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T13:56:02.860886 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:56:02.861158 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T13:56:02.861188 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:56:02.861518 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T13:56:02.861548 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:56:02.861814 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T13:56:02.861844 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:56:02.862118 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T13:56:02.862164 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:56:02.862413 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T13:56:02.862442 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:56:02.865443 #7] INFO -- : Inline processing of topic section_change with 1 messages took 2.85 ms +I, [2018-08-07T13:56:02.865499 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:56:02.865829 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T13:56:02.865860 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:56:04.528424 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.71 ms +I, [2018-08-07T13:56:04.528494 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:56:04.529410 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.24 ms +I, [2018-08-07T13:56:04.529460 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:56:04.529822 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T13:56:04.529869 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:56:04.530949 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.34 ms +I, [2018-08-07T13:56:04.531016 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:56:04.531596 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-08-07T13:56:04.531674 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:56:04.532362 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-08-07T13:56:04.532415 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:56:04.532836 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-08-07T13:56:04.532882 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:56:04.533190 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T13:56:04.533253 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:56:04.533490 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-08-07T13:56:04.533547 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:56:04.533764 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T13:56:04.533849 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:56:04.534132 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T13:56:04.534175 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:56:04.534484 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T13:56:04.534517 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:56:04.866433 #7] INFO -- : Committing offsets: section_change/0:1253 +I, [2018-08-07T13:56:04.870553 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T13:56:04.870598 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:56:04.870858 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T13:56:04.870887 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:56:04.871319 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T13:56:04.871352 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:56:04.871642 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T13:56:04.871672 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:56:04.871926 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T13:56:04.871956 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:56:04.872171 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T13:56:04.872199 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:56:04.872405 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T13:56:04.872433 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:56:04.873559 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T13:56:04.873657 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:56:04.874064 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T13:56:04.874110 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:56:04.874463 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T13:56:04.874498 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:56:04.874867 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T13:56:04.874900 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:56:04.875142 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T13:56:04.875172 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:56:04.875390 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T13:56:04.875419 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:56:04.875633 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T13:56:04.875662 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:56:04.875877 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T13:56:04.875906 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:56:04.876721 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.7 ms +I, [2018-08-07T13:56:04.876797 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:56:04.877202 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T13:56:04.878472 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:56:04.878847 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T13:56:04.878881 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:56:04.879669 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T13:56:04.879728 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:56:04.880153 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T13:56:04.880184 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:56:04.880412 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-08-07T13:56:04.880441 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:56:04.880713 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T13:56:04.880743 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:56:04.881037 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-08-07T13:56:04.881068 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:56:04.881278 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-08-07T13:56:04.881307 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:56:04.882126 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T13:56:04.882185 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:56:04.882680 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-08-07T13:56:04.882736 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:56:04.883464 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-08-07T13:56:04.883526 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:56:04.883998 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T13:56:04.884054 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:56:04.884495 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T13:56:04.884547 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:56:04.884880 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T13:56:04.884927 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:56:04.885357 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T13:56:04.885412 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:56:06.534883 #7] INFO -- : Committing offsets: course_change/0:587 +I, [2018-08-07T13:56:06.540118 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-08-07T13:56:06.540169 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:56:06.540439 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T13:56:06.540469 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:56:06.540694 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T13:56:06.540724 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:56:06.541027 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T13:56:06.541058 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:56:06.886597 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-08-07T13:56:06.886713 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:56:06.887355 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T13:56:06.887424 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:56:06.888051 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-08-07T13:56:06.888113 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:56:06.888538 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T13:56:06.888572 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:56:06.889153 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T13:56:06.889188 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:56:06.889462 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T13:56:06.889683 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:56:08.542156 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.39 ms +I, [2018-08-07T13:56:08.542317 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:56:08.542708 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T13:56:08.542759 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:56:08.544054 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-08-07T13:56:08.544111 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:56:08.544387 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T13:56:08.544420 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:56:08.544632 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T13:56:08.544660 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:56:08.890395 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T13:56:08.890451 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:56:08.892354 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-08-07T13:56:08.892400 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:56:08.892827 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T13:56:08.892865 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:56:08.893146 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T13:56:08.893193 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:56:08.893491 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T13:56:08.893521 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:56:10.545324 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-08-07T13:56:10.545375 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:56:10.545685 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T13:56:10.545727 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:56:10.546703 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T13:56:10.546738 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:56:10.546969 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T13:56:10.546998 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:56:10.894229 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T13:56:10.894278 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:56:10.894565 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T13:56:10.894595 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:56:10.894870 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T13:56:10.894933 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:56:10.895179 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T13:56:10.895208 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:56:10.895432 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T13:56:10.895461 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:56:10.895704 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T13:56:10.895734 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:56:10.896012 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T13:56:10.896042 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:56:12.547760 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-08-07T13:56:12.547903 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:56:12.548227 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T13:56:12.548259 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:56:12.548472 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-08-07T13:56:12.548504 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:56:12.548737 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-08-07T13:56:12.548768 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:56:12.549004 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-08-07T13:56:12.549036 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:56:12.549261 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T13:56:12.549292 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:56:12.896935 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-08-07T13:56:12.897044 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:56:12.897441 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T13:56:12.897474 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:56:12.897777 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T13:56:12.897810 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:56:12.898067 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T13:56:12.898096 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:56:12.898346 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T13:56:12.898374 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:56:12.898607 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T13:56:12.898635 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:56:14.549883 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T13:56:14.549939 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:56:14.898999 #7] INFO -- : Committing offsets: section_change/0:1308 +I, [2018-08-07T13:56:14.902659 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T13:56:14.902704 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:56:14.903025 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T13:56:14.903069 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:56:14.903330 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T13:56:14.904479 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:56:14.904975 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T13:56:14.905009 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:56:14.905838 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T13:56:14.905876 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:56:16.550260 #7] INFO -- : Committing offsets: course_change/0:607 +I, [2018-08-07T13:56:16.558939 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-08-07T13:56:16.558989 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:56:16.559284 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T13:56:16.559314 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:56:16.559600 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T13:56:16.559646 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:56:16.559862 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T13:56:16.559891 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:56:16.560112 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T13:56:16.560141 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:56:16.560396 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T13:56:16.560426 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:56:16.906577 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T13:56:16.906627 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:56:16.906939 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T13:56:16.906970 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:56:16.907187 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T13:56:16.907216 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:56:16.907439 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T13:56:16.907467 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:56:16.907691 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T13:56:16.907720 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:56:16.907919 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T13:56:16.907948 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:56:16.908214 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T13:56:16.908244 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:56:16.908452 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T13:56:16.908480 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:56:16.908684 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T13:56:16.908713 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:56:16.908937 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T13:56:16.909037 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:56:16.909297 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T13:56:16.909325 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:56:16.909522 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T13:56:16.909550 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:56:16.909808 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T13:56:16.909837 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:56:16.910112 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T13:56:16.910141 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:56:18.561094 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-08-07T13:56:18.561176 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:56:18.561407 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T13:56:18.561437 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:56:18.561656 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T13:56:18.561685 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:56:18.561934 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T13:56:18.561977 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:56:18.562193 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T13:56:18.562222 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:56:18.562421 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T13:56:18.562457 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:56:18.910963 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-08-07T13:56:18.911020 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:56:18.911317 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T13:56:18.911354 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:56:18.912847 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T13:56:18.912896 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:56:18.913388 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-08-07T13:56:18.913431 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:56:18.913712 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T13:56:18.913755 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:56:18.914020 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T13:56:18.914052 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:56:18.914330 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T13:56:18.914366 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:56:18.915770 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.21 ms +I, [2018-08-07T13:56:18.915835 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:56:18.916242 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T13:56:18.916290 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:56:20.563036 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-08-07T13:56:20.563116 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:56:20.563613 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.32 ms +I, [2018-08-07T13:56:20.563715 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:56:20.564097 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T13:56:20.564209 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:56:20.564574 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-08-07T13:56:20.564612 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:56:20.564830 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T13:56:20.564893 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:56:20.565082 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T13:56:20.565111 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:56:20.565334 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T13:56:20.565363 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:56:20.565586 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T13:56:20.565615 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:56:20.919909 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.47 ms +I, [2018-08-07T13:56:20.919986 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:56:20.920470 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T13:56:20.920580 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:56:20.921072 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-08-07T13:56:20.921122 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:56:20.921393 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T13:56:20.921424 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:56:20.921784 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T13:56:20.921829 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:56:20.922178 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T13:56:20.922223 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:56:20.922668 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T13:56:20.922704 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:56:20.923120 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T13:56:20.923156 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:56:22.566239 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-08-07T13:56:22.566296 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:56:22.566779 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.32 ms +I, [2018-08-07T13:56:22.566818 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:56:22.567067 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T13:56:22.567097 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:56:22.567318 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T13:56:22.567346 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:56:22.567559 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T13:56:22.567588 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:56:22.567802 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T13:56:22.567858 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:56:22.568063 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T13:56:22.568091 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:56:22.568295 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T13:56:22.569923 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:56:22.570221 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T13:56:22.570253 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:56:22.888496 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T13:56:22.888546 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:56:22.888801 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T13:56:22.888831 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:56:22.889110 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T13:56:22.889141 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:56:22.889376 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T13:56:22.889405 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:56:22.889611 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T13:56:22.889640 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:56:22.889848 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T13:56:22.889876 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:56:22.890081 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T13:56:22.890109 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:56:22.890314 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T13:56:22.890343 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:56:22.890547 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T13:56:22.890576 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:56:22.890779 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T13:56:22.890807 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:56:22.891012 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T13:56:22.891040 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:56:22.891244 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T13:56:22.892537 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:56:22.892890 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T13:56:22.892921 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:56:22.893132 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T13:56:22.893161 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:56:22.893371 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T13:56:22.893400 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:56:22.893611 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T13:56:22.893638 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:56:22.893843 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T13:56:22.893872 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:56:22.894072 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T13:56:22.894100 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:56:22.894316 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T13:56:22.894352 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:56:22.894560 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T13:56:22.894596 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:56:22.894802 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T13:56:22.894847 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:56:22.895036 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T13:56:22.895063 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:56:22.895283 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T13:56:22.895312 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:56:22.895530 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T13:56:22.895559 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:56:22.895783 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T13:56:22.895811 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:56:22.898292 #7] INFO -- : Inline processing of topic section_change with 1 messages took 2.36 ms +I, [2018-08-07T13:56:22.898337 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:56:22.898619 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T13:56:22.898650 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:56:22.898907 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T13:56:22.898938 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:56:22.899173 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T13:56:22.899203 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:56:22.902975 #7] INFO -- : Inline processing of topic section_change with 1 messages took 3.61 ms +I, [2018-08-07T13:56:22.903053 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:56:24.535675 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T13:56:24.535727 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:56:24.536033 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-08-07T13:56:24.536065 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:56:24.536296 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T13:56:24.536325 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:56:24.536549 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T13:56:24.536578 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:56:24.536864 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T13:56:24.536905 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:56:24.537843 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.81 ms +I, [2018-08-07T13:56:24.537877 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:56:24.538111 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T13:56:24.538141 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:56:24.903587 #7] INFO -- : Committing offsets: section_change/0:1374 +I, [2018-08-07T13:56:24.909757 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-08-07T13:56:24.909801 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:56:24.910185 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T13:56:24.910219 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:56:24.910470 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T13:56:24.910500 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:56:24.910686 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-08-07T13:56:24.910743 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:56:24.911020 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T13:56:24.911051 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:56:24.911308 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T13:56:24.911336 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:56:24.911610 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T13:56:24.911664 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:56:24.911999 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T13:56:24.912030 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:56:26.539068 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-08-07T13:56:26.539131 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:56:26.539594 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.26 ms +I, [2018-08-07T13:56:26.539652 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:56:26.539936 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T13:56:26.558971 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:56:26.559084 #7] INFO -- : Committing offsets: course_change/0:646 +I, [2018-08-07T13:56:26.563204 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T13:56:26.563260 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:56:26.563557 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T13:56:26.563594 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:56:26.563827 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T13:56:26.563867 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:56:26.564138 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T13:56:26.564172 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:56:26.564431 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T13:56:26.564464 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:56:26.912849 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T13:56:26.912899 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:56:26.913231 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T13:56:26.913262 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:56:26.913534 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T13:56:26.913564 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:56:26.913792 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-08-07T13:56:26.913823 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:56:26.914063 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T13:56:26.914093 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:56:26.914343 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T13:56:26.914372 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:56:26.916207 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.63 ms +I, [2018-08-07T13:56:26.916276 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:56:26.916845 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-08-07T13:56:26.916921 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:56:28.565346 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.3 ms +I, [2018-08-07T13:56:28.565464 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:56:28.565840 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T13:56:28.565912 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:56:28.566193 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-08-07T13:56:28.566233 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:56:28.566746 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T13:56:28.566873 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:56:28.567258 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T13:56:28.567349 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:56:28.567969 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.31 ms +I, [2018-08-07T13:56:28.568018 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:56:28.917879 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T13:56:28.917928 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:56:28.918218 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T13:56:28.918248 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:56:28.918487 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T13:56:28.918516 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:56:28.918793 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T13:56:28.918822 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:56:28.919271 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T13:56:28.919468 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:56:28.919739 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T13:56:28.919769 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:56:28.920017 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T13:56:28.920046 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:56:28.920335 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T13:56:28.920362 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:56:30.569035 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T13:56:30.569086 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:56:30.569342 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T13:56:30.569372 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:56:30.921217 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-08-07T13:56:30.921281 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:56:30.921621 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T13:56:30.921716 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:56:30.922018 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T13:56:30.922050 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:56:30.922323 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T13:56:30.922359 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:56:32.570331 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-08-07T13:56:32.570387 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:56:32.570677 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T13:56:32.570711 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:56:32.570969 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T13:56:32.571614 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:56:32.572016 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T13:56:32.572051 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:56:32.572458 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-08-07T13:56:32.572622 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:56:32.923413 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-08-07T13:56:32.923488 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:56:32.924056 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-08-07T13:56:32.924116 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:56:32.924429 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T13:56:32.924473 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:56:32.924766 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T13:56:32.924801 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:56:32.927404 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.4 ms +I, [2018-08-07T13:56:32.927469 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:56:34.573814 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.33 ms +I, [2018-08-07T13:56:34.573892 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:56:34.574740 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.65 ms +I, [2018-08-07T13:56:34.574810 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:56:34.579159 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-08-07T13:56:34.579221 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:56:34.579750 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.25 ms +I, [2018-08-07T13:56:34.579797 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:56:34.580107 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T13:56:34.580141 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:56:34.927882 #7] INFO -- : Committing offsets: section_change/0:1407 +I, [2018-08-07T13:56:34.947797 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.63 ms +I, [2018-08-07T13:56:34.947866 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:56:34.948339 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T13:56:34.948385 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:56:34.948706 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T13:56:34.948748 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:56:34.952529 #7] INFO -- : Inline processing of topic section_change with 1 messages took 3.51 ms +I, [2018-08-07T13:56:34.952975 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:56:34.954275 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.67 ms +I, [2018-08-07T13:56:34.954326 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:56:34.955526 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.57 ms +I, [2018-08-07T13:56:34.955592 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:56:34.956130 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T13:56:34.956174 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:56:34.956507 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T13:56:34.956552 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:56:34.956978 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T13:56:34.957025 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:56:34.957636 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T13:56:34.957699 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:56:36.580628 #7] INFO -- : Committing offsets: course_change/0:669 +I, [2018-08-07T13:56:36.584500 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.27 ms +I, [2018-08-07T13:56:36.584587 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:56:36.584955 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-08-07T13:56:36.584999 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:56:36.588978 #7] INFO -- : Inline processing of topic course_change with 1 messages took 3.76 ms +I, [2018-08-07T13:56:36.589038 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:56:36.589337 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T13:56:36.589405 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:56:36.589761 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T13:56:36.589796 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:56:36.590145 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T13:56:36.590200 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:56:36.959836 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T13:56:36.959904 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:56:36.960226 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T13:56:36.960276 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:56:36.961067 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.63 ms +I, [2018-08-07T13:56:36.961105 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:56:36.961363 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T13:56:36.961393 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:56:36.961735 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T13:56:36.961768 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:56:36.962044 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T13:56:36.962075 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:56:38.592914 #7] INFO -- : Inline processing of topic course_change with 1 messages took 1.12 ms +I, [2018-08-07T13:56:38.593063 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:56:38.608842 #7] INFO -- : Inline processing of topic course_change with 1 messages took 14.27 ms +I, [2018-08-07T13:56:38.610935 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:56:38.614383 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.7 ms +I, [2018-08-07T13:56:38.614457 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:56:38.963651 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.58 ms +I, [2018-08-07T13:56:38.963750 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:56:38.964452 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T13:56:38.964531 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:56:38.969653 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-08-07T13:56:38.970021 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:56:40.615690 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.5 ms +I, [2018-08-07T13:56:40.615805 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:56:40.983011 #7] INFO -- : Inline processing of topic section_change with 1 messages took 12.46 ms +I, [2018-08-07T13:56:40.987188 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:56:40.988081 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.6 ms +I, [2018-08-07T13:56:40.988128 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:56:42.991975 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.5 ms +I, [2018-08-07T13:56:42.992137 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:56:42.992603 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T13:56:42.992638 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:56:42.993482 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.45 ms +I, [2018-08-07T13:56:42.993521 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:56:44.993853 #7] INFO -- : Committing offsets: section_change/0:1431 +I, [2018-08-07T13:56:45.010440 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.41 ms +I, [2018-08-07T13:56:45.010488 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:56:45.010984 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-08-07T13:56:45.011088 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:56:45.011454 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T13:56:45.011486 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:56:46.617475 #7] INFO -- : Committing offsets: course_change/0:679 +I, [2018-08-07T13:56:46.626057 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.27 ms +I, [2018-08-07T13:56:46.626108 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:56:47.012921 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.67 ms +I, [2018-08-07T13:56:47.013027 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:56:47.013776 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.57 ms +I, [2018-08-07T13:56:47.013829 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:56:47.015294 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.4 ms +I, [2018-08-07T13:56:47.015428 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:56:48.627004 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.23 ms +I, [2018-08-07T13:56:48.627063 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:56:49.016157 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T13:56:49.016245 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:56:49.016794 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T13:56:49.016833 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:56:49.017237 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T13:56:49.017328 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:56:49.017739 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T13:56:49.017773 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:56:49.018069 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T13:56:49.018136 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:56:49.018721 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-08-07T13:56:49.018796 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:56:49.019446 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-08-07T13:56:49.019509 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:56:50.689404 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T13:56:50.689452 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:56:51.021193 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.24 ms +I, [2018-08-07T13:56:51.021246 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:56:51.021694 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T13:56:51.021727 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:56:51.022108 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T13:56:51.022140 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:56:53.024152 #7] INFO -- : Inline processing of topic section_change with 1 messages took 36.1 ms +I, [2018-08-07T13:56:53.024287 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:56:53.027463 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.55 ms +I, [2018-08-07T13:56:53.027540 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:56:53.029039 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.25 ms +I, [2018-08-07T13:56:53.029397 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:56:55.029823 #7] INFO -- : Committing offsets: section_change/0:1450 +I, [2018-08-07T13:56:55.035478 #7] INFO -- : Inline processing of topic section_change with 1 messages took 2.66 ms +I, [2018-08-07T13:56:55.035530 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:56:55.036068 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-08-07T13:56:55.036106 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:56:55.036587 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-08-07T13:56:55.036629 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:56:55.037823 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T13:56:55.037864 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:56:56.656511 #7] INFO -- : Committing offsets: course_change/0:682 +I, [2018-08-07T13:56:56.661924 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.33 ms +I, [2018-08-07T13:56:56.662034 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:56:56.662407 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T13:56:56.662453 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:56:56.662792 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-08-07T13:56:56.662835 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:56:56.663168 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-08-07T13:56:56.663210 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:56:56.663535 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T13:56:56.663627 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:56:57.038731 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-08-07T13:56:57.038785 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:56:57.039145 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T13:56:57.039182 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:56:57.039517 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T13:56:57.039551 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:56:57.039894 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T13:56:57.039925 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:56:57.040256 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T13:56:57.040287 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:56:58.665009 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.23 ms +I, [2018-08-07T13:56:58.665064 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:56:58.665410 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T13:56:58.665446 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:56:58.665687 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T13:56:58.665720 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:56:58.665959 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T13:56:58.665992 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:56:59.041253 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T13:56:59.041304 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:56:59.041767 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-08-07T13:56:59.041850 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:56:59.042117 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T13:56:59.042146 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:56:59.042345 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T13:56:59.042373 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:56:59.042610 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T13:56:59.042639 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:56:59.042868 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T13:56:59.042897 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:56:59.043172 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T13:56:59.043201 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:56:59.043463 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T13:56:59.043492 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:57:00.666770 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-08-07T13:57:00.666820 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:57:00.667049 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T13:57:00.667079 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:57:00.669628 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.65 ms +I, [2018-08-07T13:57:00.669671 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:57:00.669931 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T13:57:00.670005 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:57:00.670196 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T13:57:00.670228 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:57:01.044217 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T13:57:01.044265 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:57:01.044526 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T13:57:01.044555 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:57:01.044802 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T13:57:01.044844 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:57:01.045113 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T13:57:01.045143 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:57:01.045405 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T13:57:01.045434 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:57:01.045717 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T13:57:01.045746 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:57:01.045998 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T13:57:01.046040 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:57:02.671133 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.26 ms +I, [2018-08-07T13:57:02.671191 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:57:02.672243 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T13:57:02.672289 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:57:02.672522 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T13:57:02.672563 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:57:02.672836 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T13:57:02.672872 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:57:02.673155 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T13:57:02.673199 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:57:02.673509 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T13:57:02.673548 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:57:03.046834 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T13:57:03.046889 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:57:03.048015 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.98 ms +I, [2018-08-07T13:57:03.048064 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:57:03.048478 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T13:57:03.048521 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:57:03.048819 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T13:57:03.048850 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:57:03.049107 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T13:57:03.049136 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:57:04.674258 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T13:57:04.674401 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:57:04.674727 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T13:57:04.674767 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:57:04.675068 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T13:57:04.675129 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:57:04.675460 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-08-07T13:57:04.675505 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:57:05.049450 #7] INFO -- : Committing offsets: section_change/0:1479 +I, [2018-08-07T13:57:05.064996 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-08-07T13:57:05.065090 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:57:05.065510 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T13:57:05.065549 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:57:05.065903 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T13:57:05.065938 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:57:05.066243 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T13:57:05.066277 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:57:05.066547 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T13:57:05.066593 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:57:06.675825 #7] INFO -- : Committing offsets: course_change/0:706 +I, [2018-08-07T13:57:06.682492 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.24 ms +I, [2018-08-07T13:57:06.682631 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:57:07.067682 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-08-07T13:57:07.067751 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:57:07.068344 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-08-07T13:57:07.068550 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:57:07.069515 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.61 ms +I, [2018-08-07T13:57:07.069594 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:57:07.070180 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T13:57:07.070238 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:57:07.071581 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.85 ms +I, [2018-08-07T13:57:07.071650 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:57:07.072211 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T13:57:07.072324 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:57:08.683420 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-08-07T13:57:08.683470 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:57:08.683759 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T13:57:08.683803 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:57:08.684215 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T13:57:08.684257 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:57:08.684601 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T13:57:08.684714 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:57:08.685078 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T13:57:08.685116 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:57:09.073012 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T13:57:09.073062 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:57:09.073376 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T13:57:09.073412 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:57:09.073643 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T13:57:09.073673 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:57:09.073964 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T13:57:09.073993 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:57:09.074250 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T13:57:09.074279 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:57:09.075106 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T13:57:09.075152 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:57:09.075411 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T13:57:09.075441 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:57:09.075648 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T13:57:09.075676 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:57:10.686410 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.64 ms +I, [2018-08-07T13:57:10.686658 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:57:10.687191 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.26 ms +I, [2018-08-07T13:57:10.687249 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:57:10.687740 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T13:57:10.687821 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:57:10.688636 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-08-07T13:57:10.688693 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:57:10.689090 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T13:57:10.689155 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:57:10.689650 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T13:57:10.689706 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:57:10.690092 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T13:57:10.690196 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:57:11.076491 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-08-07T13:57:11.076545 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:57:11.076854 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T13:57:11.076889 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:57:11.077187 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T13:57:11.077226 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:57:11.077563 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T13:57:11.078923 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:57:11.079463 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T13:57:11.079502 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:57:11.079766 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T13:57:11.079801 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:57:12.690980 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.26 ms +I, [2018-08-07T13:57:12.691031 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:57:12.691272 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T13:57:12.691321 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:57:12.691536 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T13:57:12.691565 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:57:12.691790 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T13:57:12.691819 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:57:12.692035 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T13:57:12.692081 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:57:12.692287 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T13:57:12.692321 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:57:12.692533 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-08-07T13:57:12.692577 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:57:12.692797 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T13:57:12.692832 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:57:13.082303 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.83 ms +I, [2018-08-07T13:57:13.082441 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:57:13.082968 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T13:57:13.083042 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:57:13.083531 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T13:57:13.083571 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:57:13.086637 #7] INFO -- : Inline processing of topic section_change with 1 messages took 2.87 ms +I, [2018-08-07T13:57:13.086696 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:57:13.087053 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T13:57:13.087084 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:57:13.087429 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T13:57:13.087465 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:57:14.695200 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.61 ms +I, [2018-08-07T13:57:14.695279 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:57:14.695720 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-08-07T13:57:14.695826 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:57:15.095872 #7] INFO -- : Committing offsets: section_change/0:1510 +I, [2018-08-07T13:57:15.555600 #7] INFO -- : Inline processing of topic section_change with 1 messages took 2.37 ms +I, [2018-08-07T13:57:15.555678 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:57:15.556564 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T13:57:15.556840 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:57:15.557488 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T13:57:15.557543 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:57:16.696255 #7] INFO -- : Committing offsets: course_change/0:729 +I, [2018-08-07T13:57:16.704956 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T13:57:16.705006 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:57:16.707832 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T13:57:16.707874 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:57:16.708097 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T13:57:16.708127 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:57:17.558803 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-08-07T13:57:17.558853 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:57:17.559257 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T13:57:17.559296 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:57:17.559583 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T13:57:17.559628 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:57:17.559915 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T13:57:17.559946 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:57:17.560169 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T13:57:17.560207 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:57:17.560436 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T13:57:17.563008 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:57:17.563624 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T13:57:17.563681 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:57:17.564021 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T13:57:17.564055 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:57:17.564335 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T13:57:17.564369 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:57:17.564649 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T13:57:17.564681 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:57:17.604046 #7] INFO -- : Inline processing of topic section_change with 1 messages took 2.19 ms +I, [2018-08-07T13:57:17.604145 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:57:17.604582 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T13:57:17.604630 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:57:17.605016 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T13:57:17.605061 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:57:17.605402 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T13:57:17.605452 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:57:17.605853 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T13:57:17.605900 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:57:17.606176 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T13:57:17.606285 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:57:17.606596 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T13:57:17.606634 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:57:17.606949 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T13:57:17.606987 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:57:17.607294 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T13:57:17.607333 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:57:17.616686 #7] INFO -- : Inline processing of topic section_change with 1 messages took 9.19 ms +I, [2018-08-07T13:57:17.616763 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:57:17.617092 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T13:57:17.617123 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:57:17.617360 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T13:57:17.617390 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:57:17.617637 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T13:57:17.617669 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:57:17.617892 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T13:57:17.617921 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:57:17.618138 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T13:57:17.618166 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:57:17.618388 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T13:57:17.618419 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:57:17.618638 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T13:57:17.618667 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:57:17.618912 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T13:57:17.618941 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:57:17.619277 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T13:57:17.619325 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:57:17.619663 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T13:57:17.619707 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:57:17.620040 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T13:57:17.620085 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:57:17.620384 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T13:57:17.620428 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:57:17.620731 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T13:57:17.630063 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:57:17.631152 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.62 ms +I, [2018-08-07T13:57:17.631247 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:57:17.631582 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T13:57:17.633259 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:57:17.633704 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T13:57:17.633765 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:57:17.658414 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-08-07T13:57:17.658474 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:57:17.659012 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T13:57:17.659068 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:57:17.659391 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T13:57:17.659424 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:57:17.659782 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T13:57:17.659822 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:57:17.660104 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T13:57:17.660143 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:57:18.708821 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-08-07T13:57:18.709002 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:57:18.709462 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T13:57:18.709508 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:57:19.661060 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-08-07T13:57:19.661119 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:57:19.661400 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T13:57:19.661430 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:57:19.661657 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T13:57:19.661684 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:57:19.662027 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T13:57:19.662098 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:57:19.662399 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T13:57:19.662431 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:57:19.662663 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T13:57:19.662693 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:57:19.662923 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T13:57:19.662952 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:57:19.663171 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T13:57:19.663201 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:57:19.663385 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-08-07T13:57:19.663448 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:57:19.663649 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-08-07T13:57:19.663678 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:57:19.663902 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T13:57:19.663932 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:57:19.664149 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T13:57:19.664178 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:57:19.664609 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T13:57:19.664645 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:57:19.664875 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T13:57:19.664934 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:57:19.665323 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T13:57:19.665359 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:57:19.665729 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T13:57:19.665825 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:57:19.666076 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T13:57:19.666107 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:57:19.666336 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T13:57:19.666366 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:57:19.666920 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T13:57:19.667059 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:57:19.668598 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.4 ms +I, [2018-08-07T13:57:19.668648 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:57:19.669306 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.44 ms +I, [2018-08-07T13:57:19.669381 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:57:19.669767 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T13:57:19.669801 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:57:19.670075 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T13:57:19.670105 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:57:19.670322 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T13:57:19.683210 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:57:19.684945 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.76 ms +I, [2018-08-07T13:57:19.685008 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:57:19.687296 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.51 ms +I, [2018-08-07T13:57:19.699275 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:57:19.700028 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-08-07T13:57:19.700069 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:57:19.700319 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T13:57:19.700349 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:57:19.701149 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T13:57:19.701199 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:57:19.701604 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T13:57:19.701651 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:57:19.701974 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T13:57:19.702017 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:57:19.702423 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T13:57:19.702501 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:57:19.702829 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T13:57:19.702985 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:57:19.703224 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T13:57:19.703253 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:57:19.703518 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T13:57:19.703559 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:57:19.704530 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.72 ms +I, [2018-08-07T13:57:19.704573 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:57:19.704836 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T13:57:19.704867 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:57:19.705086 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T13:57:19.705183 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:57:19.705413 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T13:57:19.705442 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:57:19.705707 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T13:57:19.705751 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:57:19.706127 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T13:57:19.706169 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:57:19.711313 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T13:57:19.711380 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:57:19.712071 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T13:57:19.712118 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:57:19.712452 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T13:57:19.712614 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:57:19.712930 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T13:57:19.712967 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:57:19.713249 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T13:57:19.713360 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:57:19.713648 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T13:57:19.713685 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:57:19.713958 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T13:57:19.713994 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:57:19.714460 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T13:57:19.714508 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:57:19.715062 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-08-07T13:57:19.715154 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:57:19.715585 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T13:57:19.715707 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:57:19.716110 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T13:57:19.716161 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:57:19.716573 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T13:57:19.716620 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:57:19.717347 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-08-07T13:57:19.717398 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:57:19.723961 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-08-07T13:57:19.724027 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:57:19.728036 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T13:57:19.728109 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:57:19.731942 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-08-07T13:57:19.732057 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:57:19.732515 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T13:57:19.732576 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:57:19.733003 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T13:57:19.733063 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:57:19.733402 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T13:57:19.733453 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:57:19.734055 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T13:57:19.734133 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:57:19.734603 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T13:57:19.734682 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:57:19.735073 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T13:57:19.735596 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:57:19.740745 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.71 ms +I, [2018-08-07T13:57:19.740868 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:57:19.742281 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.71 ms +I, [2018-08-07T13:57:19.748617 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:57:19.752113 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.48 ms +I, [2018-08-07T13:57:19.752249 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:57:20.710228 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-08-07T13:57:20.710289 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:57:20.710542 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T13:57:20.710573 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:57:20.710966 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T13:57:20.711061 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:57:21.760708 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-08-07T13:57:21.760903 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:57:21.762530 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.36 ms +I, [2018-08-07T13:57:21.762589 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:57:21.762995 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T13:57:21.763040 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:57:21.763407 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T13:57:21.763454 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:57:21.763806 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T13:57:21.763851 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:57:21.764218 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T13:57:21.764268 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:57:21.767246 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.73 ms +I, [2018-08-07T13:57:21.767487 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:57:21.781367 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.51 ms +I, [2018-08-07T13:57:21.781457 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:57:21.781816 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T13:57:21.781851 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:57:21.782268 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-08-07T13:57:21.782302 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:57:22.716287 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T13:57:22.716365 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:57:23.752967 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.61 ms +I, [2018-08-07T13:57:23.753025 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:57:23.753496 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T13:57:23.753528 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:57:25.753796 #7] INFO -- : Committing offsets: section_change/0:1632 +I, [2018-08-07T13:57:25.757359 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-08-07T13:57:25.757425 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:57:25.757802 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T13:57:25.757886 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:57:25.758321 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-08-07T13:57:25.758690 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:57:27.759720 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-08-07T13:57:27.759773 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:57:27.760222 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T13:57:27.760259 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:57:28.687857 #7] INFO -- : Committing offsets: course_change/0:738 +I, [2018-08-07T13:57:29.760998 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-08-07T13:57:29.761075 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:57:29.761465 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T13:57:29.761499 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:57:29.761923 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T13:57:29.761973 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:57:31.763214 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.54 ms +I, [2018-08-07T13:57:31.763308 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:57:31.764178 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-08-07T13:57:31.764220 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:57:33.764975 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-08-07T13:57:33.765023 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:57:33.765403 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T13:57:33.765434 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:57:35.765815 #7] INFO -- : Committing offsets: section_change/0:1644 +I, [2018-08-07T13:57:35.769584 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-08-07T13:57:35.769631 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:57:35.770062 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T13:57:35.770093 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:57:37.770948 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-08-07T13:57:37.771033 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:57:37.771315 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T13:57:37.771344 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:57:37.771637 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T13:57:37.771668 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:57:37.772068 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-08-07T13:57:37.772153 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:57:37.773416 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T13:57:37.773488 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:57:38.694121 #7] INFO -- : Committing offsets: course_change/0:738 +I, [2018-08-07T13:57:39.774371 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-08-07T13:57:39.774420 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:57:39.774768 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T13:57:39.774799 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:57:39.775130 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T13:57:39.775160 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:57:40.699016 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T13:57:40.699068 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:57:41.776107 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-08-07T13:57:41.776159 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:57:41.776608 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T13:57:41.776652 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:57:41.777058 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T13:57:41.777093 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:57:41.779162 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.85 ms +I, [2018-08-07T13:57:41.779232 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:57:41.779544 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T13:57:41.779575 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:57:42.699914 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T13:57:42.699968 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:57:43.780628 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-08-07T13:57:43.780676 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:57:43.781042 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T13:57:43.781073 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:57:43.781369 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T13:57:43.781487 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:57:43.782209 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-08-07T13:57:43.782240 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:57:45.782632 #7] INFO -- : Committing offsets: section_change/0:1663 +I, [2018-08-07T13:57:45.791103 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.46 ms +I, [2018-08-07T13:57:45.791171 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:57:45.791592 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T13:57:45.791630 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:57:45.791966 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T13:57:45.792000 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:57:45.792302 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T13:57:45.792333 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:57:45.792633 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T13:57:45.792667 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:57:47.793483 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T13:57:47.793532 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:57:47.793820 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T13:57:47.793851 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:57:47.794197 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T13:57:47.794269 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:57:47.794543 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T13:57:47.794573 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:57:47.794916 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T13:57:47.794954 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:57:48.701383 #7] INFO -- : Committing offsets: course_change/0:740 +I, [2018-08-07T13:57:49.796217 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T13:57:49.796266 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:57:49.796582 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T13:57:49.796655 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:57:49.796994 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T13:57:49.797024 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:57:51.959910 #7] INFO -- : Inline processing of topic section_change with 1 messages took 7.42 ms +I, [2018-08-07T13:57:51.960270 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:57:51.983390 #7] INFO -- : Inline processing of topic section_change with 1 messages took 22.68 ms +I, [2018-08-07T13:57:51.989779 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:57:52.706557 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.66 ms +I, [2018-08-07T13:57:52.706610 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:57:52.707125 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.33 ms +I, [2018-08-07T13:57:52.707163 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:57:53.951602 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-08-07T13:57:53.951650 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:57:53.952430 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.6 ms +I, [2018-08-07T13:57:53.952599 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:57:55.953003 #7] INFO -- : Committing offsets: section_change/0:1680 +I, [2018-08-07T13:57:55.959992 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.7 ms +I, [2018-08-07T13:57:55.960062 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:57:55.961557 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T13:57:55.961632 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:57:57.962496 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-08-07T13:57:57.962545 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:57:57.962917 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T13:57:57.962947 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:57:57.963266 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T13:57:57.963297 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:57:59.964399 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.47 ms +I, [2018-08-07T13:57:59.964453 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:57:59.965024 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-08-07T13:57:59.965067 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:57:59.965665 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.44 ms +I, [2018-08-07T13:57:59.965698 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:57:59.966262 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.4 ms +I, [2018-08-07T13:57:59.966311 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:58:00.670004 #7] INFO -- : Committing offsets: course_change/0:742 +I, [2018-08-07T13:58:01.967373 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-08-07T13:58:01.967424 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:58:01.969559 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.97 ms +I, [2018-08-07T13:58:01.969611 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:58:03.970417 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-08-07T13:58:03.970467 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:58:03.970807 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T13:58:03.970838 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:58:03.971157 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T13:58:03.971187 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:58:03.971533 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T13:58:03.971585 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:58:05.971843 #7] INFO -- : Committing offsets: section_change/0:1695 +I, [2018-08-07T13:58:05.974736 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T13:58:05.974780 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:58:05.975055 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T13:58:05.975085 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:58:05.975333 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T13:58:05.975362 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:58:05.975640 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T13:58:05.975670 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:58:05.975873 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T13:58:05.975901 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:58:05.976212 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T13:58:05.976242 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:58:06.682732 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.27 ms +I, [2018-08-07T13:58:06.682835 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:58:06.683256 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-08-07T13:58:06.683306 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:58:06.683677 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T13:58:06.683727 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:58:06.684030 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T13:58:06.684063 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:58:07.976947 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T13:58:07.977038 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:58:07.977407 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T13:58:07.977437 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:58:07.977692 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T13:58:07.977722 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:58:07.978004 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T13:58:07.978033 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:58:07.978274 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T13:58:07.978303 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:58:07.978557 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T13:58:07.978585 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:58:08.684977 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.23 ms +I, [2018-08-07T13:58:08.685027 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:58:08.685282 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T13:58:08.685312 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:58:08.685630 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T13:58:08.685666 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:58:08.685879 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-08-07T13:58:08.685909 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:58:08.686239 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-08-07T13:58:08.686281 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:58:08.686472 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T13:58:08.687340 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:58:09.979403 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T13:58:09.979476 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:58:09.979923 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T13:58:09.979970 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:58:09.980382 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T13:58:09.981911 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:58:09.982422 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T13:58:09.982537 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:58:09.982858 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T13:58:09.982890 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:58:09.983181 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T13:58:09.983210 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:58:09.983501 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T13:58:09.983550 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:58:10.687609 #7] INFO -- : Committing offsets: course_change/0:752 +I, [2018-08-07T13:58:10.691847 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T13:58:10.691893 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:58:10.692309 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T13:58:10.692346 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:58:10.692629 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T13:58:10.692687 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:58:10.692964 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T13:58:10.692996 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:58:10.693286 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T13:58:10.693360 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:58:11.985049 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.04 ms +I, [2018-08-07T13:58:11.985383 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:58:11.986003 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T13:58:11.986111 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:58:11.986743 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.41 ms +I, [2018-08-07T13:58:11.986829 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:58:11.987743 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-08-07T13:58:11.987886 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:58:12.694222 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-08-07T13:58:12.694295 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:58:12.694652 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T13:58:12.694700 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:58:12.694970 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T13:58:12.695005 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:58:12.695237 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T13:58:12.695269 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:58:12.695539 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T13:58:12.695572 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:58:12.695836 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T13:58:12.695869 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:58:13.988743 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T13:58:13.988791 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:58:13.989111 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T13:58:13.989141 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:58:13.989358 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-08-07T13:58:13.989386 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:58:13.989629 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T13:58:13.989658 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:58:13.989844 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-08-07T13:58:13.989895 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:58:13.990103 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-08-07T13:58:13.990131 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:58:13.990321 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T13:58:13.990349 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:58:13.990549 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T13:58:13.990577 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:58:13.990827 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T13:58:13.990856 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:58:13.991071 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-08-07T13:58:13.991099 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:58:13.991368 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T13:58:13.991398 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:58:13.992820 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T13:58:13.992882 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:58:13.993075 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-08-07T13:58:13.993130 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:58:13.993342 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-08-07T13:58:13.996004 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:58:13.996511 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T13:58:13.996598 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:58:13.997093 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-08-07T13:58:13.997145 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:58:13.997375 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T13:58:13.997447 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:58:13.997734 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T13:58:13.997783 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:58:13.998146 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T13:58:13.998196 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:58:13.998640 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T13:58:13.998714 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:58:13.999106 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T13:58:13.999156 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:58:13.999696 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T13:58:13.999765 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:58:14.000029 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T13:58:14.000060 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:58:14.000260 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T13:58:14.000289 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:58:14.000499 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-08-07T13:58:14.000527 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:58:14.000739 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T13:58:14.000769 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:58:14.001011 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-08-07T13:58:14.001041 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:58:14.001743 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T13:58:14.001781 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:58:14.002052 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T13:58:14.002090 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:58:14.002417 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T13:58:14.002448 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:58:14.002670 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T13:58:14.002699 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:58:14.002905 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T13:58:14.002999 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:58:14.003261 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T13:58:14.003290 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:58:14.003927 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.52 ms +I, [2018-08-07T13:58:14.003965 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:58:14.696720 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.23 ms +I, [2018-08-07T13:58:14.696792 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:58:14.697164 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T13:58:14.697213 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:58:14.697558 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T13:58:14.698062 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:58:14.698468 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T13:58:14.698518 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:58:14.699198 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.48 ms +I, [2018-08-07T13:58:14.699251 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:58:14.699637 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T13:58:14.699681 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:58:16.004278 #7] INFO -- : Committing offsets: section_change/0:1752 +I, [2018-08-07T13:58:16.007636 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T13:58:16.007681 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:58:16.008112 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T13:58:16.008224 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:58:16.008791 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T13:58:16.008825 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:58:16.009398 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-08-07T13:58:16.009549 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:58:16.700396 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T13:58:16.700446 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:58:16.700782 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T13:58:16.700817 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:58:16.701048 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T13:58:16.701077 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:58:16.701342 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T13:58:16.701372 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:58:16.701601 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T13:58:16.701630 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:58:18.010272 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-08-07T13:58:18.010770 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:58:18.011098 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T13:58:18.011203 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:58:18.011505 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T13:58:18.011535 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:58:18.011824 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T13:58:18.011854 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:58:18.012147 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T13:58:18.012177 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:58:18.012459 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T13:58:18.012489 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:58:18.012787 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T13:58:18.012819 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:58:18.702264 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T13:58:18.702315 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:58:18.702566 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T13:58:18.702597 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:58:18.702819 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T13:58:18.702849 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:58:20.014215 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T13:58:20.014305 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:58:20.014602 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T13:58:20.014632 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:58:20.014895 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T13:58:20.014925 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:58:20.015251 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T13:58:20.015282 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:58:20.015672 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T13:58:20.015703 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:58:20.015958 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T13:58:20.015987 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:58:20.703314 #7] INFO -- : Committing offsets: course_change/0:777 +I, [2018-08-07T13:58:20.708692 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.29 ms +I, [2018-08-07T13:58:20.708822 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:58:20.709297 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-08-07T13:58:20.709338 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:58:20.709725 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.24 ms +I, [2018-08-07T13:58:20.709774 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:58:22.016846 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.41 ms +I, [2018-08-07T13:58:22.016899 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:58:22.017212 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T13:58:22.017250 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:58:22.017640 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T13:58:22.017671 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:58:22.017989 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T13:58:22.019567 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:58:22.020012 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T13:58:22.020055 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:58:22.710531 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T13:58:22.710581 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:58:23.988174 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.53 ms +I, [2018-08-07T13:58:23.988247 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:58:23.988830 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-08-07T13:58:23.988866 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:58:23.989309 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T13:58:23.989345 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:58:23.989739 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T13:58:23.989772 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:58:23.990020 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T13:58:23.990074 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:58:24.678321 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.34 ms +I, [2018-08-07T13:58:24.678379 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:58:24.678656 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T13:58:24.678687 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:58:24.678907 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T13:58:24.678936 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:58:24.679151 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T13:58:24.679180 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:58:25.990946 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T13:58:25.990995 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:58:25.991475 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-08-07T13:58:25.991522 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:58:25.991994 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T13:58:26.000045 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:58:26.680057 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-08-07T13:58:26.680115 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:58:28.001303 #7] INFO -- : Committing offsets: section_change/0:1782 +I, [2018-08-07T13:58:28.005407 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T13:58:28.005481 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:58:28.005773 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T13:58:28.005803 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:58:28.006118 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T13:58:28.006148 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:58:28.006412 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T13:58:28.006443 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:58:28.680844 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T13:58:28.680917 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:58:28.681120 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-08-07T13:58:28.681149 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:58:28.681399 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T13:58:28.681428 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:58:28.681638 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T13:58:28.681669 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:58:30.007488 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-08-07T13:58:30.007549 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:58:30.008021 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T13:58:30.008067 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:58:30.008506 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T13:58:30.008544 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:58:30.008867 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T13:58:30.008901 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:58:30.682372 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.24 ms +I, [2018-08-07T13:58:30.682422 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:58:30.682677 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T13:58:30.682707 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:58:30.682921 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T13:58:30.682950 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:58:30.684461 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T13:58:30.684497 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:58:30.684722 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T13:58:30.684751 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:58:30.684960 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-08-07T13:58:30.684989 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:58:32.009749 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-08-07T13:58:32.009800 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:58:32.010136 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T13:58:32.010202 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:58:32.010595 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T13:58:32.010630 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:58:32.010980 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T13:58:32.011021 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:58:32.011344 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T13:58:32.011395 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:58:32.011651 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T13:58:32.011679 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:58:32.011968 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T13:58:32.012014 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:58:32.685404 #7] INFO -- : Committing offsets: course_change/0:796 +I, [2018-08-07T13:58:32.689445 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-08-07T13:58:32.689496 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:58:32.689772 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T13:58:32.689807 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:58:32.690102 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T13:58:32.690138 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:58:32.690373 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T13:58:32.690406 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:58:34.013574 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T13:58:34.013622 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:58:34.013977 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T13:58:34.014008 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:58:34.014272 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T13:58:34.014301 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:58:34.014621 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T13:58:34.014651 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:58:34.014936 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T13:58:34.014965 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:58:34.691537 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-08-07T13:58:34.692197 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:58:34.692529 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T13:58:34.692562 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:58:34.692808 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T13:58:34.692838 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:58:34.693055 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T13:58:34.693083 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:58:34.693295 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T13:58:34.693323 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:58:34.693535 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T13:58:34.693594 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:58:36.015664 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T13:58:36.015713 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:58:36.015936 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T13:58:36.015970 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:58:36.016222 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T13:58:36.016251 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:58:36.016509 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T13:58:36.016538 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:58:36.016766 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T13:58:36.016796 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:58:36.017011 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T13:58:36.018252 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:58:36.018708 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T13:58:36.018758 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:58:36.694292 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T13:58:36.694342 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:58:36.694578 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T13:58:36.694607 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:58:36.694877 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T13:58:36.694911 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:58:36.695118 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T13:58:36.695147 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:58:36.695355 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T13:58:36.695383 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:58:36.695574 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T13:58:36.695602 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:58:38.019415 #7] INFO -- : Committing offsets: section_change/0:1809 +I, [2018-08-07T13:58:38.022473 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T13:58:38.022518 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:58:38.022784 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T13:58:38.022814 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:58:38.023091 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T13:58:38.023153 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:58:38.023376 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T13:58:38.023405 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:58:38.023625 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T13:58:38.023654 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:58:38.023870 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T13:58:38.023899 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:58:38.024143 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T13:58:38.024229 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:58:38.024508 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T13:58:38.024583 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:58:38.024827 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T13:58:38.024858 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T13:58:38.696360 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-08-07T13:58:38.696410 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:58:38.696640 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T13:58:38.696670 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:58:38.696903 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T13:58:38.696934 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:58:38.697147 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T13:58:38.697176 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:58:38.697369 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-08-07T13:58:38.697397 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:58:38.697611 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T13:58:38.697644 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:58:38.697859 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T13:58:38.697887 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:58:38.698099 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T13:58:38.698127 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T13:58:40.025720 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-08-07T14:12:49.811944 #7] INFO -- : New topics added to target list: course_change +I, [2018-08-07T14:12:49.812123 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T14:12:49.832838 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T14:12:49.833043 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +I, [2018-08-07T14:12:49.833334 #7] INFO -- : New topics added to target list: section_change +I, [2018-08-07T14:12:49.833377 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T14:12:49.840043 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T14:12:49.840384 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T14:12:54.801226 #7] 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.14:9094 +I, [2018-08-07T14:12:54.805429 #7] INFO -- : New topics added to target list: course_change +I, [2018-08-07T14:12:54.805520 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T14:12:54.813017 #7] 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.14:9094 +I, [2018-08-07T14:12:54.817558 #7] INFO -- : New topics added to target list: section_change +I, [2018-08-07T14:12:54.817634 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T14:12:54.836840 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T14:12:54.836992 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T14:12:54.845555 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T14:12:54.845651 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T14:12:59.838621 #7] 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.14:9094 +I, [2018-08-07T14:12:59.842359 #7] INFO -- : New topics added to target list: course_change +I, [2018-08-07T14:12:59.842525 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T14:12:59.848056 #7] 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.14:9094 +I, [2018-08-07T14:12:59.859763 #7] INFO -- : New topics added to target list: section_change +I, [2018-08-07T14:12:59.859993 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T14:12:59.892030 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T14:12:59.892350 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T14:12:59.892630 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T14:12:59.893112 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T14:13:04.909917 #7] 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.14:9094 +I, [2018-08-07T14:13:04.913924 #7] INFO -- : New topics added to target list: section_change +I, [2018-08-07T14:13:04.914026 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T14:13:04.918009 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T14:13:04.918438 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T14:13:04.909683 #7] 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.14:9094 +I, [2018-08-07T14:13:04.919958 #7] INFO -- : New topics added to target list: course_change +I, [2018-08-07T14:13:04.919997 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T14:13:04.936534 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T14:13:04.936687 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T14:13:09.920080 #7] 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.14:9094 +I, [2018-08-07T14:13:09.943791 #7] INFO -- : New topics added to target list: section_change +I, [2018-08-07T14:13:09.944088 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T14:13:09.953169 #7] 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.14:9094 +I, [2018-08-07T14:13:09.973827 #7] INFO -- : New topics added to target list: course_change +I, [2018-08-07T14:13:09.973937 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T14:13:09.994119 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T14:13:09.994585 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T14:13:10.002335 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T14:13:10.002615 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T14:13:15.004972 #7] 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.14:9094 +E, [2018-08-07T14:13:15.013266 #7] 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.14:9094 +I, [2018-08-07T14:13:15.018513 #7] INFO -- : New topics added to target list: course_change +I, [2018-08-07T14:13:15.018635 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T14:13:15.025459 #7] INFO -- : New topics added to target list: section_change +I, [2018-08-07T14:13:15.025533 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T14:13:15.029242 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T14:13:15.029362 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T14:13:15.033135 #7] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T14:13:15.033268 #7] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.14:9094 +E, [2018-08-07T14:13:20.048287 #7] 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.14:9094 +I, [2018-08-07T14:13:20.056071 #7] INFO -- : New topics added to target list: section_change +I, [2018-08-07T14:13:20.056368 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T14:13:20.056551 #7] 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.14:9094 +I, [2018-08-07T14:13:20.108291 #7] INFO -- : New topics added to target list: course_change +I, [2018-08-07T14:13:20.121371 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-08-07T14:13:21.862737 #7] ERROR -- : No brokers in cluster +E, [2018-08-07T14:13:21.872596 #7] ERROR -- : No brokers in cluster +E, [2018-08-07T14:13:26.843314 #7] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: + +E, [2018-08-07T14:13:26.863525 #7] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: + +I, [2018-08-07T14:13:26.879100 #7] INFO -- : New topics added to target list: course_change +I, [2018-08-07T14:13:26.879495 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T14:13:26.882774 #7] INFO -- : New topics added to target list: section_change +I, [2018-08-07T14:13:26.882859 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T14:13:27.223001 #7] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-07T14:13:27.225287 #7] INFO -- : Joining group `notifications_course_change` +I, [2018-08-07T14:13:27.286050 #7] INFO -- : Will fetch at most 1048576 bytes at a time per partition from course_change +I, [2018-08-07T14:13:27.286616 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T14:13:27.303546 #7] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-07T14:13:27.303814 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T14:13:27.303933 #7] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-07T14:13:27.304135 #7] INFO -- : Joining group `notifications_notifications` +I, [2018-08-07T14:13:27.364027 #7] INFO -- : Will fetch at most 1048576 bytes at a time per partition from section_change +I, [2018-08-07T14:13:27.364641 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T14:13:27.371112 #7] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-07T14:13:27.371335 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T14:13:28.304155 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T14:13:28.371617 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T14:13:29.304485 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T14:13:29.372160 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T14:13:30.304859 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T14:13:30.372840 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T14:13:31.305238 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T14:13:31.373225 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T14:13:32.305634 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T14:13:32.374001 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T14:13:33.286062 #7] INFO -- : Joined group `notifications_course_change` with member id `notifications-80cb5c27-a8dd-43e1-a47c-ee171c8bde50` +I, [2018-08-07T14:13:33.286348 #7] INFO -- : Chosen as leader of group `notifications_course_change` +I, [2018-08-07T14:13:33.306029 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T14:13:33.328332 #7] INFO -- : Joined group `notifications_notifications` with member id `notifications-4836fc30-d9bb-4fd4-ba0f-c49635bc45bf` +I, [2018-08-07T14:13:33.328403 #7] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-08-07T14:13:33.374360 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T14:13:34.290024 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T14:13:34.294977 #7] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-07T14:13:34.306633 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T14:13:34.329214 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T14:13:34.335028 #7] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-07T14:13:34.374698 #7] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-08-07T14:13:34.510951 #7] INFO -- : Partitions assigned for `course_change`: 0 +I, [2018-08-07T14:13:34.512804 #7] INFO -- : Partitions assigned for `section_change`: 0 +I, [2018-08-07T14:13:35.312735 #7] INFO -- : Seeking course_change/0 to offset 0 +I, [2018-08-07T14:13:35.313392 #7] INFO -- : New topics added to target list: course_change +I, [2018-08-07T14:13:35.313496 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T14:13:35.339046 #7] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-07T14:13:35.378283 #7] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-08-07T14:13:35.378748 #7] INFO -- : New topics added to target list: section_change +I, [2018-08-07T14:13:35.378800 #7] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-08-07T14:13:35.424872 #7] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-08-07T14:14:05.887060 #7] INFO -- : Inline processing of topic course_change with 1 messages took 259.3 ms +I, [2018-08-07T14:14:05.887754 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:14:05.910015 #7] INFO -- : Committing offsets with recommit: course_change/0:1 +I, [2018-08-07T14:14:06.820367 #7] INFO -- : Inline processing of topic section_change with 1 messages took 7.37 ms +I, [2018-08-07T14:14:06.820473 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:14:06.820557 #7] INFO -- : Committing offsets with recommit: section_change/0:1 +I, [2018-08-07T14:14:06.851790 #7] INFO -- : Inline processing of topic section_change with 1 messages took 13.18 ms +I, [2018-08-07T14:14:06.851878 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:14:06.872731 #7] INFO -- : Inline processing of topic section_change with 1 messages took 18.61 ms +I, [2018-08-07T14:14:06.872822 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:14:06.890259 #7] INFO -- : Inline processing of topic section_change with 1 messages took 8.84 ms +I, [2018-08-07T14:14:06.894172 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:14:08.808981 #7] INFO -- : Inline processing of topic course_change with 1 messages took 10.63 ms +I, [2018-08-07T14:14:08.809103 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:14:08.810958 #7] INFO -- : Inline processing of topic course_change with 1 messages took 1.54 ms +I, [2018-08-07T14:14:08.811041 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:14:08.899784 #7] INFO -- : Inline processing of topic section_change with 1 messages took 4.81 ms +I, [2018-08-07T14:14:08.905719 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:14:08.923474 #7] INFO -- : Inline processing of topic section_change with 1 messages took 17.41 ms +I, [2018-08-07T14:14:08.923561 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:14:08.956288 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-08-07T14:14:08.956365 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:14:08.957732 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T14:14:08.958689 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:14:09.043647 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T14:14:09.052681 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:14:09.055012 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T14:14:09.056969 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:14:09.058239 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T14:14:09.058334 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:14:09.058802 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T14:14:09.066542 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:14:09.068531 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.66 ms +I, [2018-08-07T14:14:09.068596 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:14:09.069520 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.59 ms +I, [2018-08-07T14:14:09.069642 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:14:09.081273 #7] INFO -- : Inline processing of topic section_change with 1 messages took 11.36 ms +I, [2018-08-07T14:14:09.081369 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:14:09.088273 #7] INFO -- : Inline processing of topic section_change with 1 messages took 6.63 ms +I, [2018-08-07T14:14:09.088345 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:14:10.813593 #7] INFO -- : Inline processing of topic course_change with 1 messages took 1.08 ms +I, [2018-08-07T14:14:10.813687 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:14:10.815581 #7] INFO -- : Inline processing of topic course_change with 1 messages took 1.49 ms +I, [2018-08-07T14:14:10.815650 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:14:10.823514 #7] INFO -- : Inline processing of topic course_change with 1 messages took 7.6 ms +I, [2018-08-07T14:14:10.823592 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:14:10.824456 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-08-07T14:14:10.824980 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:14:10.825503 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.28 ms +I, [2018-08-07T14:14:10.825560 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:14:10.826154 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-08-07T14:14:10.826209 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:14:11.089762 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.56 ms +I, [2018-08-07T14:14:11.089844 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:14:11.090479 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-08-07T14:14:11.090599 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:14:11.091127 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-08-07T14:14:11.091182 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:14:11.092045 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.64 ms +I, [2018-08-07T14:14:11.092116 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:14:11.092879 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.4 ms +I, [2018-08-07T14:14:11.092947 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:14:11.093584 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.4 ms +I, [2018-08-07T14:14:11.093644 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:14:11.099273 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-08-07T14:14:11.099366 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:14:11.099909 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T14:14:11.099954 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:14:11.100299 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T14:14:11.100336 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:14:11.100650 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T14:14:11.100721 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:14:11.101003 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T14:14:11.101037 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:14:11.101401 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T14:14:11.101436 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:14:11.101745 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T14:14:11.101805 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:14:11.102129 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T14:14:11.102160 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:14:11.102484 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T14:14:11.114283 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:14:11.114839 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T14:14:11.114887 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:14:11.115303 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T14:14:11.115381 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:14:11.115906 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-08-07T14:14:11.116337 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:14:11.153380 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T14:14:11.153449 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:14:13.109229 #7] INFO -- : Inline processing of topic course_change with 1 messages took 241.57 ms +I, [2018-08-07T14:14:13.109294 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:14:13.110243 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.74 ms +I, [2018-08-07T14:14:13.110307 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:14:13.110588 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T14:14:13.110620 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:14:13.110820 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-08-07T14:14:13.110850 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:14:13.118234 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.28 ms +I, [2018-08-07T14:14:13.120217 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:14:13.121260 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T14:14:13.121301 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:14:13.121512 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-08-07T14:14:13.121542 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:14:13.159559 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-08-07T14:14:13.159641 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:14:13.167132 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T14:14:13.167186 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:14:13.170297 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T14:14:13.170413 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:14:13.170749 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T14:14:13.170797 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:14:13.171300 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T14:14:13.176568 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:14:13.177055 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T14:14:13.177094 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:14:13.193864 #7] INFO -- : Inline processing of topic section_change with 1 messages took 16.54 ms +I, [2018-08-07T14:14:13.193950 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:14:13.194428 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T14:14:13.194479 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:14:13.196639 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.95 ms +I, [2018-08-07T14:14:13.196709 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:14:13.197113 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T14:14:13.197171 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:14:13.198396 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.03 ms +I, [2018-08-07T14:14:13.198443 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:14:13.198723 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T14:14:13.198771 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:14:13.204985 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T14:14:13.205034 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:14:13.205290 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T14:14:13.205322 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:14:13.206459 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T14:14:13.206501 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:14:15.122396 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.27 ms +I, [2018-08-07T14:14:15.122466 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:14:15.122879 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T14:14:15.122926 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:14:15.123236 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T14:14:15.123281 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:14:15.123585 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T14:14:15.123630 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:14:15.125990 #7] INFO -- : Inline processing of topic course_change with 1 messages took 2.05 ms +I, [2018-08-07T14:14:15.126073 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:14:15.126445 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T14:14:15.126477 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:14:15.126730 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T14:14:15.126760 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:14:15.126989 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T14:14:15.127018 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:14:15.127205 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T14:14:15.127248 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:14:15.127446 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-08-07T14:14:15.127508 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:14:15.134276 #7] INFO -- : Inline processing of topic course_change with 1 messages took 6.64 ms +I, [2018-08-07T14:14:15.134343 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:14:15.208816 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.29 ms +I, [2018-08-07T14:14:15.208980 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:14:15.210693 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.85 ms +I, [2018-08-07T14:14:15.211131 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:14:15.217691 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.04 ms +I, [2018-08-07T14:14:15.217759 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:14:15.218199 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T14:14:15.218241 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:14:15.218668 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T14:14:15.218857 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:14:15.219410 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T14:14:15.225272 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:14:15.240320 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.18 ms +I, [2018-08-07T14:14:15.240404 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:14:15.244964 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.49 ms +I, [2018-08-07T14:14:15.245028 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:14:15.257728 #7] INFO -- : Inline processing of topic section_change with 1 messages took 6.77 ms +I, [2018-08-07T14:14:15.257795 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:14:15.258125 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T14:14:15.258176 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:14:15.263702 #7] INFO -- : Inline processing of topic section_change with 1 messages took 2.12 ms +I, [2018-08-07T14:14:15.263760 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:14:15.269590 #7] INFO -- : Inline processing of topic section_change with 1 messages took 3.83 ms +I, [2018-08-07T14:14:15.271537 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:14:15.276367 #7] INFO -- : Inline processing of topic section_change with 1 messages took 2.37 ms +I, [2018-08-07T14:14:15.276428 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:14:15.282061 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.64 ms +I, [2018-08-07T14:14:15.283056 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:14:15.293109 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-08-07T14:14:15.293219 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:14:15.293772 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T14:14:15.293834 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:14:15.294202 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T14:14:15.294242 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:14:15.306099 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T14:14:15.306173 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:14:15.306619 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T14:14:15.306665 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:14:17.135333 #7] INFO -- : Committing offsets: course_change/0:27 +I, [2018-08-07T14:14:17.161839 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.23 ms +I, [2018-08-07T14:14:17.161887 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:14:17.162152 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T14:14:17.162185 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:14:17.162419 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T14:14:17.162448 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:14:17.162749 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-08-07T14:14:17.162792 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:14:17.163049 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T14:14:17.165081 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:14:17.308251 #7] INFO -- : Committing offsets: section_change/0:69 +I, [2018-08-07T14:14:17.339689 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-08-07T14:14:17.339941 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:14:17.340600 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T14:14:17.340721 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:14:17.341176 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T14:14:17.341364 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:14:17.341731 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T14:14:17.341780 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:14:17.342214 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T14:14:17.342268 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:14:17.342660 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T14:14:17.342708 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:14:17.343077 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T14:14:17.343128 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:14:17.343520 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T14:14:17.343596 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:14:17.344110 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T14:14:17.354286 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:14:19.166885 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-08-07T14:14:19.166941 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:14:19.167184 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-08-07T14:14:19.167214 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:14:19.167441 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T14:14:19.167471 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:14:19.167694 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T14:14:19.167723 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:14:19.167971 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T14:14:19.168000 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:14:19.168215 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T14:14:19.168244 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:14:19.168427 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T14:14:19.168466 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:14:19.168672 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T14:14:19.168701 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:14:19.168920 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-08-07T14:14:19.168949 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:14:19.169156 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T14:14:19.169199 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:14:19.169417 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T14:14:19.169446 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:14:19.176190 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T14:14:19.176231 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:14:19.359861 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-08-07T14:14:19.359940 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:14:19.360370 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T14:14:19.360413 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:14:19.361464 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-08-07T14:14:19.362089 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:14:19.363161 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T14:14:19.363245 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:14:19.363769 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T14:14:19.363835 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:14:19.370986 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T14:14:19.371053 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:14:19.372365 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.09 ms +I, [2018-08-07T14:14:19.372430 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:14:19.391140 #7] INFO -- : Inline processing of topic section_change with 1 messages took 18.32 ms +I, [2018-08-07T14:14:19.391270 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:14:19.391832 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T14:14:19.391896 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:14:19.396669 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T14:14:19.396760 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:14:19.397234 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T14:14:19.403509 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:14:19.404564 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.67 ms +I, [2018-08-07T14:14:19.404630 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:14:19.405512 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-08-07T14:14:19.405580 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:14:19.406005 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T14:14:19.406060 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:14:19.408086 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.86 ms +I, [2018-08-07T14:14:19.408147 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:14:19.408603 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T14:14:19.408655 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:14:21.177120 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-08-07T14:14:21.177176 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:14:21.177483 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T14:14:21.177522 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:14:21.179646 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T14:14:21.179688 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:14:21.179938 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T14:14:21.179969 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:14:21.181406 #7] INFO -- : Inline processing of topic course_change with 1 messages took 1.26 ms +I, [2018-08-07T14:14:21.181680 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:14:21.184497 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T14:14:21.184586 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:14:21.184904 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T14:14:21.184969 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:14:21.189639 #7] INFO -- : Inline processing of topic course_change with 1 messages took 3.22 ms +I, [2018-08-07T14:14:21.189729 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:14:21.199842 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.26 ms +I, [2018-08-07T14:14:21.199953 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:14:21.200383 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-08-07T14:14:21.200436 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:14:21.200849 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T14:14:21.200905 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:14:21.201556 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-08-07T14:14:21.201976 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:14:21.203674 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T14:14:21.203771 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:14:21.409598 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-08-07T14:14:21.409670 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:14:21.410057 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T14:14:21.410102 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:14:21.410436 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T14:14:21.410482 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:14:21.410879 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T14:14:21.410920 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:14:21.411314 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T14:14:21.411355 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:14:21.411640 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T14:14:21.411672 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:14:21.411968 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T14:14:21.417251 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:14:21.418242 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-08-07T14:14:21.418351 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:14:21.419042 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-08-07T14:14:21.419137 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:14:21.419640 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T14:14:21.419695 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:14:21.420080 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T14:14:21.420211 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:14:21.444779 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-08-07T14:14:21.444846 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:14:23.232070 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.3 ms +I, [2018-08-07T14:14:23.232164 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:14:23.232537 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T14:14:23.232601 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:14:23.232886 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T14:14:23.232917 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:14:23.233248 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-08-07T14:14:23.233297 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:14:23.233641 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T14:14:23.233677 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:14:23.233941 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T14:14:23.234011 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:14:23.234391 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T14:14:23.234439 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:14:23.234780 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T14:14:23.234848 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:14:23.235197 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T14:14:23.235244 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:14:23.235612 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T14:14:23.235665 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:14:23.236104 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-08-07T14:14:23.236146 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:14:23.236477 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T14:14:23.236521 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:14:23.236792 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T14:14:23.236870 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:14:23.206779 #7] INFO -- : Inline processing of topic course_change with 1 messages took -31.74 ms +I, [2018-08-07T14:14:23.207194 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:14:23.419251 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-08-07T14:14:23.419316 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:14:23.419850 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-08-07T14:14:23.419902 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:14:23.420468 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-08-07T14:14:23.420532 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:14:23.421040 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T14:14:23.421112 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:14:23.421881 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-08-07T14:14:23.421938 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:14:23.422448 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T14:14:23.422516 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:14:23.422906 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T14:14:23.422955 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:14:23.423353 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T14:14:23.423421 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:14:23.423822 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T14:14:23.423877 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:14:23.424285 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T14:14:23.424340 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:14:23.424665 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T14:14:23.424771 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:14:23.425091 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T14:14:23.425136 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:14:23.425530 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T14:14:23.425583 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:14:23.425978 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T14:14:23.426031 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:14:25.209889 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.27 ms +I, [2018-08-07T14:14:25.209971 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:14:25.210309 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-08-07T14:14:25.210411 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:14:25.210730 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T14:14:25.210847 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:14:25.219890 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-08-07T14:14:25.219935 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:14:25.220290 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T14:14:25.220347 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:14:25.220557 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-08-07T14:14:25.220596 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:14:25.220878 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T14:14:25.220909 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:14:25.427086 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-08-07T14:14:25.427161 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:14:25.427551 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T14:14:25.427596 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:14:25.427951 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T14:14:25.427996 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:14:25.428344 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T14:14:25.428407 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:14:25.428764 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T14:14:25.428812 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:14:25.429159 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T14:14:25.429212 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:14:25.429598 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T14:14:25.429645 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:14:25.429945 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T14:14:25.429976 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:14:25.430214 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T14:14:25.430253 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:14:25.430481 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T14:14:25.430522 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:14:25.430755 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T14:14:25.430783 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:14:25.431014 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T14:14:25.431043 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:14:25.431271 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T14:14:25.431307 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:14:25.440656 #7] INFO -- : Inline processing of topic section_change with 1 messages took 7.16 ms +I, [2018-08-07T14:14:25.440787 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:14:25.443659 #7] INFO -- : Inline processing of topic section_change with 1 messages took 2.66 ms +I, [2018-08-07T14:14:25.443717 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:14:25.450872 #7] INFO -- : Inline processing of topic section_change with 1 messages took 6.24 ms +I, [2018-08-07T14:14:25.450920 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:14:27.221306 #7] INFO -- : Committing offsets: course_change/0:78 +I, [2018-08-07T14:14:27.224470 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.23 ms +I, [2018-08-07T14:14:27.224553 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:14:27.224885 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T14:14:27.224926 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:14:27.225231 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T14:14:27.225271 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:14:27.225515 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-08-07T14:14:27.225546 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:14:27.225763 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T14:14:27.225791 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:14:27.225996 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T14:14:27.226044 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:14:27.451381 #7] INFO -- : Committing offsets: section_change/0:136 +I, [2018-08-07T14:14:27.454816 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-08-07T14:14:27.454961 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:14:27.455398 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T14:14:27.455431 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:14:27.458940 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.8 ms +I, [2018-08-07T14:14:27.459099 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:14:27.470211 #7] INFO -- : Inline processing of topic section_change with 1 messages took 10.34 ms +I, [2018-08-07T14:14:27.470360 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:14:27.470908 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T14:14:27.470955 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:14:27.471369 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T14:14:27.471416 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:14:27.471709 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T14:14:27.471780 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:14:27.472114 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T14:14:27.472146 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:14:27.472418 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T14:14:27.472458 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:14:27.472791 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T14:14:27.627025 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:14:29.226702 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-08-07T14:14:29.226781 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:14:29.226991 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-08-07T14:14:29.227050 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:14:29.227263 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T14:14:29.227292 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:14:29.227504 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T14:14:29.227533 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:14:29.227741 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T14:14:29.227770 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:14:29.227974 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T14:14:29.228002 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:14:29.228210 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T14:14:29.228238 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:14:29.228443 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T14:14:29.228471 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:14:29.228669 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-08-07T14:14:29.228698 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:14:29.629036 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T14:14:29.629091 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:14:29.629468 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T14:14:29.629506 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:14:29.629762 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T14:14:29.629805 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:14:29.631392 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T14:14:29.631442 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:14:29.632114 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T14:14:29.632287 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:14:29.632584 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T14:14:29.632617 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:14:29.632963 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T14:14:29.633003 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:14:29.633956 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.65 ms +I, [2018-08-07T14:14:29.634020 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:14:29.634339 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T14:14:29.634510 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:14:29.635149 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.48 ms +I, [2018-08-07T14:14:29.635199 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:14:29.635517 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T14:14:29.635548 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:14:29.635852 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T14:14:29.635891 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:14:29.638854 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T14:14:29.638896 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:14:29.639192 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T14:14:29.639257 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:14:29.639710 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T14:14:29.644229 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:14:31.229870 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.33 ms +I, [2018-08-07T14:14:31.229938 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:14:31.230322 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-08-07T14:14:31.230382 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:14:31.230716 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T14:14:31.230783 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:14:31.231446 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.49 ms +I, [2018-08-07T14:14:31.231533 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:14:31.231956 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T14:14:31.232018 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:14:31.232372 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T14:14:31.232420 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:14:31.232765 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-08-07T14:14:31.232812 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:14:31.233151 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T14:14:31.233198 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:14:31.233666 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.25 ms +I, [2018-08-07T14:14:31.233717 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:14:31.234083 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T14:14:31.234131 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:14:31.234465 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T14:14:31.234514 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:14:31.234861 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T14:14:31.234913 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:14:31.653022 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T14:14:31.653074 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:14:31.653372 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T14:14:31.653421 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:14:31.653830 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T14:14:31.653875 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:14:31.654186 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T14:14:31.654235 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:14:31.654531 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T14:14:31.654572 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:14:31.703497 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T14:14:31.703546 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:14:31.703887 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T14:14:31.703928 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:14:31.704174 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T14:14:31.704206 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:14:31.704480 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T14:14:31.704519 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:14:31.704814 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T14:14:31.704846 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:14:31.705132 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T14:14:31.705163 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:14:31.705421 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T14:14:31.705452 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:14:31.705694 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T14:14:31.705724 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:14:31.705913 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-08-07T14:14:31.705982 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:14:31.706191 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T14:14:31.706221 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:14:31.706451 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T14:14:31.706487 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:14:31.706729 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T14:14:31.706758 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:14:31.707016 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T14:14:31.711260 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:14:31.712504 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.65 ms +I, [2018-08-07T14:14:31.716899 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:14:33.255525 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.29 ms +I, [2018-08-07T14:14:33.255578 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:14:33.255911 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T14:14:33.255945 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:14:33.256241 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T14:14:33.256274 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:14:33.256543 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T14:14:33.256584 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:14:33.256819 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-08-07T14:14:33.256903 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:14:33.257333 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.23 ms +I, [2018-08-07T14:14:33.257579 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:14:33.258410 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.39 ms +I, [2018-08-07T14:14:33.258659 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:14:33.259284 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.26 ms +I, [2018-08-07T14:14:33.259317 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:14:33.259813 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.24 ms +I, [2018-08-07T14:14:33.259847 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:14:33.260317 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.23 ms +I, [2018-08-07T14:14:33.262557 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:14:33.264269 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.32 ms +I, [2018-08-07T14:14:33.265006 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:14:33.271565 #7] INFO -- : Inline processing of topic course_change with 1 messages took 5.19 ms +I, [2018-08-07T14:14:33.271627 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:14:33.272121 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-08-07T14:14:33.272172 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:14:33.272544 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T14:14:33.272593 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:14:33.743832 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T14:14:33.743888 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:14:33.744208 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T14:14:33.744242 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:14:33.744535 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T14:14:33.744568 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:14:33.744936 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T14:14:33.746393 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:14:33.746756 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T14:14:33.746789 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:14:33.747083 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T14:14:33.747114 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:14:33.747394 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T14:14:33.747525 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:14:35.756674 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.75 ms +I, [2018-08-07T14:14:35.829993 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:14:35.896051 #7] INFO -- : Inline processing of topic course_change with 1 messages took 63.24 ms +I, [2018-08-07T14:14:35.896138 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:14:35.920323 #7] INFO -- : Inline processing of topic course_change with 1 messages took 12.63 ms +I, [2018-08-07T14:14:35.920423 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:14:37.830597 #7] INFO -- : Committing offsets: section_change/0:188 +I, [2018-08-07T14:14:37.900001 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-08-07T14:14:37.900053 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:14:37.900349 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T14:14:37.900387 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:14:37.900943 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-08-07T14:14:37.901101 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:14:37.902443 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.14 ms +I, [2018-08-07T14:14:37.902504 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:14:37.903245 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.4 ms +I, [2018-08-07T14:14:37.903444 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:14:37.929448 #7] INFO -- : Committing offsets: course_change/0:121 +I, [2018-08-07T14:14:37.966411 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.41 ms +I, [2018-08-07T14:14:37.966486 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:14:37.966897 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-08-07T14:14:37.966933 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:14:37.968648 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.27 ms +I, [2018-08-07T14:14:37.968713 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:14:39.921201 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.7 ms +I, [2018-08-07T14:14:39.921491 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:14:39.922641 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-08-07T14:14:39.922947 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:14:39.969704 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.3 ms +I, [2018-08-07T14:14:39.969782 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:14:39.970397 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T14:14:39.970440 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:14:41.925173 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.48 ms +I, [2018-08-07T14:14:41.925232 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:14:41.925683 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T14:14:41.925717 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:14:41.926032 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T14:14:41.926064 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:14:41.926507 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-08-07T14:14:41.926553 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:14:41.927012 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-08-07T14:14:41.927059 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:14:41.927564 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T14:14:41.927608 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:14:41.971623 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.25 ms +I, [2018-08-07T14:14:41.971672 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:14:41.972041 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-08-07T14:14:41.972075 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:14:41.972383 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T14:14:41.972463 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:14:41.972755 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T14:14:41.972786 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:14:41.973065 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T14:14:41.973096 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:14:41.973374 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T14:14:41.973405 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:14:43.979869 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.94 ms +I, [2018-08-07T14:14:43.981049 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:14:43.981726 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T14:14:43.981780 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:14:43.990142 #7] INFO -- : Inline processing of topic section_change with 1 messages took 8.05 ms +I, [2018-08-07T14:14:43.990244 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:14:44.016114 #7] INFO -- : Inline processing of topic section_change with 1 messages took 25.51 ms +I, [2018-08-07T14:14:44.016237 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:14:44.016694 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T14:14:44.016727 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:14:44.018941 #7] INFO -- : Inline processing of topic section_change with 1 messages took 2.06 ms +I, [2018-08-07T14:14:44.024635 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:14:44.166716 #7] INFO -- : Inline processing of topic course_change with 1 messages took 147.3 ms +I, [2018-08-07T14:14:44.167649 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:14:44.169783 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.24 ms +I, [2018-08-07T14:14:44.169848 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:14:44.471626 #7] INFO -- : Inline processing of topic section_change with 1 messages took 440.96 ms +I, [2018-08-07T14:14:44.471731 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:14:44.473768 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.56 ms +I, [2018-08-07T14:14:44.473839 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:14:44.474483 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-08-07T14:14:44.474536 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:14:44.483091 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.41 ms +I, [2018-08-07T14:14:44.504725 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:14:44.754112 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-08-07T14:14:44.754181 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:14:44.754575 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T14:14:44.763642 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:14:44.768332 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.83 ms +I, [2018-08-07T14:14:44.768424 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:14:44.773043 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.48 ms +I, [2018-08-07T14:14:44.773133 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:14:44.775861 #7] INFO -- : Inline processing of topic course_change with 1 messages took 2.46 ms +I, [2018-08-07T14:14:44.775931 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:14:44.781916 #7] INFO -- : Inline processing of topic course_change with 1 messages took 5.69 ms +I, [2018-08-07T14:14:44.782009 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:14:44.868634 #7] INFO -- : Inline processing of topic course_change with 1 messages took 65.35 ms +I, [2018-08-07T14:14:44.869223 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:14:44.886330 #7] INFO -- : Inline processing of topic course_change with 1 messages took 9.36 ms +I, [2018-08-07T14:14:44.886427 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:14:45.008680 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.55 ms +I, [2018-08-07T14:14:45.008758 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:14:45.021634 #7] INFO -- : Inline processing of topic course_change with 1 messages took 11.21 ms +I, [2018-08-07T14:14:45.022042 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:14:45.022672 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-08-07T14:14:45.022727 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:14:45.023282 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T14:14:45.023499 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:14:46.819405 #7] INFO -- : Inline processing of topic section_change with 1 messages took 38.9 ms +I, [2018-08-07T14:14:46.819563 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:14:46.820363 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.44 ms +I, [2018-08-07T14:14:46.820401 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:14:46.873836 #7] INFO -- : Inline processing of topic section_change with 1 messages took 52.08 ms +I, [2018-08-07T14:14:46.874032 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:14:46.907792 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-08-07T14:14:46.932550 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:14:46.934054 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.63 ms +I, [2018-08-07T14:14:46.934238 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:14:46.935703 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.8 ms +I, [2018-08-07T14:14:46.936159 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:14:47.322271 #7] INFO -- : Inline processing of topic course_change with 1 messages took 31.37 ms +I, [2018-08-07T14:14:47.322380 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:14:47.324745 #7] INFO -- : Inline processing of topic course_change with 1 messages took 1.31 ms +I, [2018-08-07T14:14:47.324838 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:14:47.431806 #7] INFO -- : Inline processing of topic course_change with 1 messages took 106.62 ms +I, [2018-08-07T14:14:47.432299 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:14:47.436880 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.73 ms +I, [2018-08-07T14:14:47.436933 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:14:47.439053 #7] INFO -- : Inline processing of topic course_change with 1 messages took 1.67 ms +I, [2018-08-07T14:14:47.439149 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:14:49.976492 #7] INFO -- : Committing offsets: section_change/0:219 +I, [2018-08-07T14:14:50.704496 #7] INFO -- : Committing offsets: course_change/0:149 +I, [2018-08-07T14:14:52.460394 #7] INFO -- : Inline processing of topic section_change with 1 messages took 2.28 ms +I, [2018-08-07T14:14:52.465545 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:14:52.845759 #7] INFO -- : Inline processing of topic section_change with 1 messages took 10.46 ms +I, [2018-08-07T14:14:52.846086 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:14:52.962092 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.42 ms +I, [2018-08-07T14:14:52.962408 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:14:53.547211 #7] INFO -- : Inline processing of topic section_change with 1 messages took 46.3 ms +I, [2018-08-07T14:14:53.547441 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:14:53.570733 #7] INFO -- : Inline processing of topic section_change with 1 messages took 21.14 ms +I, [2018-08-07T14:14:53.570880 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:14:53.580971 #7] INFO -- : Inline processing of topic section_change with 1 messages took 8.95 ms +I, [2018-08-07T14:14:53.581515 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:14:53.885616 #7] INFO -- : Inline processing of topic section_change with 1 messages took 82.43 ms +I, [2018-08-07T14:14:53.902865 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:14:56.024708 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.69 ms +I, [2018-08-07T14:14:56.024917 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:14:56.028506 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.96 ms +I, [2018-08-07T14:14:56.028595 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:14:56.029658 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.68 ms +I, [2018-08-07T14:14:56.029746 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:14:56.282215 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.85 ms +I, [2018-08-07T14:14:56.282531 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:14:58.035928 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.62 ms +I, [2018-08-07T14:14:58.036394 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:14:58.039408 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.59 ms +I, [2018-08-07T14:14:58.039496 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:14:58.045319 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.96 ms +I, [2018-08-07T14:14:58.045827 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:14:58.056043 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-08-07T14:14:58.056122 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:14:58.057098 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.5 ms +I, [2018-08-07T14:14:58.057394 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:14:58.057988 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-08-07T14:14:58.058043 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:14:58.058576 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-08-07T14:14:58.058698 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:14:58.059480 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.62 ms +I, [2018-08-07T14:14:58.059541 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:14:58.062567 #7] INFO -- : Inline processing of topic section_change with 1 messages took 2.32 ms +I, [2018-08-07T14:14:58.064434 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:14:58.299807 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.46 ms +I, [2018-08-07T14:14:58.299897 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:15:01.098086 #7] INFO -- : Inline processing of topic section_change with 1 messages took 40.29 ms +I, [2018-08-07T14:15:01.100057 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:02.999548 #7] INFO -- : Committing offsets: course_change/0:151 +I, [2018-08-07T14:15:03.110171 #7] INFO -- : Committing offsets: section_change/0:239 +I, [2018-08-07T14:15:03.157620 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.16 ms +I, [2018-08-07T14:15:03.159053 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:06.324495 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.98 ms +I, [2018-08-07T14:15:06.324753 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:06.360350 #7] INFO -- : Inline processing of topic course_change with 1 messages took 2.94 ms +I, [2018-08-07T14:15:06.360856 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:15:08.470138 #7] INFO -- : Inline processing of topic course_change with 1 messages took 16.16 ms +I, [2018-08-07T14:15:08.472677 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:15:08.487002 #7] INFO -- : Inline processing of topic course_change with 1 messages took 13.04 ms +I, [2018-08-07T14:15:08.487112 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:15:08.487982 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.53 ms +I, [2018-08-07T14:15:08.488043 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:15:08.489110 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.83 ms +I, [2018-08-07T14:15:08.489258 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:15:08.490701 #7] INFO -- : Inline processing of topic section_change with 1 messages took 2.4 ms +I, [2018-08-07T14:15:08.490813 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:08.494059 #7] INFO -- : Inline processing of topic section_change with 1 messages took 2.94 ms +I, [2018-08-07T14:15:08.494123 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:08.500103 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T14:15:08.500168 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:08.501212 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T14:15:08.501665 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:10.506774 #7] INFO -- : Inline processing of topic course_change with 1 messages took 12.97 ms +I, [2018-08-07T14:15:10.507498 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:15:12.527447 #7] INFO -- : Inline processing of topic section_change with 1 messages took 3.67 ms +I, [2018-08-07T14:15:12.527504 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:14.835829 #7] INFO -- : Committing offsets: section_change/0:246 +I, [2018-08-07T14:15:14.837473 #7] INFO -- : Committing offsets: course_change/0:157 +I, [2018-08-07T14:15:15.050299 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.75 ms +I, [2018-08-07T14:15:15.050695 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:15:15.052498 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.99 ms +I, [2018-08-07T14:15:15.053590 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:15:15.059035 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.31 ms +I, [2018-08-07T14:15:15.059702 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:15:15.060672 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.62 ms +I, [2018-08-07T14:15:15.060759 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:15:15.062884 #7] INFO -- : Inline processing of topic course_change with 1 messages took 1.78 ms +I, [2018-08-07T14:15:15.062962 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:15:15.088254 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.4 ms +I, [2018-08-07T14:15:15.088325 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:15:15.088820 #7] INFO -- : Inline processing of topic section_change with 1 messages took 156.81 ms +I, [2018-08-07T14:15:15.092874 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:15.109911 #7] INFO -- : Inline processing of topic section_change with 1 messages took 13.17 ms +I, [2018-08-07T14:15:15.110030 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:15.111213 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.88 ms +I, [2018-08-07T14:15:15.111274 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:15.111895 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-08-07T14:15:15.111946 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:15.112560 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.4 ms +I, [2018-08-07T14:15:15.112616 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:17.123906 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.31 ms +I, [2018-08-07T14:15:17.123956 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:15:17.124330 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-08-07T14:15:17.124365 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:15:17.133851 #7] INFO -- : Inline processing of topic course_change with 1 messages took 9.14 ms +I, [2018-08-07T14:15:17.134313 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:15:17.145991 #7] INFO -- : Inline processing of topic course_change with 1 messages took 10.07 ms +I, [2018-08-07T14:15:17.146077 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:15:17.149903 #7] INFO -- : Inline processing of topic course_change with 1 messages took 3.02 ms +I, [2018-08-07T14:15:17.150474 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:15:17.152112 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.29 ms +I, [2018-08-07T14:15:17.152170 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:15:17.152747 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T14:15:17.153094 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:15:17.154243 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T14:15:17.154285 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:17.154726 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-08-07T14:15:17.154758 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:17.155141 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T14:15:17.155171 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:17.155632 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-08-07T14:15:17.155665 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:17.156314 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.45 ms +I, [2018-08-07T14:15:17.156389 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:17.156996 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-08-07T14:15:17.157062 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:17.157610 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-08-07T14:15:17.157659 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:17.158124 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-08-07T14:15:17.158168 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:17.159091 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.55 ms +I, [2018-08-07T14:15:17.159340 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:17.160303 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.47 ms +I, [2018-08-07T14:15:17.160364 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:19.156214 #7] INFO -- : Inline processing of topic course_change with 1 messages took 2.3 ms +I, [2018-08-07T14:15:19.156416 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:15:19.157235 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.58 ms +I, [2018-08-07T14:15:19.157301 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:15:19.179320 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.59 ms +I, [2018-08-07T14:15:19.179415 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:15:19.206648 #7] INFO -- : Inline processing of topic course_change with 1 messages took 26.81 ms +I, [2018-08-07T14:15:19.206722 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:15:19.215734 #7] INFO -- : Inline processing of topic course_change with 1 messages took 8.76 ms +I, [2018-08-07T14:15:19.215804 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:15:19.216321 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.28 ms +I, [2018-08-07T14:15:19.216362 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:15:19.216655 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.16 ms +I, [2018-08-07T14:15:19.216686 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:15:19.216972 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-08-07T14:15:19.217004 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:15:19.217701 #7] INFO -- : Inline processing of topic section_change with 1 messages took 32.01 ms +I, [2018-08-07T14:15:19.218062 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:19.218710 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T14:15:19.218768 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:19.219811 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.78 ms +I, [2018-08-07T14:15:19.219857 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:19.220821 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-08-07T14:15:19.220887 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:19.221433 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-08-07T14:15:19.221473 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:19.221832 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T14:15:19.221863 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:19.222262 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T14:15:19.222293 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:19.226075 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T14:15:19.226121 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:19.227115 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.81 ms +I, [2018-08-07T14:15:19.228153 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:19.230898 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-08-07T14:15:19.230946 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:19.237888 #7] INFO -- : Inline processing of topic section_change with 1 messages took 2.67 ms +I, [2018-08-07T14:15:19.238034 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:19.238697 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-08-07T14:15:19.238739 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:19.239181 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-08-07T14:15:19.239227 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:19.240221 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.77 ms +I, [2018-08-07T14:15:19.242995 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:19.243629 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T14:15:19.243769 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:19.245438 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.47 ms +I, [2018-08-07T14:15:19.245504 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:19.248129 #7] INFO -- : Inline processing of topic section_change with 1 messages took 2.19 ms +I, [2018-08-07T14:15:19.248554 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:19.249086 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T14:15:19.254322 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:19.254883 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T14:15:19.255043 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:19.255481 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T14:15:19.255516 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:19.255882 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T14:15:19.255913 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:19.256154 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T14:15:19.256185 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:19.257101 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.76 ms +I, [2018-08-07T14:15:19.257564 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:19.258210 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T14:15:19.258256 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:19.262118 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-08-07T14:15:19.262180 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:19.264042 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.58 ms +I, [2018-08-07T14:15:19.264109 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:21.218262 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.27 ms +I, [2018-08-07T14:15:21.218326 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:15:21.218731 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T14:15:21.218775 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:15:21.265759 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T14:15:21.265885 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:21.266355 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T14:15:21.266402 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:21.266827 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T14:15:21.269301 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:21.270726 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T14:15:21.270797 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:21.272681 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T14:15:21.272748 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:21.285186 #7] INFO -- : Inline processing of topic section_change with 1 messages took 4.43 ms +I, [2018-08-07T14:15:21.293819 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:21.294877 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-08-07T14:15:21.294944 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:21.295510 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T14:15:21.295564 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:21.296104 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T14:15:21.296159 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:21.296535 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T14:15:21.296582 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:23.298303 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.57 ms +I, [2018-08-07T14:15:23.298376 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:23.299122 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-08-07T14:15:23.299194 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:23.299868 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-08-07T14:15:23.299926 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:23.300967 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T14:15:23.301038 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:23.301516 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T14:15:23.301701 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:25.184944 #7] INFO -- : Committing offsets: course_change/0:180 +I, [2018-08-07T14:15:25.192489 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T14:15:25.192538 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:15:25.192784 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T14:15:25.192815 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:15:25.193040 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T14:15:25.193070 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:15:25.193292 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T14:15:25.193321 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:15:25.267838 #7] INFO -- : Committing offsets: section_change/0:302 +I, [2018-08-07T14:15:25.271748 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.9 ms +I, [2018-08-07T14:15:25.271824 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:25.272304 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T14:15:25.272353 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:25.272820 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T14:15:25.272870 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:25.273288 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T14:15:25.273338 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:25.273733 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T14:15:25.273781 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:25.274187 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T14:15:25.274237 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:25.275536 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.45 ms +I, [2018-08-07T14:15:25.275644 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:25.276042 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T14:15:25.276109 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:25.276670 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-08-07T14:15:25.276772 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:25.277203 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T14:15:25.277270 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:27.205774 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.32 ms +I, [2018-08-07T14:15:27.205843 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:15:27.206130 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T14:15:27.206162 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:15:27.206438 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T14:15:27.206469 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:15:27.206714 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T14:15:27.206778 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:15:27.209593 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-08-07T14:15:27.209648 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:15:27.210585 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.79 ms +I, [2018-08-07T14:15:27.213914 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:15:27.215238 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.25 ms +I, [2018-08-07T14:15:27.215314 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:15:27.282249 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T14:15:27.282317 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:27.284010 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.4 ms +I, [2018-08-07T14:15:27.284127 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:27.284781 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T14:15:27.284816 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:27.285324 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T14:15:27.285357 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:27.285709 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T14:15:27.285750 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:27.286043 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T14:15:27.286073 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:29.216103 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-08-07T14:15:29.216151 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:15:29.216378 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-08-07T14:15:29.216419 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:15:29.216642 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T14:15:29.216671 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:15:29.216899 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T14:15:29.216929 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:15:29.217158 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T14:15:29.217194 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:15:29.217415 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T14:15:29.217444 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:15:29.217669 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T14:15:29.217698 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:15:29.217923 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T14:15:29.218000 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:15:29.218190 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T14:15:29.218250 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:15:29.219504 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T14:15:29.219546 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:15:29.219791 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T14:15:29.219822 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:15:29.220079 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T14:15:29.220110 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:15:29.287244 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-08-07T14:15:29.287316 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:29.287800 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T14:15:29.287929 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:29.288342 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T14:15:29.288394 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:29.288813 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T14:15:29.288866 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:29.289315 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T14:15:29.290435 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:29.290937 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T14:15:29.290977 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:29.291230 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T14:15:29.291261 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:29.291489 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T14:15:29.291520 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:29.291840 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T14:15:29.291891 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:29.292297 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T14:15:29.293674 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:29.294116 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T14:15:29.294164 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:29.294544 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T14:15:29.294592 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:29.294914 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T14:15:29.294959 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:29.295295 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T14:15:29.295339 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:29.295776 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T14:15:29.295849 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:31.220804 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-08-07T14:15:31.220854 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:15:31.221189 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T14:15:31.221226 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:15:31.221501 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T14:15:31.221533 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:15:31.221769 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T14:15:31.221811 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:15:31.222027 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T14:15:31.222073 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:15:31.222285 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T14:15:31.222331 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:15:31.222554 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T14:15:31.222616 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:15:31.222998 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-08-07T14:15:31.223043 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:15:31.223431 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-08-07T14:15:31.223479 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:15:31.223865 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-08-07T14:15:31.223920 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:15:31.296536 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T14:15:31.296607 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:31.296967 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T14:15:31.297018 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:31.297310 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T14:15:31.297342 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:31.297603 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T14:15:31.297634 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:31.298009 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T14:15:31.298059 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:31.298297 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T14:15:31.298328 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:31.298657 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T14:15:31.298699 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:31.298940 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T14:15:31.298979 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:31.299224 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T14:15:31.304514 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:31.305010 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T14:15:31.305069 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:31.305429 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T14:15:31.305477 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:31.305818 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T14:15:31.305865 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:31.306099 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T14:15:31.306133 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:31.306376 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T14:15:31.306410 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:31.306646 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T14:15:31.306680 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:31.310856 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.55 ms +I, [2018-08-07T14:15:31.310930 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:31.311358 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T14:15:31.311411 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:31.311788 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T14:15:31.311844 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:31.312221 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T14:15:31.312272 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:31.312637 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T14:15:31.312688 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:31.313033 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T14:15:31.313156 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:31.313480 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T14:15:31.313527 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:31.313873 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T14:15:31.313919 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:31.314269 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T14:15:31.314315 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:31.314669 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T14:15:31.314715 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:31.315234 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T14:15:31.315411 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:31.316002 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T14:15:31.316119 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:31.316612 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T14:15:31.316663 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:31.317038 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T14:15:31.317085 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:31.317426 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T14:15:31.317473 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:31.317815 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T14:15:31.317900 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:31.318478 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T14:15:31.318536 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:31.337099 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T14:15:31.337152 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:31.337559 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T14:15:31.337602 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:31.337859 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T14:15:31.337901 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:31.338294 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T14:15:31.338347 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:31.338769 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T14:15:31.338818 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:31.339238 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T14:15:31.339289 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:31.339701 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T14:15:31.339748 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:31.340006 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T14:15:31.340037 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:33.225107 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.39 ms +I, [2018-08-07T14:15:33.225205 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:15:33.225750 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.26 ms +I, [2018-08-07T14:15:33.225824 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:15:33.226484 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.28 ms +I, [2018-08-07T14:15:33.226560 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:15:33.227101 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.28 ms +I, [2018-08-07T14:15:33.227173 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:15:33.228077 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.29 ms +I, [2018-08-07T14:15:33.228154 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:15:33.230001 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.44 ms +I, [2018-08-07T14:15:33.230151 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:15:33.238073 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.48 ms +I, [2018-08-07T14:15:33.238213 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:15:33.341181 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-08-07T14:15:33.341278 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:33.341991 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-08-07T14:15:33.342069 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:33.342588 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T14:15:33.342658 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:33.343261 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T14:15:33.343334 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:33.343845 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T14:15:33.343917 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:33.348543 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.47 ms +I, [2018-08-07T14:15:33.348645 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:33.349263 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-08-07T14:15:33.349340 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:33.349927 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-08-07T14:15:33.350013 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:33.357322 #7] INFO -- : Inline processing of topic section_change with 1 messages took 4.17 ms +I, [2018-08-07T14:15:33.357647 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:33.369846 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.46 ms +I, [2018-08-07T14:15:33.369954 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:33.381227 #7] INFO -- : Inline processing of topic section_change with 1 messages took 5.42 ms +I, [2018-08-07T14:15:33.381336 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:33.382025 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-08-07T14:15:33.382103 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:33.387680 #7] INFO -- : Inline processing of topic section_change with 1 messages took 4.95 ms +I, [2018-08-07T14:15:33.390670 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:33.391524 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-08-07T14:15:33.391606 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:33.392197 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-08-07T14:15:33.392276 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:33.392854 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T14:15:33.392926 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:33.393625 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-08-07T14:15:33.393700 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:35.239170 #7] INFO -- : Committing offsets: course_change/0:220 +I, [2018-08-07T14:15:35.506006 #7] INFO -- : Inline processing of topic course_change with 1 messages took 1.01 ms +I, [2018-08-07T14:15:35.506239 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:15:35.506991 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.35 ms +I, [2018-08-07T14:15:35.507070 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:15:35.507640 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.28 ms +I, [2018-08-07T14:15:35.507734 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:15:35.508482 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.39 ms +I, [2018-08-07T14:15:35.509433 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:15:35.546891 #7] INFO -- : Committing offsets: section_change/0:390 +I, [2018-08-07T14:15:35.632783 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.6 ms +I, [2018-08-07T14:15:35.632927 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:35.635170 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.58 ms +I, [2018-08-07T14:15:35.635379 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:35.636518 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.57 ms +I, [2018-08-07T14:15:35.636650 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:35.637680 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.52 ms +I, [2018-08-07T14:15:35.637826 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:37.511552 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-08-07T14:15:37.511619 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:15:37.511984 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T14:15:37.512046 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:15:37.512815 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T14:15:37.512857 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:15:37.513170 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T14:15:37.513244 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:15:37.646658 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-08-07T14:15:37.646704 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:37.646999 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T14:15:37.647032 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:37.647421 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T14:15:37.647468 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:37.647863 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T14:15:37.647930 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:37.648259 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T14:15:37.649899 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:37.650675 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T14:15:37.650718 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:39.513984 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.27 ms +I, [2018-08-07T14:15:39.514039 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:15:39.514331 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T14:15:39.514457 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:15:39.514710 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T14:15:39.514802 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:15:39.515009 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-08-07T14:15:39.515040 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:15:39.515279 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T14:15:39.515309 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:15:39.515541 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T14:15:39.515572 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:15:39.515799 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-08-07T14:15:39.515829 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:15:39.516130 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T14:15:39.516161 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:15:39.652136 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.69 ms +I, [2018-08-07T14:15:39.652207 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:39.655449 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.49 ms +I, [2018-08-07T14:15:39.655522 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:39.656596 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.63 ms +I, [2018-08-07T14:15:39.656672 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:39.657468 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-08-07T14:15:39.657567 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:39.658057 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-08-07T14:15:39.658106 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:39.658648 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-08-07T14:15:39.658698 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:39.659261 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-08-07T14:15:39.659313 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:39.659832 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-08-07T14:15:39.659878 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:41.517426 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.32 ms +I, [2018-08-07T14:15:41.517499 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:15:41.517894 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T14:15:41.517943 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:15:41.518299 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T14:15:41.518348 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:15:41.518766 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-08-07T14:15:41.518817 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:15:41.519306 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.31 ms +I, [2018-08-07T14:15:41.519348 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:15:41.519627 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T14:15:41.519657 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:15:41.519895 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T14:15:41.519925 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:15:41.520150 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T14:15:41.520180 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:15:41.521920 #7] INFO -- : Inline processing of topic course_change with 1 messages took 1.55 ms +I, [2018-08-07T14:15:41.522034 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:15:41.662229 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.65 ms +I, [2018-08-07T14:15:41.662298 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:41.662880 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T14:15:41.662929 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:41.663260 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T14:15:41.663302 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:41.663626 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T14:15:41.663666 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:41.665115 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.26 ms +I, [2018-08-07T14:15:41.665181 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:41.666021 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-08-07T14:15:41.666084 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:41.667281 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-08-07T14:15:41.667346 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:41.669961 #7] INFO -- : Inline processing of topic section_change with 1 messages took 2.33 ms +I, [2018-08-07T14:15:41.670035 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:43.523996 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.58 ms +I, [2018-08-07T14:15:43.524074 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:15:43.524504 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-08-07T14:15:43.524547 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:15:43.526864 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T14:15:43.526908 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:15:43.671417 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-08-07T14:15:43.671471 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:43.672987 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T14:15:43.673332 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:43.681541 #7] INFO -- : Inline processing of topic section_change with 1 messages took 7.84 ms +I, [2018-08-07T14:15:43.681610 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:43.682036 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T14:15:43.682156 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:43.682646 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T14:15:43.682688 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:43.683038 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T14:15:43.683079 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:43.683380 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T14:15:43.683428 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:43.684041 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-08-07T14:15:43.684124 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:43.684732 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T14:15:43.684791 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:43.685493 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T14:15:43.685545 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:43.685973 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T14:15:43.686025 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:43.686382 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T14:15:43.686425 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:43.686745 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T14:15:43.686789 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:43.687133 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T14:15:43.698874 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:43.705863 #7] INFO -- : Inline processing of topic section_change with 1 messages took 4.52 ms +I, [2018-08-07T14:15:43.705975 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:43.706467 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T14:15:43.706598 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:43.706967 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T14:15:43.707014 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:43.707431 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T14:15:43.707478 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:43.707814 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T14:15:43.707893 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:43.713933 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T14:15:43.714013 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:43.715469 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T14:15:43.715551 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:43.719033 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.41 ms +I, [2018-08-07T14:15:43.719124 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:43.719891 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T14:15:43.719961 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:43.720439 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T14:15:43.720498 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:43.720892 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T14:15:43.721317 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:43.726674 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.41 ms +I, [2018-08-07T14:15:43.726726 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:43.727125 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T14:15:43.727160 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:43.727417 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T14:15:43.727455 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:43.727786 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T14:15:43.727821 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:43.730557 #7] INFO -- : Inline processing of topic section_change with 1 messages took 2.56 ms +I, [2018-08-07T14:15:43.730638 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:43.739321 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T14:15:43.739584 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:43.739945 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T14:15:43.739986 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:43.741369 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T14:15:43.741980 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:43.742909 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.62 ms +I, [2018-08-07T14:15:43.742975 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:43.743748 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T14:15:43.743802 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:45.527300 #7] INFO -- : Committing offsets: course_change/0:248 +I, [2018-08-07T14:15:45.531096 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T14:15:45.531141 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:15:45.531429 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-08-07T14:15:45.531461 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:15:45.531708 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.08 ms +I, [2018-08-07T14:15:45.531738 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:15:45.744174 #7] INFO -- : Committing offsets: section_change/0:451 +I, [2018-08-07T14:15:45.748138 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T14:15:45.748219 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:45.748588 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T14:15:45.748623 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:45.748890 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T14:15:45.748923 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:45.749236 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T14:15:45.749270 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:45.749527 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T14:15:45.749577 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:45.749941 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T14:15:45.749976 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:45.750563 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T14:15:45.750663 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:45.751103 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T14:15:45.751174 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:45.751531 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T14:15:45.751567 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:45.751915 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T14:15:45.751954 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:45.752244 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T14:15:45.752324 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:45.752962 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-08-07T14:15:45.753991 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:45.754433 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T14:15:45.754484 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:45.755685 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T14:15:45.755737 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:45.756155 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T14:15:45.756213 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:45.756569 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T14:15:45.756621 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:45.757017 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T14:15:45.757103 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:45.757518 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T14:15:45.757568 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:45.760868 #7] INFO -- : Inline processing of topic section_change with 1 messages took 3.08 ms +I, [2018-08-07T14:15:45.760954 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:45.761414 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T14:15:45.761454 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:45.764688 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-08-07T14:15:45.764738 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:47.572306 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.24 ms +I, [2018-08-07T14:15:47.572377 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:15:47.573010 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.29 ms +I, [2018-08-07T14:15:47.573110 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:15:47.573482 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T14:15:47.573530 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:15:47.766915 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T14:15:47.766987 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:47.767322 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T14:15:47.767353 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:47.767629 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T14:15:47.767659 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:47.767993 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T14:15:47.768028 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:47.768280 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T14:15:47.768312 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:47.768961 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T14:15:47.769016 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:47.769802 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T14:15:47.769922 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:47.770596 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-08-07T14:15:47.770650 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:49.574293 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-08-07T14:15:49.574342 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:15:49.578178 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T14:15:49.578232 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:15:49.578474 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T14:15:49.578529 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:15:49.578736 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T14:15:49.578765 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:15:49.578987 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-08-07T14:15:49.579016 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:15:49.579239 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T14:15:49.579268 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:15:49.579499 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T14:15:49.579551 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:15:49.579820 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T14:15:49.579850 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:15:49.580074 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.1 ms +I, [2018-08-07T14:15:49.580103 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:15:49.784949 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T14:15:49.786510 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:49.787048 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T14:15:49.787107 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:49.787619 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T14:15:49.787657 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:49.788012 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T14:15:49.788052 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:49.788508 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T14:15:49.788964 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:49.789511 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-08-07T14:15:49.789573 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:49.791073 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.21 ms +I, [2018-08-07T14:15:49.791135 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:49.791604 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T14:15:49.791665 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:49.792163 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T14:15:49.792310 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:49.792698 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T14:15:49.792739 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:49.793082 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T14:15:49.793130 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:49.793513 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T14:15:49.793567 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:49.795314 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.4 ms +I, [2018-08-07T14:15:49.795378 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:51.580787 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.23 ms +I, [2018-08-07T14:15:51.580886 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:15:51.581298 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.27 ms +I, [2018-08-07T14:15:51.581336 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:15:51.581682 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-08-07T14:15:51.581729 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:15:51.582269 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.28 ms +I, [2018-08-07T14:15:51.582326 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:15:51.582760 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-08-07T14:15:51.582817 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:15:51.583168 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T14:15:51.583276 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:15:51.583637 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T14:15:51.583731 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:15:51.584040 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T14:15:51.584293 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:15:51.585698 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.88 ms +I, [2018-08-07T14:15:51.585855 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:15:51.586719 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.29 ms +I, [2018-08-07T14:15:51.586803 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:15:51.796247 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T14:15:51.796297 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:51.796693 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T14:15:51.796731 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:51.797224 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T14:15:51.797260 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:51.797542 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T14:15:51.797573 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:51.797856 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T14:15:51.797888 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:51.798120 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T14:15:51.799060 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:51.799405 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T14:15:51.799441 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:51.810915 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T14:15:51.811093 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:51.818212 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-08-07T14:15:51.818321 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:51.820092 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-08-07T14:15:51.820195 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:51.820712 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T14:15:51.820759 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:51.821105 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T14:15:51.821146 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:51.821720 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-08-07T14:15:51.821776 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:53.580583 #7] INFO -- : Inline processing of topic course_change with 1 messages took 2.72 ms +I, [2018-08-07T14:15:53.580653 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:15:53.582021 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.89 ms +I, [2018-08-07T14:15:53.582071 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:15:53.583837 #7] INFO -- : Inline processing of topic course_change with 1 messages took 1.33 ms +I, [2018-08-07T14:15:53.583890 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:15:53.585393 #7] INFO -- : Inline processing of topic course_change with 1 messages took 1.06 ms +I, [2018-08-07T14:15:53.585650 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:15:53.586231 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.36 ms +I, [2018-08-07T14:15:53.586277 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:15:53.606179 #7] INFO -- : Inline processing of topic course_change with 1 messages took 18.62 ms +I, [2018-08-07T14:15:53.606282 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:15:53.606789 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-08-07T14:15:53.606836 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:15:53.607172 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T14:15:53.607312 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:15:53.607822 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.24 ms +I, [2018-08-07T14:15:53.607879 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:15:53.608320 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.18 ms +I, [2018-08-07T14:15:53.608364 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:15:53.609666 #7] INFO -- : Inline processing of topic course_change with 1 messages took 1.12 ms +I, [2018-08-07T14:15:53.609918 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:15:53.789544 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-08-07T14:15:53.789616 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:53.789993 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T14:15:53.790029 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:53.790299 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T14:15:53.790331 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:53.790538 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T14:15:53.790618 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:53.790850 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T14:15:53.790882 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:53.791127 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-08-07T14:15:53.791158 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:53.791416 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T14:15:53.791447 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:53.791705 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T14:15:53.791771 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:53.792025 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T14:15:53.792056 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:53.792309 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T14:15:53.792344 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:53.792614 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T14:15:53.792646 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:53.792888 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T14:15:53.792919 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:55.610332 #7] INFO -- : Committing offsets: course_change/0:284 +I, [2018-08-07T14:15:55.616484 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.83 ms +I, [2018-08-07T14:15:55.616627 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:15:55.617730 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T14:15:55.617785 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:15:55.618223 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.25 ms +I, [2018-08-07T14:15:55.618314 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:15:55.620607 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.3 ms +I, [2018-08-07T14:15:55.620653 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:15:55.621179 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.28 ms +I, [2018-08-07T14:15:55.621241 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:15:55.632903 #7] INFO -- : Inline processing of topic course_change with 1 messages took 10.51 ms +I, [2018-08-07T14:15:55.641501 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:15:55.642489 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.48 ms +I, [2018-08-07T14:15:55.642553 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:15:55.643015 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.17 ms +I, [2018-08-07T14:15:55.643067 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:15:55.644769 #7] INFO -- : Inline processing of topic course_change with 1 messages took 1.44 ms +I, [2018-08-07T14:15:55.644872 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:15:55.793536 #7] INFO -- : Committing offsets: section_change/0:518 +I, [2018-08-07T14:15:55.797116 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-08-07T14:15:55.797180 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:55.797602 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T14:15:55.797811 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:55.798081 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-08-07T14:15:55.798114 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:55.798376 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-08-07T14:15:55.798407 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:55.798655 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T14:15:55.798686 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:55.798922 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T14:15:55.798995 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:55.799244 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T14:15:55.799274 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:55.799519 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T14:15:55.799585 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:55.799803 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T14:15:55.799894 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:55.800088 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-08-07T14:15:55.800167 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:55.800359 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-08-07T14:15:55.800421 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:55.800640 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T14:15:55.800669 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:55.800892 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T14:15:55.800921 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:55.801098 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-08-07T14:15:55.801194 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:55.801449 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T14:15:55.801479 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:55.802306 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.69 ms +I, [2018-08-07T14:15:55.802374 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:55.802831 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T14:15:55.802868 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:55.803161 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T14:15:55.803206 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:55.803563 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T14:15:55.803618 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:55.803973 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T14:15:55.804081 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:55.804924 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.66 ms +I, [2018-08-07T14:15:55.805105 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:55.805561 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T14:15:55.805598 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:55.805871 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T14:15:55.805903 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:55.806132 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T14:15:55.806233 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:55.809184 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.48 ms +I, [2018-08-07T14:15:55.809347 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:55.809772 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T14:15:55.809822 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:55.810324 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-08-07T14:15:55.810385 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:55.811721 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.48 ms +I, [2018-08-07T14:15:55.811788 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:55.812227 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T14:15:55.812461 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:55.813491 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.71 ms +I, [2018-08-07T14:15:55.816701 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:55.817470 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-08-07T14:15:55.817533 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:57.650319 #7] INFO -- : Inline processing of topic course_change with 1 messages took 2.5 ms +I, [2018-08-07T14:15:57.650388 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:15:57.651910 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-08-07T14:15:57.652971 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:15:57.653680 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-08-07T14:15:57.653742 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:15:57.654069 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.14 ms +I, [2018-08-07T14:15:57.654195 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:15:57.654662 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.26 ms +I, [2018-08-07T14:15:57.654713 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:15:57.655198 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.24 ms +I, [2018-08-07T14:15:57.655634 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:15:57.656271 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.27 ms +I, [2018-08-07T14:15:57.656341 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:15:57.657182 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.48 ms +I, [2018-08-07T14:15:57.657278 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:15:57.821869 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.65 ms +I, [2018-08-07T14:15:57.821941 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:57.823822 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.59 ms +I, [2018-08-07T14:15:57.823890 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:57.824344 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T14:15:57.824386 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:57.824801 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T14:15:57.824844 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:57.825310 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-08-07T14:15:57.825354 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:57.826204 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.68 ms +I, [2018-08-07T14:15:57.826258 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:57.826673 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T14:15:57.826719 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:57.827196 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T14:15:57.827242 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:15:57.827830 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T14:15:57.827885 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:16:01.113008 #7] INFO -- : Inline processing of topic course_change with 1 messages took 17.71 ms +I, [2018-08-07T14:16:01.130871 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:16:01.198399 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.5 ms +I, [2018-08-07T14:16:01.198874 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:16:01.202616 #7] INFO -- : Inline processing of topic section_change with 1 messages took 3.27 ms +I, [2018-08-07T14:16:01.203934 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:16:01.239600 #7] INFO -- : Inline processing of topic section_change with 1 messages took 27.99 ms +I, [2018-08-07T14:16:01.239760 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:16:01.268858 #7] INFO -- : Inline processing of topic section_change with 1 messages took 25.46 ms +I, [2018-08-07T14:16:01.325954 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:16:01.332858 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.8 ms +I, [2018-08-07T14:16:01.332961 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:16:01.334276 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.87 ms +I, [2018-08-07T14:16:01.353206 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:16:01.354614 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.82 ms +I, [2018-08-07T14:16:01.354680 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:16:01.356042 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.9 ms +I, [2018-08-07T14:16:01.356096 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:16:03.334367 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.25 ms +I, [2018-08-07T14:16:03.335788 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:16:03.356111 #7] INFO -- : Inline processing of topic section_change with 1 messages took 6.78 ms +I, [2018-08-07T14:16:03.356474 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:16:03.367483 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.21 ms +I, [2018-08-07T14:16:03.367623 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:16:03.386939 #7] INFO -- : Inline processing of topic section_change with 1 messages took 9.56 ms +I, [2018-08-07T14:16:03.691867 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:16:03.694501 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.48 ms +I, [2018-08-07T14:16:03.694622 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:16:03.696213 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.58 ms +I, [2018-08-07T14:16:03.696277 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:16:03.697103 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.57 ms +I, [2018-08-07T14:16:03.697160 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:16:03.698159 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.58 ms +I, [2018-08-07T14:16:03.698253 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:16:03.699114 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.49 ms +I, [2018-08-07T14:16:03.699183 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:16:03.700976 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.8 ms +I, [2018-08-07T14:16:03.701083 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:16:03.702075 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.22 ms +I, [2018-08-07T14:16:03.702148 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:16:03.702561 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T14:16:03.702623 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:16:03.705671 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.26 ms +I, [2018-08-07T14:16:03.706033 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:16:03.706678 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.34 ms +I, [2018-08-07T14:16:03.706727 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:16:03.708155 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.54 ms +I, [2018-08-07T14:16:03.708248 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:16:03.708896 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.42 ms +I, [2018-08-07T14:16:03.708961 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:16:05.701309 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.47 ms +I, [2018-08-07T14:16:05.701377 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:16:05.701933 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-08-07T14:16:05.702036 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:16:05.702983 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T14:16:05.703115 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:16:05.703608 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-08-07T14:16:05.703648 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:16:05.704141 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T14:16:05.704193 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:16:05.704591 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T14:16:05.704626 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:16:05.705268 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T14:16:05.705314 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:16:05.705710 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T14:16:05.705753 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:16:05.706426 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T14:16:05.706475 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:16:05.706901 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T14:16:05.707095 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:16:05.708195 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-08-07T14:16:05.708381 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:16:05.708978 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T14:16:05.709019 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:16:05.711966 #7] INFO -- : Committing offsets: course_change/0:314 +I, [2018-08-07T14:16:05.723911 #7] INFO -- : Inline processing of topic course_change with 1 messages took 1.95 ms +I, [2018-08-07T14:16:05.724088 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:16:05.725592 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.74 ms +I, [2018-08-07T14:16:05.725659 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:16:05.728881 #7] INFO -- : Inline processing of topic course_change with 1 messages took 2.31 ms +I, [2018-08-07T14:16:05.728954 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:16:05.730205 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.7 ms +I, [2018-08-07T14:16:05.730257 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:16:05.730837 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T14:16:05.731017 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:16:05.731327 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T14:16:05.731368 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:16:05.731800 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.2 ms +I, [2018-08-07T14:16:05.731929 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:16:05.732304 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-08-07T14:16:05.732346 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:16:05.712402 #7] INFO -- : Inline processing of topic section_change with 1 messages took 2.91 ms +I, [2018-08-07T14:16:05.732587 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:16:05.732963 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T14:16:05.733004 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:16:05.733411 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T14:16:05.733454 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:16:05.733781 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-08-07T14:16:05.733821 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:16:05.734550 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T14:16:05.734612 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:16:05.735441 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-08-07T14:16:05.735496 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:16:05.736445 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.7 ms +I, [2018-08-07T14:16:05.736667 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:16:05.737163 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-08-07T14:16:05.737522 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:16:05.737865 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T14:16:05.737914 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:16:05.738374 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T14:16:05.738499 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:16:05.738994 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T14:16:05.739047 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:16:07.734876 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.36 ms +I, [2018-08-07T14:16:07.734956 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:16:07.767664 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-08-07T14:16:07.767762 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:16:07.768948 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.84 ms +I, [2018-08-07T14:16:07.769026 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:16:07.770733 #7] INFO -- : Inline processing of topic course_change with 1 messages took 1.28 ms +I, [2018-08-07T14:16:07.770818 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:16:07.771452 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.36 ms +I, [2018-08-07T14:16:07.771507 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:16:07.772202 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.26 ms +I, [2018-08-07T14:16:07.772258 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:16:07.739431 #7] INFO -- : Committing offsets: section_change/0:593 +I, [2018-08-07T14:16:07.777098 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-08-07T14:16:07.777169 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:16:07.778314 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.48 ms +I, [2018-08-07T14:16:07.778385 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:16:07.779303 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.49 ms +I, [2018-08-07T14:16:07.779379 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:16:07.780871 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.18 ms +I, [2018-08-07T14:16:07.780962 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:16:07.782318 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.5 ms +I, [2018-08-07T14:16:07.782460 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:16:07.783222 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.45 ms +I, [2018-08-07T14:16:07.785259 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:16:07.786952 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-08-07T14:16:07.787029 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:16:07.787777 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-08-07T14:16:07.787974 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:16:07.788751 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-08-07T14:16:07.788830 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:16:07.789440 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-08-07T14:16:07.789507 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:16:07.790054 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T14:16:07.790195 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:16:07.799115 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.69 ms +I, [2018-08-07T14:16:07.799217 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:16:07.804150 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.97 ms +I, [2018-08-07T14:16:07.804320 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:16:07.805197 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.46 ms +I, [2018-08-07T14:16:07.805416 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:16:07.805981 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T14:16:07.806046 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:16:07.806832 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.41 ms +I, [2018-08-07T14:16:07.806896 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:16:07.807540 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-08-07T14:16:07.807620 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:16:07.808417 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-08-07T14:16:07.808479 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:16:07.809326 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.46 ms +I, [2018-08-07T14:16:07.809399 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:16:07.810396 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.72 ms +I, [2018-08-07T14:16:07.810474 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:16:07.811259 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T14:16:07.811352 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:16:07.811901 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T14:16:07.811956 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:16:07.813460 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.59 ms +I, [2018-08-07T14:16:07.813561 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:16:07.814373 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.57 ms +I, [2018-08-07T14:16:07.814448 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:16:07.815014 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T14:16:07.815065 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:16:07.815892 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.5 ms +I, [2018-08-07T14:16:07.816237 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:16:07.816962 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-08-07T14:16:07.817030 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:16:09.773115 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.21 ms +I, [2018-08-07T14:16:09.773165 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:16:09.773525 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.19 ms +I, [2018-08-07T14:16:09.773596 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:16:09.773904 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T14:16:09.773938 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:16:09.774213 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T14:16:09.774255 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:16:09.775727 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.25 ms +I, [2018-08-07T14:16:09.775799 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:16:09.776117 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T14:16:09.776179 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:16:09.776455 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.13 ms +I, [2018-08-07T14:16:09.776486 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:16:09.776706 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.11 ms +I, [2018-08-07T14:16:09.776753 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:16:09.777026 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T14:16:09.777054 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:16:09.777580 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.39 ms +I, [2018-08-07T14:16:09.777660 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:16:09.778346 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.15 ms +I, [2018-08-07T14:16:09.778379 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:16:09.778616 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T14:16:09.778649 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:16:09.819360 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T14:16:09.819409 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:16:09.819707 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-08-07T14:16:09.819742 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:16:09.820001 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-08-07T14:16:09.820059 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:16:09.820472 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T14:16:09.820522 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:16:09.821164 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.46 ms +I, [2018-08-07T14:16:09.821604 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:16:09.822047 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T14:16:09.822090 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:16:09.822517 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-08-07T14:16:09.822561 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:16:09.822959 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-08-07T14:16:09.823078 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:16:09.823365 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T14:16:09.823409 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:16:09.824449 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.56 ms +I, [2018-08-07T14:16:09.824790 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:16:09.825386 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.41 ms +I, [2018-08-07T14:16:09.825427 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:16:09.826322 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-08-07T14:16:09.826399 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:16:11.783267 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.52 ms +I, [2018-08-07T14:16:11.783327 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:16:11.783848 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.36 ms +I, [2018-08-07T14:16:11.783892 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:16:11.784296 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.25 ms +I, [2018-08-07T14:16:11.784341 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:16:11.784746 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T14:16:11.784803 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:16:11.785249 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T14:16:11.785288 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:16:11.828124 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.91 ms +I, [2018-08-07T14:16:11.828194 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:16:11.828772 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-08-07T14:16:11.828828 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:16:11.829282 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T14:16:11.829317 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:16:11.829701 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T14:16:11.829740 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:16:13.818378 #7] INFO -- : Inline processing of topic course_change with 1 messages took 16.85 ms +I, [2018-08-07T14:16:13.818990 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:16:13.820142 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.33 ms +I, [2018-08-07T14:16:13.820204 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:16:13.820969 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.25 ms +I, [2018-08-07T14:16:13.821028 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:16:13.825287 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.61 ms +I, [2018-08-07T14:16:13.825380 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:16:13.836765 #7] INFO -- : Inline processing of topic section_change with 1 messages took 5.81 ms +I, [2018-08-07T14:16:13.836865 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:16:13.839141 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.75 ms +I, [2018-08-07T14:16:13.839215 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:16:13.840914 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.17 ms +I, [2018-08-07T14:16:13.840991 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:16:13.872798 #7] INFO -- : Inline processing of topic section_change with 1 messages took 26.64 ms +I, [2018-08-07T14:16:13.875197 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:16:13.878231 #7] INFO -- : Inline processing of topic section_change with 1 messages took 2.42 ms +I, [2018-08-07T14:16:13.878309 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:16:13.879212 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.5 ms +I, [2018-08-07T14:16:13.879439 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:16:15.828568 #7] INFO -- : Committing offsets: course_change/0:349 +I, [2018-08-07T14:16:15.859143 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.72 ms +I, [2018-08-07T14:16:15.859245 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:16:15.912517 #7] INFO -- : Inline processing of topic section_change with 1 messages took 15.06 ms +I, [2018-08-07T14:16:15.912723 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:16:15.914910 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.39 ms +I, [2018-08-07T14:16:15.915166 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:16:15.989195 #7] INFO -- : Inline processing of topic section_change with 1 messages took 62.0 ms +I, [2018-08-07T14:16:15.989273 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:16:15.990236 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.67 ms +I, [2018-08-07T14:16:15.990297 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:16:15.990860 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-08-07T14:16:15.990913 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:16:15.991419 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-08-07T14:16:15.991463 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:16:15.992056 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.42 ms +I, [2018-08-07T14:16:15.992100 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:16:17.956211 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.9 ms +I, [2018-08-07T14:16:17.956452 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:16:17.993836 #7] INFO -- : Committing offsets: section_change/0:649 +I, [2018-08-07T14:16:19.369122 #7] INFO -- : Inline processing of topic section_change with 1 messages took 1.08 ms +I, [2018-08-07T14:16:19.369230 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:16:19.369802 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T14:16:19.369888 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:16:19.371011 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-08-07T14:16:19.371081 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:16:19.372142 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-08-07T14:16:19.372731 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:16:19.376138 #7] INFO -- : Inline processing of topic section_change with 1 messages took 3.05 ms +I, [2018-08-07T14:16:19.376229 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:16:19.434312 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.58 ms +I, [2018-08-07T14:16:19.434491 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:16:19.457842 #7] INFO -- : Inline processing of topic section_change with 1 messages took 21.37 ms +I, [2018-08-07T14:16:19.457944 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:16:19.459169 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.67 ms +I, [2018-08-07T14:16:19.459232 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:16:21.463672 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.41 ms +I, [2018-08-07T14:16:21.463722 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:16:21.464064 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-08-07T14:16:21.464094 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:16:21.464475 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-08-07T14:16:21.464508 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:16:21.464807 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-08-07T14:16:21.464840 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:16:21.465758 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-08-07T14:16:21.465909 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:16:21.466449 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-08-07T14:16:21.466486 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:16:21.467012 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-08-07T14:16:21.467180 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:16:21.467643 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-08-07T14:16:21.467679 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:16:21.468072 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-08-07T14:16:21.468108 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:16:21.476110 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-08-07T14:16:21.476270 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:16:21.476665 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-08-07T14:16:21.476866 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:16:21.536327 #7] INFO -- : Inline processing of topic section_change with 1 messages took 19.67 ms +I, [2018-08-07T14:16:21.536438 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:16:21.547088 #7] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-08-07T14:16:21.547149 #7] INFO -- : 1 messages on section_change topic delegated to SectionConsumer +I, [2018-08-07T14:16:21.957911 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.34 ms +I, [2018-08-07T14:16:21.957977 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:16:21.958285 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.12 ms +I, [2018-08-07T14:16:21.958317 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer +I, [2018-08-07T14:16:21.958668 #7] INFO -- : Inline processing of topic course_change with 1 messages took 0.09 ms +I, [2018-08-07T14:16:21.958701 #7] INFO -- : 1 messages on course_change topic delegated to CourseConsumer diff --git a/public/.DS_Store b/public/.DS_Store new file mode 100644 index 0000000..9aa5d3b Binary files /dev/null and b/public/.DS_Store differ diff --git a/public/javascripts/client.js b/public/javascripts/client.js new file mode 100644 index 0000000..a95e969 --- /dev/null +++ b/public/javascripts/client.js @@ -0,0 +1,11 @@ +var ws = new WebSocket("ws://localhost:4860/"); + +ws.onmessage = function(e) { + console.log("Got message!"); + console.log(e.data); + } + +ws.onclose = function(e) { console.log("closed"); }; + +ws.onopen = function(e) { console.log("Websocket Open"); }; + diff --git a/public/javascripts/test.html b/public/javascripts/test.html new file mode 100644 index 0000000..897fa22 --- /dev/null +++ b/public/javascripts/test.html @@ -0,0 +1,20 @@ + + + + + + + + +

Testing Websockets

+ + + + + + + + + \ No newline at end of file diff --git a/rakefile b/rakefile new file mode 100644 index 0000000..40917d4 --- /dev/null +++ b/rakefile @@ -0,0 +1,7 @@ +# load all application code and gems +require 'bundler' +Bundler.require(:default, ENV['ENV'].to_s.to_sym) +# set Plezi to rake mode and load it's tasks (if relevant). +Plezi.no_autostart + +# Add your tasks diff --git a/routes.rb b/routes.rb new file mode 100644 index 0000000..9a2c1ec --- /dev/null +++ b/routes.rb @@ -0,0 +1,6 @@ +require 'plezi' +require_relative 'app/controllers/eventstream.rb' +## +# ws://0.0.0.0/notifications +Plezi.route '/', EventStream +Plezi.route 'public/javascripts/client.js', :client